diff --git a/.github/policies/flaggedPackages.yml b/.github/policies/flaggedPackages.yml index bcffd4f133d36..cb3c25c65078d 100644 --- a/.github/policies/flaggedPackages.yml +++ b/.github/policies/flaggedPackages.yml @@ -112,6 +112,13 @@ configuration: - bodyContains: pattern: ALVR isRegex: False + # 3Kontakt.3Kontakt + - titleContains: + pattern: 3Kontakt + isRegex: False + - bodyContains: + pattern: 3Kontakt + isRegex: False then: - addLabel: label: Package-Flagged @@ -122,31 +129,33 @@ configuration: The package in your PR appears to be flagged. See the table below for more information. If it is not clear why you are seeing this message, please open a [new issue](https://github.com/microsoft/winget-pkgs/issues/new) inquiring about the status of the package. - | Package Name | Block Reason | Reference | + | Package Name | Block Reason | Reference | + + | -------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------- | - | ----- | ----- | ----- | + | Filezilla Client | Redistribution not allowed by license | #78578 | - | Filezilla Client | Redistribution not allowed by license | #78578 | + | Filezilla Server | Redistribution not allowed by license | #78578 | - | Filezilla Server | Redistribution not allowed by license | #78578 | + | CheatEngine | Installs PUA | #61767 | - | CheatEngine | Installs PUA | #61767 | + | Git GitCredentialManager | Publisher has requested removal | #100542 | - | Git GitCredentialManager | Publisher has requested removal | #100542 | + | Ranpha LavFiltersMegamix | Package is known to be an unofficial redistribution which hijacks the official package | #95155 | - | Ranpha LavFiltersMegamix | Package is known to be an unofficial redistribution which hijacks the official package | #95155 | + | Mariocube - Any | Publisher is known to distribute packages unofficially with misrepresentation of origin | #109796 / #103191 (comment) | - | Mariocube - Any | Publisher is known to distribute packages unofficially with misrepresentation of origin | #109796 / #103191 (comment) | + | aloneguid (Ivan G) Browser Tamer | Publisher has requested removal | #115266 (comment) | - | aloneguid (Ivan G) Browser Tamer | Publisher has requested removal | #115266 (comment) | + | FFXIV Teamcraft | Publisher has requested removal | #115369 | - | FFXIV Teamcraft | Publisher has requested removal | #115369 | + | ArtifexSoftware GhostScript | Several versions of this package (<= 10.01.2) are affected by a critical security vulnerability. New PRs require attention to ensure that those versions are not added back to the repo. | #122294 | - | ArtifexSoftware GhostScript | Several versions of this package (<= 10.01.2) are affected by a critical security vulnerability. New PRs require attention to ensure that those versions are not added back to the repo. | #122294 | + | Pulovers Macro Creator | Installs PUA | #123889 | - | Pulovers Macro Creator | Installs PUA | #123889 | + | ALVR | Publisher has requested removal | #125124 | - | ALVR | Publisher has requested removal | #125124 | + | 3Kontakt | Publisher has requested removal (Multiple brands by multiple vendors, may cause conflicts) | #269259 | Template: msftbot/validationError/packageFlagged 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/0/0xJacky/nginx-ui/2.1.12/0xJacky.nginx-ui.installer.yaml b/manifests/0/0xJacky/nginx-ui/2.1.12/0xJacky.nginx-ui.installer.yaml new file mode 100644 index 0000000000000..4d7e169a3cf95 --- /dev/null +++ b/manifests/0/0xJacky/nginx-ui/2.1.12/0xJacky.nginx-ui.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: 0xJacky.nginx-ui +PackageVersion: 2.1.12 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: nginx-ui.exe +UpgradeBehavior: install +Commands: +- nginx-ui +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/0xJacky/nginx-ui/releases/download/v2.1.12/nginx-ui-windows-64.zip + InstallerSha256: 68FD69DB800A74429A6E244782D802342940B43C0F7B9110A2CD613EE7E4BFA6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/0/0xJacky/nginx-ui/2.1.12/0xJacky.nginx-ui.locale.en-US.yaml b/manifests/0/0xJacky/nginx-ui/2.1.12/0xJacky.nginx-ui.locale.en-US.yaml new file mode 100644 index 0000000000000..2fcb0d8dba437 --- /dev/null +++ b/manifests/0/0xJacky/nginx-ui/2.1.12/0xJacky.nginx-ui.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: 0xJacky.nginx-ui +PackageVersion: 2.1.12 +PackageLocale: en-US +Publisher: 0xJacky +PublisherUrl: https://github.com/0xJacky +PublisherSupportUrl: https://nginxui.com/ +Author: 0xJacky +PackageName: Nginx UI +PackageUrl: https://github.com/0xJacky/nginx-ui +License: AGPL-3.0 +LicenseUrl: https://github.com/0xJacky/nginx-ui/blob/main/LICENSE +Copyright: Copyright (c) Nginx UI Team +ShortDescription: Yet another Web UI for Nginx +Description: Yet another WebUI for Nginx +Tags: +- chatgpt-app +- code-completion +- copilot +- cron +- deepseek-r1 +- docker +- go +- letsencrypt +- linux +- macos +- mcp +- nginx +- self-hosted +- vue +- webui +- windows +ReleaseNotesUrl: https://github.com/0xJacky/nginx-ui/releases/tag/v2.1.12 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/0/0xJacky/nginx-ui/2.1.12/0xJacky.nginx-ui.yaml b/manifests/0/0xJacky/nginx-ui/2.1.12/0xJacky.nginx-ui.yaml new file mode 100644 index 0000000000000..f700a63b3558e --- /dev/null +++ b/manifests/0/0xJacky/nginx-ui/2.1.12/0xJacky.nginx-ui.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: 0xJacky.nginx-ui +PackageVersion: 2.1.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/1/115/115Chrome/35.27.0/115.115Chrome.installer.yaml b/manifests/1/115/115Chrome/35.27.0/115.115Chrome.installer.yaml new file mode 100644 index 0000000000000..5b662038443e1 --- /dev/null +++ b/manifests/1/115/115Chrome/35.27.0/115.115Chrome.installer.yaml @@ -0,0 +1,39 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: 115.115Chrome +PackageVersion: 35.27.0 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Custom: -disable-auto-start +UpgradeBehavior: install +Protocols: +- browser115 +- ftp +- http +- https +- mailto +- tel +FileExtensions: +- crx +- htm +- html +- mht +- mhtm +- mhtml +- pdf +- shtml +- svg +- torrent +- webp +- xht +- xhtml +ProductCode: 115Chrome +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x86 + InstallerUrl: https://down.115.com/client/win/115br_v35.27.0.exe + InstallerSha256: A971DFDC85065FC051737A847EEB98D847D8E20CDBEDD23169E95AEC48C1F9B9 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/1/115/115Chrome/35.27.0/115.115Chrome.locale.en-US.yaml b/manifests/1/115/115Chrome/35.27.0/115.115Chrome.locale.en-US.yaml new file mode 100644 index 0000000000000..cf3f24c0b94a3 --- /dev/null +++ b/manifests/1/115/115Chrome/35.27.0/115.115Chrome.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: 115.115Chrome +PackageVersion: 35.27.0 +PackageLocale: en-US +Author: Guangdong 115 Technology Co., Ltd. +License: Proprietary +ShortDescription: A PC client that integrates 115, 115 Organization and browser +Description: |- + 115 Browser is a PC client that perfectly integrates multiple platforms including 115, 115 organization and browser. + It supports 115 account quick login, favorites synchronization, files backup by dragging and dropping, batch uploading and downloading, etc.; supports 115 organization affairs notification, so you can keep track of the organization's collaboration; supports browser quick search and built-in utilities and extensions, giving you a high-speed, refreshing, and smooth Internet experience. +Tags: +- backup +- browser +- chromium +- cloud +- cloud-drive +- download +- drive +- file +- netdisk +- share +- sync +- upload +- web +- webpage +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/1/115/115Chrome/35.27.0/115.115Chrome.locale.zh-CN.yaml b/manifests/1/115/115Chrome/35.27.0/115.115Chrome.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2c294be606a8e --- /dev/null +++ b/manifests/1/115/115Chrome/35.27.0/115.115Chrome.locale.zh-CN.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: 115.115Chrome +PackageVersion: 35.27.0 +PackageLocale: zh-CN +Publisher: 广东一一五科技股份有限公司 +PublisherUrl: https://115.com +PublisherSupportUrl: https://115.com/115115 +PrivacyUrl: https://115.com/privacy.html +Author: 广东一一五科技股份有限公司 +PackageName: 115浏览器 +PackageUrl: https://pc.115.com/browser.html +License: 专有软件 +LicenseUrl: https://115.com/pc_agreement.html +Copyright: Copyright 2024 The 115Browser Authors. All rights reserved. +ShortDescription: 集合 115、115 组织、浏览器的 PC 客户端 +Description: 115 浏览器是一个集合 115、115 组织、浏览器的 PC 客户端,多端平台完美整合。支持 115 账号快捷登录、收藏夹云同步、文件拖拽备份、批量上传下载等功能;支持 115 组织事务通知,让你随时掌握组织协作动态;支持浏览器快速搜索,内置实用小工具及扩展应用,给你高速、清爽、流畅的上网体验。 +Tags: +- chromium +- 上传 +- 下载 +- 云 +- 云盘 +- 共享 +- 分享 +- 同步 +- 备份 +- 文件 +- 浏览器 +- 网盘 +- 网页 +ReleaseNotes: 1. 修复若干已知问题,产品性能更稳定。 +ReleaseNotesUrl: https://q.115.com/115/T882923.html +PurchaseUrl: https://vip.115.com +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/1/115/115Chrome/35.27.0/115.115Chrome.yaml b/manifests/1/115/115Chrome/35.27.0/115.115Chrome.yaml new file mode 100644 index 0000000000000..fb68cfe240651 --- /dev/null +++ b/manifests/1/115/115Chrome/35.27.0/115.115Chrome.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: 115.115Chrome +PackageVersion: 35.27.0 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/1/123/123pan/2.4.1.0/123.123pan.installer.yaml b/manifests/1/123/123pan/2.4.1.0/123.123pan.installer.yaml new file mode 100644 index 0000000000000..ccf89e4fc5f05 --- /dev/null +++ b/manifests/1/123/123pan/2.4.1.0/123.123pan.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: 123.123pan +PackageVersion: 2.4.1.0 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silentWithProgress +UpgradeBehavior: install +ProductCode: 123pan +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + InstallerUrl: https://app.123957.com/pc-pro/windows/241/123pan_2.4.1.exe + InstallerSha256: 2C6D625321ECBCFC292CA44B3F3AC21713AD7149A028238ACA37F1F5743F9ED2 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/1/123/123pan/2.4.1.0/123.123pan.locale.en-US.yaml b/manifests/1/123/123pan/2.4.1.0/123.123pan.locale.en-US.yaml new file mode 100644 index 0000000000000..c90c1636f79ce --- /dev/null +++ b/manifests/1/123/123pan/2.4.1.0/123.123pan.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: 123.123pan +PackageVersion: 2.4.1.0 +PackageLocale: en-US +Publisher: 123云盘 +PublisherUrl: https://www.123pan.com/ +PublisherSupportUrl: https://www.123pan.com/Contactus +PrivacyUrl: https://www.123pan.com/UserPrivacy +Author: Xi'an 123 Cloud Computing Co., Ltd. +PackageName: 123云盘 +PackageUrl: https://www.123pan.com/ +License: Freeware +LicenseUrl: https://www.123pan.com/UserAgreement +Copyright: Copyright (c) 2024 123pan +ShortDescription: Secure and trusted cloud storage content distribution platform +Description: 123pan is a cloud storage service product with large space, unlimited speed, no ads, and focus on large file transfer and distribution. +Tags: +- backup +- cloud +- cloud-drive +- download +- drive +- file +- netdisk +- share +- sync +- upload +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://www.123pan.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/1/123/123pan/2.4.1.0/123.123pan.locale.zh-CN.yaml b/manifests/1/123/123pan/2.4.1.0/123.123pan.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1792ff716bc66 --- /dev/null +++ b/manifests/1/123/123pan/2.4.1.0/123.123pan.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: 123.123pan +PackageVersion: 2.4.1.0 +PackageLocale: zh-CN +Publisher: 123云盘 +PublisherUrl: https://www.123pan.com/ +PublisherSupportUrl: https://www.123pan.com/Contactus +PrivacyUrl: https://www.123pan.com/UserPrivacy +Author: 西安一二三云计算有限公司 +PackageName: 123云盘 +PackageUrl: https://www.123pan.com/ +License: 免费软件 +LicenseUrl: https://www.123pan.com/UserAgreement +Copyright: Copyright(c)2024 123云盘 +ShortDescription: 安全可信的云存储内容分发平台 +Description: 123 云盘是一款空间大、不限速、无广告、专注大文件传输分发的云存储服务产品。 +Tags: +- 上传 +- 下载 +- 云 +- 云盘 +- 共享 +- 分享 +- 同步 +- 备份 +- 文件 +- 网盘 +ReleaseNotes: 【升级】会员用户单次转存上限提升至 100000 个 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://www.123pan.com/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/1/123/123pan/2.4.1.0/123.123pan.yaml b/manifests/1/123/123pan/2.4.1.0/123.123pan.yaml new file mode 100644 index 0000000000000..56eabc1f81538 --- /dev/null +++ b/manifests/1/123/123pan/2.4.1.0/123.123pan.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: 123.123pan +PackageVersion: 2.4.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 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/1/1357310795/TboxWebdav/1.0.1/1357310795.TboxWebdav.yaml b/manifests/1/1357310795/TboxWebdav/1.0.1/1357310795.TboxWebdav.yaml new file mode 100644 index 0000000000000..d16d321afc692 --- /dev/null +++ b/manifests/1/1357310795/TboxWebdav/1.0.1/1357310795.TboxWebdav.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: 1357310795.TboxWebdav +PackageVersion: 1.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.10.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.installer.yaml b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.10.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.installer.yaml new file mode 100644 index 0000000000000..d2a5f48f7ed3d --- /dev/null +++ b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.10.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: 15722UsefulApp.WorkspaceLauncherForVSCode +PackageVersion: 1.10.0.0 +Platform: +- Windows.Universal +- Windows.Desktop +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.WindowsAppRuntime.1.6 +PackageFamilyName: 15722UsefulApp.WorkspaceLauncherforVSCode_s4b834ss2syh6 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/releases/download/v1.10.0.0/15722UsefulApp.WorkspaceLauncherforVSCode_1.10.0.0_x64__s4b834ss2syh6.Msix + InstallerSha256: C9453C31AE94911448DEBD3E1BC6A8E2B69209923DDB6063DD8CC502A5B540BF + SignatureSha256: 768EC4CCC8D599C7B2C98CB15E61757F0710A88034B29091F54635113370C68A +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-26 diff --git a/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.10.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.locale.en-US.yaml b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.10.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.locale.en-US.yaml new file mode 100644 index 0000000000000..642a386737145 --- /dev/null +++ b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.10.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.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: 15722UsefulApp.WorkspaceLauncherForVSCode +PackageVersion: 1.10.0.0 +PackageLocale: en-US +Publisher: UsefulApp +PublisherUrl: https://github.com/tanchekwei +PublisherSupportUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/issues +PackageName: Workspace Launcher for Visual Studio / Code +PackageUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode +License: MIT +LicenseUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/blob/v1.10.0.0/LICENSE.txt +Copyright: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/blob/v1.10.0.0/LICENSE.txt +CopyrightUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/blob/v1.10.0.0/LICENSE.txt +ShortDescription: Quickly browse and open your Visual Studio solutions and Visual Studio Code workspaces from a single, unified interface. +Description: This project provides a command palette extension for opening Visual Studio solutions and Visual Studio Code workspaces from a single, unified interface. +Tags: +- windows-commandpalette-extension +- cmdpal-extension +- microsoft-powertoys +- microsoft.commandpalette +- visual-studio-code +- vscode +- powertoys-run +ReleaseNotesUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/releases/tag/v1.10.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.10.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.yaml b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.10.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.yaml new file mode 100644 index 0000000000000..6192bef487cd9 --- /dev/null +++ b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.10.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.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: 15722UsefulApp.WorkspaceLauncherForVSCode +PackageVersion: 1.10.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.11.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.installer.yaml b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.11.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.installer.yaml new file mode 100644 index 0000000000000..045dc45a0f043 --- /dev/null +++ b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.11.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: 15722UsefulApp.WorkspaceLauncherForVSCode +PackageVersion: 1.11.0.0 +Platform: +- Windows.Universal +- Windows.Desktop +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.WindowsAppRuntime.1.6 +PackageFamilyName: 15722UsefulApp.WorkspaceLauncherforVSCode_s4b834ss2syh6 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/releases/download/v1.11.0.0/15722UsefulApp.WorkspaceLauncherforVSCode_1.11.0.0_x64__s4b834ss2syh6.Msix + InstallerSha256: 0BF4E77FC5BD7DDC6A14D8290866F7BE145835F3BE31FE0B5D2DFD15CE43144B + SignatureSha256: F1C9CC188958A0C6C3F194AB70FB0CACFD294BFB8ADA0E898795A5BC0EDC68F9 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-02 diff --git a/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.11.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.locale.en-US.yaml b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.11.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.locale.en-US.yaml new file mode 100644 index 0000000000000..2ce89b2a1cdf4 --- /dev/null +++ b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.11.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.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: 15722UsefulApp.WorkspaceLauncherForVSCode +PackageVersion: 1.11.0.0 +PackageLocale: en-US +Publisher: UsefulApp +PublisherUrl: https://github.com/tanchekwei +PublisherSupportUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/issues +PackageName: Visual Studio / Code for Command Palette +PackageUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode +License: MIT +LicenseUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/blob/v1.11.0.0/LICENSE.txt +Copyright: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/blob/v1.11.0.0/LICENSE.txt +CopyrightUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/blob/v1.11.0.0/LICENSE.txt +ShortDescription: Quickly browse and open your Visual Studio solutions and Visual Studio Code workspaces from a single, unified interface. +Description: This project provides a command palette extension for opening Visual Studio solutions and Visual Studio Code workspaces from a single, unified interface. +Tags: +- windows-commandpalette-extension +- cmdpal-extension +- microsoft-powertoys +- microsoft.commandpalette +- visual-studio-code +- vscode +- powertoys-run +ReleaseNotesUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/releases/tag/v1.11.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.11.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.yaml b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.11.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.yaml new file mode 100644 index 0000000000000..9b6cff5b78ed6 --- /dev/null +++ b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.11.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.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: 15722UsefulApp.WorkspaceLauncherForVSCode +PackageVersion: 1.11.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.12.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.installer.yaml b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.12.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.installer.yaml new file mode 100644 index 0000000000000..6f0f6bdfdd97e --- /dev/null +++ b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.12.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: 15722UsefulApp.WorkspaceLauncherForVSCode +PackageVersion: 1.12.0.0 +Platform: +- Windows.Universal +- Windows.Desktop +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.WindowsAppRuntime.1.6 +PackageFamilyName: 15722UsefulApp.WorkspaceLauncherforVSCode_s4b834ss2syh6 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/releases/download/v1.12.0.0/15722UsefulApp.WorkspaceLauncherforVSCode_1.12.0.0_x64__s4b834ss2syh6.Msix + InstallerSha256: 583081E5057A2073894B34B91AAB56242CC5FF9540D949120D3124B57E0FBCBF + SignatureSha256: B7FD2D8690F8BE89503C179BF106DDB7DC8821E1B41DDAEF2498008BA3035AEA +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-02 diff --git a/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.12.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.locale.en-US.yaml b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.12.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.locale.en-US.yaml new file mode 100644 index 0000000000000..f36b1daadc553 --- /dev/null +++ b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.12.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.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: 15722UsefulApp.WorkspaceLauncherForVSCode +PackageVersion: 1.12.0.0 +PackageLocale: en-US +Publisher: UsefulApp +PublisherUrl: https://github.com/tanchekwei +PublisherSupportUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/issues +PackageName: Visual Studio / Code for Command Palette +PackageUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode +License: MIT +LicenseUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/blob/v1.12.0.0/LICENSE.txt +Copyright: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/blob/v1.12.0.0/LICENSE.txt +CopyrightUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/blob/v1.12.0.0/LICENSE.txt +ShortDescription: Quickly browse and open your Visual Studio solutions and Visual Studio Code workspaces from a single, unified interface. +Description: This project provides a command palette extension for opening Visual Studio solutions and Visual Studio Code workspaces from a single, unified interface. +Tags: +- windows-commandpalette-extension +- cmdpal-extension +- microsoft-powertoys +- microsoft.commandpalette +- visual-studio-code +- vscode +- powertoys-run +ReleaseNotesUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/releases/tag/v1.12.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.12.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.yaml b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.12.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.yaml new file mode 100644 index 0000000000000..119cdc3aa4412 --- /dev/null +++ b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.12.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.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: 15722UsefulApp.WorkspaceLauncherForVSCode +PackageVersion: 1.12.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.13.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.installer.yaml b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.13.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.installer.yaml new file mode 100644 index 0000000000000..ac1017a385ace --- /dev/null +++ b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.13.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: 15722UsefulApp.WorkspaceLauncherForVSCode +PackageVersion: 1.13.0.0 +Platform: +- Windows.Universal +- Windows.Desktop +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.WindowsAppRuntime.1.6 +PackageFamilyName: 15722UsefulApp.WorkspaceLauncherforVSCode_s4b834ss2syh6 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/tanchekwei/VisualStudioCodeForCommandPalette/releases/download/v1.13.0.0/15722UsefulApp.WorkspaceLauncherforVSCode_1.13.0.0_x64__s4b834ss2syh6.Msix + InstallerSha256: EC37014F6828A3D31AA5F1C5F88BC7CD350D407ECF4B616346F156050C6FD6A7 + SignatureSha256: D1A2D3AFB0AEAC13E1CA23953AC9B34F31D459793280C434C4006BF66F632C9D +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-02 diff --git a/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.13.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.locale.en-US.yaml b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.13.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.locale.en-US.yaml new file mode 100644 index 0000000000000..90debdd815b04 --- /dev/null +++ b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.13.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.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: 15722UsefulApp.WorkspaceLauncherForVSCode +PackageVersion: 1.13.0.0 +PackageLocale: en-US +Publisher: UsefulApp +PublisherUrl: https://github.com/tanchekwei +PublisherSupportUrl: https://github.com/tanchekwei/VisualStudioCodeForCommandPalette/issues +PackageName: Visual Studio / Code for Command Palette +PackageUrl: https://github.com/tanchekwei/VisualStudioCodeForCommandPalette +License: MIT +LicenseUrl: https://github.com/tanchekwei/VisualStudioCodeForCommandPalette/blob/v1.13.0.0/LICENSE.txt +Copyright: https://github.com/tanchekwei/VisualStudioCodeForCommandPalette/blob/v1.13.0.0/LICENSE.txt +CopyrightUrl: https://github.com/tanchekwei/VisualStudioCodeForCommandPalette/blob/v1.13.0.0/LICENSE.txt +ShortDescription: Quickly browse and open your Visual Studio solutions and Visual Studio Code workspaces from a single, unified interface. +Description: This project provides a command palette extension for opening Visual Studio solutions and Visual Studio Code workspaces from a single, unified interface. +Tags: +- windows-commandpalette-extension +- cmdpal-extension +- microsoft-powertoys +- microsoft.commandpalette +- visual-studio-code +- vscode +- powertoys-run +ReleaseNotesUrl: https://github.com/tanchekwei/VisualStudioCodeForCommandPalette/releases/tag/v1.13.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.13.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.yaml b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.13.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.yaml new file mode 100644 index 0000000000000..48dd3ee6d4400 --- /dev/null +++ b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.13.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.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: 15722UsefulApp.WorkspaceLauncherForVSCode +PackageVersion: 1.13.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.8.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.installer.yaml b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.8.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.installer.yaml new file mode 100644 index 0000000000000..f19e65a925439 --- /dev/null +++ b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.8.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: 15722UsefulApp.WorkspaceLauncherForVSCode +PackageVersion: 1.8.0.0 +Platform: +- Windows.Universal +- Windows.Desktop +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +PackageFamilyName: 15722UsefulApp.WorkspaceLauncherforVSCode_s4b834ss2syh6 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/releases/download/v1.8.0.0/15722UsefulApp.WorkspaceLauncherforVSCode_1.8.0.0_x64__s4b834ss2syh6.Msix + InstallerSha256: 762B1AC8E53E69BC45CB1274C9B318C9DA66315F2DA1ED0CF58C0A3BF50DD0BF + SignatureSha256: 25FD344538E524EE676FFD213627AC8A985FF18664A423B4744B9A8F7F154AD8 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-20 +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.WindowsAppRuntime.1.6 diff --git a/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.8.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.locale.en-US.yaml b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.8.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.locale.en-US.yaml new file mode 100644 index 0000000000000..d70ea1bee2977 --- /dev/null +++ b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.8.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.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: 15722UsefulApp.WorkspaceLauncherForVSCode +PackageVersion: 1.8.0.0 +PackageLocale: en-US +Publisher: UsefulApp +PublisherUrl: https://github.com/tanchekwei +PublisherSupportUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/issues +PackageName: Workspace Launcher for Visual Studio / Code +PackageUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode +License: MIT +LicenseUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/blob/v1.8.0.0/LICENSE.txt +Copyright: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/blob/v1.8.0.0/LICENSE.txt +CopyrightUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/blob/v1.8.0.0/LICENSE.txt +ShortDescription: Quickly browse and open your Visual Studio solutions and Visual Studio Code workspaces from a single, unified interface. +Description: This project provides a command palette extension for opening Visual Studio solutions and Visual Studio Code workspaces from a single, unified interface. +Tags: +- windows-commandpalette-extension +- cmdpal-extension +- microsoft-powertoys +- microsoft.commandpalette +- visual-studio-code +- vscode +- powertoys-run +ReleaseNotesUrl: https://github.com/tanchekwei/WorkspaceLauncherForVSCode/releases/tag/v1.8.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.8.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.yaml b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.8.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.yaml new file mode 100644 index 0000000000000..790ea59290403 --- /dev/null +++ b/manifests/1/15722UsefulApp/WorkspaceLauncherForVSCode/1.8.0.0/15722UsefulApp.WorkspaceLauncherForVSCode.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: 15722UsefulApp.WorkspaceLauncherForVSCode +PackageVersion: 1.8.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/3/360/360Chrome/X/22.3.3170.64/360.360Chrome.X.installer.yaml b/manifests/3/360/360Chrome/X/22.3.3170.64/360.360Chrome.X.installer.yaml new file mode 100644 index 0000000000000..5c392fb5029fd --- /dev/null +++ b/manifests/3/360/360Chrome/X/22.3.3170.64/360.360Chrome.X.installer.yaml @@ -0,0 +1,52 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: 360.360Chrome.X +PackageVersion: 22.3.3170.64 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent-install + SilentWithProgress: --silent-install + InstallLocation: --install-path="" + Log: --enable-logging --verbose-logging --log-file="" + Upgrade: --full-install-update +InstallerSuccessCodes: +- 1 +ExpectedReturnCodes: +- InstallerReturnCode: 405 + ReturnResponse: installInProgress +- InstallerReturnCode: 406 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 5042 + ReturnResponse: cancelledByUser +UpgradeBehavior: install +Protocols: +- 360chromexurl +- ftp +- htmlfile +- http +- https +FileExtensions: +- crx +- htm +- html +- mht +- mhtm +- mhtml +- pdf +- shtm +- shtml +- xht +- xhtml +ProductCode: 360ChromeX +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x64 + InstallerUrl: https://down.360safe.com/cse/360csex_22.3.3170.64.exe + InstallerSha256: 935DEFA7E679885EA71C1641C37B2DD8224F9376572D1CB73BEE94AB8DC7D9CE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/3/360/360Chrome/X/22.3.3170.64/360.360Chrome.X.locale.en-US.yaml b/manifests/3/360/360Chrome/X/22.3.3170.64/360.360Chrome.X.locale.en-US.yaml new file mode 100644 index 0000000000000..89104b726e81b --- /dev/null +++ b/manifests/3/360/360Chrome/X/22.3.3170.64/360.360Chrome.X.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: 360.360Chrome.X +PackageVersion: 22.3.3170.64 +PackageLocale: en-US +Publisher: 360安全中心 +PublisherUrl: https://browser.360.cn/ +PublisherSupportUrl: https://bbs.360.cn/forum-142-1.html +PrivacyUrl: https://www.360.cn/privacy/v3/bps360jsllqWindowsb.html +Author: Beijing Qihoo Technology Co., Ltd. +PackageName: 360 极速浏览器X +PackageUrl: https://browser.360.cn/ee/ +License: Freeware +LicenseUrl: https://www.360.cn/xukexieyi.html#jisu +Copyright: (C) 360.cn All Rights Reserved. +CopyrightUrl: https://www.360.cn/about/banquanshengming.html +ShortDescription: New Chromium-based 64-bit dual-core browser for higher performance and better experience +Description: 360 Chrome X is the first 64-bit dual-core browser from 360 that integrates the latest Chromium kernel, providing a 50% performance boost over traditional 32-bit browsers. In addition to a more enjoyable browsing experience, we also provide you with new simple interface, new tab with thousands of HD wallpapers, and many optimized browsing tools. +Moniker: 360csex +Tags: +- browser +- chromium +- ie +- internet-explorer +- web +- webpage +ReleaseNotesUrl: https://bbs.360.cn/thread-16123706-1-1.html +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://faq.bbs.360.cn/#/question/280 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/3/360/360Chrome/X/22.3.3170.64/360.360Chrome.X.locale.zh-CN.yaml b/manifests/3/360/360Chrome/X/22.3.3170.64/360.360Chrome.X.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ca6e4b5381ba8 --- /dev/null +++ b/manifests/3/360/360Chrome/X/22.3.3170.64/360.360Chrome.X.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: 360.360Chrome.X +PackageVersion: 22.3.3170.64 +PackageLocale: zh-CN +Publisher: 360安全中心 +PublisherUrl: https://browser.360.cn/ +PublisherSupportUrl: https://bbs.360.cn/forum-142-1.html +PrivacyUrl: https://www.360.cn/privacy/v3/bps360jsllqWindowsb.html +Author: 北京奇虎科技有限公司 +PackageName: 360 极速浏览器X +PackageUrl: https://browser.360.cn/ee/ +License: 免费软件 +LicenseUrl: https://www.360.cn/xukexieyi.html#jisu +Copyright: (C) 360.cn All Rights Reserved. +CopyrightUrl: https://www.360.cn/about/banquanshengming.html +ShortDescription: 全新 Chromium 内核,64 位双核浏览器,性能更高,体验更佳 +Description: 360 极速浏览器 X 是 360 推出的首款融合了最新 Chromium 内核的 64 位双核浏览器,较传统的 32 位浏览器,性能提升超 50%。在带给您更加畅快的底层浏览体验同时,我们也还为您提供了全新的极简风格操作界面、可以更换上千款高清壁纸的新标签页及众多精心优化过的浏览工具。 +Tags: +- chromium +- ie +- internet-explorer +- 浏览器 +- 网页 +ReleaseNotes: 1. 修复一个崩溃 +ReleaseNotesUrl: https://bbs.360.cn/thread-16123706-1-1.html +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://faq.bbs.360.cn/#/question/280 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/3/360/360Chrome/X/22.3.3170.64/360.360Chrome.X.yaml b/manifests/3/360/360Chrome/X/22.3.3170.64/360.360Chrome.X.yaml new file mode 100644 index 0000000000000..6593cd2612531 --- /dev/null +++ b/manifests/3/360/360Chrome/X/22.3.3170.64/360.360Chrome.X.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: 360.360Chrome.X +PackageVersion: 22.3.3170.64 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/3/360/NamiAI/1.3.1388.64/360.NamiAI.installer.yaml b/manifests/3/360/NamiAI/1.3.1388.64/360.NamiAI.installer.yaml new file mode 100644 index 0000000000000..126c8a4751014 --- /dev/null +++ b/manifests/3/360/NamiAI/1.3.1388.64/360.NamiAI.installer.yaml @@ -0,0 +1,42 @@ +# 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: 360.NamiAI +PackageVersion: 1.3.1388.64 +InstallerType: exe # Chrome Setup +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent-install + SilentWithProgress: --silent-install + InstallLocation: --install-path="" + Upgrade: --full-install-update +ExpectedReturnCodes: +- InstallerReturnCode: 1 + ReturnResponse: downgrade +- InstallerReturnCode: 22 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 405 + ReturnResponse: installInProgress +- InstallerReturnCode: 431 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 5042 + ReturnResponse: cancelledByUser +UpgradeBehavior: install +Protocols: +- nami +ProductCode: namiai +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://down.360safe.com/se/360namiai1.3.1388.64.exe + InstallerSha256: 06C543B7FB0A4EE1ACDEF1556DF0984BEAE0F940224FC8BB753E963E5382FC93 +- Architecture: x64 + Scope: machine + InstallerUrl: https://down.360safe.com/se/360namiai1.3.1388.64.exe + InstallerSha256: 06C543B7FB0A4EE1ACDEF1556DF0984BEAE0F940224FC8BB753E963E5382FC93 + InstallerSwitches: + Custom: --system-level +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/3/360/NamiAI/1.3.1388.64/360.NamiAI.locale.en-US.yaml b/manifests/3/360/NamiAI/1.3.1388.64/360.NamiAI.locale.en-US.yaml new file mode 100644 index 0000000000000..1349660a7eb8d --- /dev/null +++ b/manifests/3/360/NamiAI/1.3.1388.64/360.NamiAI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# 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: 360.NamiAI +PackageVersion: 1.3.1388.64 +PackageLocale: en-US +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +Author: Beijing Qihoo Technology Co., Ltd. +# PackageName: +# PackageUrl: +License: Freeware +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: Next-gen super search, delivering expert-level results instantly +# Description: +# Moniker: +Tags: +- ai +- chatbot +- large-language-model +- llm +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/3/360/NamiAI/1.3.1388.64/360.NamiAI.locale.zh-CN.yaml b/manifests/3/360/NamiAI/1.3.1388.64/360.NamiAI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e4811edae8e52 --- /dev/null +++ b/manifests/3/360/NamiAI/1.3.1388.64/360.NamiAI.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.defaultLocale.1.10.0.schema.json + +PackageIdentifier: 360.NamiAI +PackageVersion: 1.3.1388.64 +PackageLocale: zh-CN +Publisher: 360安全中心 +PublisherUrl: https://bot.n.cn/ +PublisherSupportUrl: https://browser.360.cn/nami/feedback.html +PrivacyUrl: https://browser.360.cn/ai/agreement/nami_privacy.html +Author: 北京奇虎科技有限公司 +PackageName: 纳米AI +PackageUrl: https://bot.n.cn/download +License: 免费软件 +LicenseUrl: https://browser.360.cn/ai/agreement/nami_agreement.html +Copyright: (C) 360.cn All Rights Reserved. +CopyrightUrl: https://www.360.cn/about/banquanshengming.html +ShortDescription: 新一代超级搜索,直达专家级交付结果 +# Description: +# Moniker: +Tags: +- 人工智能 +- 大语言模型 +- 聊天机器人 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/3/360/NamiAI/1.3.1388.64/360.NamiAI.yaml b/manifests/3/360/NamiAI/1.3.1388.64/360.NamiAI.yaml new file mode 100644 index 0000000000000..7d750e1973866 --- /dev/null +++ b/manifests/3/360/NamiAI/1.3.1388.64/360.NamiAI.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: 360.NamiAI +PackageVersion: 1.3.1388.64 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/3/3CX/PhoneSystem/20.0.5.551/3CX.PhoneSystem.locale.zh-CN.yaml b/manifests/3/3CX/PhoneSystem/20.0.5.551/3CX.PhoneSystem.locale.zh-CN.yaml deleted file mode 100644 index 2b35cdf9fd5d0..0000000000000 --- a/manifests/3/3CX/PhoneSystem/20.0.5.551/3CX.PhoneSystem.locale.zh-CN.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS2.CRLF.7-5-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: 3CX.PhoneSystem -PackageVersion: 20.0.5.551 -PackageLocale: zh-CN -# Publisher: -# PublisherUrl: -# PublisherSupportUrl: -# PrivacyUrl: -# Author: -# PackageName: -# PackageUrl: -License: 专有软件 -# LicenseUrl: -# Copyright: -# CopyrightUrl: -ShortDescription: 企业级电话系统 -Description: 3CX 是一款企业级电话系统,支持云端托管或自主管理,让您能够掌控自己的中继线路和号码资源。作为一套完整的通信平台,它消除了运行多套系统带来的成本负担与管理难题。 -# Moniker: -Tags: -- sip -- 电话 -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/3/3CX/PhoneSystem/20.0.5.551/3CX.PhoneSystem.yaml b/manifests/3/3CX/PhoneSystem/20.0.5.551/3CX.PhoneSystem.yaml deleted file mode 100644 index 1de5f35c205a7..0000000000000 --- a/manifests/3/3CX/PhoneSystem/20.0.5.551/3CX.PhoneSystem.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS2.CRLF.7-5-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: 3CX.PhoneSystem -PackageVersion: 20.0.5.551 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/3/3CX/PhoneSystem/20.0.5.551/3CX.PhoneSystem.installer.yaml b/manifests/3/3CX/PhoneSystem/20.0.6.724/3CX.PhoneSystem.installer.yaml similarity index 86% rename from manifests/3/3CX/PhoneSystem/20.0.5.551/3CX.PhoneSystem.installer.yaml rename to manifests/3/3CX/PhoneSystem/20.0.6.724/3CX.PhoneSystem.installer.yaml index 3123ff9f06257..78c3bfba5f407 100644 --- a/manifests/3/3CX/PhoneSystem/20.0.5.551/3CX.PhoneSystem.installer.yaml +++ b/manifests/3/3CX/PhoneSystem/20.0.6.724/3CX.PhoneSystem.installer.yaml @@ -1,65 +1,65 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS2.CRLF.7-5-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: 3CX.PhoneSystem -PackageVersion: 20.0.5.551 -InstallerType: exe # Advanced Installer -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /exenoui /quiet /norestart - SilentWithProgress: /passive /norestart - InstallLocation: APPDIR="" - Log: /log "" -ExpectedReturnCodes: -- InstallerReturnCode: -1 - ReturnResponse: cancelledByUser -- InstallerReturnCode: 1 - ReturnResponse: invalidParameter -- InstallerReturnCode: 87 - 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: 3CX Phone System 20.0.5.551 -Installers: -- Architecture: x64 - InstallerUrl: https://downloads-global.3cx.com/downloads/3CXPhoneSystem20.exe - InstallerSha256: 4A5886AE7F7EC4B78D742C1CEE5502D250969C28B36BE1585C699AB50C047D3A -ManifestType: installer -ManifestVersion: 1.10.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: 3CX.PhoneSystem +PackageVersion: 20.0.6.724 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /exenoui /quiet /norestart + SilentWithProgress: /passive /norestart + InstallLocation: APPDIR="" + Log: /log "" +ExpectedReturnCodes: +- InstallerReturnCode: -1 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1 + ReturnResponse: invalidParameter +- InstallerReturnCode: 87 + 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: 3CX Phone System 20.0.6.724 +Installers: +- Architecture: x64 + InstallerUrl: https://downloads-global.3cx.com/downloads/3CXPhoneSystem20.exe + InstallerSha256: DA8F5ED2D5C21085858ACCA30675A06F07F23D88A1CAD427FFC3EE8CA9E1CE19 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/3/3CX/PhoneSystem/20.0.5.551/3CX.PhoneSystem.locale.en-US.yaml b/manifests/3/3CX/PhoneSystem/20.0.6.724/3CX.PhoneSystem.locale.en-US.yaml similarity index 76% rename from manifests/3/3CX/PhoneSystem/20.0.5.551/3CX.PhoneSystem.locale.en-US.yaml rename to manifests/3/3CX/PhoneSystem/20.0.6.724/3CX.PhoneSystem.locale.en-US.yaml index 35c50a88c77e0..c668a86b8aae7 100644 --- a/manifests/3/3CX/PhoneSystem/20.0.5.551/3CX.PhoneSystem.locale.en-US.yaml +++ b/manifests/3/3CX/PhoneSystem/20.0.6.724/3CX.PhoneSystem.locale.en-US.yaml @@ -1,32 +1,22 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS2.CRLF.7-5-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: 3CX.PhoneSystem -PackageVersion: 20.0.5.551 -PackageLocale: en-US -Publisher: 3CX Ltd -PublisherUrl: https://www.3cx.com/ -# PublisherSupportUrl: -PrivacyUrl: https://www.3cx.com/company/privacy/ -# Author: -PackageName: 3CX Phone System -PackageUrl: https://www.3cx.com/docs/manual/phone-system-installation-windows/ -License: Proprietary -# LicenseUrl: -Copyright: Copyright © 2025 -# CopyrightUrl: -ShortDescription: Enterprise phone system -Description: 3CX is an enterprise phone system hosted in the cloud or self-managed that lets you keep control of your own trunks and numbers too. It's a complete communications platform - eliminating the cost and management headaches of running multiple systems. -# Moniker: -Tags: -- sip -- softphone -- telephone -- telephony -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.10.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: 3CX.PhoneSystem +PackageVersion: 20.0.6.724 +PackageLocale: en-US +Publisher: 3CX Ltd +PublisherUrl: https://www.3cx.com/ +PrivacyUrl: https://www.3cx.com/company/privacy/ +PackageName: 3CX Phone System +PackageUrl: https://www.3cx.com/docs/manual/phone-system-installation-windows/ +License: Proprietary +Copyright: Copyright © 2025 +ShortDescription: Enterprise phone system +Description: 3CX is an enterprise phone system hosted in the cloud or self-managed that lets you keep control of your own trunks and numbers too. It's a complete communications platform - eliminating the cost and management headaches of running multiple systems. +Tags: +- sip +- softphone +- telephone +- telephony +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/3/3CX/PhoneSystem/20.0.6.724/3CX.PhoneSystem.locale.zh-CN.yaml b/manifests/3/3CX/PhoneSystem/20.0.6.724/3CX.PhoneSystem.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5ddd7192e550d --- /dev/null +++ b/manifests/3/3CX/PhoneSystem/20.0.6.724/3CX.PhoneSystem.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: 3CX.PhoneSystem +PackageVersion: 20.0.6.724 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 企业级电话系统 +Description: 3CX 是一款企业级电话系统,支持云端托管或自主管理,让您能够掌控自己的中继线路和号码资源。作为一套完整的通信平台,它消除了运行多套系统带来的成本负担与管理难题。 +Tags: +- sip +- 电话 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/3/3CX/PhoneSystem/20.0.6.724/3CX.PhoneSystem.yaml b/manifests/3/3CX/PhoneSystem/20.0.6.724/3CX.PhoneSystem.yaml new file mode 100644 index 0000000000000..b052ab313b077 --- /dev/null +++ b/manifests/3/3CX/PhoneSystem/20.0.6.724/3CX.PhoneSystem.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: 3CX.PhoneSystem +PackageVersion: 20.0.6.724 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/3/3Dconnexion/3DxWare/10/10.9.6.699/3Dconnexion.3DxWare.10.installer.yaml b/manifests/3/3Dconnexion/3DxWare/10/10.9.6.699/3Dconnexion.3DxWare.10.installer.yaml new file mode 100644 index 0000000000000..2aef6fdb657f4 --- /dev/null +++ b/manifests/3/3Dconnexion/3DxWare/10/10.9.6.699/3Dconnexion.3DxWare.10.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: 3Dconnexion.3DxWare.10 +PackageVersion: 10.9.6.699 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /quiet /norestart + SilentWithProgress: /passive /norestart + InstallLocation: InstallFolder="" + Log: /log "" +UpgradeBehavior: install +ProductCode: '{af7c2b4b-9364-4db8-bc2f-ae69a7ab4daf}' +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- ProductCode: '{af7c2b4b-9364-4db8-bc2f-ae69a7ab4daf}' + UpgradeCode: '{7ABAD973-D545-48CE-AC51-1BB60394FBB9}' + InstallerType: burn +Installers: +- Architecture: x64 + InstallerUrl: https://download.3dconnexion.com/drivers/win/10-9-6_10FE65CE/3DxWare64_v10-9-6_b699.exe + InstallerSha256: A268B355B5FC58AC124E069B6261AE6FD7AC6EFB86A9FB6F488B8999085EE4CD +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/3/3Dconnexion/3DxWare/10/10.9.6.699/3Dconnexion.3DxWare.10.locale.en-US.yaml b/manifests/3/3Dconnexion/3DxWare/10/10.9.6.699/3Dconnexion.3DxWare.10.locale.en-US.yaml new file mode 100644 index 0000000000000..511559fe10a6f --- /dev/null +++ b/manifests/3/3Dconnexion/3DxWare/10/10.9.6.699/3Dconnexion.3DxWare.10.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: 3Dconnexion.3DxWare.10 +PackageVersion: 10.9.6.699 +PackageLocale: en-US +Publisher: 3Dconnexion +PublisherUrl: https://3dconnexion.com/ +PublisherSupportUrl: https://3dconnexion.com/support/ +PrivacyUrl: https://3dconnexion.com/privacy-policy/ +Author: 3Dconnexion SAM +PackageName: 3Dconnexion 3DxWare 10 +PackageUrl: https://3dconnexion.com/drivers/ +License: Proprietary +LicenseUrl: https://3dconnexion.com/terms-and-conditions/ +Copyright: © 2013-2024 3Dconnexion. All rights reserved. +ShortDescription: Support and customize your 3Dconnexion products. +Tags: +- 3dxhid.inf +- 3dxkmj.inf +- winusb_dfu.inf +- driver +- spacemouse +- cadmouse +ReleaseNotesUrl: https://3dconnexion.com/wp-content/uploads/sites/27/2025/06/Release_Notes-Windows-20250624.pdf +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://3dconnexion.com/support/faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/3/3Dconnexion/3DxWare/10/10.9.6.699/3Dconnexion.3DxWare.10.locale.zh-CN.yaml b/manifests/3/3Dconnexion/3DxWare/10/10.9.6.699/3Dconnexion.3DxWare.10.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ef0b37632fae8 --- /dev/null +++ b/manifests/3/3Dconnexion/3DxWare/10/10.9.6.699/3Dconnexion.3DxWare.10.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: 3Dconnexion.3DxWare.10 +PackageVersion: 10.9.6.699 +PackageLocale: zh-CN +Publisher: 3Dconnexion +PublisherUrl: https://3dconnexion.com/cn/ +PublisherSupportUrl: https://3dconnexion.com/cn/support/ +PrivacyUrl: https://3dconnexion.com/cn/privacy-policy/ +Author: 3Dconnexion SAM +PackageName: 3Dconnexion 3DxWare 10 +PackageUrl: https://3dconnexion.com/cn/drivers/ +License: 专有软件 +LicenseUrl: https://3dconnexion.com/cn/terms-and-conditions/ +Copyright: © 2013-2024 3Dconnexion. All rights reserved. +ShortDescription: 支持和定制您的 3Dconnexion 产品。 +ReleaseNotesUrl: https://3dconnexion.com/cn/wp-content/uploads/sites/27/2025/06/Release_Notes-Windows-20250624.pdf +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://3dconnexion.com/cn/support/faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/3/3Dconnexion/3DxWare/10/10.9.6.699/3Dconnexion.3DxWare.10.yaml b/manifests/3/3Dconnexion/3DxWare/10/10.9.6.699/3Dconnexion.3DxWare.10.yaml new file mode 100644 index 0000000000000..92065f9e5daf6 --- /dev/null +++ b/manifests/3/3Dconnexion/3DxWare/10/10.9.6.699/3Dconnexion.3DxWare.10.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: 3Dconnexion.3DxWare.10 +PackageVersion: 10.9.6.699 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/3/3Kontact/3Kontact/5.10.5.9143/3Kontact.3Kontact.installer.yaml b/manifests/3/3Kontact/3Kontact/5.10.5.9143/3Kontact.3Kontact.installer.yaml deleted file mode 100644 index 1c64c930bdc7f..0000000000000 --- a/manifests/3/3Kontact/3Kontact/5.10.5.9143/3Kontact.3Kontact.installer.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Created with komac v2.12.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: 3Kontact.3Kontact -PackageVersion: 5.10.5.9143 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -ProductCode: '{88E28BFB-19C4-4A7C-A3AB-07815E950E58}' -ReleaseDate: 2025-02-11 -AppsAndFeaturesEntries: -- DisplayName: 3Kontakt - Publisher: 3Kontakt - DisplayVersion: 5.10.5 - ProductCode: '{88E28BFB-19C4-4A7C-A3AB-07815E950E58}' - UpgradeCode: '{C2D29468-9E3D-4E62-8EAE-E7B0FDF63D6E}' -Installers: -- Architecture: x64 - InstallerUrl: https://softphone-3kontakt.3.dk/softphone/DK/3kontakt_x64.msi - InstallerSha256: E31C6EEEA47E4F2C552B00C044B6665C596EFE2C8482FDCE449B7AE859AD7F62 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/3/3Kontact/3Kontact/5.10.5.9143/3Kontact.3Kontact.locale.da-DK.yaml b/manifests/3/3Kontact/3Kontact/5.10.5.9143/3Kontact.3Kontact.locale.da-DK.yaml deleted file mode 100644 index 52bfb8fb4c996..0000000000000 --- a/manifests/3/3Kontact/3Kontact/5.10.5.9143/3Kontact.3Kontact.locale.da-DK.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Created with komac v2.12.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: 3Kontact.3Kontact -PackageVersion: 5.10.5.9143 -PackageLocale: da-DK -Publisher: 3Kontact -PublisherUrl: https://www.3.dk/ -Author: 3Kontact -PackageName: 3Kontact -License: Proprietary -Copyright: © 2024 - 3 (Hi3G Denmark ApS) -ShortDescription: 3Kontakt makes it easy for you to handle all your calls - even when you are busy or in a meeting. Our user-friendly app allows you and your company to manage communication efficiently. -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/3/3Kontact/3Kontact/5.10.5.9143/3Kontact.3Kontact.yaml b/manifests/3/3Kontact/3Kontact/5.10.5.9143/3Kontact.3Kontact.yaml deleted file mode 100644 index 025dbec50fd56..0000000000000 --- a/manifests/3/3Kontact/3Kontact/5.10.5.9143/3Kontact.3Kontact.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.12.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: 3Kontact.3Kontact -PackageVersion: 5.10.5.9143 -DefaultLocale: da-DK -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/3/3TSoftwareLabs/Studio3T/2025.12.0/3TSoftwareLabs.Studio3T.installer.yaml b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.0/3TSoftwareLabs.Studio3T.installer.yaml new file mode 100644 index 0000000000000..3e20d738e56cf --- /dev/null +++ b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.0/3TSoftwareLabs.Studio3T.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: 3TSoftwareLabs.Studio3T +PackageVersion: 2025.12.0 +InstallerType: zip +NestedInstallerType: exe +NestedInstallerFiles: +- RelativeFilePath: studio-3t-x64.exe +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: -q -Dinstall4j.suppressUnattendedReboot=true + SilentWithProgress: -q -splash "" -Dinstall4j.suppressUnattendedReboot=true + InstallLocation: -dir "" + Log: -Dinstall4j.log="" +UpgradeBehavior: install +ProductCode: 0526-4458-1435-8154 +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.studio3t.com/studio-3t/windows/2025.12.0/studio-3t-x64.zip + InstallerSha256: 04F212C26B2FC70232BA527ED7E5D5CB4AE5580EFC035A7669F5E53F7CC73126 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.studio3t.com/studio-3t/windows/2025.12.0/studio-3t-x64.zip + InstallerSha256: 04F212C26B2FC70232BA527ED7E5D5CB4AE5580EFC035A7669F5E53F7CC73126 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/3/3TSoftwareLabs/Studio3T/2025.12.0/3TSoftwareLabs.Studio3T.locale.en-US.yaml b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.0/3TSoftwareLabs.Studio3T.locale.en-US.yaml new file mode 100644 index 0000000000000..40ff7782cbcc9 --- /dev/null +++ b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.0/3TSoftwareLabs.Studio3T.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: 3TSoftwareLabs.Studio3T +PackageVersion: 2025.12.0 +PackageLocale: en-US +Publisher: 3T Software Labs +PublisherUrl: https://studio3t.com/ +PublisherSupportUrl: https://studio3t.com/feedback/ +PrivacyUrl: https://studio3t.com/privacy-policy/ +Author: 3T Software Labs Limited +PackageName: Studio 3T +PackageUrl: https://studio3t.com/download/ +License: Proprietary +LicenseUrl: https://files.studio3t.com/eula/eula.pdf +Copyright: © 2024 3T Software Labs Ltd. All rights reserved. +ShortDescription: The Ultimate GUI for MongoDB +Tags: +- database +- db +- mongodb +- nosql +ReleaseNotes: |- + New: Summer Survey - Added a summer survey, participate to have a chance at winning a prize. + Improvement: Account - It is now possible to logout from the Preferences dialog without closing Studio 3T afterwards. + Improvement: Preferences - AI Helper preferences now display the default temperature setting. + Fix: AI Helper - Fixed an issue where the AI Helper area was restored with excessive empty scroll space. + Fix: GridFS - Fixed a crash that could occur when trying to drop a GridFS bucket. + Fix: Compare and Sync - Fixed an issue where Copy Field to Target would only work once. + Fix: Toast Notifications - Fixed an issue where toast notification buttons could switch position. + Fix: Import URI - Now respects the loadBalanced flag. + Fix: Sidebar - Fixed a crash that could occur when opening the system.users from a collapsed sidebar. +ReleaseNotesUrl: https://studio3t.com/whats-new/release-2025-12/ +PurchaseUrl: https://studio3t.com/buy/ +Documentations: +- DocumentLabel: Knowledge Base + DocumentUrl: https://studio3t.com/knowledge-base/ +- DocumentLabel: FAQ + DocumentUrl: https://studio3t.com/faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/3/3TSoftwareLabs/Studio3T/2025.12.0/3TSoftwareLabs.Studio3T.locale.zh-CN.yaml b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.0/3TSoftwareLabs.Studio3T.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9758fe1928b46 --- /dev/null +++ b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.0/3TSoftwareLabs.Studio3T.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: 3TSoftwareLabs.Studio3T +PackageVersion: 2025.12.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: MongoDB 的终极图形用户界面 +Tags: +- mongodb +- nosql +- 数据库 +ReleaseNotesUrl: https://studio3t.com/whats-new/release-2025-12/ +Documentations: +- DocumentLabel: 知识库 + DocumentUrl: https://studio3t.com/knowledge-base/ +- DocumentLabel: 常见问题 + DocumentUrl: https://studio3t.com/faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/3/3TSoftwareLabs/Studio3T/2025.12.0/3TSoftwareLabs.Studio3T.yaml b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.0/3TSoftwareLabs.Studio3T.yaml new file mode 100644 index 0000000000000..dcebc740e0168 --- /dev/null +++ b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.0/3TSoftwareLabs.Studio3T.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: 3TSoftwareLabs.Studio3T +PackageVersion: 2025.12.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/3/3TSoftwareLabs/Studio3T/2025.12.1/3TSoftwareLabs.Studio3T.installer.yaml b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.1/3TSoftwareLabs.Studio3T.installer.yaml new file mode 100644 index 0000000000000..8315333a0aee0 --- /dev/null +++ b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.1/3TSoftwareLabs.Studio3T.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: 3TSoftwareLabs.Studio3T +PackageVersion: 2025.12.1 +InstallerType: zip +NestedInstallerType: exe +NestedInstallerFiles: +- RelativeFilePath: studio-3t-x64.exe +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: -q -Dinstall4j.suppressUnattendedReboot=true + SilentWithProgress: -q -splash "" -Dinstall4j.suppressUnattendedReboot=true + InstallLocation: -dir "" + Log: -Dinstall4j.log="" +UpgradeBehavior: install +ProductCode: 0526-4458-1435-8154 +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.studio3t.com/studio-3t/windows/2025.12.1/studio-3t-x64.zip + InstallerSha256: 05FE0BAF75BB79BECA80FD01DD3B7A7E8A11D6F4DE2F52BF5E05AB47BA1E4A6F +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.studio3t.com/studio-3t/windows/2025.12.1/studio-3t-x64.zip + InstallerSha256: 05FE0BAF75BB79BECA80FD01DD3B7A7E8A11D6F4DE2F52BF5E05AB47BA1E4A6F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/3/3TSoftwareLabs/Studio3T/2025.12.1/3TSoftwareLabs.Studio3T.locale.en-US.yaml b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.1/3TSoftwareLabs.Studio3T.locale.en-US.yaml new file mode 100644 index 0000000000000..949931f30b953 --- /dev/null +++ b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.1/3TSoftwareLabs.Studio3T.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: 3TSoftwareLabs.Studio3T +PackageVersion: 2025.12.1 +PackageLocale: en-US +Publisher: 3T Software Labs +PublisherUrl: https://studio3t.com/ +PublisherSupportUrl: https://studio3t.com/feedback/ +PrivacyUrl: https://studio3t.com/privacy-policy/ +Author: 3T Software Labs Limited +PackageName: Studio 3T +PackageUrl: https://studio3t.com/download/ +License: Proprietary +LicenseUrl: https://files.studio3t.com/eula/eula.pdf +Copyright: © 2024 3T Software Labs Ltd. All rights reserved. +ShortDescription: The Ultimate GUI for MongoDB +Tags: +- database +- db +- mongodb +- nosql +ReleaseNotes: |- + Fix: Application Menu - Fixed an issue with the Database menu always being disabled and the GridFS menu leading to some application crashes. + Fix: AI Helper - AI Helper now correctly applies configured Proxy settings. +ReleaseNotesUrl: https://studio3t.com/whats-new/release-2025-12/ +PurchaseUrl: https://studio3t.com/buy/ +Documentations: +- DocumentLabel: Knowledge Base + DocumentUrl: https://studio3t.com/knowledge-base/ +- DocumentLabel: FAQ + DocumentUrl: https://studio3t.com/faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/3/3TSoftwareLabs/Studio3T/2025.12.1/3TSoftwareLabs.Studio3T.locale.zh-CN.yaml b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.1/3TSoftwareLabs.Studio3T.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6ed55d9fb5fb2 --- /dev/null +++ b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.1/3TSoftwareLabs.Studio3T.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: 3TSoftwareLabs.Studio3T +PackageVersion: 2025.12.1 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: MongoDB 的终极图形用户界面 +Tags: +- mongodb +- nosql +- 数据库 +ReleaseNotesUrl: https://studio3t.com/whats-new/release-2025-12/ +Documentations: +- DocumentLabel: 知识库 + DocumentUrl: https://studio3t.com/knowledge-base/ +- DocumentLabel: 常见问题 + DocumentUrl: https://studio3t.com/faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/3/3TSoftwareLabs/Studio3T/2025.12.1/3TSoftwareLabs.Studio3T.yaml b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.1/3TSoftwareLabs.Studio3T.yaml new file mode 100644 index 0000000000000..2763fa9f5f22b --- /dev/null +++ b/manifests/3/3TSoftwareLabs/Studio3T/2025.12.1/3TSoftwareLabs.Studio3T.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: 3TSoftwareLabs.Studio3T +PackageVersion: 2025.12.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/7/7S2P/Effie/6.0.1/7S2P.Effie.installer.yaml b/manifests/7/7S2P/Effie/6.1.3/7S2P.Effie.installer.yaml similarity index 80% rename from manifests/7/7S2P/Effie/6.0.1/7S2P.Effie.installer.yaml rename to manifests/7/7S2P/Effie/6.1.3/7S2P.Effie.installer.yaml index 84980111c91bf..6469486b8d561 100644 --- a/manifests/7/7S2P/Effie/6.0.1/7S2P.Effie.installer.yaml +++ b/manifests/7/7S2P/Effie/6.1.3/7S2P.Effie.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: 7S2P.Effie -PackageVersion: 6.0.1 +PackageVersion: 6.1.3 InstallerType: inno Scope: machine UpgradeBehavior: install @@ -16,7 +16,7 @@ InstallationMetadata: DefaultInstallLocation: '%ProgramFiles%\Effie App' Installers: - Architecture: x86 - InstallerUrl: https://download.effie.pro/effie/effieapp_setup_6.0.1.exe - InstallerSha256: EFCFDA2F565ADB14A17DDB0A94BDC23CF9B39A15623C91C5BFC88E936AD86C9C + InstallerUrl: https://download.effie.pro/effie/effieapp_setup_6.1.3.exe + InstallerSha256: 91F9BC43FB0FCE56AB972979A6B6B97A8E1F6F4D0C6AD6E1C264BEE82A11F308 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/7/7S2P/Effie/6.0.1/7S2P.Effie.locale.en-US.yaml b/manifests/7/7S2P/Effie/6.1.3/7S2P.Effie.locale.en-US.yaml similarity index 94% rename from manifests/7/7S2P/Effie/6.0.1/7S2P.Effie.locale.en-US.yaml rename to manifests/7/7S2P/Effie/6.1.3/7S2P.Effie.locale.en-US.yaml index e6a2839168d74..9ff8105f16095 100644 --- a/manifests/7/7S2P/Effie/6.0.1/7S2P.Effie.locale.en-US.yaml +++ b/manifests/7/7S2P/Effie/6.1.3/7S2P.Effie.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: 7S2P.Effie -PackageVersion: 6.0.1 +PackageVersion: 6.1.3 PackageLocale: en-US Publisher: 7S2P Inc. PublisherUrl: https://www.effie.pro diff --git a/manifests/7/7S2P/Effie/6.0.1/7S2P.Effie.locale.zh-CN.yaml b/manifests/7/7S2P/Effie/6.1.3/7S2P.Effie.locale.zh-CN.yaml similarity index 94% rename from manifests/7/7S2P/Effie/6.0.1/7S2P.Effie.locale.zh-CN.yaml rename to manifests/7/7S2P/Effie/6.1.3/7S2P.Effie.locale.zh-CN.yaml index 515e5f7b6504d..7d49affc26f34 100644 --- a/manifests/7/7S2P/Effie/6.0.1/7S2P.Effie.locale.zh-CN.yaml +++ b/manifests/7/7S2P/Effie/6.1.3/7S2P.Effie.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: 7S2P.Effie -PackageVersion: 6.0.1 +PackageVersion: 6.1.3 PackageLocale: zh-CN Publisher: 7S2P Inc. PublisherUrl: https://www.effie.pro diff --git a/manifests/7/7S2P/Effie/6.0.1/7S2P.Effie.yaml b/manifests/7/7S2P/Effie/6.1.3/7S2P.Effie.yaml similarity index 88% rename from manifests/7/7S2P/Effie/6.0.1/7S2P.Effie.yaml rename to manifests/7/7S2P/Effie/6.1.3/7S2P.Effie.yaml index 0d44636c26bcd..551b9d4bda531 100644 --- a/manifests/7/7S2P/Effie/6.0.1/7S2P.Effie.yaml +++ b/manifests/7/7S2P/Effie/6.1.3/7S2P.Effie.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: 7S2P.Effie -PackageVersion: 6.0.1 +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/7/7zip/7zip/25.00/7zip.7zip.installer.yaml b/manifests/7/7zip/7zip/25.00/7zip.7zip.installer.yaml new file mode 100644 index 0000000000000..5e4a168141b6d --- /dev/null +++ b/manifests/7/7zip/7zip/25.00/7zip.7zip.installer.yaml @@ -0,0 +1,123 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: 7zip.7zip +PackageVersion: "25.00" +Scope: machine +UpgradeBehavior: install +Commands: +- 7z +FileExtensions: +- "001" +- 7z +- apfs +- arj +- bz2 +- bzip2 +- cab +- cpio +- deb +- dmg +- esd +- fat +- gz +- gzip +- hfs +- iso +- lha +- lzh +- lzma +- ntfs +- rar +- rpm +- squashfs +- swm +- tar +- taz +- tbz +- tbz2 +- tgz +- tpz +- txz +- tzst +- vhd +- vhdx +- wim +- xar +- xz +- z +- zip +- zst +ReleaseDate: 2025-07-05 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerType: exe + InstallerUrl: https://7-zip.org/a/7z2500.exe + InstallerSha256: 3B7DCD86A17A2C4DEBAE0417DD98BB7467A69184357A23F6A3EE052356219720 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + InstallLocation: /D="" + ProductCode: 7-Zip +- Architecture: x64 + InstallerType: exe + InstallerUrl: https://7-zip.org/a/7z2500-x64.exe + InstallerSha256: 7B67375B2B303E05D2989F23E986126EDA67435C71231FA4B0BDAEB7A619A0A6 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + InstallLocation: /D="" + ProductCode: 7-Zip +- Architecture: arm + InstallerType: exe + InstallerUrl: https://7-zip.org/a/7z2500-arm.exe + InstallerSha256: 4F0C462793D722DC291C7626018CB58AC07972839F310B21976EDA86FAA907FA + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + InstallLocation: /D="" + ProductCode: 7-Zip +- Architecture: arm64 + InstallerType: exe + InstallerUrl: https://7-zip.org/a/7z2500-arm64.exe + InstallerSha256: 28E5543519E71FA37F83DF5A4D529387D255C67F3FE96CD24EA7E643DFC1355F + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + InstallLocation: /D="" + ProductCode: 7-Zip +- Architecture: x86 + InstallerType: wix + InstallerUrl: https://7-zip.org/a/7z2500.msi + InstallerSha256: 61FE4D6BE2A2E445A5B809F0BB27A741DD185511880596F0BDC05FC4903AB795 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{23170F69-40C1-2701-2500-000001000000}' + AppsAndFeaturesEntries: + - ProductCode: '{23170F69-40C1-2701-2500-000001000000}' + UpgradeCode: '{23170F69-40C1-2701-0000-000004000000}' +- Architecture: x64 + InstallerType: wix + InstallerUrl: https://7-zip.org/a/7z2500-x64.msi + InstallerSha256: B48E905ED02C530638E6173F2D743668E63561AAC1914D2723FBEE5690792272 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{23170F69-40C1-2702-2500-000001000000}' + AppsAndFeaturesEntries: + - ProductCode: '{23170F69-40C1-2702-2500-000001000000}' + UpgradeCode: '{23170F69-40C1-2702-0000-000004000000}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/7/7zip/7zip/25.00/7zip.7zip.locale.en-US.yaml b/manifests/7/7zip/7zip/25.00/7zip.7zip.locale.en-US.yaml new file mode 100644 index 0000000000000..6e77e8d1d9500 --- /dev/null +++ b/manifests/7/7zip/7zip/25.00/7zip.7zip.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: 7zip.7zip +PackageVersion: "25.00" +PackageLocale: en-US +Publisher: Igor Pavlov +PublisherUrl: https://7-zip.org/ +PublisherSupportUrl: https://7-zip.org/support.html +Author: Igor Pavlov +PackageName: 7-Zip +PackageUrl: https://7-zip.org/ +License: LGPL-2.1 +LicenseUrl: https://7-zip.org/license.txt +Copyright: Copyright (C) 1999-2024 Igor Pavlov. +ShortDescription: 7-Zip is a file archiver with a high compression ratio. +Moniker: 7zip +Tags: +- archive +- archiver +- compress +- compression +- decompress +- decompression +- extract +- extractor +- unachive +- unachiver +- unzip +- zip +ReleaseNotes: |- + - 7-Zip for Windows can now use more than 64 CPU threads for compression to zip/7z/xz archives and for the 7-Zip benchmark. If there are more than one processor group in Windows (on systems with more than 64 cpu threads), 7-Zip distributes running CPU threads across different processor groups. + - bzip2 compression speed was increased by 15-40%. + - deflate (zip/gz) compression speed was increased by 1-3%. + - improved support for zip, cpio and fat archives. + - fixed some bugs and vulnerabilities. +ReleaseNotesUrl: https://github.com/ip7z/7zip/releases/tag/25.00 +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://7-zip.org/faq.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/7/7zip/7zip/25.00/7zip.7zip.locale.zh-CN.yaml b/manifests/7/7zip/7zip/25.00/7zip.7zip.locale.zh-CN.yaml new file mode 100644 index 0000000000000..37ab94b2c2bf1 --- /dev/null +++ b/manifests/7/7zip/7zip/25.00/7zip.7zip.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: 7zip.7zip +PackageVersion: "25.00" +PackageLocale: zh-CN +Publisher: Igor Pavlov +PublisherUrl: https://sparanoid.com/lab/7z/ +PublisherSupportUrl: https://sparanoid.com/lab/7z/support.html +Author: Igor Pavlov +PackageName: 7-Zip +PackageUrl: https://sparanoid.com/lab/7z/ +License: LGPL-2.1 +LicenseUrl: https://github.com/sparanoid/7z/blob/master/zh-cn/License.txt +Copyright: Copyright (C) 1999-2024 Igor Pavlov. +ShortDescription: 7-Zip 是一款拥有极高压缩比的开源压缩软件。 +Tags: +- 压缩 +- 归档 +- 打包 +- 提取 +- 解包 +- 解压 +ReleaseNotesUrl: https://github.com/ip7z/7zip/releases/tag/25.00 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://sparanoid.com/lab/7z/faq.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/7/7zip/7zip/25.00/7zip.7zip.yaml b/manifests/7/7zip/7zip/25.00/7zip.7zip.yaml new file mode 100644 index 0000000000000..dca1e7e6a5140 --- /dev/null +++ b/manifests/7/7zip/7zip/25.00/7zip.7zip.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: 7zip.7zip +PackageVersion: "25.00" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/8/8x8/Work/8.24.2/8x8.Work.installer.yaml b/manifests/8/8x8/Work/8.24.2/8x8.Work.installer.yaml new file mode 100644 index 0000000000000..4bfd935b93049 --- /dev/null +++ b/manifests/8/8x8/Work/8.24.2/8x8.Work.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: 8x8.Work +PackageVersion: 8.24.2 +UpgradeBehavior: install +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://work-desktop-assets.8x8.com/prod-publish/ga/work-64-msi-v8.24.2-2.msi + InstallerSha256: C71BE4DE9E2EB37136E0EEE9D4EFF437EF0F3488D816BA63983B8AB41DCB01A6 + InstallerSwitches: + InstallLocation: APPLICATIONROOTDIRECTORY="" + ProductCode: '{15F49310-CA3D-42C3-9C96-31C790D23F3E}' + AppsAndFeaturesEntries: + - DisplayVersion: 8.24.2.2 + ProductCode: '{15F49310-CA3D-42C3-9C96-31C790D23F3E}' + UpgradeCode: '{66F8B350-94E0-43AF-9D26-C2385B310C96}' +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://work-desktop-assets.8x8.com/prod-publish/ga/work-64-exe-v8.24.2-2.exe + InstallerSha256: 71A0C4104DA2E62E0402EFE4C1FF0381BC09215EF88DCFE2C8E7A0157F8362B2 + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: 8x8-Work + AppsAndFeaturesEntries: + - DisplayVersion: 8.24.2-b2 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/8/8x8/Work/8.24.2/8x8.Work.locale.en-US.yaml b/manifests/8/8x8/Work/8.24.2/8x8.Work.locale.en-US.yaml new file mode 100644 index 0000000000000..2b68ab692fa24 --- /dev/null +++ b/manifests/8/8x8/Work/8.24.2/8x8.Work.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: 8x8.Work +PackageVersion: 8.24.2 +PackageLocale: en-US +Publisher: 8x8 Inc. +PublisherUrl: https://www.8x8.com/ +PublisherSupportUrl: https://support.8x8.com/ +PrivacyUrl: https://www.8x8.com/terms-and-conditions/privacy-policy +Author: 8x8 Inc. +PackageName: 8x8 Work +PackageUrl: https://support.8x8.com/business-phone/voice/work-desktop/download-8x8-work-for-desktop +License: Proprietary +LicenseUrl: https://www.8x8.com/terms-and-conditions +Copyright: © 2009-2024 8x8 Inc. All rights reserved. +ShortDescription: All your essential business communications brought together in one simple app. +Description: With 8x8 Work for Desktop (formerly known as the Virtual Office desktop app), stay connected with all your colleagues and business contacts, and collaborate more efficiently than ever. Place and manage calls flexibly, chat with contacts, schedule and conduct productive meetings within your company or with external participants, and much more. +Moniker: 8x8 +Tags: +- bussiness +- collaborate +- collaboration +- comunication +- conference +- crm +- customer +- customer-service +- enterprise +- meeting +- oa +- office +- saas +- team +ReleaseNotesUrl: https://docs.8x8.com/8x8WebHelp/8x8-work-for-desktop/Content/workd/what-is-new.htm +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/8/8x8/Work/8.24.2/8x8.Work.locale.zh-CN.yaml b/manifests/8/8x8/Work/8.24.2/8x8.Work.locale.zh-CN.yaml new file mode 100644 index 0000000000000..68d33aad67058 --- /dev/null +++ b/manifests/8/8x8/Work/8.24.2/8x8.Work.locale.zh-CN.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: 8x8.Work +PackageVersion: 8.24.2 +PackageLocale: zh-CN +Publisher: 8x8 Inc. +PublisherUrl: https://www.8x8.com/ +PublisherSupportUrl: https://support.8x8.com/ +PrivacyUrl: https://www.8x8.com/terms-and-conditions/privacy-policy +Author: 8x8 Inc. +PackageName: 8x8 Work +PackageUrl: https://support.8x8.com/business-phone/voice/work-desktop/download-8x8-work-for-desktop +License: 专有软件 +LicenseUrl: https://www.8x8.com/terms-and-conditions +Copyright: © 2009-2024 8x8 Inc. All rights reserved. +ShortDescription: 在一个简单的应用中汇集所有重要的业务通讯。 +Description: 使用 8x8 Work for Desktop(前身为 Virtual Office desktop app),与所有同事和业务联系人保持联系,比以往任何时候都更高效地协作。灵活拨打和管理电话,与联系人聊天,在公司内部或与外部与会者安排和召开高效会议,等等。 +Tags: +- crm +- oa +- saas +- 企业 +- 会议 +- 公司 +- 办公 +- 协作 +- 协同 +- 商务 +- 团队 +- 客户 +- 客服 +- 文档 +- 沟通 +ReleaseNotesUrl: https://docs.8x8.com/8x8WebHelp/8x8-work-for-desktop/Content/workd/what-is-new.htm +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/8/8x8/Work/8.24.2/8x8.Work.yaml b/manifests/8/8x8/Work/8.24.2/8x8.Work.yaml new file mode 100644 index 0000000000000..f8bd5ba7a1b14 --- /dev/null +++ b/manifests/8/8x8/Work/8.24.2/8x8.Work.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: 8x8.Work +PackageVersion: 8.24.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/A-SIT/PDF-Over/4.4.6/A-SIT.PDF-Over.installer.yaml b/manifests/a/A-SIT/PDF-Over/4.4.6/A-SIT.PDF-Over.installer.yaml new file mode 100644 index 0000000000000..a8932ac8de5f0 --- /dev/null +++ b/manifests/a/A-SIT/PDF-Over/4.4.6/A-SIT.PDF-Over.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: A-SIT.PDF-Over +PackageVersion: 4.4.6 +InstallerType: msi +Scope: machine +InstallerSwitches: + InstallLocation: APPDIR="" +UpgradeBehavior: install +ProductCode: '{1E6C6408-266A-4C13-9B74-13AE22202E8D}' +AppsAndFeaturesEntries: +- ProductCode: '{1E6C6408-266A-4C13-9B74-13AE22202E8D}' + UpgradeCode: '{4F146EA4-79F9-4873-9A4C-A66A525AF62F}' + InstallerType: msi +Installers: +- Architecture: x64 + InstallerUrl: https://technology.a-sit.at/download/pdf-over-win/?version=4.4.6 + InstallerSha256: 0B8BD23647435C206F670FAE6BEFD345EEA78A72B9A1EE1A8FF99D3E24281E2C +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/a/A-SIT/PDF-Over/4.4.6/A-SIT.PDF-Over.locale.en-US.yaml b/manifests/a/A-SIT/PDF-Over/4.4.6/A-SIT.PDF-Over.locale.en-US.yaml new file mode 100644 index 0000000000000..df5e7035becbf --- /dev/null +++ b/manifests/a/A-SIT/PDF-Over/4.4.6/A-SIT.PDF-Over.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: A-SIT.PDF-Over +PackageVersion: 4.4.6 +PackageLocale: en-US +Publisher: A-SIT (Secure Information Technology Center - Austria) +PublisherUrl: https://technology.a-sit.at/en/technology +PublisherSupportUrl: https://technology.a-sit.at/en/about-a-sit/contact +PrivacyUrl: https://technology.a-sit.at/en/about-a-sit/data-protection +Author: A-SIT (Secure Information Technology Center - Austria) +PackageName: PDF-Over +PackageUrl: https://technology.a-sit.at/en/pdf-over +License: EUPL-1.1 +LicenseUrl: https://technology.a-sit.at/en/terms-of-a-license +Copyright: Copyright 2022 by A-SIT Zentrum für sichere Informationstechnologie – Austria +ShortDescription: Sign your PDF documents with ease +Description: |- + Are you tired of printing, manually signing and scanning to provide a valid legal qualified signature on a digital document? + With PDF-Over and your ID Austria you can sign PDF documents with a qualified electronic signature, legally equivalent to a hand-written signature. +Tags: +- pdf +- sign +- signature +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/A-SIT/PDF-Over/4.4.6/A-SIT.PDF-Over.locale.zh-CN.yaml b/manifests/a/A-SIT/PDF-Over/4.4.6/A-SIT.PDF-Over.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5c70d2daef889 --- /dev/null +++ b/manifests/a/A-SIT/PDF-Over/4.4.6/A-SIT.PDF-Over.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: A-SIT.PDF-Over +PackageVersion: 4.4.6 +PackageLocale: zh-CN +Publisher: A-SIT (Secure Information Technology Center - Austria) +PublisherUrl: https://technology.a-sit.at/en/technology +PublisherSupportUrl: https://technology.a-sit.at/en/about-a-sit/contact +PrivacyUrl: https://technology.a-sit.at/en/about-a-sit/data-protection +Author: A-SIT (Secure Information Technology Center - Austria) +PackageName: PDF-Over +PackageUrl: https://technology.a-sit.at/en/pdf-over +License: EUPL-1.1 +LicenseUrl: https://technology.a-sit.at/en/terms-of-a-license +Copyright: Copyright 2022 by A-SIT Zentrum für sichere Informationstechnologie – Austria +ShortDescription: 轻松签署您的 PDF 文件 +Description: |- + 您是否厌倦了依靠打印、手动签名和扫描,从而在电子文档上提供有效合法的合格签名? + 借助 PDF-Over 和您的 ID Austria,您可以使用合格的电子签名签署 PDF 文档,在法律上等同于手写签名。 +Tags: +- pdf +- 签名 +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/a/A-SIT/PDF-Over/4.4.6/A-SIT.PDF-Over.yaml b/manifests/a/A-SIT/PDF-Over/4.4.6/A-SIT.PDF-Over.yaml new file mode 100644 index 0000000000000..9e91956a5f9bb --- /dev/null +++ b/manifests/a/A-SIT/PDF-Over/4.4.6/A-SIT.PDF-Over.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: A-SIT.PDF-Over +PackageVersion: 4.4.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/A2-Ai/rv/0.10.0/A2-Ai.rv.installer.yaml b/manifests/a/A2-Ai/rv/0.10.0/A2-Ai.rv.installer.yaml new file mode 100644 index 0000000000000..9ac0867014eee --- /dev/null +++ b/manifests/a/A2-Ai/rv/0.10.0/A2-Ai.rv.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: A2-Ai.rv +PackageVersion: 0.10.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: rv.exe +Commands: +- rv +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/A2-ai/rv/releases/download/v0.10.0/rv-v0.10.0-x86_64-pc-windows-msvc.zip + InstallerSha256: 6FFCFB6D8D7A99365A49E8EF9ACD32B5623FC0A85DD841577D62237C044026AC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/A2-Ai/rv/0.10.0/A2-Ai.rv.locale.en-US.yaml b/manifests/a/A2-Ai/rv/0.10.0/A2-Ai.rv.locale.en-US.yaml new file mode 100644 index 0000000000000..f5af118e70078 --- /dev/null +++ b/manifests/a/A2-Ai/rv/0.10.0/A2-Ai.rv.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: A2-Ai.rv +PackageVersion: 0.10.0 +PackageLocale: en-US +Publisher: A2-Ai +PublisherUrl: https://a2-ai.com/ +PublisherSupportUrl: https://github.com/A2-ai/rv/issues +Author: A2-Ai LLC +PackageName: rv +PackageUrl: https://github.com/A2-ai/rv +License: MIT +LicenseUrl: https://github.com/A2-ai/rv/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 A2-Ai +ShortDescription: A new way to manage and install your R packages in a reproducible, fast, and declarative way. +Tags: +- r +ReleaseNotes: |- + Welcome to this new release of rv v0.10.0! + All artifacts are signed with this repos identity using Sigstore. + You can verify the signatures using the GitHub CLI. + gh attestation verify --owner A2-ai + Full Changelog: https://github.com/A2-ai/rv/compare/v0.9.0...v0.10.0 +ReleaseNotesUrl: https://github.com/A2-ai/rv/releases/tag/v0.10.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/A2-Ai/rv/0.10.0/A2-Ai.rv.locale.zh-CN.yaml b/manifests/a/A2-Ai/rv/0.10.0/A2-Ai.rv.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2e4eb21e2a6bb --- /dev/null +++ b/manifests/a/A2-Ai/rv/0.10.0/A2-Ai.rv.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: A2-Ai.rv +PackageVersion: 0.10.0 +PackageLocale: zh-CN +ShortDescription: 可重现、快速、声明式的 R 语言包管理和安装。 +ReleaseNotesUrl: https://github.com/A2-ai/rv/releases/tag/v0.10.0 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/A2-Ai/rv/0.10.0/A2-Ai.rv.yaml b/manifests/a/A2-Ai/rv/0.10.0/A2-Ai.rv.yaml new file mode 100644 index 0000000000000..800583309ff09 --- /dev/null +++ b/manifests/a/A2-Ai/rv/0.10.0/A2-Ai.rv.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: A2-Ai.rv +PackageVersion: 0.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.00/AFAS.ProfitCommunicationCenter.6.locale.zh-CN.yaml b/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.00/AFAS.ProfitCommunicationCenter.6.locale.zh-CN.yaml deleted file mode 100644 index b5592502fa3ab..0000000000000 --- a/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.00/AFAS.ProfitCommunicationCenter.6.locale.zh-CN.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: AFAS.ProfitCommunicationCenter.6 -PackageVersion: 2.9.1400.00 -PackageLocale: zh-CN -# Publisher: -# PublisherUrl: -# PublisherSupportUrl: -# PrivacyUrl: -# Author: -# PackageName: -# PackageUrl: -License: 专有软件 -# LicenseUrl: -# Copyright: -# CopyrightUrl: -ShortDescription: Profit Communication Center(PCC)是 Profit 与本地 Microsoft Office 之间的桥梁。通过它,您可以轻松地在本地计算机上向 Profit 提交、打开和编辑文件。 -# Description: -# Moniker: -# Tags: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.00/AFAS.ProfitCommunicationCenter.6.yaml b/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.00/AFAS.ProfitCommunicationCenter.6.yaml deleted file mode 100644 index fe13332e601a7..0000000000000 --- a/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.00/AFAS.ProfitCommunicationCenter.6.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: AFAS.ProfitCommunicationCenter.6 -PackageVersion: 2.9.1400.00 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.00/AFAS.ProfitCommunicationCenter.6.installer.yaml b/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.600/AFAS.ProfitCommunicationCenter.6.installer.yaml similarity index 89% rename from manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.00/AFAS.ProfitCommunicationCenter.6.installer.yaml rename to manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.600/AFAS.ProfitCommunicationCenter.6.installer.yaml index 13c1ece061787..b4af227171c17 100644 --- a/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.00/AFAS.ProfitCommunicationCenter.6.installer.yaml +++ b/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.600/AFAS.ProfitCommunicationCenter.6.installer.yaml @@ -1,76 +1,76 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: AFAS.ProfitCommunicationCenter.6 -PackageVersion: 2.9.1400.00 -InstallerType: exe # InstallShield -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 -FileExtensions: -- cvpdf -- poci -- ptaxrep -ProductCode: '{80dbef4e-0da5-4f0c-8ee3-082c89262f86}' -AppsAndFeaturesEntries: -- InstallerType: msi -ElevationRequirement: elevationRequired -Installers: -- Architecture: x64 - InstallerUrl: https://profitdownload.afas.nl/download/PCC/PccSetup6.00.exe - InstallerSha256: CF26776F9C74A6C463D704710FCE2706A278DDA91F4CC4685F5BB1C6082D3AAC -ManifestType: installer -ManifestVersion: 1.10.0 +# Automatically updated by the winget bot at 2025/Jun/25 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AFAS.ProfitCommunicationCenter.6 +PackageVersion: 2.9.1400.600 +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 +FileExtensions: +- cvpdf +- poci +- ptaxrep +ProductCode: '{80dbef4e-0da5-4f0c-8ee3-082c89262f86}' +AppsAndFeaturesEntries: +- InstallerType: msi +ElevationRequirement: elevationRequired +Installers: +- Architecture: x64 + InstallerUrl: https://profitdownload.afas.nl/download/PCC/PccSetup6.00.exe + InstallerSha256: BB44B0C6C7EB76F8FC139493089FFE9EAA64422167EA47CFAF7628E2FCE662F9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.00/AFAS.ProfitCommunicationCenter.6.locale.en-US.yaml b/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.600/AFAS.ProfitCommunicationCenter.6.locale.en-US.yaml similarity index 75% rename from manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.00/AFAS.ProfitCommunicationCenter.6.locale.en-US.yaml rename to manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.600/AFAS.ProfitCommunicationCenter.6.locale.en-US.yaml index ff1f5c9b6de5a..1ef0b2754ad36 100644 --- a/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.00/AFAS.ProfitCommunicationCenter.6.locale.en-US.yaml +++ b/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.600/AFAS.ProfitCommunicationCenter.6.locale.en-US.yaml @@ -1,28 +1,18 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: AFAS.ProfitCommunicationCenter.6 -PackageVersion: 2.9.1400.00 -PackageLocale: en-US -Publisher: AFAS Software -PublisherUrl: https://www.afas.nl/ -PublisherSupportUrl: https://help.afas.nl/ -PrivacyUrl: https://www.afas.nl/privacy-statement -Author: AFAS Software B.V. -PackageName: Profit Communication Center -PackageUrl: https://klant.afas.nl/update-center/downloads -License: Proprietary -# LicenseUrl: -Copyright: Copyright (C) AFAS Software B.V. 1998-2021 -# CopyrightUrl: -ShortDescription: The Profit Communication Center (PCC) is a link between Profit and your local Microsoft Office. This allows you to easily submit, open, and edit files on your local computer within Profit. -# Description: -# Moniker: -# Tags: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.10.0 +# Automatically updated by the winget bot at 2025/Jun/25 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AFAS.ProfitCommunicationCenter.6 +PackageVersion: 2.9.1400.600 +PackageLocale: en-US +Publisher: AFAS Software +PublisherUrl: https://www.afas.nl/ +PublisherSupportUrl: https://help.afas.nl/ +PrivacyUrl: https://www.afas.nl/privacy-statement +Author: AFAS Software B.V. +PackageName: Profit Communication Center +PackageUrl: https://klant.afas.nl/update-center/downloads +License: Proprietary +Copyright: Copyright (C) AFAS Software B.V. 1998-2021 +ShortDescription: The Profit Communication Center (PCC) is a link between Profit and your local Microsoft Office. This allows you to easily submit, open, and edit files on your local computer within Profit. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.600/AFAS.ProfitCommunicationCenter.6.locale.zh-CN.yaml b/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.600/AFAS.ProfitCommunicationCenter.6.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8a917e9e8e713 --- /dev/null +++ b/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.600/AFAS.ProfitCommunicationCenter.6.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Automatically updated by the winget bot at 2025/Jun/25 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: AFAS.ProfitCommunicationCenter.6 +PackageVersion: 2.9.1400.600 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: Profit Communication Center(PCC)是 Profit 与本地 Microsoft Office 之间的桥梁。通过它,您可以轻松地在本地计算机上向 Profit 提交、打开和编辑文件。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.600/AFAS.ProfitCommunicationCenter.6.yaml b/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.600/AFAS.ProfitCommunicationCenter.6.yaml new file mode 100644 index 0000000000000..e725818ed40ca --- /dev/null +++ b/manifests/a/AFAS/ProfitCommunicationCenter/6/2.9.1400.600/AFAS.ProfitCommunicationCenter.6.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jun/25 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: AFAS.ProfitCommunicationCenter.6 +PackageVersion: 2.9.1400.600 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AGILELEAP/SlideBrowser/1.0.3/AGILELEAP.SlideBrowser.installer.yaml b/manifests/a/AGILELEAP/SlideBrowser/1.0.3/AGILELEAP.SlideBrowser.installer.yaml new file mode 100644 index 0000000000000..80e41bda6f2f3 --- /dev/null +++ b/manifests/a/AGILELEAP/SlideBrowser/1.0.3/AGILELEAP.SlideBrowser.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: AGILELEAP.SlideBrowser +PackageVersion: 1.0.3 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 25f1270b-9578-55ee-a444-961aa441e74e +ReleaseDate: 2025-07-05 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/dream2023/slide-browser/releases/download/v1.0.3/slide-browser-setup.exe + InstallerSha256: D24359259CDD8D2498F04BB5A870C13E2204DDA0E8462BE39C6001F73BE7AEE8 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/dream2023/slide-browser/releases/download/v1.0.3/slide-browser-setup.exe + InstallerSha256: D24359259CDD8D2498F04BB5A870C13E2204DDA0E8462BE39C6001F73BE7AEE8 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AGILELEAP/SlideBrowser/1.0.3/AGILELEAP.SlideBrowser.locale.en-US.yaml b/manifests/a/AGILELEAP/SlideBrowser/1.0.3/AGILELEAP.SlideBrowser.locale.en-US.yaml new file mode 100644 index 0000000000000..d03f026c05efa --- /dev/null +++ b/manifests/a/AGILELEAP/SlideBrowser/1.0.3/AGILELEAP.SlideBrowser.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AGILELEAP.SlideBrowser +PackageVersion: 1.0.3 +PackageLocale: en-US +Publisher: AGILELEAP Inc. +PublisherUrl: https://deepthinkapps.com/ +PublisherSupportUrl: https://tally.so/r/npR7e1 +PrivacyUrl: https://deepthinkapps.com/privacy/ +Author: AGILELEAP Inc. +PackageName: Slide Browser +PackageUrl: https://deepthinkapps.com/apps/slide-browser/ +License: Proprietary +LicenseUrl: https://deepthinkapps.com/terms/ +Copyright: © 2025 AGILELEAP Inc. All rights reserved. +CopyrightUrl: https://deepthinkapps.com/terms/ +ShortDescription: A sleek, lightweight floating browser +Description: SlideBrowser is a sleek, lightweight floating browser designed for quick access to information, task management, and note-taking, embodying the 'use and go' philosophy for enhanced productivity. +Tags: +- browser +- internet +- web +- webpage +ReleaseNotesUrl: https://github.com/dream2023/slide-browser/releases/tag/v1.0.3 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AGILELEAP/SlideBrowser/1.0.3/AGILELEAP.SlideBrowser.locale.zh-CN.yaml b/manifests/a/AGILELEAP/SlideBrowser/1.0.3/AGILELEAP.SlideBrowser.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2e719cdbfa1b1 --- /dev/null +++ b/manifests/a/AGILELEAP/SlideBrowser/1.0.3/AGILELEAP.SlideBrowser.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: AGILELEAP.SlideBrowser +PackageVersion: 1.0.3 +PackageLocale: zh-CN +PublisherUrl: https://deepthinkapps.com/zh/ +PrivacyUrl: https://deepthinkapps.com/zh/privacy/ +PackageUrl: https://deepthinkapps.com/zh/apps/slide-browser/ +License: 专有软件 +LicenseUrl: https://deepthinkapps.com/zh/terms/ +CopyrightUrl: https://deepthinkapps.com/zh/terms/ +ShortDescription: 一个轻量、简单的滑动浏览器 +Description: SlideBrowser 是一款时尚、轻量级的浮动浏览器,帮助您快速获取信息、管理待办事项并记笔记,而不会打断您的工作流程,真正体现了“即用即走”的理念,以提升效率。 +Tags: +- 互联网 +- 浏览器 +- 网页 +ReleaseNotesUrl: https://github.com/dream2023/slide-browser/releases/tag/v1.0.3 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AGILELEAP/SlideBrowser/1.0.3/AGILELEAP.SlideBrowser.yaml b/manifests/a/AGILELEAP/SlideBrowser/1.0.3/AGILELEAP.SlideBrowser.yaml new file mode 100644 index 0000000000000..345364a100a5d --- /dev/null +++ b/manifests/a/AGILELEAP/SlideBrowser/1.0.3/AGILELEAP.SlideBrowser.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: AGILELEAP.SlideBrowser +PackageVersion: 1.0.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AGProjects/Blink/6.0.3/AGProjects.Blink.installer.yaml b/manifests/a/AGProjects/Blink/6.0.3/AGProjects.Blink.installer.yaml new file mode 100644 index 0000000000000..d99b6be58e1d6 --- /dev/null +++ b/manifests/a/AGProjects/Blink/6.0.3/AGProjects.Blink.installer.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AGProjects.Blink +PackageVersion: 6.0.3 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{AA4328C3-006F-49F0-94F4-0BA659FCB6A5}_is1' +ReleaseDate: 2025-06-26 +AppsAndFeaturesEntries: +- ProductCode: '{AA4328C3-006F-49F0-94F4-0BA659FCB6A5}_is1' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Blink' +Dependencies: + PackageDependencies: + - PackageIdentifier: Apple.Bonjour + MinimumVersion: 2.0.2.0 +Installers: +- Architecture: x86 + InstallerUrl: https://blink.sipthor.net/download.phtml?download&os=nt + InstallerSha256: D54D032402203D7DFB557E2E6962E08D96A34CA850ABC2CEDB3C02C592CC4375 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AGProjects/Blink/6.0.3/AGProjects.Blink.locale.en-US.yaml b/manifests/a/AGProjects/Blink/6.0.3/AGProjects.Blink.locale.en-US.yaml new file mode 100644 index 0000000000000..b71c345e60116 --- /dev/null +++ b/manifests/a/AGProjects/Blink/6.0.3/AGProjects.Blink.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AGProjects.Blink +PackageVersion: 6.0.3 +PackageLocale: en-US +Publisher: AG Projects +PublisherUrl: https://ag-projects.com/contact/ +PublisherSupportUrl: https://ag-projects.com/support/ +PackageName: Blink +PackageUrl: https://icanblink.com/download/ +License: GPL-3.0 +LicenseUrl: https://github.com/AGProjects/blink-qt5/blob/master/LICENSE +Copyright: Copyright 2010-2021 AG Projects (https://ag-projects.com) +CopyrightUrl: https://github.com/AGProjects/blink-qt5/blob/master/LICENSE +ShortDescription: A state of the art, easy to use SIP client +Description: |- + Blink is the best real-time communications client using the SIP protocol. + You can use it with many SIP providers, on the LAN using Bonjour and with SIP2SIP, a free service. +ReleaseNotes: |- + ## Version 6.0.3 + + February 28th, 2025 + + - Fix requesting Sylk API token + - Fixed updater +ReleaseNotesUrl: https://icanblink.com/changelog-windows/#:~:text=Version%206.0.3 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AGProjects/Blink/6.0.3/AGProjects.Blink.yaml b/manifests/a/AGProjects/Blink/6.0.3/AGProjects.Blink.yaml new file mode 100644 index 0000000000000..943f929955d64 --- /dev/null +++ b/manifests/a/AGProjects/Blink/6.0.3/AGProjects.Blink.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: AGProjects.Blink +PackageVersion: 6.0.3 +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 new file mode 100644 index 0000000000000..6e987c3b045c5 --- /dev/null +++ b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.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: AGTEK.Gradework +PackageVersion: "12.0.0.5" +InstallerType: exe +Scope: machine +InstallerSwitches: + Silent: /hide + SilentWithProgress: /silent + InstallLocation: /InstallDir="" +UpgradeBehavior: install +FileExtensions: +- adf +- agt +- cgo +- esw +- esz +- ppl +- rds +- rog +ProductCode: AGTEK Gradework +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x64 + InstallerUrl: https://agtek.s3.amazonaws.com/Agtek/w9S1Pt7Av1mm + 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 new file mode 100644 index 0000000000000..56fd3b5aa1ee7 --- /dev/null +++ b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.en-US.yaml @@ -0,0 +1,24 @@ +# 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 +PackageVersion: "12.0.0.5" +PackageLocale: en-US +Publisher: AGTEK +PublisherUrl: https://agtek.com/ +PublisherSupportUrl: https://agtek.com/services-support/ +PrivacyUrl: https://hexagon.com/company/divisions/geosystems/legal/privacy-notice +Author: AGTEK DEVELOPMENT COMPANY, INC. +PackageName: AGTEK Gradework +PackageUrl: https://agtek.com/services-support/product-downloads/ +License: Proprietary +LicenseUrl: https://agtek.com/eula/ +Copyright: © 2025 AGTEK - Part of Hexagon +CopyrightUrl: https://agtek.com/eula/ +ShortDescription: The complete takeoff solution +Description: Working from PDF, CAD or manual entry, Gradework allows contractors to analyze data for more accurate bids, efficient site management, and successful project completions. +Tags: +- takeoff +ReleaseNotesUrl: https://agtek.com/wp-content/uploads/2024/08/Gradework-Materials-Underground-Version-Notes-1.11.pdf +ManifestType: defaultLocale +ManifestVersion: 1.10.0 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 new file mode 100644 index 0000000000000..e43d0268ffa01 --- /dev/null +++ b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# 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 +PackageVersion: "12.0.0.5" +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 完整的土方量测算解决方案 +Description: 无论是基于 PDF、CAD 还是手动输入,Gradework 都能帮助承包商分析数据,以实现更精准的投标、更高效的现场管理以及成功的项目交付。 +Tags: +- 土方 +- 土方量 +ReleaseNotesUrl: https://agtek.com/wp-content/uploads/2024/08/Gradework-Materials-Underground-Version-Notes-1.11.pdf +ManifestType: locale +ManifestVersion: 1.10.0 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 new file mode 100644 index 0000000000000..9d7740495533a --- /dev/null +++ b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.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: AGTEK.Gradework +PackageVersion: "12.0.0.5" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 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 new file mode 100644 index 0000000000000..258e15ff9be91 --- /dev/null +++ b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.installer.yaml @@ -0,0 +1,25 @@ +# 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 +PackageVersion: "12.0.0.5" +InstallerType: exe +Scope: machine +InstallerSwitches: + Silent: /hide + SilentWithProgress: /silent + InstallLocation: /InstallDir="" +UpgradeBehavior: install +FileExtensions: +- adf +- agt +- esw +- esz +ProductCode: AGTEK Materials SA (Stand-Alone) +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x64 + InstallerUrl: https://agtek.s3.amazonaws.com/Agtek/OSrEkdiUCWNd + 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 new file mode 100644 index 0000000000000..f9ad92a89d855 --- /dev/null +++ b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.en-US.yaml @@ -0,0 +1,24 @@ +# 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 +PackageVersion: "12.0.0.5" +PackageLocale: en-US +Publisher: AGTEK +PublisherUrl: https://agtek.com/ +PublisherSupportUrl: https://agtek.com/services-support/ +PrivacyUrl: https://hexagon.com/company/divisions/geosystems/legal/privacy-notice +Author: AGTEK Development Company, Inc. +PackageName: AGTEK Materials SA (Stand-Alone) +PackageUrl: https://agtek.com/services-support/product-downloads/ +License: Proprietary +LicenseUrl: https://agtek.com/eula/ +Copyright: © 2025 AGTEK - Part of Hexagon +CopyrightUrl: https://agtek.com/eula/ +ShortDescription: Construction materials estimation +Description: Material is a takeoff software that optimizes management of construction materials with intuitive data. Integrating with the Gradework speeds up the estimation process, allowing for quick and precise calculation of the volumes and quantities of your project materials. +Tags: +- construction +- material +ManifestType: defaultLocale +ManifestVersion: 1.10.0 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 new file mode 100644 index 0000000000000..d27549447bf3b --- /dev/null +++ b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# 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 +PackageVersion: "12.0.0.5" +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 建筑材料预测 +Description: Material是一款土方量估算软件,通过直观数据优化建筑材料管理。与 Gradework 集成可加速估算流程,实现项目材料体积与数量的快速精准计算。 +Tags: +- 工程 +- 施工 +- 材料 +ManifestType: locale +ManifestVersion: 1.10.0 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 new file mode 100644 index 0000000000000..34f4dc7fbc291 --- /dev/null +++ b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.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: AGTEK.MaterialsSA +PackageVersion: "12.0.0.5" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AGTEK/Trackwork/12.0.0.5/AGTEK.Trackwork.installer.yaml b/manifests/a/AGTEK/Trackwork/12.0.0.5/AGTEK.Trackwork.installer.yaml new file mode 100644 index 0000000000000..1f2436eca3c10 --- /dev/null +++ b/manifests/a/AGTEK/Trackwork/12.0.0.5/AGTEK.Trackwork.installer.yaml @@ -0,0 +1,23 @@ +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AGTEK.Trackwork +PackageVersion: "12.0.0.5" +InstallerType: exe +Scope: machine +InstallerSwitches: + Silent: /hide + SilentWithProgress: /silent + InstallLocation: /InstallDir="" +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: AGTEK Trackwork 4D +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x64 + InstallerUrl: https://agtek.s3.amazonaws.com/Agtek/ikpzGj7tsvNe + InstallerSha256: 322AD7928600F277E18AB4202F5056CEADC245DB755FCF16C3EAC1073ED57B91 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AGTEK/Trackwork/12.0.0.5/AGTEK.Trackwork.locale.en-US.yaml b/manifests/a/AGTEK/Trackwork/12.0.0.5/AGTEK.Trackwork.locale.en-US.yaml new file mode 100644 index 0000000000000..40963c8de2647 --- /dev/null +++ b/manifests/a/AGTEK/Trackwork/12.0.0.5/AGTEK.Trackwork.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AGTEK.Trackwork +PackageVersion: "12.0.0.5" +PackageLocale: en-US +Publisher: AGTEK +PublisherUrl: https://agtek.com/ +PublisherSupportUrl: https://agtek.com/services-support/ +PrivacyUrl: https://hexagon.com/company/divisions/geosystems/legal/privacy-notice +Author: AGTEK Development Company, Inc. +PackageName: AGTEK Trackwork 4D +PackageUrl: https://agtek.com/services-support/product-downloads/ +License: Proprietary +LicenseUrl: https://agtek.com/eula/ +Copyright: © 2025 AGTEK - Part of Hexagon +CopyrightUrl: https://agtek.com/eula/ +ShortDescription: Monitor progress in real time +Description: Trackwork optimizes earthwork, models production, and monitors progress in real time to aid in scheduling equipment, supervising operations, and reconciling bid estimates. +Tags: +- construction +- earthwork +ReleaseNotesUrl: https://agtek.com/wp-content/uploads/2024/08/Trackwork-2.20-Version-Notes.pdf +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AGTEK/Trackwork/12.0.0.5/AGTEK.Trackwork.locale.zh-CN.yaml b/manifests/a/AGTEK/Trackwork/12.0.0.5/AGTEK.Trackwork.locale.zh-CN.yaml new file mode 100644 index 0000000000000..aaf2bf82fde07 --- /dev/null +++ b/manifests/a/AGTEK/Trackwork/12.0.0.5/AGTEK.Trackwork.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: AGTEK.Trackwork +PackageVersion: "12.0.0.5" +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 实时监控进度 +Description: Trackwork 优化土方作业,建模生产流程并实时监控进度,以协助设备调度、监督施工及核对投标估算。 +Tags: +- 工程 +- 施工 +ReleaseNotesUrl: https://agtek.com/wp-content/uploads/2024/08/Trackwork-2.20-Version-Notes.pdf +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AGTEK/Trackwork/12.0.0.5/AGTEK.Trackwork.yaml b/manifests/a/AGTEK/Trackwork/12.0.0.5/AGTEK.Trackwork.yaml new file mode 100644 index 0000000000000..4907021d01490 --- /dev/null +++ b/manifests/a/AGTEK/Trackwork/12.0.0.5/AGTEK.Trackwork.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: AGTEK.Trackwork +PackageVersion: "12.0.0.5" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 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 new file mode 100644 index 0000000000000..1b13bc66b7d94 --- /dev/null +++ b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.installer.yaml @@ -0,0 +1,25 @@ +# 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 +PackageVersion: "12.0.0.5" +InstallerType: exe +Scope: machine +InstallerSwitches: + Silent: /hide + SilentWithProgress: /silent + InstallLocation: /InstallDir="" +UpgradeBehavior: install +FileExtensions: +- adf +- agt +- esw +- esz +ProductCode: AGTEK Underground SA (Stand-Alone) +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x64 + InstallerUrl: https://agtek.s3.amazonaws.com/Agtek/CWM10lfSal6j + 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 new file mode 100644 index 0000000000000..b4f46eb4e334a --- /dev/null +++ b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.en-US.yaml @@ -0,0 +1,23 @@ +# 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 +PackageVersion: "12.0.0.5" +PackageLocale: en-US +Publisher: AGTEK +PublisherUrl: https://agtek.com/ +PublisherSupportUrl: https://agtek.com/services-support/ +PrivacyUrl: https://hexagon.com/company/divisions/geosystems/legal/privacy-notice +Author: AGTEK Development Company, Inc. +PackageName: AGTEK Underground SA (Stand-Alone) +PackageUrl: https://agtek.com/services-support/product-downloads/ +License: Proprietary +LicenseUrl: https://agtek.com/eula/ +Copyright: © 2025 AGTEK - Part of Hexagon +CopyrightUrl: https://agtek.com/eula/ +ShortDescription: Speed your estimates of utilities +Description: Underground is a utility estimating software that speeds up storm, sewer, and water estimates. Combining intuitive data entry with flexible reporting, Underground is integrated with Gradework to ensure you never enter data twice and can calculate trench volumes against any surface. +Tags: +- construction +ManifestType: defaultLocale +ManifestVersion: 1.10.0 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 new file mode 100644 index 0000000000000..486f7a4ad615d --- /dev/null +++ b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# 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 +PackageVersion: "12.0.0.5" +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 提升您的管网工程估算效率 +Description: Underground 是一款用于加速雨水、污水和供水工程估算的实用软件。它结合了直观的数据输入与灵活的报表功能,并与 Gradework 系统无缝集成,确保用户无需重复录入数据,并能针对任意地表计算沟槽土方量。 +Tags: +- 工程 +- 施工 +ManifestType: locale +ManifestVersion: 1.10.0 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 new file mode 100644 index 0000000000000..13190544735eb --- /dev/null +++ b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.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: AGTEK.UndergroundSA +PackageVersion: "12.0.0.5" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/ALE/Rainbow/2.149.4.0/ALE.Rainbow.installer.yaml b/manifests/a/ALE/Rainbow/2.149.4.0/ALE.Rainbow.installer.yaml deleted file mode 100644 index 2c07513709303..0000000000000 --- a/manifests/a/ALE/Rainbow/2.149.4.0/ALE.Rainbow.installer.yaml +++ /dev/null @@ -1,63 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: ALE.Rainbow -PackageVersion: 2.149.4.0 -UpgradeBehavior: install -FileExtensions: -- callto -- rainbow -- sip -- tel -ReleaseDate: 2025-03-26 -Installers: -- Architecture: x86 - InstallerType: inno - Scope: user - InstallerUrl: https://openrainbow.com/downloads/Rainbow_Installer_User_Electron_v2.149.4.0.exe - InstallerSha256: 6A6347B421D332E01FE94F2BED6CE098CC2919B74B95E783EFCCF2EEDDC0E886 - ProductCode: 09C1DE55-3466-4F99-9287-4F53FB8A7018_is1 -- Architecture: x86 - InstallerType: inno - Scope: machine - InstallerUrl: https://openrainbow.com/downloads/Rainbow_Installer_Machine_Electron_v2.149.4.0.exe - InstallerSha256: 38E21FD0AC334FC0AB8F762D69477061D99F5C618524444794F38D8FFE435FF3 - ProductCode: 1A7843C5-3352-4383-9893-2EB77C94CC46_is1 -- Architecture: x64 - InstallerType: inno - Scope: user - InstallerUrl: https://openrainbow.com/downloads/Rainbow_Installer_User_Electron_v2.149.4.0-x64.exe - InstallerSha256: FF898B6CFF036309D6AEED9D29A0943E5553995088B2E7A47C5C8ED8BEC1C18A - ProductCode: 09C1DE55-3466-4F99-9287-4F53FB8A7018_is1 -- Architecture: x64 - InstallerType: inno - Scope: machine - InstallerUrl: https://openrainbow.com/downloads/Rainbow_Installer_Machine_Electron_v2.149.4.0-x64.exe - InstallerSha256: 82F9975D64A87E2566796168EF0DA7DE491CB59DC5564610BE0CB542E511BCFC - ProductCode: 1A7843C5-3352-4383-9893-2EB77C94CC46_is1 -- Architecture: x86 - InstallerType: msi - Scope: machine - InstallerUrl: https://openrainbow.com/downloads/Rainbow_Installer_Machine_Offline_v2.149.4.0.msi - InstallerSha256: DF966988F37A37B41A23456AD58A5E4169890B5F2C90C16C631857150D23F4F2 - Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.VCRedist.2015+.x86 - ProductCode: '{08C63C3E-A75A-4ED4-9170-003E549197BE}' - AppsAndFeaturesEntries: - - ProductCode: '{08C63C3E-A75A-4ED4-9170-003E549197BE}' - UpgradeCode: '{6866FF20-0710-41B6-BC73-8467C90B8799}' -- Architecture: x64 - InstallerType: msi - Scope: machine - InstallerUrl: https://openrainbow.com/downloads/Rainbow_Installer_Machine_Offline_v2.149.4.0-x64.msi - InstallerSha256: E72197D6367870584335D0E248CC7B0E821809D58BE472E6804400A149BC7331 - Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.VCRedist.2015+.x86 - ProductCode: '{CAD973C0-A6ED-48B1-8C7F-00762F6B8A38}' - AppsAndFeaturesEntries: - - ProductCode: '{CAD973C0-A6ED-48B1-8C7F-00762F6B8A38}' - UpgradeCode: '{6866FF20-0710-41B6-BC73-8467C90B8799}' -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/a/ALE/Rainbow/2.149.4.0/ALE.Rainbow.yaml b/manifests/a/ALE/Rainbow/2.149.4.0/ALE.Rainbow.yaml deleted file mode 100644 index e1e00f0d0e8a9..0000000000000 --- a/manifests/a/ALE/Rainbow/2.149.4.0/ALE.Rainbow.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: ALE.Rainbow -PackageVersion: 2.149.4.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/a/ALE/Rainbow/2.156.2.0/ALE.Rainbow.installer.yaml b/manifests/a/ALE/Rainbow/2.156.2.0/ALE.Rainbow.installer.yaml new file mode 100644 index 0000000000000..7be389a1c7f20 --- /dev/null +++ b/manifests/a/ALE/Rainbow/2.156.2.0/ALE.Rainbow.installer.yaml @@ -0,0 +1,63 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ALE.Rainbow +PackageVersion: 2.156.2.0 +UpgradeBehavior: install +FileExtensions: +- callto +- rainbow +- sip +- tel +ReleaseDate: 2025-06-29 +Installers: +- Architecture: x86 + InstallerType: inno + Scope: user + InstallerUrl: https://openrainbow.com/downloads/Rainbow_Installer_User_Electron_v2.156.2.0.exe + InstallerSha256: 16DBD44594350409E6C93E6C87BFE694A0DE8F031696E5A9B9C0517BDEF8D193 + ProductCode: 09C1DE55-3466-4F99-9287-4F53FB8A7018_is1 +- Architecture: x86 + InstallerType: inno + Scope: machine + InstallerUrl: https://openrainbow.com/downloads/Rainbow_Installer_Machine_Electron_v2.156.2.0.exe + InstallerSha256: 7F7946EFCA87BB8EE43A8B31096EFB8C928808DE4C8CE0BFDF4791F76345FD16 + ProductCode: 1A7843C5-3352-4383-9893-2EB77C94CC46_is1 +- Architecture: x64 + InstallerType: inno + Scope: user + InstallerUrl: https://openrainbow.com/downloads/Rainbow_Installer_User_Electron_v2.156.2.0-x64.exe + InstallerSha256: 4975811A8A73D1C98DE39C8E06D1946F4A482589B619AF6784D8AB39FBB9D32E + ProductCode: 09C1DE55-3466-4F99-9287-4F53FB8A7018_is1 +- Architecture: x64 + InstallerType: inno + Scope: machine + InstallerUrl: https://openrainbow.com/downloads/Rainbow_Installer_Machine_Electron_v2.156.2.0-x64.exe + InstallerSha256: EE4519676D18129A46BB2F097AA152815978BF15543C9FD554F3CFF42EA6909C + ProductCode: 1A7843C5-3352-4383-9893-2EB77C94CC46_is1 +- Architecture: x86 + InstallerType: msi + Scope: machine + InstallerUrl: https://openrainbow.com/downloads/Rainbow_Installer_Machine_Offline_v2.156.2.0.msi + InstallerSha256: 459583D53583F08029326ACA522E186AAB2194D85091DC8D7D69D291DB979133 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 + ProductCode: '{F1CBC235-06F8-427C-B169-042CC70859C2}' + AppsAndFeaturesEntries: + - ProductCode: '{F1CBC235-06F8-427C-B169-042CC70859C2}' + UpgradeCode: '{6866FF20-0710-41B6-BC73-8467C90B8799}' +- Architecture: x64 + InstallerType: msi + Scope: machine + InstallerUrl: https://openrainbow.com/downloads/Rainbow_Installer_Machine_Offline_v2.156.2.0-x64.msi + InstallerSha256: 6D45248A7F31238B49201B995C535E88592B50DC83AC3AB4AEDF1B823234ED1E + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 + ProductCode: '{994D0693-FD4E-45EA-87F6-313D52DB9889}' + AppsAndFeaturesEntries: + - ProductCode: '{994D0693-FD4E-45EA-87F6-313D52DB9889}' + UpgradeCode: '{6866FF20-0710-41B6-BC73-8467C90B8799}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/ALE/Rainbow/2.149.4.0/ALE.Rainbow.locale.en-US.yaml b/manifests/a/ALE/Rainbow/2.156.2.0/ALE.Rainbow.locale.en-US.yaml similarity index 88% rename from manifests/a/ALE/Rainbow/2.149.4.0/ALE.Rainbow.locale.en-US.yaml rename to manifests/a/ALE/Rainbow/2.156.2.0/ALE.Rainbow.locale.en-US.yaml index 76aa32d8f7701..7ed6a6e837846 100644 --- a/manifests/a/ALE/Rainbow/2.149.4.0/ALE.Rainbow.locale.en-US.yaml +++ b/manifests/a/ALE/Rainbow/2.156.2.0/ALE.Rainbow.locale.en-US.yaml @@ -1,8 +1,8 @@ # 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: ALE.Rainbow -PackageVersion: 2.149.4.0 +PackageVersion: 2.156.2.0 PackageLocale: en-US Publisher: ALE International PublisherUrl: https://www.al-enterprise.com/ @@ -32,4 +32,4 @@ Tags: - saas - team ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/ALE/Rainbow/2.149.4.0/ALE.Rainbow.locale.zh-CN.yaml b/manifests/a/ALE/Rainbow/2.156.2.0/ALE.Rainbow.locale.zh-CN.yaml similarity index 86% rename from manifests/a/ALE/Rainbow/2.149.4.0/ALE.Rainbow.locale.zh-CN.yaml rename to manifests/a/ALE/Rainbow/2.156.2.0/ALE.Rainbow.locale.zh-CN.yaml index 7026b4a36fe18..9d977d5cdcf7b 100644 --- a/manifests/a/ALE/Rainbow/2.149.4.0/ALE.Rainbow.locale.zh-CN.yaml +++ b/manifests/a/ALE/Rainbow/2.156.2.0/ALE.Rainbow.locale.zh-CN.yaml @@ -1,8 +1,8 @@ # 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: ALE.Rainbow -PackageVersion: 2.149.4.0 +PackageVersion: 2.156.2.0 PackageLocale: zh-CN PublisherUrl: https://www.al-enterprise.com/zh-cn/ PrivacyUrl: https://www.al-enterprise.com/zh-cn/legal/privacy @@ -27,4 +27,4 @@ Tags: - 文档 - 沟通 ManifestType: locale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/ALE/Rainbow/2.156.2.0/ALE.Rainbow.yaml b/manifests/a/ALE/Rainbow/2.156.2.0/ALE.Rainbow.yaml new file mode 100644 index 0000000000000..f36e67533aed1 --- /dev/null +++ b/manifests/a/ALE/Rainbow/2.156.2.0/ALE.Rainbow.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: ALE.Rainbow +PackageVersion: 2.156.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AList/AList/3.45.1/AList.AList.installer.yaml b/manifests/a/AList/AList/3.45.1/AList.AList.installer.yaml new file mode 100644 index 0000000000000..1b239fa67d3eb --- /dev/null +++ b/manifests/a/AList/AList/3.45.1/AList.AList.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AList.AList +PackageVersion: 3.45.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: alist.exe + PortableCommandAlias: alist +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/AlistGo/alist/releases/download/v3.45.1/alist-windows-386.zip + InstallerSha256: 4C5874821D59F3B6328E305B0BF2235EDCB2387F3680255004DDC3B5362635A2 +- Architecture: x64 + InstallerUrl: https://github.com/AlistGo/alist/releases/download/v3.45.1/alist-windows-amd64.zip + InstallerSha256: 0115065F7E3D1415F2420B73CDE925DADFE83CE8CF6FDB6A8959929CCFD2F8BF +- Architecture: arm64 + InstallerUrl: https://github.com/AlistGo/alist/releases/download/v3.45.1/alist-windows-arm64.zip + InstallerSha256: 76397F4C7EE23E8D5C700697051180B7E368D7839080E3FC75B782C6B9081B61 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AList/AList/3.45.1/AList.AList.locale.en-US.yaml b/manifests/a/AList/AList/3.45.1/AList.AList.locale.en-US.yaml new file mode 100644 index 0000000000000..b71655e7e1148 --- /dev/null +++ b/manifests/a/AList/AList/3.45.1/AList.AList.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: AList.AList +PackageVersion: 3.45.1 +PackageLocale: en-US +Publisher: Alist +PublisherUrl: https://alist.nn.ci/ +PublisherSupportUrl: https://github.com/alist-org/alist/issues +Author: Andy Hsu +PackageName: Alist +PackageUrl: https://alist.nn.ci/ +License: AGPL-3.0 +LicenseUrl: https://github.com/alist-org/alist/blob/HEAD/LICENSE +ShortDescription: A file list program that supports multiple storage, powered by Gin and Solidjs. +Tags: +- file +- server +- share +- storage +ReleaseNotes: |- + 🚀 Features + - Add ghcr docker image - by @al-one in https://github.com/AlistGo/alist/issues/8524 (b1586) + 🐞 Bug Fixes + - Update documentation links to point to the new domain And fix 189pc getToken fail - by alistgo (7aeb0) + - Dead link - by alistgo (51eeb) +ReleaseNotesUrl: https://github.com/AlistGo/alist/releases/tag/v3.45.1 +Documentations: +- DocumentLabel: Config + DocumentUrl: https://alist.nn.ci/config +- DocumentLabel: FAQ + DocumentUrl: https://alist.nn.ci/faq +- DocumentLabel: Guide + DocumentUrl: https://alist.nn.ci/guide +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AList/AList/3.45.1/AList.AList.locale.zh-CN.yaml b/manifests/a/AList/AList/3.45.1/AList.AList.locale.zh-CN.yaml new file mode 100644 index 0000000000000..08354478fb606 --- /dev/null +++ b/manifests/a/AList/AList/3.45.1/AList.AList.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: AList.AList +PackageVersion: 3.45.1 +PackageLocale: zh-CN +Publisher: Alist +PublisherUrl: https://alist.nn.ci/zh +PublisherSupportUrl: https://github.com/alist-org/alist/issues +Author: Andy Hsu +PackageName: Alist +PackageUrl: https://alist.nn.ci/zh +License: AGPL-3.0 +LicenseUrl: https://github.com/alist-org/alist/blob/main/LICENSE +ShortDescription: 一个支持多种存储的文件列表程序,使用 Gin 和 Solidjs。 +Tags: +- 共享 +- 分享 +- 发送 +- 文件 +- 服务器 +ReleaseNotesUrl: https://github.com/AlistGo/alist/releases/tag/v3.45.1 +Documentations: +- DocumentLabel: 使用指南 + DocumentUrl: https://alist.nn.ci/zh/guide +- DocumentLabel: 常见问题 + DocumentUrl: https://alist.nn.ci/zh/faq +- DocumentLabel: 配置 + DocumentUrl: https://alist.nn.ci/zh/config +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AList/AList/3.45.1/AList.AList.yaml b/manifests/a/AList/AList/3.45.1/AList.AList.yaml new file mode 100644 index 0000000000000..84d0eee9efd1d --- /dev/null +++ b/manifests/a/AList/AList/3.45.1/AList.AList.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: AList.AList +PackageVersion: 3.45.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AList/AListDesktop/3.45.1/AList.AListDesktop.installer.yaml b/manifests/a/AList/AListDesktop/3.45.1/AList.AListDesktop.installer.yaml new file mode 100644 index 0000000000000..e8f74a1a4d059 --- /dev/null +++ b/manifests/a/AList/AListDesktop/3.45.1/AList.AListDesktop.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: AList.AListDesktop +PackageVersion: 3.45.1 +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.EdgeWebView2Runtime +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/AlistGo/desktop-release/releases/download/v3.45.1/alist-desktop_3.45.1_x64-setup.exe + InstallerSha256: 3F71CADB1E2B95936B91F549D014FFAC866B16BF7D0AEEE9DD8C565722036A88 + ProductCode: alist-desktop +- Architecture: arm64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/AlistGo/desktop-release/releases/download/v3.45.1/alist-desktop_3.45.1_arm64-setup.exe + InstallerSha256: 4A4BF27D4F4823951CBD2C8F6F8E5C2DE3225C994F02356BBD1405E3F9A754DC + ProductCode: alist-desktop +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/AlistGo/desktop-release/releases/download/v3.45.1/alist-desktop_3.45.1_x64_en-US.msi + InstallerSha256: CE48C5573434033A4FA99A1FAFB99099F9080C1777250174DA43C6E1B3F4B6C1 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{7C3FED58-2AFA-413E-A089-B70379E0CAB6}' + AppsAndFeaturesEntries: + - ProductCode: '{7C3FED58-2AFA-413E-A089-B70379E0CAB6}' + UpgradeCode: '{35D0EA96-CF42-529B-9122-220745E50D7A}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AList/AListDesktop/3.45.1/AList.AListDesktop.locale.en-US.yaml b/manifests/a/AList/AListDesktop/3.45.1/AList.AListDesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..f46f146ba1e4a --- /dev/null +++ b/manifests/a/AList/AListDesktop/3.45.1/AList.AListDesktop.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: AList.AListDesktop +PackageVersion: 3.45.1 +PackageLocale: en-US +Publisher: nn +PublisherUrl: https://alist.nn.ci/ +PublisherSupportUrl: https://github.com/alist-org/desktop-release/issues +Author: Andy Hsu +PackageName: alist-desktop +PackageUrl: https://ad.nn.ci/ +License: Proprietary +Copyright: Copyright © 2022-present AList +ShortDescription: Manage AList With Beautiful UI +Description: Use a good-looking UI to manage the AList program instead of the command line, and view logs conveniently +Tags: +- file +- server +- share +- storage +ReleaseNotesUrl: https://github.com/AlistGo/desktop-release/releases/tag/v3.45.1 +Documentations: +- DocumentLabel: Config + DocumentUrl: https://alist.nn.ci/config +- DocumentLabel: FAQ + DocumentUrl: https://alist.nn.ci/faq +- DocumentLabel: Guide + DocumentUrl: https://alist.nn.ci/guide +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AList/AListDesktop/3.45.1/AList.AListDesktop.locale.zh-CN.yaml b/manifests/a/AList/AListDesktop/3.45.1/AList.AListDesktop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7b1d23ba71301 --- /dev/null +++ b/manifests/a/AList/AListDesktop/3.45.1/AList.AListDesktop.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: AList.AListDesktop +PackageVersion: 3.45.1 +PackageLocale: zh-CN +Publisher: nn +PublisherUrl: https://alist.nn.ci/zh +PublisherSupportUrl: https://github.com/alist-org/desktop-release/issues +Author: Andy Hsu +PackageName: alist-desktop +PackageUrl: https://ad.nn.ci/zh +License: 专有软件 +Copyright: Copyright © 2022-present AList +ShortDescription: 使用漂亮的 UI 管理 AList +Description: 使用好看的 UI 管理 AList 程序而不是命令行,方便的查看日志 +Tags: +- 共享 +- 分享 +- 发送 +- 文件 +- 服务器 +ReleaseNotesUrl: https://github.com/AlistGo/desktop-release/releases/tag/v3.45.1 +Documentations: +- DocumentLabel: 使用指南 + DocumentUrl: https://alist.nn.ci/zh/guide +- DocumentLabel: 常见问题 + DocumentUrl: https://alist.nn.ci/zh/faq +- DocumentLabel: 配置 + DocumentUrl: https://alist.nn.ci/zh/config +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AList/AListDesktop/3.45.1/AList.AListDesktop.yaml b/manifests/a/AList/AListDesktop/3.45.1/AList.AListDesktop.yaml new file mode 100644 index 0000000000000..7a6f0ce38b2f8 --- /dev/null +++ b/manifests/a/AList/AListDesktop/3.45.1/AList.AListDesktop.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: AList.AListDesktop +PackageVersion: 3.45.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.3/ASGARDEXMaintainers.ASGARDEX.installer.yaml b/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.3/ASGARDEXMaintainers.ASGARDEX.installer.yaml new file mode 100644 index 0000000000000..46d0e8e73f9e9 --- /dev/null +++ b/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.3/ASGARDEXMaintainers.ASGARDEX.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: ASGARDEXMaintainers.ASGARDEX +PackageVersion: 1.40.3 +InstallerLocale: en-US +InstallerType: nullsoft +ProductCode: 5bcaf717-02bc-561e-bd5c-5ecf0e404bb5 +ReleaseDate: 2025-07-01 +AppsAndFeaturesEntries: +- DisplayName: ASGARDEX 1.40.3 + ProductCode: 5bcaf717-02bc-561e-bd5c-5ecf0e404bb5 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/asgardex/asgardex-desktop/releases/download/v1.40.3/ASGARDEX-1.40.3-win.exe + InstallerSha256: AD709736614AD83F352D0D026B9E7B1E91C6E5B3CACAB1A8D16D318DE142111F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.3/ASGARDEXMaintainers.ASGARDEX.locale.en-US.yaml b/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.3/ASGARDEXMaintainers.ASGARDEX.locale.en-US.yaml new file mode 100644 index 0000000000000..21f980afe1719 --- /dev/null +++ b/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.3/ASGARDEXMaintainers.ASGARDEX.locale.en-US.yaml @@ -0,0 +1,48 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ASGARDEXMaintainers.ASGARDEX +PackageVersion: 1.40.3 +PackageLocale: en-US +Publisher: ASGARDEX Maintainers +PublisherUrl: https://github.com/asgardex +PublisherSupportUrl: https://github.com/asgardex/asgardex-desktop/issues +Author: ASGARDEX Maintainers +PackageName: ASGARDEX +PackageUrl: https://github.com/asgardex/asgardex-desktop +License: MIT +LicenseUrl: https://github.com/asgardex/asgardex-desktop/blob/HEAD/LICENSE +Copyright: Copyright © 2021 ASGARDEX Maintainers +ShortDescription: Desktop wallet and decentralized exchange for THORChain +Tags: +- dex +- electron +- thorchain +- wallet +ReleaseNotes: |- + Asgardex V1.40.3 🚀 + What's Changed + - Add/new workflow by @Thorian1te in #788 + - feat: add dex menu under settings by @cinnamoroll6130 in #789 + - feat: add price of asset by @cinnamoroll6130 in #787 + - feat: add ruji icon by @cinnamoroll6130 in #791 + - chore: hide chain icon for native rune by @cinnamoroll6130 in #792 + - 781 add client ripple by @Thorian1te in #793 + - fix decimal bug by @Thorian1te in #794 + - Update xchain deps + ethers by @hippocampus-web3 in #790 + - feat: antd and styled components removal by @cinnamoroll6130 in #796 + - 795 add tolerance adjustment to streaming params by @Thorian1te in #799 + - fix native ruji asset functions by @Thorian1te in #802 + - update to display protected result & target asset list by @Thorian1te in #803 + - streaming swaps tolerance differ from trade swaps tol by @Thorian1te in #806 + The following binaries have been signed by THORChain/ASGARDEX admins listed at admin-gpg + ce2fadc1b80ad14dff18bc1ad9d31488bb2f4e3d53eddf5f7a01a5717e35ebfb ASGARDEX-1.40.3-linux.AppImage + ec8127a4acb9878f636a879344c1c3ae654b57d8606f133f31feea0c28b00dc7 ASGARDEX-1.40.3-linux.deb + 4c89a845fd2e908814aa07b5444d1ef45f9283cf1a00f8d27c3fcc5ceadbb2ec ASGARDEX-1.40.3-mac-13-Ventura.dmg + b1484ca2b4ddae05f9662c106b22ae75fac3ae48c3fb72724fe4695dae14f1cc ASGARDEX-1.40.3-mac-14-Sonoma.dmg + c63105666163f20cd8af0be4edeef19519d83c3990038a80c2d4063bfe168ea5 ASGARDEX-1.40.3-mac-15-Sequoia.dmg + ad709736614ad83f352d0d026b9e7b1e91c6e5b3cacab1a8d16d318de142111f ASGARDEX-1.40.3-win.exe + Full Changelog: v1.40.2...v1.40.3 +ReleaseNotesUrl: https://github.com/asgardex/asgardex-desktop/releases/tag/v1.40.3 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.3/ASGARDEXMaintainers.ASGARDEX.yaml b/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.3/ASGARDEXMaintainers.ASGARDEX.yaml new file mode 100644 index 0000000000000..ae3cef249b5b8 --- /dev/null +++ b/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.3/ASGARDEXMaintainers.ASGARDEX.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: ASGARDEXMaintainers.ASGARDEX +PackageVersion: 1.40.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.4/ASGARDEXMaintainers.ASGARDEX.installer.yaml b/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.4/ASGARDEXMaintainers.ASGARDEX.installer.yaml new file mode 100644 index 0000000000000..4dc5a69b7cd1b --- /dev/null +++ b/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.4/ASGARDEXMaintainers.ASGARDEX.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: ASGARDEXMaintainers.ASGARDEX +PackageVersion: 1.40.4 +InstallerLocale: en-US +InstallerType: nullsoft +ProductCode: 5bcaf717-02bc-561e-bd5c-5ecf0e404bb5 +ReleaseDate: 2025-07-03 +AppsAndFeaturesEntries: +- DisplayName: ASGARDEX 1.40.4 + ProductCode: 5bcaf717-02bc-561e-bd5c-5ecf0e404bb5 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/asgardex/asgardex-desktop/releases/download/v1.40.4/ASGARDEX-1.40.4-win.exe + InstallerSha256: F379992B45B48709D6328C16E7F4E014CA3F7E302225BC760FB366E6C7FEFD2E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.4/ASGARDEXMaintainers.ASGARDEX.locale.en-US.yaml b/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.4/ASGARDEXMaintainers.ASGARDEX.locale.en-US.yaml new file mode 100644 index 0000000000000..510ff205d3216 --- /dev/null +++ b/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.4/ASGARDEXMaintainers.ASGARDEX.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: ASGARDEXMaintainers.ASGARDEX +PackageVersion: 1.40.4 +PackageLocale: en-US +Publisher: ASGARDEX Maintainers +PublisherUrl: https://github.com/asgardex +PublisherSupportUrl: https://github.com/asgardex/asgardex-desktop/issues +Author: ASGARDEX Maintainers +PackageName: ASGARDEX +PackageUrl: https://github.com/asgardex/asgardex-desktop +License: MIT +LicenseUrl: https://github.com/asgardex/asgardex-desktop/blob/HEAD/LICENSE +Copyright: Copyright © 2021 ASGARDEX Maintainers +ShortDescription: Desktop wallet and decentralized exchange for THORChain +Tags: +- dex +- electron +- thorchain +- wallet +ReleaseNotes: |- + #Asgardex V1.40.4 🚀 + What's Changed + - feat: headless drawer by @cinnamoroll6130 in #805 + - fix ruji swap issues by @Thorian1te in #808 + - fix chainflip blank screen issue by @Thorian1te in #810 + - update for new release by @Thorian1te in #811 + The following binaries have been signed by THORChain/ASGARDEX admins listed at admin-gpg + 111e00f284633d38e646d5ba377a53183f240ff2204a82ba35369b3067b65bf5 ASGARDEX-1.40.4-linux.AppImage + 77b8b04a2d0d401be1ffd0355b2c9f156f69f1d6cc3cfa320a17d17d0d2bb668 ASGARDEX-1.40.4-linux.deb + 8c10e7e917a18c68c1e26841f4f34985c147cf5cfdb5db3a5a75642ae9e6f257 ASGARDEX-1.40.4-mac-13-Ventura.dmg + 06b7f6a95b9c7787536fd331e0e2863b4413eb0f9747a5894e921dfec055e638 ASGARDEX-1.40.4-mac-14-Sonoma.dmg + 9983121e069cffdfb5b1f3e6493c64452b4e49a55452d6ecd06a035d731c4d3d ASGARDEX-1.40.4-mac-15-Sequoia.dmg + f379992b45b48709d6328c16e7f4e014ca3f7e302225bc760fb366e6c7fefd2e ASGARDEX-1.40.4-win.exe + Full Changelog: v1.40.3...v1.40.4 +ReleaseNotesUrl: https://github.com/asgardex/asgardex-desktop/releases/tag/v1.40.4 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.4/ASGARDEXMaintainers.ASGARDEX.yaml b/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.4/ASGARDEXMaintainers.ASGARDEX.yaml new file mode 100644 index 0000000000000..309ac75fcc680 --- /dev/null +++ b/manifests/a/ASGARDEXMaintainers/ASGARDEX/1.40.4/ASGARDEXMaintainers.ASGARDEX.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: ASGARDEXMaintainers.ASGARDEX +PackageVersion: 1.40.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/ASIX/AX88179DriverSetup/2.0.3.0/ASIX.AX88179DriverSetup.installer.yaml b/manifests/a/ASIX/AX88179DriverSetup/2.0.3.0/ASIX.AX88179DriverSetup.installer.yaml new file mode 100644 index 0000000000000..11b91ad60f4b4 --- /dev/null +++ b/manifests/a/ASIX/AX88179DriverSetup/2.0.3.0/ASIX.AX88179DriverSetup.installer.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: ASIX.AX88179DriverSetup +PackageVersion: 2.0.3.0 +InstallerType: zip +Installers: +- Architecture: x64 + MinimumOSVersion: 10.0.22000.194 + NestedInstallerType: msi + NestedInstallerFiles: + - RelativeFilePath: ASIX USB Ethernet Windows 11 Drivers.msi + InstallerUrl: https://www.asix.com.tw/en/support/download/file/1889 + InstallerSha256: C6FFDAD7AD916A36F42A6877F50366A54DE7985F453B0D8055F1006F8584B7BB + ProductCode: '{07AE2A78-5941-4081-8A91-177EEEE999C7}' + AppsAndFeaturesEntries: + - DisplayVersion: 3.22.3.0 +- Architecture: x64 + MinimumOSVersion: 10.0.22000.194 + NestedInstallerType: exe + NestedInstallerFiles: + - RelativeFilePath: setup.exe + InstallerUrl: https://www.asix.com.tw/en/support/download/file/1889 + InstallerSha256: C6FFDAD7AD916A36F42A6877F50366A54DE7985F453B0D8055F1006F8584B7BB + InstallerSwitches: + Silent: /S /v/qn + SilentWithProgress: /S /v/qn + AppsAndFeaturesEntries: + - DisplayVersion: 3.22.3.0 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/a/ASIX/AX88179DriverSetup/2.0.3.0/ASIX.AX88179DriverSetup.locale.en-US.yaml b/manifests/a/ASIX/AX88179DriverSetup/2.0.3.0/ASIX.AX88179DriverSetup.locale.en-US.yaml new file mode 100644 index 0000000000000..289f3d8edf1b1 --- /dev/null +++ b/manifests/a/ASIX/AX88179DriverSetup/2.0.3.0/ASIX.AX88179DriverSetup.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: ASIX.AX88179DriverSetup +PackageVersion: 2.0.3.0 +PackageLocale: en-US +Publisher: ASIX Electronics Corporation +PackageName: ASIX Windows 11 64-bit HLK/WHCK Drivers Setup Program +PackageUrl: https://www.asix.com.tw/en/product/USBEthernet/Super-Speed_USB_Ethernet/AX88179 +License: Proprietary +ShortDescription: Installs Ethernet drivers for ASIX AX88179 chipsets, for instance USB 3.0 to Ethernet adapters. +Tags: +- ethernet +- usb3.0 +- adapter +- gigabit +- 1gbe +- axusbeth.inf +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/ASIX/AX88179DriverSetup/2.0.3.0/ASIX.AX88179DriverSetup.yaml b/manifests/a/ASIX/AX88179DriverSetup/2.0.3.0/ASIX.AX88179DriverSetup.yaml new file mode 100644 index 0000000000000..bbb76bef17a8a --- /dev/null +++ b/manifests/a/ASIX/AX88179DriverSetup/2.0.3.0/ASIX.AX88179DriverSetup.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: ASIX.AX88179DriverSetup +PackageVersion: 2.0.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/AVRDudes/AVRDUDE/8.1/AVRDudes.AVRDUDE.installer.yaml b/manifests/a/AVRDudes/AVRDUDE/8.1/AVRDudes.AVRDUDE.installer.yaml new file mode 100644 index 0000000000000..72e2dff93d5cf --- /dev/null +++ b/manifests/a/AVRDudes/AVRDUDE/8.1/AVRDudes.AVRDUDE.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AVRDudes.AVRDUDE +PackageVersion: '8.1' +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: avrdude.exe +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/avrdudes/avrdude/releases/download/v8.1/avrdude-v8.1-windows-x86.zip + InstallerSha256: B863613DD2FE21C45B4DA04E4902FE2007A93DFF906D770A5221DE48EB92B8C6 +- Architecture: x64 + InstallerUrl: https://github.com/avrdudes/avrdude/releases/download/v8.1/avrdude-v8.1-windows-x64.zip + InstallerSha256: E4D571D81FEE3387D51BFDEDD0B6565E4C201E974101CAC2CAEC7ADFD6201DA3 +- Architecture: arm64 + InstallerUrl: https://github.com/avrdudes/avrdude/releases/download/v8.1/avrdude-v8.1-windows-arm64.zip + InstallerSha256: 2194B65669E680B855D139CCB863C75971B0A0FBDFBB50942BC554158020BF29 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AVRDudes/AVRDUDE/8.1/AVRDudes.AVRDUDE.locale.en-US.yaml b/manifests/a/AVRDudes/AVRDUDE/8.1/AVRDudes.AVRDUDE.locale.en-US.yaml new file mode 100644 index 0000000000000..a8c5b7f4356e2 --- /dev/null +++ b/manifests/a/AVRDudes/AVRDUDE/8.1/AVRDudes.AVRDUDE.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AVRDudes.AVRDUDE +PackageVersion: '8.1' +PackageLocale: en-US +Publisher: AVR Dudes +PublisherUrl: https://github.com/avrdudes +PublisherSupportUrl: https://github.com/avrdudes/avrdude/issues +PackageName: AVRDUDE +PackageUrl: https://github.com/avrdudes/avrdude +License: GPL-2.0 +ShortDescription: AVRDUDE is software for programming Atmel AVR Microcontrollers +Tags: +- arduino +- atmega +- atmel +- attiny +- avr +- avrdude +- microchip +ReleaseNotes: |- + See Release Notes for changes + Preferred Windows binaries to use: + avrdude-v8.1-windows-x64.zip --> Windows MSVC 64 bit + avrdude-v8.1-windows-mingw-x64.zip --> Windows MSYS2 mingw 64 bit + Static build binaries (*.tar.gz) are recommended for Arduino users. Take note they do not contain libserialport support due to the limitation of the crossbuild container. + Notes for the avrdude Windows binaries (static linked to the dependency libraries) : + 1. MSVC build is recommended for most Windows users unless you hit known limitations (see below). The majority of users should download avrdude-v8.1-windows-x64.zip. In case one of limitations below is unacceptable you may want to download avrdude-v8.1-windows_mingw-x64.zip. + 2. Known limitation for the above MSVC build (avrdude-v8.1-windows-x64.zip, avrdude-v8.1-windows-x86.zip and avrdude-v8.1-windows-arm64.zip) + - #1552 (no libserialport support) + - #1253 (slow speed when using arduino-ft232r or similar programmer) + - #968 (not working with USB Composite Device programmer like Microchip PICKit 5 and USBASP with the FW from https://github.com/dioannidis/usbasp) + - https://github.com/avrdudes/avrdude/discussions/1440 (no support of CH341A) + 3. Known limitation for the MSYS2 mingw build (avrdude-v8.1-windows_mingw-x64.zip, avrdude-v8.1-windows_mingw-clang-x64.zip and avrdude-v8.1-windows_mingw-ucrt-x64.zip) + - You will have to use Zadig to switch the FTDI vendor driver if you use libftdi based programmer (eg: ft232h, ft2232h, arduino-ft232r) + - #1271 (timeout may be more likely to happen for urclock in terminal mode) + Notes for the Linux binaries: + Please use chmod u+x to make the binary executable. + The Linux binaries are static linked to dependency libraries. They are provided as is and are expected to work for most Linux distros within the past 5 years. Please build from source in case the binaries do not work for you. You can also report the issue. + Notes for the macOS binary: + The macOS binary is static linked to dependency libraries. It is provided as is and is expected to work for most macOS versions within the past 5 years. Please build from source in case the binaries do not work for you. You can also report the issue. + You may need to follow the guide below to allow the execution of the macOS binary. + https://support.apple.com/en-sg/guide/mac-help/mh40617/mac +ReleaseNotesUrl: https://github.com/avrdudes/avrdude/releases/tag/v8.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AVRDudes/AVRDUDE/8.1/AVRDudes.AVRDUDE.yaml b/manifests/a/AVRDudes/AVRDUDE/8.1/AVRDudes.AVRDUDE.yaml new file mode 100644 index 0000000000000..41a1870d6af8e --- /dev/null +++ b/manifests/a/AVRDudes/AVRDUDE/8.1/AVRDudes.AVRDUDE.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: AVRDudes.AVRDUDE +PackageVersion: '8.1' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AVer/AVerTouch/1.3.2114.0/AVer.AVerTouch.installer.yaml b/manifests/a/AVer/AVerTouch/1.3.2114.0/AVer.AVerTouch.installer.yaml new file mode 100644 index 0000000000000..4fd022196d66e --- /dev/null +++ b/manifests/a/AVer/AVerTouch/1.3.2114.0/AVer.AVerTouch.installer.yaml @@ -0,0 +1,80 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AVer.AVerTouch +PackageVersion: 1.3.2114.0 +InstallerType: zip +NestedInstallerType: exe +NestedInstallerFiles: +- RelativeFilePath: AVerTouchQt.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 +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +ProductCode: '{B16D6CCE-CC0A-4516-8BA8-897E24376A2B}' +ReleaseDate: 2025-06-25 +AppsAndFeaturesEntries: +- ProductCode: '{B16D6CCE-CC0A-4516-8BA8-897E24376A2B}' + UpgradeCode: '{2525391D-961E-42A8-B163-22226CAFB2CB}' + InstallerType: msi +Installers: +- Architecture: x86 + InstallerUrl: https://download.aver.com/AVerTouchWindows/check4Update/AVerTouch.zip + InstallerSha256: 7E448DF1F753ED22C39DC8F840881622B6CFB294CDB071138D911481F19C51EC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AVer/AVerTouch/1.3.2114.0/AVer.AVerTouch.locale.en-US.yaml b/manifests/a/AVer/AVerTouch/1.3.2114.0/AVer.AVerTouch.locale.en-US.yaml new file mode 100644 index 0000000000000..3f7f68453e1aa --- /dev/null +++ b/manifests/a/AVer/AVerTouch/1.3.2114.0/AVer.AVerTouch.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: AVer.AVerTouch +PackageVersion: 1.3.2114.0 +PackageLocale: en-US +Publisher: AVer Information Inc. +PublisherUrl: https://www.aver.com/ +PublisherSupportUrl: https://www.aver.com/helpcenter +PrivacyUrl: https://www.aver.com/privacy +Author: AVer Information Inc. +PackageName: AVerTouch +PackageUrl: https://presentation.aver.com/model/avertouch +License: Proprietary +LicenseUrl: https://presentation.aver.com/page/avertouch-terms-and-conditions +Copyright: Copyright © 2024 AVer Information Inc. All rights reserved. +CopyrightUrl: https://presentation.aver.com/page/avertouch-terms-and-conditions +ShortDescription: An ultra-powerful software designed exclusively for AVer visualizers. +Description: AVerTouch is ultra-powerful software designed exclusively for AVer visualizers. One touch connects your visualizer with mobile devices for content sharing, and you can sync to the cloud to automatically save annotated, captured, and recorded files. Teaching is incredibly fun when you use AVerTouch to engage with your students. +Documentations: +- DocumentLabel: Resources + DocumentUrl: https://presentation.aver.com/model/avertouch#resource +- DocumentLabel: FAQ + DocumentUrl: https://www.aver.com/HelpCenter-FAQ/visualizers/avertouch +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AVer/AVerTouch/1.3.2114.0/AVer.AVerTouch.locale.zh-CN.yaml b/manifests/a/AVer/AVerTouch/1.3.2114.0/AVer.AVerTouch.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e898e131bbb05 --- /dev/null +++ b/manifests/a/AVer/AVerTouch/1.3.2114.0/AVer.AVerTouch.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: AVer.AVerTouch +PackageVersion: 1.3.2114.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 专为 AVer 展示台设计的超强软件。 +Description: AVerTouch 是专为 AVer 展示台设计的超强软件。只需轻轻一触,就能将展示台与移动设备连接起来,实现内容共享,还能同步到云端,自动保存注释、捕捉和录制的文件。使用 AVerTouch 与学生互动,让教学充满乐趣。 +Documentations: +- DocumentLabel: 资源 + DocumentUrl: https://presentation.aver.com/model/avertouch#resource +- DocumentLabel: 常见问题 + DocumentUrl: https://www.aver.com/HelpCenter-FAQ/visualizers/avertouch +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AVer/AVerTouch/1.3.2114.0/AVer.AVerTouch.yaml b/manifests/a/AVer/AVerTouch/1.3.2114.0/AVer.AVerTouch.yaml new file mode 100644 index 0000000000000..09c3e40f2bcca --- /dev/null +++ b/manifests/a/AVer/AVerTouch/1.3.2114.0/AVer.AVerTouch.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: AVer.AVerTouch +PackageVersion: 1.3.2114.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Abdelrhman-AK/WinPaletter/1.0.9.4/Abdelrhman-AK.WinPaletter.installer.yaml b/manifests/a/Abdelrhman-AK/WinPaletter/1.0.9.4/Abdelrhman-AK.WinPaletter.installer.yaml new file mode 100644 index 0000000000000..0ffa87a8188d7 --- /dev/null +++ b/manifests/a/Abdelrhman-AK/WinPaletter/1.0.9.4/Abdelrhman-AK.WinPaletter.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Abdelrhman-AK.WinPaletter +PackageVersion: 1.0.9.4 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: WinPaletter.exe +ReleaseDate: 2025-06-29 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Abdelrhman-AK/WinPaletter/releases/download/v1.0.9.4/WinPaletter.zip + InstallerSha256: F0469495A2D434E14E50887B28D5361A717F5C8B92BAED11B403DE1D2C025990 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Abdelrhman-AK/WinPaletter/1.0.9.4/Abdelrhman-AK.WinPaletter.locale.en-US.yaml b/manifests/a/Abdelrhman-AK/WinPaletter/1.0.9.4/Abdelrhman-AK.WinPaletter.locale.en-US.yaml new file mode 100644 index 0000000000000..d20d4458aad6c --- /dev/null +++ b/manifests/a/Abdelrhman-AK/WinPaletter/1.0.9.4/Abdelrhman-AK.WinPaletter.locale.en-US.yaml @@ -0,0 +1,103 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Abdelrhman-AK.WinPaletter +PackageVersion: 1.0.9.4 +PackageLocale: en-US +Publisher: Abdelrhman-AK +PublisherUrl: https://github.com/Abdelrhman-AK +PublisherSupportUrl: https://github.com/Abdelrhman-AK/WinPaletter/issues +PackageName: WinPaletter +PackageUrl: https://github.com/Abdelrhman-AK/WinPaletter +License: MIT License +LicenseUrl: https://github.com/Abdelrhman-AK/WinPaletter/blob/HEAD/License.md +ShortDescription: WinPaletter is a portable application that helps you customize Windows aspects in an advanced way +Tags: +- colors +- command-prompt +- cursors +- logonui +- powershell +- theme +- themes +- windows-classic +- windows-font-changer +- windows-terminal +- windows-terminal-theme +- windows-theme +- windows10 +- windows11 +- windows7 +- windows8-1 +ReleaseNotes: |- + WinPaletter is back! + This return release concentrates on cleaning up legacy issues and providing a better-honed experience. While significant new features are not anticipated, the goal is to place the project in a stable, workable condition. + Warning + You might encounter bugs, as this version is a beta and not a final, stable release. Please be patient and report any issues so I can fix them. I aim to make WinPaletter as stable and bug-free as possible. + Important + If you are using a language file, some strings may not appear translated because the core language support has changed significantly. Please wait for the translators to update the language files accordingly. + Important + Development during this comeback phase will be limited. The developer will be available only one or two days per week (or every two weeks), and not for the full day. As a result, progress will be slower compared to the more active development period prior to archiving. + New features: + 1. System restore points + - Windows System Restore Points are snapshots of your system files and settings at a specific moment in time. They allow you to revert your system back to a previous, stable state if something goes wrong—without affecting your personal files. This feature is especially useful before making system-level changes, like installing drivers, updates, or customization tools. + - WinPaletter supports the creation of System Restore Points directly from within the app. Before applying any visual changes, you can create a restore point to ensure you have a safety net in case you need to undo the modifications. WinPaletter makes this process easy and integrated, helping you protect your system while you customize its appearance. + Important + Keep in mind that each restore point can take up around 100–300 MB of disk space, or even more. Frequently applying themes and creating restore points may consume significant storage over time. If your system is stable, consider reviewing and deleting older restore points to free up space. Always keep an eye on your system partition's free space to avoid running into performance or update issues. + - You can also take a system restorepoint before applying a single aspect, by doing this: + image + 2. New aspect: Accessibility + It consists of High Contrast (was formerly in Classic Colors) and Color Filters (was formely in Windows Effects) + 3. Logging system: + WinPaletter Log for diagnostics. It is accessible in main form toolbar. + image + Application improvement: + 1. User Profiles Switching: + - Switching to a user profile protected by a password now uses the Windows Security (Credentials) dialog for better security, instead of WinPaletter's own password prompt. + image + - Opening WinPaletter will no longer show a list of users; it will directly target the user who launched WinPaletter (mimicking Windows 10/11 login behavior). If you want to switch to another user in the current session, do so from the main form. (This method slightly improves startup speed, but you likely won’t notice the difference.) + - The option to continue without a password has been removed to avoid conflicts between two users (the target user and the user who opened WinPaletter). + 2. Other improvements: + - The .NET Framework dependency has been upgraded from version 4.7.2 to 4.8, which is now required (not a problem to any user.) + - The "What's New" form has been removed (the GitHub releases page is a better alternative). + - Bug and crash report system redesigned, now includes the ability to save theme files. + - Added "Plus! 95 For Kids" CD schemes for classic colors, metrics, and fonts. + - Rescue tools renamed to SOS, with command line options: WinPaletter -f or WinPaletter --SOS. + - SOS mode will automatically activate when WinPaletter is opened in safe mode. + - When you download a theme from WinPaletter store, there is a check list of aspects will be edited. In this dialog, a button called "Proceed with all selected" is removed and replaced by two buttons "Check all" and "Uncheck all" to eliminate ambiguity. + image + - Improved default Windows themes; now all aspects will be restored correctly. + - Significant speed improvements in languages and the Language Editor. + - Startup speed has been slightly optimized. + - WinPaletter Store massive speed improvements. + - The "Save as theme" feature now recommends a filename based on the theme name instead of an empty string. + - Minor memory usage optimizations. + - Help button is placed into tab context menu + - UI minor refresh + Bugs fixes: + - Fixed store items not being downloaded and listed. + - Fixed an issue where pressing "Apply" in the Lighthouse at sunset theme store and then returning to the Windows previewer in the store caused an exception error. + - Fixed an issue where the store previewer did not show the wallpaper of a downloaded theme pack the first time in the current session, but displayed it correctly on subsequent attempts. + - Fixed an issue where the taskbar and Start menu showed a clipped, blurred portion of a different wallpaper if the theme had a wallpaper different from the current one. + - Skipping listing the WsiAccount user as it is part of system users. + - Closing the theme applying process form when Explorer is already killed now correctly restores Explorer. + - The Windows Effects alert dialog is now brought to the top. Previously, it was hidden behind the applying form, causing confusion that the applying process was not working. + - Fixed the magnifier with high DPI settings not centering correctly on the cursor position in classic colors. + - Fixed an issue where applying Classic Colors reset the cursors. + - Fixed icon label preview by correcting the shadow algorithm. + - Fixed exception errors when deleting store cache and logs in Settings > Storage Details. + - Fixed store classic colors preview that had incorrect fore colors. + - Fixed: closing Icons studio with drives tab selected threw an exception error. + > Compare source code with: + ───────────────┬────────────┬──────────── + Version Type │Version Code│Link + ───────────────┼────────────┼──────────── + Previous Stable│1.0.9.3 │Compare + ───────────────┼────────────┼──────────── + Previous Beta │1.0.8.9 │Compare + ───────────────┼────────────┼──────────── + Initial Release│1.0.0.0 │Compare + ───────────────┴────────────┴──────────── +ReleaseNotesUrl: https://github.com/Abdelrhman-AK/WinPaletter/releases/tag/v1.0.9.4 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Abdelrhman-AK/WinPaletter/1.0.9.4/Abdelrhman-AK.WinPaletter.yaml b/manifests/a/Abdelrhman-AK/WinPaletter/1.0.9.4/Abdelrhman-AK.WinPaletter.yaml new file mode 100644 index 0000000000000..0919aac6de505 --- /dev/null +++ b/manifests/a/Abdelrhman-AK/WinPaletter/1.0.9.4/Abdelrhman-AK.WinPaletter.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: Abdelrhman-AK.WinPaletter +PackageVersion: 1.0.9.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Ablaze/Floorp/11.28.0/Ablaze.Floorp.installer.yaml b/manifests/a/Ablaze/Floorp/11.28.0/Ablaze.Floorp.installer.yaml new file mode 100644 index 0000000000000..5d7f94c4eee4d --- /dev/null +++ b/manifests/a/Ablaze/Floorp/11.28.0/Ablaze.Floorp.installer.yaml @@ -0,0 +1,50 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: Ablaze.Floorp +PackageVersion: 11.28.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +Commands: +- floorp +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- jxl +- pdf +- shtml +- svg +- url +- webp +- xht +- xhtml +ReleaseDate: 2025-06-24 +Scope: machine +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +ElevationRequirement: elevatesSelf +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Floorp-Projects/Floorp/releases/download/v11.28.0/floorp-win64.installer.exe + InstallerSha256: EBA47802B84AB7034E1F12E80D9064A132C1A897D7DC9E450B90338AE358DF22 + AppsAndFeaturesEntries: + - DisplayName: Ablaze Floorp (x64 en-US) + ProductCode: Ablaze Floorp 11.28.0 (x64 en-US) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Ablaze/Floorp/11.28.0/Ablaze.Floorp.locale.en-US.yaml b/manifests/a/Ablaze/Floorp/11.28.0/Ablaze.Floorp.locale.en-US.yaml new file mode 100644 index 0000000000000..de80eee5ce6eb --- /dev/null +++ b/manifests/a/Ablaze/Floorp/11.28.0/Ablaze.Floorp.locale.en-US.yaml @@ -0,0 +1,36 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: Ablaze.Floorp +PackageVersion: 11.28.0 +PackageLocale: en-US +Publisher: Ablaze +PublisherUrl: https://ablaze.one/ +PublisherSupportUrl: https://docs.floorp.app/ +Documentations: +- DocumentLabel: Floorp Docs + DocumentUrl: https://docs.floorp.app/ +Agreements: +- AgreementLabel: Terms of Service + AgreementUrl: https://floorp.app/en-US/terms +- AgreementLabel: Privacy Policy + AgreementUrl: https://floorp.app/en-US/privacy +PrivacyUrl: https://floorp.app/en-US/privacy +Author: Floorp Projects +PackageName: Ablaze Floorp +PackageUrl: https://floorp.app/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://github.com/Floorp-Projects/Floorp/blob/ESR128/LICENSE/ +ShortDescription: Floorp is built on Firefox and was built in Japan and is a new browser with excellent privacy & flexibility. +Moniker: floorp +Tags: +- browser +- cross-platform +- firefox-fork +- foss +- gecko +- internet-browser +- open-source +- web +- web-browser +ReleaseNotesUrl: https://blog.floorp.app/en/release/11.28.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Ablaze/Floorp/11.28.0/Ablaze.Floorp.locale.ja-JP.yaml b/manifests/a/Ablaze/Floorp/11.28.0/Ablaze.Floorp.locale.ja-JP.yaml new file mode 100644 index 0000000000000..28d5b8d45cc30 --- /dev/null +++ b/manifests/a/Ablaze/Floorp/11.28.0/Ablaze.Floorp.locale.ja-JP.yaml @@ -0,0 +1,35 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json +PackageIdentifier: Ablaze.Floorp +PackageVersion: 11.28.0 +PackageLocale: ja-JP +Publisher: Ablaze +PublisherUrl: https://ablaze.one/ +PublisherSupportUrl: https://docs.floorp.app/ja/ +Documentations: +- DocumentLabel: Floorp Docs + DocumentUrl: https://docs.floorp.app/ja/ +Agreements: +- AgreementLabel: 利用規約 + AgreementUrl: https://floorp.app/ja-JP/terms +- AgreementLabel: プライバシーポリシー + AgreementUrl: https://floorp.app/ja-JP/privacy +PrivacyUrl: https://floorp.app/ja-JP/privacy +Author: Floorp Projects +PackageName: Ablaze Floorp +PackageUrl: https://floorp.app/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://github.com/Floorp-Projects/Floorp/blob/ESR128/LICENSE/ +ShortDescription: FloorpはFirefoxをベースに、ウェブの公開性、匿名性、安全性、機能性のバランスにフォーカスを当てた日本製のウェブブラウザーです。 +Tags: +- browser +- cross-platform +- firefox-fork +- foss +- gecko +- internet-browser +- open-source +- web +- web-browser +ReleaseNotesUrl: https://blog.floorp.app/ja/release/11.28.0 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Ablaze/Floorp/11.28.0/Ablaze.Floorp.yaml b/manifests/a/Ablaze/Floorp/11.28.0/Ablaze.Floorp.yaml new file mode 100644 index 0000000000000..419e5ac23fc9d --- /dev/null +++ b/manifests/a/Ablaze/Floorp/11.28.0/Ablaze.Floorp.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: Ablaze.Floorp +PackageVersion: 11.28.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.13/ActiveDirectoryPro.365ProToolkit.yaml b/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.13/ActiveDirectoryPro.365ProToolkit.yaml deleted file mode 100644 index fb2c11ce1a7cb..0000000000000 --- a/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.13/ActiveDirectoryPro.365ProToolkit.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: ActiveDirectoryPro.365ProToolkit -PackageVersion: 1.1.13 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.13/ActiveDirectoryPro.365ProToolkit.installer.yaml b/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.15/ActiveDirectoryPro.365ProToolkit.installer.yaml similarity index 87% rename from manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.13/ActiveDirectoryPro.365ProToolkit.installer.yaml rename to manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.15/ActiveDirectoryPro.365ProToolkit.installer.yaml index 54f61ef02556e..1e1d298e3baa8 100644 --- a/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.13/ActiveDirectoryPro.365ProToolkit.installer.yaml +++ b/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.15/ActiveDirectoryPro.365ProToolkit.installer.yaml @@ -1,8 +1,8 @@ # 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: ActiveDirectoryPro.365ProToolkit -PackageVersion: 1.1.13 +PackageVersion: 1.1.15 InstallerType: exe Scope: machine InstallModes: @@ -59,13 +59,13 @@ UpgradeBehavior: install Dependencies: PackageDependencies: - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.6 -ProductCode: '{5F8B7B6F-3735-4563-B1CA-DE7575729620}' +ProductCode: '{0FA4C020-55F7-4D7B-9AE8-D4650A564FA0}' AppsAndFeaturesEntries: - UpgradeCode: '{84DD732A-985B-4E17-86CE-F2085F3EC987}' InstallerType: msi Installers: - Architecture: x64 InstallerUrl: https://activedirectorypro.com/downloads/365ProToolkit.exe - InstallerSha256: 020257E50DDAF06773EF56DB5E258C565B7E2291BBE7B4F13FF99DCD6AC816C8 + InstallerSha256: BED9C67BF3465FF40E7A5B9A24CC1AB4B8618400B7D41436F8C865BCC648F674 ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.13/ActiveDirectoryPro.365ProToolkit.locale.en-US.yaml b/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.15/ActiveDirectoryPro.365ProToolkit.locale.en-US.yaml similarity index 89% rename from manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.13/ActiveDirectoryPro.365ProToolkit.locale.en-US.yaml rename to manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.15/ActiveDirectoryPro.365ProToolkit.locale.en-US.yaml index 6dde9553b1daa..c359a8f79020a 100644 --- a/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.13/ActiveDirectoryPro.365ProToolkit.locale.en-US.yaml +++ b/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.15/ActiveDirectoryPro.365ProToolkit.locale.en-US.yaml @@ -1,8 +1,8 @@ # 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: ActiveDirectoryPro.365ProToolkit -PackageVersion: 1.1.13 +PackageVersion: 1.1.15 PackageLocale: en-US Publisher: ActiveDirectoryPro PublisherUrl: https://activedirectorypro.com/ @@ -23,4 +23,4 @@ Documentations: - DocumentLabel: Documentation DocumentUrl: https://activedirectorypro.com/docs/ ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.13/ActiveDirectoryPro.365ProToolkit.locale.zh-CN.yaml b/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.15/ActiveDirectoryPro.365ProToolkit.locale.zh-CN.yaml similarity index 81% rename from manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.13/ActiveDirectoryPro.365ProToolkit.locale.zh-CN.yaml rename to manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.15/ActiveDirectoryPro.365ProToolkit.locale.zh-CN.yaml index 5b9d89482a205..b36d200498413 100644 --- a/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.13/ActiveDirectoryPro.365ProToolkit.locale.zh-CN.yaml +++ b/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.15/ActiveDirectoryPro.365ProToolkit.locale.zh-CN.yaml @@ -1,8 +1,8 @@ # 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: ActiveDirectoryPro.365ProToolkit -PackageVersion: 1.1.13 +PackageVersion: 1.1.15 PackageLocale: zh-CN License: 专有软件 ShortDescription: 简化 Microsoft 365 管理和报告 @@ -10,4 +10,4 @@ Documentations: - DocumentLabel: 文档 DocumentUrl: https://activedirectorypro.com/docs/ ManifestType: locale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.15/ActiveDirectoryPro.365ProToolkit.yaml b/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.15/ActiveDirectoryPro.365ProToolkit.yaml new file mode 100644 index 0000000000000..01298c14010a2 --- /dev/null +++ b/manifests/a/ActiveDirectoryPro/365ProToolkit/1.1.15/ActiveDirectoryPro.365ProToolkit.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: ActiveDirectoryPro.365ProToolkit +PackageVersion: 1.1.15 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.3/ActiveDirectoryPro.ADProToolkit.installer.yaml b/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.4/ActiveDirectoryPro.ADProToolkit.installer.yaml similarity index 89% rename from manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.3/ActiveDirectoryPro.ADProToolkit.installer.yaml rename to manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.4/ActiveDirectoryPro.ADProToolkit.installer.yaml index 5079b9a8ccd24..2a97071eb4877 100644 --- a/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.3/ActiveDirectoryPro.ADProToolkit.installer.yaml +++ b/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.4/ActiveDirectoryPro.ADProToolkit.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: ActiveDirectoryPro.ADProToolkit -PackageVersion: 2.3.3 +PackageVersion: 2.3.4 InstallerType: exe Scope: machine InstallModes: @@ -55,13 +55,13 @@ ExpectedReturnCodes: ReturnResponse: invalidParameter - InstallerReturnCode: -1 ReturnResponse: cancelledByUser -ProductCode: '{F75195B4-A938-4EAE-8AC3-36C5A615BA48}' +ProductCode: '{D6DEB2E9-CE87-4C4F-BC0B-EB1872E7F11F}' AppsAndFeaturesEntries: - UpgradeCode: '{1A0C25E2-86F2-475B-B44E-7774AF3F3676}' InstallerType: msi Installers: - Architecture: x64 InstallerUrl: https://activedirectorypro.com/downloads/ADProToolkit.exe - InstallerSha256: 6E32BCA5E93BAB8C66C2E2F5DDC996A233CFBE43ACACEFF9BCFCF4F045364356 + InstallerSha256: F41D778B2B8F35B7AF91A5848F92AC4DFA308331B8954DC758EFBDE7CB7B8B84 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.3/ActiveDirectoryPro.ADProToolkit.locale.en-US.yaml b/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.4/ActiveDirectoryPro.ADProToolkit.locale.en-US.yaml similarity index 96% rename from manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.3/ActiveDirectoryPro.ADProToolkit.locale.en-US.yaml rename to manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.4/ActiveDirectoryPro.ADProToolkit.locale.en-US.yaml index 692ff4966da71..410fbeeafeec4 100644 --- a/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.3/ActiveDirectoryPro.ADProToolkit.locale.en-US.yaml +++ b/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.4/ActiveDirectoryPro.ADProToolkit.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: ActiveDirectoryPro.ADProToolkit -PackageVersion: 2.3.3 +PackageVersion: 2.3.4 PackageLocale: en-US Publisher: ActiveDirectoryPro PublisherUrl: https://activedirectorypro.com/ diff --git a/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.3/ActiveDirectoryPro.ADProToolkit.locale.zh-CN.yaml b/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.4/ActiveDirectoryPro.ADProToolkit.locale.zh-CN.yaml similarity index 94% rename from manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.3/ActiveDirectoryPro.ADProToolkit.locale.zh-CN.yaml rename to manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.4/ActiveDirectoryPro.ADProToolkit.locale.zh-CN.yaml index 9030fe85305ca..64b77944e1993 100644 --- a/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.3/ActiveDirectoryPro.ADProToolkit.locale.zh-CN.yaml +++ b/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.4/ActiveDirectoryPro.ADProToolkit.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: ActiveDirectoryPro.ADProToolkit -PackageVersion: 2.3.3 +PackageVersion: 2.3.4 PackageLocale: zh-CN License: 专有软件 ShortDescription: 一组用于简化 Active Directory 的工具 diff --git a/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.3/ActiveDirectoryPro.ADProToolkit.yaml b/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.4/ActiveDirectoryPro.ADProToolkit.yaml similarity index 89% rename from manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.3/ActiveDirectoryPro.ADProToolkit.yaml rename to manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.4/ActiveDirectoryPro.ADProToolkit.yaml index e796456fc7e7c..6497ea67b531e 100644 --- a/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.3/ActiveDirectoryPro.ADProToolkit.yaml +++ b/manifests/a/ActiveDirectoryPro/ADProToolkit/2.3.4/ActiveDirectoryPro.ADProToolkit.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: ActiveDirectoryPro.ADProToolkit -PackageVersion: 2.3.3 +PackageVersion: 2.3.4 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuard/Beta/7.20.4949.0/AdGuard.AdGuard.Beta.installer.yaml b/manifests/a/AdGuard/AdGuard/Beta/7.20.4949.0/AdGuard.AdGuard.Beta.installer.yaml deleted file mode 100644 index 9d6b47add923b..0000000000000 --- a/manifests/a/AdGuard/AdGuard/Beta/7.20.4949.0/AdGuard.AdGuard.Beta.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically updated by the winget bot at 2025/Feb/13 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: AdGuard.AdGuard.Beta -PackageVersion: 7.20.4949.0 -InstallerType: burn -Installers: -- Architecture: x86 - InstallerUrl: https://agrd.io/windows_beta - InstallerSha256: E99FE8C0A093736515D5612B730EAE1E148B23227FFF7A9E3A8813499BFEF0DD -Scope: machine -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: -quiet - SilentWithProgress: -quiet -UpgradeBehavior: install -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/a/AdGuard/AdGuard/Beta/7.20.4949.0/AdGuard.AdGuard.Beta.locale.en-US.yaml b/manifests/a/AdGuard/AdGuard/Beta/7.20.4949.0/AdGuard.AdGuard.Beta.locale.en-US.yaml deleted file mode 100644 index 72ce2b6a1cd42..0000000000000 --- a/manifests/a/AdGuard/AdGuard/Beta/7.20.4949.0/AdGuard.AdGuard.Beta.locale.en-US.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically updated by the winget bot at 2025/Feb/13 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: AdGuard.AdGuard.Beta -PackageVersion: 7.20.4949.0 -PackageLocale: en-US -Publisher: Adguard Software Limited -PackageName: AdGuard -PackageUrl: https://adguard.com/en/beta.html -License: Proprietary -Copyright: (c) All rights reserved -ShortDescription: AdGuard -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/a/AdGuard/AdGuard/Beta/7.20.4949.0/AdGuard.AdGuard.Beta.yaml b/manifests/a/AdGuard/AdGuard/Beta/7.20.4949.0/AdGuard.AdGuard.Beta.yaml deleted file mode 100644 index f7147f46b77f8..0000000000000 --- a/manifests/a/AdGuard/AdGuard/Beta/7.20.4949.0/AdGuard.AdGuard.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Feb/13 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: AdGuard.AdGuard.Beta -PackageVersion: 7.20.4949.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 diff --git a/manifests/a/AdGuard/AdGuard/Beta/7.21.5056.0/AdGuard.AdGuard.Beta.installer.yaml b/manifests/a/AdGuard/AdGuard/Beta/7.21.5056.0/AdGuard.AdGuard.Beta.installer.yaml new file mode 100644 index 0000000000000..2028fe1b32a58 --- /dev/null +++ b/manifests/a/AdGuard/AdGuard/Beta/7.21.5056.0/AdGuard.AdGuard.Beta.installer.yaml @@ -0,0 +1,20 @@ +# Automatically updated by the winget bot at 2025/Jun/26 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AdGuard.AdGuard.Beta +PackageVersion: 7.21.5056.0 +InstallerType: burn +Installers: +- Architecture: x86 + InstallerUrl: https://agrd.io/windows_beta + InstallerSha256: 3393554896EDB49FD8F3840753FE1F69570B8D89D586DD1B3C5AFDB6E209C0AD +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: -quiet + SilentWithProgress: -quiet +UpgradeBehavior: install +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuard/Beta/7.21.5056.0/AdGuard.AdGuard.Beta.locale.en-US.yaml b/manifests/a/AdGuard/AdGuard/Beta/7.21.5056.0/AdGuard.AdGuard.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..b2cc072f724ee --- /dev/null +++ b/manifests/a/AdGuard/AdGuard/Beta/7.21.5056.0/AdGuard.AdGuard.Beta.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Automatically updated by the winget bot at 2025/Jun/26 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AdGuard.AdGuard.Beta +PackageVersion: 7.21.5056.0 +PackageLocale: en-US +Publisher: Adguard Software Limited +PackageName: AdGuard +PackageUrl: https://adguard.com/en/beta.html +License: Proprietary +Copyright: © All rights reserved +ShortDescription: AdGuard +Tags: +- adblock +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuard/Beta/7.21.5056.0/AdGuard.AdGuard.Beta.yaml b/manifests/a/AdGuard/AdGuard/Beta/7.21.5056.0/AdGuard.AdGuard.Beta.yaml new file mode 100644 index 0000000000000..e547f813da5d3 --- /dev/null +++ b/manifests/a/AdGuard/AdGuard/Beta/7.21.5056.0/AdGuard.AdGuard.Beta.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jun/26 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: AdGuard.AdGuard.Beta +PackageVersion: 7.21.5056.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuardHome/0.107.63/AdGuard.AdGuardHome.installer.yaml b/manifests/a/AdGuard/AdGuardHome/0.107.63/AdGuard.AdGuardHome.installer.yaml new file mode 100644 index 0000000000000..9c5bb2cbf7c24 --- /dev/null +++ b/manifests/a/AdGuard/AdGuardHome/0.107.63/AdGuard.AdGuardHome.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AdGuard.AdGuardHome +PackageVersion: 0.107.63 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: AdGuardHome/AdGuardHome.exe +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.63/AdGuardHome_windows_386.zip + InstallerSha256: 31A4B4942B2C076A8A497A338D07BE66E1E6FB4E8B08A91805103F1F35D47171 +- Architecture: x64 + InstallerUrl: https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.63/AdGuardHome_windows_amd64.zip + InstallerSha256: 0BD07CB54818625764F1D6081B7DE544E033DEB101BFB2903B07CB63B93F7EB3 +- Architecture: arm64 + InstallerUrl: https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.63/AdGuardHome_windows_arm64.zip + InstallerSha256: 7C723C4C7C30FDD2D3131C7D8540F0A532734E291D354ED95C003BEB2BF7FB79 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuardHome/0.107.63/AdGuard.AdGuardHome.locale.en-US.yaml b/manifests/a/AdGuard/AdGuardHome/0.107.63/AdGuard.AdGuardHome.locale.en-US.yaml new file mode 100644 index 0000000000000..ca21e6284c9da --- /dev/null +++ b/manifests/a/AdGuard/AdGuardHome/0.107.63/AdGuard.AdGuardHome.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AdGuard.AdGuardHome +PackageVersion: 0.107.63 +PackageLocale: en-US +Publisher: AdGuard +PublisherUrl: https://adguard.com/en +PublisherSupportUrl: https://github.com/AdguardTeam/AdGuardHome/issues +PrivacyUrl: https://github.com/AdguardTeam/AdGuardHome#privacy +Author: AdGuard +PackageName: AdGuardHome +PackageUrl: https://adguard.com/en/adguard-home/overview.html +License: GPL-3.0 +LicenseUrl: https://github.com/AdguardTeam/AdGuardHome/blob/HEAD/LICENSE.txt +Copyright: Copyright © 2023 AdGuard +ShortDescription: AdGuard Home is a network-wide software for blocking ads & tracking. +Description: |- + AdGuard Home is a network-wide software for blocking ads & tracking. + After you set it up, it’ll cover ALL your home devices, and you don’t need any client-side software for that. + With the rise of Internet-Of-Things and connected devices, it becomes more and more important to be able to control your whole network. +Tags: +- ad +- adblock +- advertisement +- blocker +- internet +- network +- privacy +- protect +- protection +- security +- tracking +- web +- webpage +ReleaseNotes: |- + It’s not always the big issues: sometimes what you need is a few fixes and tweaks to pump up the overall stability 🔩 + Acknowledgments + A special thanks our community moderators team and to everyone who filed and inspected issues, added translations, and helped us test this release! + Full changelog + See also the v0.107.63 GitHub milestone. + Security + - Go version has been updated to prevent the possibility of exploiting the Go vulnerabilities fixed in 1.24.4. + Fixed + - The hostnames of DHCP clients with multiple labels not being recognized. + - Status reported by the systemd service implementation in cases of auto-restart after a failed start. +ReleaseNotesUrl: https://github.com/AdguardTeam/AdGuardHome/releases/tag/v0.107.63 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuardHome/0.107.63/AdGuard.AdGuardHome.yaml b/manifests/a/AdGuard/AdGuardHome/0.107.63/AdGuard.AdGuardHome.yaml new file mode 100644 index 0000000000000..0dd28dc29cb26 --- /dev/null +++ b/manifests/a/AdGuard/AdGuardHome/0.107.63/AdGuard.AdGuardHome.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: AdGuard.AdGuardHome +PackageVersion: 0.107.63 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuardVPN/2.5.1700.0/AdGuard.AdGuardVPN.installer.yaml b/manifests/a/AdGuard/AdGuardVPN/2.5.1700.0/AdGuard.AdGuardVPN.installer.yaml deleted file mode 100644 index 5099b022e85e0..0000000000000 --- a/manifests/a/AdGuard/AdGuardVPN/2.5.1700.0/AdGuard.AdGuardVPN.installer.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Automatically updated by the winget bot at 2025/Mar/10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: AdGuard.AdGuardVPN -PackageVersion: 2.5.1700.0 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: burn -Scope: machine -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: -quiet - SilentWithProgress: -quiet -UpgradeBehavior: install -Installers: -- Architecture: x64 - InstallerUrl: https://static.adguard-vpn.com/windows/installer.exe - InstallerSha256: AF7D1D966CC472E0CE8850B542B2900641DBB3CC376FD0ADD1CFD161CEAE3A3A - AppsAndFeaturesEntries: - - DisplayName: AdGuardVPN - ProductCode: '{fdb35bb8-aaf9-4d4b-94c9-a7ec57c494ac}' -- Architecture: x86 - InstallerUrl: https://static.adguard-vpn.com/windows/installer.exe - InstallerSha256: AF7D1D966CC472E0CE8850B542B2900641DBB3CC376FD0ADD1CFD161CEAE3A3A - AppsAndFeaturesEntries: - - DisplayName: AdGuardVPN - ProductCode: '{fdb35bb8-aaf9-4d4b-94c9-a7ec57c494ac}' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuardVPN/2.5.1700.0/AdGuard.AdGuardVPN.yaml b/manifests/a/AdGuard/AdGuardVPN/2.5.1700.0/AdGuard.AdGuardVPN.yaml deleted file mode 100644 index 4b0078a45fcc0..0000000000000 --- a/manifests/a/AdGuard/AdGuardVPN/2.5.1700.0/AdGuard.AdGuardVPN.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Mar/10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: AdGuard.AdGuardVPN -PackageVersion: 2.5.1700.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuardVPN/2.6.1782.0/AdGuard.AdGuardVPN.installer.yaml b/manifests/a/AdGuard/AdGuardVPN/2.6.1782.0/AdGuard.AdGuardVPN.installer.yaml new file mode 100644 index 0000000000000..0c66720f0ef8e --- /dev/null +++ b/manifests/a/AdGuard/AdGuardVPN/2.6.1782.0/AdGuard.AdGuardVPN.installer.yaml @@ -0,0 +1,32 @@ +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AdGuard.AdGuardVPN +PackageVersion: 2.6.1782.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: burn +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: -quiet + SilentWithProgress: -quiet +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://static.adguard-vpn.com/windows/installer.exe + InstallerSha256: D35FC8839B7533B44A1D839541837F2C85580F686E366F8385104384649E5F09 + AppsAndFeaturesEntries: + - DisplayName: AdGuardVPN + ProductCode: '{fdb35bb8-aaf9-4d4b-94c9-a7ec57c494ac}' +- Architecture: x86 + InstallerUrl: https://static.adguard-vpn.com/windows/installer.exe + InstallerSha256: D35FC8839B7533B44A1D839541837F2C85580F686E366F8385104384649E5F09 + AppsAndFeaturesEntries: + - DisplayName: AdGuardVPN + ProductCode: '{fdb35bb8-aaf9-4d4b-94c9-a7ec57c494ac}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuardVPN/2.5.1700.0/AdGuard.AdGuardVPN.locale.en-US.yaml b/manifests/a/AdGuard/AdGuardVPN/2.6.1782.0/AdGuard.AdGuardVPN.locale.en-US.yaml similarity index 88% rename from manifests/a/AdGuard/AdGuardVPN/2.5.1700.0/AdGuard.AdGuardVPN.locale.en-US.yaml rename to manifests/a/AdGuard/AdGuardVPN/2.6.1782.0/AdGuard.AdGuardVPN.locale.en-US.yaml index abda010b89654..81b68e4255e61 100644 --- a/manifests/a/AdGuard/AdGuardVPN/2.5.1700.0/AdGuard.AdGuardVPN.locale.en-US.yaml +++ b/manifests/a/AdGuard/AdGuardVPN/2.6.1782.0/AdGuard.AdGuardVPN.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Mar/10 +# Automatically updated by the winget bot at 2025/Jul/03 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: AdGuard.AdGuardVPN -PackageVersion: 2.5.1700.0 +PackageVersion: 2.6.1782.0 PackageLocale: en-US Publisher: Adguard Software Limited PublisherUrl: https://adguard.com @@ -23,5 +23,6 @@ Tags: - protection - security - vpn +- adblock ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuardVPN/2.6.1782.0/AdGuard.AdGuardVPN.yaml b/manifests/a/AdGuard/AdGuardVPN/2.6.1782.0/AdGuard.AdGuardVPN.yaml new file mode 100644 index 0000000000000..45b98926cfa0b --- /dev/null +++ b/manifests/a/AdGuard/AdGuardVPN/2.6.1782.0/AdGuard.AdGuardVPN.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: AdGuard.AdGuardVPN +PackageVersion: 2.6.1782.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1756.0/AdGuard.AdGuardVPN.Beta.installer.yaml b/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1756.0/AdGuard.AdGuardVPN.Beta.installer.yaml deleted file mode 100644 index c631ef6d324f2..0000000000000 --- a/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1756.0/AdGuard.AdGuardVPN.Beta.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/13 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: AdGuard.AdGuardVPN.Beta -PackageVersion: 2.6.1756.0 -InstallerType: burn -Scope: machine -InstallerSwitches: - Custom: -quiet -UpgradeBehavior: install -Installers: -- Architecture: x86 - InstallerUrl: https://static.adguard-vpn.com/windows/beta/installer.exe - InstallerSha256: 1DB942A548778C501B143B5C58378537602A8842BACB27EF3EBB2840188A937F -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1756.0/AdGuard.AdGuardVPN.Beta.yaml b/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1756.0/AdGuard.AdGuardVPN.Beta.yaml deleted file mode 100644 index a8594037111c5..0000000000000 --- a/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1756.0/AdGuard.AdGuardVPN.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/13 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: AdGuard.AdGuardVPN.Beta -PackageVersion: 2.6.1756.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1780.0/AdGuard.AdGuardVPN.Beta.installer.yaml b/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1780.0/AdGuard.AdGuardVPN.Beta.installer.yaml new file mode 100644 index 0000000000000..d4b1521087f1d --- /dev/null +++ b/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1780.0/AdGuard.AdGuardVPN.Beta.installer.yaml @@ -0,0 +1,16 @@ +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AdGuard.AdGuardVPN.Beta +PackageVersion: 2.6.1780.0 +InstallerType: burn +Scope: machine +InstallerSwitches: + Custom: -quiet +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://static.adguard-vpn.com/windows/beta/installer.exe + InstallerSha256: 2CA8B23C9F97A59A6E4491BD9B90C7DF05B87053BC9C592836194515AA14AAA5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1756.0/AdGuard.AdGuardVPN.Beta.locale.en-US.yaml b/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1780.0/AdGuard.AdGuardVPN.Beta.locale.en-US.yaml similarity index 83% rename from manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1756.0/AdGuard.AdGuardVPN.Beta.locale.en-US.yaml rename to manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1780.0/AdGuard.AdGuardVPN.Beta.locale.en-US.yaml index ccfcc7845424b..915db9894110c 100644 --- a/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1756.0/AdGuard.AdGuardVPN.Beta.locale.en-US.yaml +++ b/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1780.0/AdGuard.AdGuardVPN.Beta.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jun/13 +# Automatically updated by the winget bot at 2025/Jul/03 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: AdGuard.AdGuardVPN.Beta -PackageVersion: 2.6.1756.0 +PackageVersion: 2.6.1780.0 PackageLocale: en-US Publisher: Adguard Software Limited PublisherSupportUrl: https://adguard-vpn.com/en/support.html @@ -10,5 +10,7 @@ PrivacyUrl: https://adguard-vpn.com/en/privacy.html PackageName: AdGuard VPN Beta License: Proprietary ShortDescription: Topnotch VPN by AdGuard. Your ultimate solution for the safe Internet without restrictions. Must-have when you need uncompromising online privacy protection. +Tags: +- adblock ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1780.0/AdGuard.AdGuardVPN.Beta.yaml b/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1780.0/AdGuard.AdGuardVPN.Beta.yaml new file mode 100644 index 0000000000000..33dce56d2bc82 --- /dev/null +++ b/manifests/a/AdGuard/AdGuardVPN/Beta/2.6.1780.0/AdGuard.AdGuardVPN.Beta.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: AdGuard.AdGuardVPN.Beta +PackageVersion: 2.6.1780.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/dnsproxy/0.76.0/AdGuard.dnsproxy.installer.yaml b/manifests/a/AdGuard/dnsproxy/0.76.0/AdGuard.dnsproxy.installer.yaml new file mode 100644 index 0000000000000..ff144a6d36950 --- /dev/null +++ b/manifests/a/AdGuard/dnsproxy/0.76.0/AdGuard.dnsproxy.installer.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AdGuard.dnsproxy +PackageVersion: 0.76.0 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: windows-386/dnsproxy.exe + InstallerUrl: https://github.com/AdguardTeam/dnsproxy/releases/download/v0.76.0/dnsproxy-windows-386-v0.76.0.zip + InstallerSha256: 1886BA545FC8771F9213D605F2068FFC1887197784977DCF73905EC866FC99B6 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: windows-amd64/dnsproxy.exe + InstallerUrl: https://github.com/AdguardTeam/dnsproxy/releases/download/v0.76.0/dnsproxy-windows-amd64-v0.76.0.zip + InstallerSha256: AC18432542726CB54F11739E24347BB6E1A72E5566973B52ED77AB8A913B0435 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: windows-arm64/dnsproxy.exe + InstallerUrl: https://github.com/AdguardTeam/dnsproxy/releases/download/v0.76.0/dnsproxy-windows-arm64-v0.76.0.zip + InstallerSha256: E0A2D7C18532AB5BB336A86873CA1F3091101CF0FA6ED10ED86DCBFBDFDBE904 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/dnsproxy/0.76.0/AdGuard.dnsproxy.locale.en-US.yaml b/manifests/a/AdGuard/dnsproxy/0.76.0/AdGuard.dnsproxy.locale.en-US.yaml new file mode 100644 index 0000000000000..e3a9e4ed9140e --- /dev/null +++ b/manifests/a/AdGuard/dnsproxy/0.76.0/AdGuard.dnsproxy.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AdGuard.dnsproxy +PackageVersion: 0.76.0 +PackageLocale: en-US +Publisher: AdGuard +PublisherUrl: https://adguard.com/ +PublisherSupportUrl: https://github.com/AdguardTeam/dnsproxy/issues +PackageName: DNS Proxy +PackageUrl: https://github.com/AdguardTeam/dnsproxy +License: Apache-2.0 +LicenseUrl: https://github.com/AdguardTeam/dnsproxy/blob/HEAD/LICENSE +ShortDescription: Simple DNS proxy with DoH, DoT, DoQ and DNSCrypt support +Tags: +- dns +- dns-over-https +- dns-over-quic +- dns-over-tls +- dnscrypt +- golang +- open-source +- proxy +- adblock +ReleaseNotes: |- + Changed + - quic-go update: fields QUICConnection and QUICStream of proxy.DNSContext type are now pointer to structs. + Removed + - The previously deprecated function fastip.NewFastestAddr. +ReleaseNotesUrl: https://github.com/AdguardTeam/dnsproxy/releases/tag/v0.76.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/dnsproxy/0.76.0/AdGuard.dnsproxy.yaml b/manifests/a/AdGuard/dnsproxy/0.76.0/AdGuard.dnsproxy.yaml new file mode 100644 index 0000000000000..8cb94db9d9606 --- /dev/null +++ b/manifests/a/AdGuard/dnsproxy/0.76.0/AdGuard.dnsproxy.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: AdGuard.dnsproxy +PackageVersion: 0.76.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Adobe/Acrobat/Reader/64-bit/25.001.20566/Adobe.Acrobat.Reader.64-bit.installer.yaml b/manifests/a/Adobe/Acrobat/Reader/64-bit/25.001.20566/Adobe.Acrobat.Reader.64-bit.installer.yaml new file mode 100644 index 0000000000000..63518a92afa77 --- /dev/null +++ b/manifests/a/Adobe/Acrobat/Reader/64-bit/25.001.20566/Adobe.Acrobat.Reader.64-bit.installer.yaml @@ -0,0 +1,85 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Adobe.Acrobat.Reader.64-bit +PackageVersion: 25.001.20566 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: -sfx_nu /sAll /rs /msi + SilentWithProgress: /sPB /rs /msi + Interactive: /msi + InstallLocation: INSTALLDIR="" + Log: /log "" +ExpectedReturnCodes: +- InstallerReturnCode: 1601 + ReturnResponse: contactSupport +- InstallerReturnCode: 1602 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress +- InstallerReturnCode: 1623 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1625 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1628 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1633 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1638 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 1639 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1640 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated +- InstallerReturnCode: 1643 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1644 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1649 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1650 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1654 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish +UpgradeBehavior: install +Protocols: +- acrobat +- acrobat2018 +- acrobat2019 +- acrobat2024 +- launchreader +FileExtensions: +- aaui +- acrobatsecuritysettings +- api +- bpdx +- chs +- fcdt +- fdf +- pdf +- pdfxml +- pdx +- rmf +- secstore +- sequ +- xdp +- xfdf +ProductCode: '{AC76BA86-1033-FF00-7760-BC15014EA700}' +AppsAndFeaturesEntries: +- DisplayName: Adobe Acrobat (64-bit) + InstallerType: msi +Installers: +- Architecture: x64 + InstallerUrl: https://ardownload2.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2500120566/AcroRdrDCx642500120566_MUI.exe + InstallerSha256: C24747280EDDB6D442738F81EBD1D7D8BB733336BBA14880FA9B9E00A789F032 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Adobe/Acrobat/Reader/64-bit/25.001.20566/Adobe.Acrobat.Reader.64-bit.locale.en-US.yaml b/manifests/a/Adobe/Acrobat/Reader/64-bit/25.001.20566/Adobe.Acrobat.Reader.64-bit.locale.en-US.yaml new file mode 100644 index 0000000000000..7f37b2e7ce831 --- /dev/null +++ b/manifests/a/Adobe/Acrobat/Reader/64-bit/25.001.20566/Adobe.Acrobat.Reader.64-bit.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Adobe.Acrobat.Reader.64-bit +PackageVersion: 25.001.20566 +PackageLocale: en-US +Publisher: Adobe +Author: Adobe Inc. +PackageName: Adobe Acrobat Reader (64-bit) +License: Proprietary +Copyright: Copyright © 1984-2024 Adobe. All rights reserved. +ShortDescription: The free global standard for reliably viewing, printing, signing, and commenting on PDF documents. +Description: Adobe Acrobat Reader software is the free, trusted global standard for viewing, printing, signing, sharing, and annotating PDFs. It's the only PDF viewer that can open and interact with all types of PDF content – including forms and multimedia. +Moniker: acrobatreader +Tags: +- annotate +- annotation +- comment +- ebook +- pdf +- read +- reader +- viewer +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Adobe/Acrobat/Reader/64-bit/25.001.20566/Adobe.Acrobat.Reader.64-bit.locale.zh-CN.yaml b/manifests/a/Adobe/Acrobat/Reader/64-bit/25.001.20566/Adobe.Acrobat.Reader.64-bit.locale.zh-CN.yaml new file mode 100644 index 0000000000000..298d8df5d7907 --- /dev/null +++ b/manifests/a/Adobe/Acrobat/Reader/64-bit/25.001.20566/Adobe.Acrobat.Reader.64-bit.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: Adobe.Acrobat.Reader.64-bit +PackageVersion: 25.001.20566 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 查看、打印、签署、共享和注释 PDF 文档的免费、可靠的全球标准。 +Description: Adobe Acrobat Reader 软件是查看、打印、签署、共享和注释 PDF 文档的免费、值得信赖的全球标准。它是唯一一款可以打开所有类型 PDF 内容(包括表单和多媒体)并与之交互的 PDF 阅读器。 +Tags: +- pdf +- 批注 +- 查看器 +- 标注 +- 注释 +- 电子书 +- 阅读 +- 阅读器 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Adobe/Acrobat/Reader/64-bit/25.001.20566/Adobe.Acrobat.Reader.64-bit.yaml b/manifests/a/Adobe/Acrobat/Reader/64-bit/25.001.20566/Adobe.Acrobat.Reader.64-bit.yaml new file mode 100644 index 0000000000000..4d1dee73ca02f --- /dev/null +++ b/manifests/a/Adobe/Acrobat/Reader/64-bit/25.001.20566/Adobe.Acrobat.Reader.64-bit.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: Adobe.Acrobat.Reader.64-bit +PackageVersion: 25.001.20566 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AgileBits/1Password/8.10.82/AgileBits.1Password.installer.yaml b/manifests/a/AgileBits/1Password/8.10.82/AgileBits.1Password.installer.yaml new file mode 100644 index 0000000000000..75743790d6c62 --- /dev/null +++ b/manifests/a/AgileBits/1Password/8.10.82/AgileBits.1Password.installer.yaml @@ -0,0 +1,34 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: AgileBits.1Password +PackageVersion: 8.10.82 +UpgradeBehavior: install +Protocols: +- onepassword +- onepassword8 +Installers: +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://downloads.1password.com/win/1PasswordSetup-8.10.82.exe + InstallerSha256: 55B5F983D04592D68C8247F80529358D12247D1F0A73F6FCD343B0273B71E6BA + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: 1Password +- Architecture: x64 + InstallerType: msi + Scope: machine + InstallerUrl: https://downloads.1password.com/win/1PasswordSetup-8.10.82.msi + InstallerSha256: 8E6A49D6D26D01586DFBBB89B2C2B48D51EF535A9DCCEA573945BB776B3901AB + ProductCode: '{D895EA0A-010D-4305-8F06-CC824DD92C73}' + AppsAndFeaturesEntries: + - Publisher: Agilebits Inc. + ProductCode: '{D895EA0A-010D-4305-8F06-CC824DD92C73}' + UpgradeCode: '{04B64D44-52BF-41A6-85BA-CDBA63AEB44D}' +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/a/AgileBits/1Password/8.10.82/AgileBits.1Password.locale.en-US.yaml b/manifests/a/AgileBits/1Password/8.10.82/AgileBits.1Password.locale.en-US.yaml new file mode 100644 index 0000000000000..35722c34b9016 --- /dev/null +++ b/manifests/a/AgileBits/1Password/8.10.82/AgileBits.1Password.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: AgileBits.1Password +PackageVersion: 8.10.82 +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.9.0 diff --git a/manifests/a/AgileBits/1Password/8.10.82/AgileBits.1Password.locale.zh-CN.yaml b/manifests/a/AgileBits/1Password/8.10.82/AgileBits.1Password.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fe1a053e806ca --- /dev/null +++ b/manifests/a/AgileBits/1Password/8.10.82/AgileBits.1Password.locale.zh-CN.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: AgileBits.1Password +PackageVersion: 8.10.82 +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.9.0 diff --git a/manifests/a/AgileBits/1Password/8.10.82/AgileBits.1Password.yaml b/manifests/a/AgileBits/1Password/8.10.82/AgileBits.1Password.yaml new file mode 100644 index 0000000000000..c72636395b04e --- /dev/null +++ b/manifests/a/AgileBits/1Password/8.10.82/AgileBits.1Password.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: AgileBits.1Password +PackageVersion: 8.10.82 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 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/AgileBits/1Password/Beta/8.10.82.27/AgileBits.1Password.Beta.installer.yaml b/manifests/a/AgileBits/1Password/Beta/8.10.82.27/AgileBits.1Password.Beta.installer.yaml deleted file mode 100644 index 5748d93df3181..0000000000000 --- a/manifests/a/AgileBits/1Password/Beta/8.10.82.27/AgileBits.1Password.Beta.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/13 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: AgileBits.1Password.Beta -PackageVersion: 8.10.82.27 -Installers: -- Architecture: x64 - InstallerUrl: https://downloads.1password.com/win/1PasswordSetup-latest.BETA.exe - InstallerSha256: C4CFB79CE70CB6917B62A1E4A63FEEB126E8852D4E1FB104F652725BC925C831 - InstallerType: exe - Scope: user - InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/a/AgileBits/1Password/Beta/8.10.82.27/AgileBits.1Password.Beta.yaml b/manifests/a/AgileBits/1Password/Beta/8.10.82.27/AgileBits.1Password.Beta.yaml deleted file mode 100644 index 227d18a000c90..0000000000000 --- a/manifests/a/AgileBits/1Password/Beta/8.10.82.27/AgileBits.1Password.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/13 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: AgileBits.1Password.Beta -PackageVersion: 8.10.82.27 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/a/AgileBits/1Password/Beta/8.11.0.25/AgileBits.1Password.Beta.installer.yaml b/manifests/a/AgileBits/1Password/Beta/8.11.0.25/AgileBits.1Password.Beta.installer.yaml new file mode 100644 index 0000000000000..8c681f2b7baba --- /dev/null +++ b/manifests/a/AgileBits/1Password/Beta/8.11.0.25/AgileBits.1Password.Beta.installer.yaml @@ -0,0 +1,16 @@ +# Automatically updated by the winget bot at 2025/Jun/25 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AgileBits.1Password.Beta +PackageVersion: 8.11.0.25 +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.1password.com/win/1PasswordSetup-latest.BETA.exe + InstallerSha256: 6548825247E03335C26231D78EA40028C575234E68DCAE0402155A1CD18BE38A + InstallerType: exe + Scope: user + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AgileBits/1Password/Beta/8.10.82.27/AgileBits.1Password.Beta.locale.en-US.yaml b/manifests/a/AgileBits/1Password/Beta/8.11.0.25/AgileBits.1Password.Beta.locale.en-US.yaml similarity index 85% rename from manifests/a/AgileBits/1Password/Beta/8.10.82.27/AgileBits.1Password.Beta.locale.en-US.yaml rename to manifests/a/AgileBits/1Password/Beta/8.11.0.25/AgileBits.1Password.Beta.locale.en-US.yaml index 8b1805c44f5dd..cc04b96c00e6a 100644 --- a/manifests/a/AgileBits/1Password/Beta/8.10.82.27/AgileBits.1Password.Beta.locale.en-US.yaml +++ b/manifests/a/AgileBits/1Password/Beta/8.11.0.25/AgileBits.1Password.Beta.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jun/13 +# Automatically updated by the winget bot at 2025/Jun/25 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: AgileBits.1Password.Beta -PackageVersion: 8.10.82.27 +PackageVersion: 8.11.0.25 PackageLocale: en-US Publisher: AgileBits, Inc. PublisherUrl: https://1password.com/ diff --git a/manifests/a/AgileBits/1Password/Beta/8.11.0.25/AgileBits.1Password.Beta.yaml b/manifests/a/AgileBits/1Password/Beta/8.11.0.25/AgileBits.1Password.Beta.yaml new file mode 100644 index 0000000000000..cd98162754a9d --- /dev/null +++ b/manifests/a/AgileBits/1Password/Beta/8.11.0.25/AgileBits.1Password.Beta.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jun/25 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: AgileBits.1Password.Beta +PackageVersion: 8.11.0.25 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AhoyLabs/BackyardAI/0.36.17.70620/AhoyLabs.BackyardAI.installer.yaml b/manifests/a/AhoyLabs/BackyardAI/0.36.17.70620/AhoyLabs.BackyardAI.installer.yaml deleted file mode 100644 index cb42ab978017d..0000000000000 --- a/manifests/a/AhoyLabs/BackyardAI/0.36.17.70620/AhoyLabs.BackyardAI.installer.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/13 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: AhoyLabs.BackyardAI -PackageVersion: 0.36.17.70620 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -Protocols: -- backyard -- faraday -ProductCode: faraday -ReleaseDate: 2025-02-19 -Installers: -- Architecture: x64 - InstallerUrl: https://update.backyard.ai/download/win32 - InstallerSha256: 03BC88BB8673EC8359573E5FA198DE10BBE07BCF0F6B1C8BCAA4FB967E49E90C -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/a/AhoyLabs/BackyardAI/0.36.17.70620/AhoyLabs.BackyardAI.locale.en-US.yaml b/manifests/a/AhoyLabs/BackyardAI/0.36.17.70620/AhoyLabs.BackyardAI.locale.en-US.yaml deleted file mode 100644 index ecf819bf83515..0000000000000 --- a/manifests/a/AhoyLabs/BackyardAI/0.36.17.70620/AhoyLabs.BackyardAI.locale.en-US.yaml +++ /dev/null @@ -1,47 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/13 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: AhoyLabs.BackyardAI -PackageVersion: 0.36.17.70620 -PackageLocale: en-US -Publisher: Ahoy Labs, Inc. -PublisherUrl: https://backyard.ai/ -PublisherSupportUrl: https://discord.com/invite/Ng4vmcDfqr -PrivacyUrl: https://backyard.ai/privacy -Author: Ahoy Labs, Inc. -PackageName: Backyard AI -PackageUrl: https://backyard.ai/desktop -License: Proprietary -LicenseUrl: https://backyard.ai/terms -Copyright: © 2024 Backyard AI -CopyrightUrl: https://backyard.ai/terms -ShortDescription: Run AI models locally. One-click install w/ zero configuration. -Tags: -- ai -- chatbot -- large-language-model -- llama -- llm -ReleaseNotes: |- - ● - Backyard Cloud: New 70B Models - ● - Llama 3.3 Euryale V2.3 70B - 32k context tokens - ● - Llama 3.3 Instruct 70B - 32k context tokens - ● - Pro subscribers get unlimited messages - ● - All other plans get 25 message credits per day to try these models - ● - Bug Fixes & Improvements - ● - More fixes for tethering timeout - ● - **Bold** rendering -ReleaseNotesUrl: https://backyard.ai/changelog -Documentations: -- DocumentLabel: Docs - DocumentUrl: https://backyard.ai/docs/start-guide/overview -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/a/AhoyLabs/BackyardAI/0.36.17.70620/AhoyLabs.BackyardAI.yaml b/manifests/a/AhoyLabs/BackyardAI/0.36.17.70620/AhoyLabs.BackyardAI.yaml deleted file mode 100644 index 22597cc8bf500..0000000000000 --- a/manifests/a/AhoyLabs/BackyardAI/0.36.17.70620/AhoyLabs.BackyardAI.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/13 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: AhoyLabs.BackyardAI -PackageVersion: 0.36.17.70620 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/a/AhoyLabs/BackyardAI/0.37.0/AhoyLabs.BackyardAI.installer.yaml b/manifests/a/AhoyLabs/BackyardAI/0.37.0/AhoyLabs.BackyardAI.installer.yaml new file mode 100644 index 0000000000000..7d103e0078a73 --- /dev/null +++ b/manifests/a/AhoyLabs/BackyardAI/0.37.0/AhoyLabs.BackyardAI.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AhoyLabs.BackyardAI +PackageVersion: 0.37.0 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- backyard +- faraday +ProductCode: faraday +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://update.backyard.ai/download/win32 + InstallerSha256: 729628AFAA5901BDB2A959B381B7B5F5C4A68AF183469797C7C3618BF30D94CB +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AhoyLabs/BackyardAI/0.37.0/AhoyLabs.BackyardAI.locale.en-US.yaml b/manifests/a/AhoyLabs/BackyardAI/0.37.0/AhoyLabs.BackyardAI.locale.en-US.yaml new file mode 100644 index 0000000000000..f288105b628d2 --- /dev/null +++ b/manifests/a/AhoyLabs/BackyardAI/0.37.0/AhoyLabs.BackyardAI.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: AhoyLabs.BackyardAI +PackageVersion: 0.37.0 +PackageLocale: en-US +Publisher: Ahoy Labs, Inc. +PublisherUrl: https://backyard.ai/ +PublisherSupportUrl: https://discord.com/invite/Ng4vmcDfqr +PrivacyUrl: https://backyard.ai/privacy +Author: Ahoy Labs, Inc. +PackageName: Backyard AI +PackageUrl: https://backyard.ai/desktop +License: Proprietary +LicenseUrl: https://backyard.ai/terms +Copyright: © 2024 Backyard AI +CopyrightUrl: https://backyard.ai/terms +ShortDescription: Run AI models locally. One-click install w/ zero configuration. +Tags: +- ai +- chatbot +- large-language-model +- llama +- llm +ReleaseNotesUrl: https://backyard.ai/changelog +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://backyard.ai/docs/start-guide/overview +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AhoyLabs/BackyardAI/0.36.17.70620/AhoyLabs.BackyardAI.locale.zh-CN.yaml b/manifests/a/AhoyLabs/BackyardAI/0.37.0/AhoyLabs.BackyardAI.locale.zh-CN.yaml similarity index 88% rename from manifests/a/AhoyLabs/BackyardAI/0.36.17.70620/AhoyLabs.BackyardAI.locale.zh-CN.yaml rename to manifests/a/AhoyLabs/BackyardAI/0.37.0/AhoyLabs.BackyardAI.locale.zh-CN.yaml index 98ac864fa9f33..e4f5a1bca671b 100644 --- a/manifests/a/AhoyLabs/BackyardAI/0.36.17.70620/AhoyLabs.BackyardAI.locale.zh-CN.yaml +++ b/manifests/a/AhoyLabs/BackyardAI/0.37.0/AhoyLabs.BackyardAI.locale.zh-CN.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jun/13 +# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: AhoyLabs.BackyardAI -PackageVersion: 0.36.17.70620 +PackageVersion: 0.37.0 PackageLocale: zh-CN Publisher: Ahoy Labs, Inc. PublisherUrl: https://backyard.ai/ diff --git a/manifests/a/AhoyLabs/BackyardAI/0.37.0/AhoyLabs.BackyardAI.yaml b/manifests/a/AhoyLabs/BackyardAI/0.37.0/AhoyLabs.BackyardAI.yaml new file mode 100644 index 0000000000000..cffabb329799c --- /dev/null +++ b/manifests/a/AhoyLabs/BackyardAI/0.37.0/AhoyLabs.BackyardAI.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: AhoyLabs.BackyardAI +PackageVersion: 0.37.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Aircall/AircallWorkspace/1.7.2/Aircall.AircallWorkspace.installer.yaml b/manifests/a/Aircall/AircallWorkspace/1.7.2/Aircall.AircallWorkspace.installer.yaml new file mode 100644 index 0000000000000..f4b91d18c1aed --- /dev/null +++ b/manifests/a/Aircall/AircallWorkspace/1.7.2/Aircall.AircallWorkspace.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: Aircall.AircallWorkspace +PackageVersion: 1.7.2 +UpgradeBehavior: install +Protocols: +- aircall +- callto +- tel +Installers: +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://download-electron.aircall.io/aircall-workspace/Aircall-Workspace-1.7.2-x64.exe + InstallerSha256: 47F02603DAC0CF171B593E86080EB1F429C252FE235D897D1D3764281D78D3BE + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: Aircall-Workspace + AppsAndFeaturesEntries: + - DisplayName: Aircall-Workspace + DisplayVersion: 1.7.2 +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-electron.aircall.io/aircall-workspace/Aircall-Workspace-1.7.2-x64.msi + InstallerSha256: 0AA7494FDAE9A65EEA3DEBBA328C252389297CC07D541B4EBE476240D21891ED + InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" + ProductCode: '{324E7DA5-9FC7-41A3-ACAB-86B5D274C7C8}' + AppsAndFeaturesEntries: + - DisplayVersion: 1.7.2.23424 + ProductCode: '{324E7DA5-9FC7-41A3-ACAB-86B5D274C7C8}' + UpgradeCode: '{4267F4EE-71BB-5FAA-9A6A-70660A24E665}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Aircall/AircallWorkspace/1.7.2/Aircall.AircallWorkspace.locale.en-US.yaml b/manifests/a/Aircall/AircallWorkspace/1.7.2/Aircall.AircallWorkspace.locale.en-US.yaml new file mode 100644 index 0000000000000..d0a33e3b5173e --- /dev/null +++ b/manifests/a/Aircall/AircallWorkspace/1.7.2/Aircall.AircallWorkspace.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: Aircall.AircallWorkspace +PackageVersion: 1.7.2 +PackageLocale: en-US +Publisher: Aircall +PublisherUrl: https://aircall.io/ +PublisherSupportUrl: https://support.aircall.io/ +PrivacyUrl: https://aircall.io/privacy/ +Author: Aircall.io, Inc. +PackageName: Aircall Workspace +PackageUrl: https://aircall.io/download/ +License: Proprietary +LicenseUrl: https://legal.aircall.io/#end-user-license-agreement +Copyright: Copyright Aircall 2025 +CopyrightUrl: https://legal.aircall.io/#end-user-license-agreement +ShortDescription: Make, receive, and manage customer communications directly from your Mac or PC. +Tags: +- bussiness +- collaborate +- collaboration +- comunication +- conference +- crm +- customer +- customer-service +- enterprise +- meeting +- oa +- office +- saas +- team +PurchaseUrl: https://aircall.io/pricing/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Aircall/AircallWorkspace/1.7.2/Aircall.AircallWorkspace.locale.zh-CN.yaml b/manifests/a/Aircall/AircallWorkspace/1.7.2/Aircall.AircallWorkspace.locale.zh-CN.yaml new file mode 100644 index 0000000000000..248ada5837a51 --- /dev/null +++ b/manifests/a/Aircall/AircallWorkspace/1.7.2/Aircall.AircallWorkspace.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: Aircall.AircallWorkspace +PackageVersion: 1.7.2 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 直接从 Mac 或 PC 收发和管理客户通信。 +Tags: +- crm +- oa +- saas +- 企业 +- 会议 +- 公司 +- 办公 +- 协作 +- 协同 +- 商务 +- 团队 +- 客户 +- 客服 +- 文档 +- 沟通 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Aircall/AircallWorkspace/1.7.2/Aircall.AircallWorkspace.yaml b/manifests/a/Aircall/AircallWorkspace/1.7.2/Aircall.AircallWorkspace.yaml new file mode 100644 index 0000000000000..fb02215e6b134 --- /dev/null +++ b/manifests/a/Aircall/AircallWorkspace/1.7.2/Aircall.AircallWorkspace.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: Aircall.AircallWorkspace +PackageVersion: 1.7.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Akiflow/Akiflow/2.53.6/Akiflow.Akiflow.installer.yaml b/manifests/a/Akiflow/Akiflow/2.53.6/Akiflow.Akiflow.installer.yaml new file mode 100644 index 0000000000000..fca1041ab3b2a --- /dev/null +++ b/manifests/a/Akiflow/Akiflow/2.53.6/Akiflow.Akiflow.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: Akiflow.Akiflow +PackageVersion: 2.53.6 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +ProductCode: fcfd5b65-85a1-59d9-8eb7-a98bf4457cb3 +ReleaseDate: 2025-06-25 +Installers: +- Architecture: x64 + InstallerUrl: https://download.akiflow.com/builds/Akiflow-2.53.6-92f152aa-x64.exe + InstallerSha256: A845232FCCA6D95FDB9F461A545F467A3344921ED03473924B6CE5DD55670584 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Akiflow/Akiflow/2.53.6/Akiflow.Akiflow.locale.en-US.yaml b/manifests/a/Akiflow/Akiflow/2.53.6/Akiflow.Akiflow.locale.en-US.yaml new file mode 100644 index 0000000000000..093d4fa9b4ec7 --- /dev/null +++ b/manifests/a/Akiflow/Akiflow/2.53.6/Akiflow.Akiflow.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: Akiflow.Akiflow +PackageVersion: 2.53.6 +PackageLocale: en-US +Publisher: Akiflow Inc. +PublisherUrl: https://akiflow.com/ +PrivacyUrl: https://akiflow.com/privacy-policy +Author: Akiflow Inc. +PackageName: Akiflow +PackageUrl: https://akiflow.com/download/ +License: Proprietary +LicenseUrl: https://akiflow.com/terms-of-service +Copyright: Akiflow © 2025 +CopyrightUrl: https://akiflow.com/terms-of-service +ShortDescription: One App for Tasks & Calendars +Tags: +- agenda +- calendar +- checklist +- collaborate +- collaboration +- gtd +- list +- schedule +- task +- to-do +- todo +ReleaseNotesUrl: https://product.akiflow.com/changelog +PurchaseUrl: https://akiflow.com/pricing/ +Documentations: +- DocumentLabel: How to use + DocumentUrl: https://how-to-use-guide.akiflow.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Akiflow/Akiflow/2.53.6/Akiflow.Akiflow.locale.zh-CN.yaml b/manifests/a/Akiflow/Akiflow/2.53.6/Akiflow.Akiflow.locale.zh-CN.yaml new file mode 100644 index 0000000000000..75c2c54149b54 --- /dev/null +++ b/manifests/a/Akiflow/Akiflow/2.53.6/Akiflow.Akiflow.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: Akiflow.Akiflow +PackageVersion: 2.53.6 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 任务与日历二合一应用 +Tags: +- 任务 +- 列表 +- 待办 +- 待办事项 +- 提醒事项 +- 日历 +- 日程 +- 日程管理 +- 时间管理 +- 清单 +- 议程 +Documentations: +- DocumentLabel: 如何使用 + DocumentUrl: https://how-to-use-guide.akiflow.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Akiflow/Akiflow/2.53.6/Akiflow.Akiflow.yaml b/manifests/a/Akiflow/Akiflow/2.53.6/Akiflow.Akiflow.yaml new file mode 100644 index 0000000000000..e1bf1a8715d5c --- /dev/null +++ b/manifests/a/Akiflow/Akiflow/2.53.6/Akiflow.Akiflow.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: Akiflow.Akiflow +PackageVersion: 2.53.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Akiflow/Akiflow/2.53.7/Akiflow.Akiflow.installer.yaml b/manifests/a/Akiflow/Akiflow/2.53.7/Akiflow.Akiflow.installer.yaml new file mode 100644 index 0000000000000..f807d9f70d7a3 --- /dev/null +++ b/manifests/a/Akiflow/Akiflow/2.53.7/Akiflow.Akiflow.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: Akiflow.Akiflow +PackageVersion: 2.53.7 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +ProductCode: fcfd5b65-85a1-59d9-8eb7-a98bf4457cb3 +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x64 + InstallerUrl: https://download.akiflow.com/builds/Akiflow-2.53.7-e65be87c-x64.exe + InstallerSha256: F55A88064562D16E9B5294B8C6B1E43F529D7E06ADF3F7D499D005C997E61C5C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Akiflow/Akiflow/2.53.7/Akiflow.Akiflow.locale.en-US.yaml b/manifests/a/Akiflow/Akiflow/2.53.7/Akiflow.Akiflow.locale.en-US.yaml new file mode 100644 index 0000000000000..99de53e2b3e91 --- /dev/null +++ b/manifests/a/Akiflow/Akiflow/2.53.7/Akiflow.Akiflow.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: Akiflow.Akiflow +PackageVersion: 2.53.7 +PackageLocale: en-US +Publisher: Akiflow Inc. +PublisherUrl: https://akiflow.com/ +PrivacyUrl: https://akiflow.com/privacy-policy +Author: Akiflow Inc. +PackageName: Akiflow +PackageUrl: https://akiflow.com/download/ +License: Proprietary +LicenseUrl: https://akiflow.com/terms-of-service +Copyright: Akiflow © 2025 +CopyrightUrl: https://akiflow.com/terms-of-service +ShortDescription: One App for Tasks & Calendars +Tags: +- agenda +- calendar +- checklist +- collaborate +- collaboration +- gtd +- list +- schedule +- task +- to-do +- todo +ReleaseNotesUrl: https://product.akiflow.com/changelog +PurchaseUrl: https://akiflow.com/pricing/ +Documentations: +- DocumentLabel: How to use + DocumentUrl: https://how-to-use-guide.akiflow.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Akiflow/Akiflow/2.53.7/Akiflow.Akiflow.locale.zh-CN.yaml b/manifests/a/Akiflow/Akiflow/2.53.7/Akiflow.Akiflow.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4e50fb2a00984 --- /dev/null +++ b/manifests/a/Akiflow/Akiflow/2.53.7/Akiflow.Akiflow.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: Akiflow.Akiflow +PackageVersion: 2.53.7 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 任务与日历二合一应用 +Tags: +- 任务 +- 列表 +- 待办 +- 待办事项 +- 提醒事项 +- 日历 +- 日程 +- 日程管理 +- 时间管理 +- 清单 +- 议程 +Documentations: +- DocumentLabel: 如何使用 + DocumentUrl: https://how-to-use-guide.akiflow.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Akiflow/Akiflow/2.53.7/Akiflow.Akiflow.yaml b/manifests/a/Akiflow/Akiflow/2.53.7/Akiflow.Akiflow.yaml new file mode 100644 index 0000000000000..62e57a96f3826 --- /dev/null +++ b/manifests/a/Akiflow/Akiflow/2.53.7/Akiflow.Akiflow.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: Akiflow.Akiflow +PackageVersion: 2.53.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Akiflow/Akiflow/2.54.5/Akiflow.Akiflow.installer.yaml b/manifests/a/Akiflow/Akiflow/2.54.5/Akiflow.Akiflow.installer.yaml new file mode 100644 index 0000000000000..8a77b4874c372 --- /dev/null +++ b/manifests/a/Akiflow/Akiflow/2.54.5/Akiflow.Akiflow.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: Akiflow.Akiflow +PackageVersion: 2.54.5 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +ProductCode: fcfd5b65-85a1-59d9-8eb7-a98bf4457cb3 +ReleaseDate: 2025-07-09 +Installers: +- Architecture: x64 + InstallerUrl: https://download.akiflow.com/builds/Akiflow-2.54.5-59f53ab0-x64.exe + InstallerSha256: 95A1EF056B8337D1371980056F0BBA4E6EA601445850E8F68FDFB481FF726E00 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Akiflow/Akiflow/2.54.5/Akiflow.Akiflow.locale.en-US.yaml b/manifests/a/Akiflow/Akiflow/2.54.5/Akiflow.Akiflow.locale.en-US.yaml new file mode 100644 index 0000000000000..f385cfa538ce0 --- /dev/null +++ b/manifests/a/Akiflow/Akiflow/2.54.5/Akiflow.Akiflow.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: Akiflow.Akiflow +PackageVersion: 2.54.5 +PackageLocale: en-US +Publisher: Akiflow Inc. +PublisherUrl: https://akiflow.com/ +PrivacyUrl: https://akiflow.com/privacy-policy +Author: Akiflow Inc. +PackageName: Akiflow +PackageUrl: https://akiflow.com/download/ +License: Proprietary +LicenseUrl: https://akiflow.com/terms-of-service +Copyright: Akiflow © 2025 +CopyrightUrl: https://akiflow.com/terms-of-service +ShortDescription: One App for Tasks & Calendars +Tags: +- agenda +- calendar +- checklist +- collaborate +- collaboration +- gtd +- list +- schedule +- task +- to-do +- todo +ReleaseNotesUrl: https://product.akiflow.com/changelog +PurchaseUrl: https://akiflow.com/pricing/ +Documentations: +- DocumentLabel: How to use + DocumentUrl: https://how-to-use-guide.akiflow.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Akiflow/Akiflow/2.54.5/Akiflow.Akiflow.locale.zh-CN.yaml b/manifests/a/Akiflow/Akiflow/2.54.5/Akiflow.Akiflow.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b90fab773bc7a --- /dev/null +++ b/manifests/a/Akiflow/Akiflow/2.54.5/Akiflow.Akiflow.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: Akiflow.Akiflow +PackageVersion: 2.54.5 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 任务与日历二合一应用 +Tags: +- 任务 +- 列表 +- 待办 +- 待办事项 +- 提醒事项 +- 日历 +- 日程 +- 日程管理 +- 时间管理 +- 清单 +- 议程 +Documentations: +- DocumentLabel: 如何使用 + DocumentUrl: https://how-to-use-guide.akiflow.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Akiflow/Akiflow/2.54.5/Akiflow.Akiflow.yaml b/manifests/a/Akiflow/Akiflow/2.54.5/Akiflow.Akiflow.yaml new file mode 100644 index 0000000000000..36e1425aa8c41 --- /dev/null +++ b/manifests/a/Akiflow/Akiflow/2.54.5/Akiflow.Akiflow.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: Akiflow.Akiflow +PackageVersion: 2.54.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AlDanial/Cloc/2.06/AlDanial.Cloc.installer.yaml b/manifests/a/AlDanial/Cloc/2.06/AlDanial.Cloc.installer.yaml new file mode 100644 index 0000000000000..e433c00a3d4b0 --- /dev/null +++ b/manifests/a/AlDanial/Cloc/2.06/AlDanial.Cloc.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AlDanial.Cloc +PackageVersion: '2.06' +InstallerType: portable +UpgradeBehavior: install +Commands: +- cloc +ReleaseDate: 2025-06-25 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/AlDanial/cloc/releases/download/v2.06/cloc-2.06.exe + InstallerSha256: bbe48de9102d0f2520d292d65897001c1d068340eb7cd74dd1ee30c1a9091c4a +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AlDanial/Cloc/2.06/AlDanial.Cloc.locale.en-US.yaml b/manifests/a/AlDanial/Cloc/2.06/AlDanial.Cloc.locale.en-US.yaml new file mode 100644 index 0000000000000..e34616034e20a --- /dev/null +++ b/manifests/a/AlDanial/Cloc/2.06/AlDanial.Cloc.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AlDanial.Cloc +PackageVersion: '2.06' +PackageLocale: en-US +Publisher: Al Danial +PublisherUrl: https://github.com/AlDanial +PublisherSupportUrl: https://github.com/AlDanial/cloc/issues +Author: Al Danial +PackageName: cloc +PackageUrl: https://github.com/AlDanial/cloc +License: GPL-2.0 +LicenseUrl: https://github.com/AlDanial/cloc/blob/HEAD/LICENSE +Copyright: Copyright (c) 2006-2018, Al Danial +CopyrightUrl: https://github.com/AlDanial/cloc#copyright- +ShortDescription: cloc counts blank lines, comment lines, and physical lines of source code in many programming languages. +Description: |- + cloc counts blank lines, comment lines, and physical lines of source code in many programming languages. Given two versions of a code base, cloc can compute differences in blank, comment, and source lines. + It is written entirely in Perl with no dependencies outside the standard distribution of Perl v5.6 and higher (code from some external modules is embedded within cloc) and so is quite portable. +Moniker: cloc +Tags: +- cloc +- count-lines +- programming-language +ReleaseNotes: |- + New Languages and File Types: + - Cangjie + - Elixir Script + - Fortran 2003 + - Jsonnet + - Nextflow + - Nushell + - Org Mode + - Rego + - UXML, USS (Unity) + Updates: + - First attempt at using Github Actions to package a release including making a Windows executable that works with symlinks as used by winget + - Add column headers for --show-lang and --show-ext output + - Remove -> separator in --show-ext output + - Remove leading blank space for --fmt output written to STDOUT + - New switch --files-from as a synonym for --vcs + - New switch --ksep/--thousands-delimiter to show a separator (default is a comma) between thousands in output counts + - Change sequence of Python language filters so that docstrings are handled before # + - Jenkinsfile now recognized as Groovy + - Improve Windows/Unix path conflicts when using --git --diff in git-bash terminal + - New switch --percent as a shortcut to `--by-percent t' to show percentage of totals in blank, comment, code columns + - Add backtick and C++ style comment support for Svelte + - Write results in multiple formats if multiple output format switches are given (for example --json --yaml --xml) + Bug fixes: + - Remove file irregular"file2.md from the test suite as filenames with embedded double quotes are illegal in Windows and cause git pull problems (among other issues). This file is created dynamically during testing on non-Windows operating systems. + - On Windows use zip format instead of tar for the 'git archive' command used when running with --git --diff + - Remove duplicate "percent" entry in options handling + - Support --exclude-lang in --diff mode + - Fix --exclude-lang option when used in diff mode and when all files are additions or deletions + - On Windows, remove temporary SCALAR(0x..) files created when using --fmt + - Handle --by-file for JSON and YAML outputs with single and double quotes in file names +ReleaseNotesUrl: https://github.com/AlDanial/cloc/releases/tag/v2.06 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AlDanial/Cloc/2.06/AlDanial.Cloc.yaml b/manifests/a/AlDanial/Cloc/2.06/AlDanial.Cloc.yaml new file mode 100644 index 0000000000000..c2a9753e92e08 --- /dev/null +++ b/manifests/a/AlDanial/Cloc/2.06/AlDanial.Cloc.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: AlDanial.Cloc +PackageVersion: '2.06' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AlexShovkoplyas/SkyRoof/1.7-beta/AlexShovkoplyas.SkyRoof.installer.yaml b/manifests/a/AlexShovkoplyas/SkyRoof/1.7-beta/AlexShovkoplyas.SkyRoof.installer.yaml new file mode 100644 index 0000000000000..3ca26496e5ccf --- /dev/null +++ b/manifests/a/AlexShovkoplyas/SkyRoof/1.7-beta/AlexShovkoplyas.SkyRoof.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AlexShovkoplyas.SkyRoof +PackageVersion: 1.7-beta +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: SkyRoofSetup-v.1.7-beta.exe +Scope: machine +UpgradeBehavior: uninstallPrevious +ProductCode: '{9411e0db-111f-43f3-8466-f53d93669847}_is1' +ReleaseDate: 2025-06-14 +AppsAndFeaturesEntries: +- Publisher: Alex VE3NEA + DisplayVersion: 1.7 Beta + ProductCode: '{9411e0db-111f-43f3-8466-f53d93669847}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Afreet\SkyRoof' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/VE3NEA/SkyRoof/releases/download/v.1.7-beta/SkyRoofSetup-v.1.7-beta.zip + InstallerSha256: A017FB92E239F6257990DF883F1523ECAA9FA796DD2AF0AF74B4D61FE93B98F2 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AlexShovkoplyas/SkyRoof/1.7-beta/AlexShovkoplyas.SkyRoof.locale.en-US.yaml b/manifests/a/AlexShovkoplyas/SkyRoof/1.7-beta/AlexShovkoplyas.SkyRoof.locale.en-US.yaml new file mode 100644 index 0000000000000..66670aa14695a --- /dev/null +++ b/manifests/a/AlexShovkoplyas/SkyRoof/1.7-beta/AlexShovkoplyas.SkyRoof.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AlexShovkoplyas.SkyRoof +PackageVersion: 1.7-beta +PackageLocale: en-US +Publisher: Alex Shovkoplyas +PublisherUrl: https://github.com/VE3NEA +PublisherSupportUrl: https://github.com/VE3NEA/SkyRoof/issues +PackageName: SkyRoof +PackageUrl: https://ve3nea.github.io/SkyRoof/ +License: AGPL-3.0 +LicenseUrl: https://github.com/VE3NEA/SkyRoof/blob/master/LICENSE +ShortDescription: A Windows application for Hams and satellite enthusiasts. +Description: SkyRoof combines satellite trackikng and SDR functions in one application, which opens some interesting possibilities.EFor example, all satellite traces on the waterfall are labeled with satellite names, the boundaries of the transponderEsegments follow the Doppler shift, and all frequency tuning is done visually, with a mouse. +Moniker: skyroof +ReleaseNotesUrl: https://ve3nea.github.io/SkyRoof/download.html#release-notes +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AlexShovkoplyas/SkyRoof/1.7-beta/AlexShovkoplyas.SkyRoof.yaml b/manifests/a/AlexShovkoplyas/SkyRoof/1.7-beta/AlexShovkoplyas.SkyRoof.yaml new file mode 100644 index 0000000000000..bd5742f6a5127 --- /dev/null +++ b/manifests/a/AlexShovkoplyas/SkyRoof/1.7-beta/AlexShovkoplyas.SkyRoof.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: AlexShovkoplyas.SkyRoof +PackageVersion: 1.7-beta +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.285/Alibaba.AlibabaCloudCLI.installer.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.285/Alibaba.AlibabaCloudCLI.installer.yaml new file mode 100644 index 0000000000000..c78758d29f064 --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.285/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.285 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: aliyun.exe + PortableCommandAlias: aliyun +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aliyun/aliyun-cli/releases/download/v3.0.285/aliyun-cli-windows-3.0.285-amd64.zip + InstallerSha256: E8D3EC5F98EDDE5927F192ECE504A7167F8716D0554BD9B9775341A5D7D2DA94 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.285/Alibaba.AlibabaCloudCLI.locale.en-US.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.285/Alibaba.AlibabaCloudCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..9b335525fde40 --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.285/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.285 +PackageLocale: en-US +Publisher: Alibaba Cloud +PublisherUrl: https://www.alibabacloud.com/ +PublisherSupportUrl: https://github.com/aliyun/aliyun-cli/issues +PrivacyUrl: https://www.alibabacloud.com/help/en/legal/latest/alibaba-cloud-international-website-privacy-policy +Author: Aliyun Computing Co., Ltd. +PackageName: Alibaba Cloud CLI +PackageUrl: https://www.alibabacloud.com/help/en/alibaba-cloud-cli +License: Apache-2.0 +LicenseUrl: https://github.com/aliyun/aliyun-cli/blob/master/LICENSE +Copyright: Copyright (c) 2009-present, Alibaba Cloud All rights reserved. +ShortDescription: The Alibaba Cloud CLI is a tool to manage and use Alibaba Cloud resources through a command line interface. It is written in Go and built on the top of Alibaba Cloud OpenAPI. +Description: |- + Alibaba Cloud Command Line Interface (Alibaba Cloud CLI) is an open source tool built on the Alibaba Cloud SDK for Go. You can use the aliyun command to interact with other Alibaba Cloud services to manage your Alibaba Cloud resources. + Alibaba Cloud CLI can directly access the Alibaba cloud product OpenAPI. You can manage and maintain your own Alibaba Cloud resources by developing the shell script based on Alibaba Cloud CLI. Make sure that you have activated the cloud product you want to use and understand the API usage of the product. +Moniker: aliyun-cli +Tags: +- alibaba-cloud +- aliyun +ReleaseNotes: 'Full Changelog: https://github.com/aliyun/aliyun-cli/compare/v3.0.284...v3.0.285' +ReleaseNotesUrl: https://github.com/aliyun/aliyun-cli/releases/tag/v3.0.285 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.285/Alibaba.AlibabaCloudCLI.locale.zh-CN.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.285/Alibaba.AlibabaCloudCLI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2ec87d1e86083 --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.285/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.285 +PackageLocale: zh-CN +Publisher: 阿里云 +PublisherUrl: https://www.aliyun.com/ +PublisherSupportUrl: https://github.com/aliyun/aliyun-cli/issues +PrivacyUrl: https://terms.aliyun.com/legal-agreement/terms/suit_bu1_ali_cloud/suit_bu1_ali_cloud201902141711_54837.html +Author: 阿里云计算有限公司 +PackageName: 阿里云CLI +PackageUrl: https://help.aliyun.com/product/29991.html +License: Apache-2.0 +LicenseUrl: https://github.com/aliyun/aliyun-cli/blob/master/LICENSE +Copyright: Copyright (c) 2009-present, Alibaba Cloud All rights reserved. +ShortDescription: 阿里云命令行工具是用 Go 语言编写的, 基于阿里云 OpenAPI 打造的,用于管理阿里云资源的工具。通过下载和配置该工具,您可以在一个命令行方式下管理多个阿里云产品资源。 +Description: 阿里云命令行工具 CLI(Alibaba Cloud CLI)是基于阿里云开放 API 建立的管理工具。借助此工具,您可以通过调用阿里云开放 API 来管理阿里云产品。该命令行工具与阿里云开放 API 一一对应,灵活性高且易于扩展。您可基于该命令行工具对阿里云原生 API 进行封装,扩展出您想要的功能。 +Tags: +- 阿里云 +ReleaseNotesUrl: https://github.com/aliyun/aliyun-cli/releases/tag/v3.0.285 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.285/Alibaba.AlibabaCloudCLI.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.285/Alibaba.AlibabaCloudCLI.yaml new file mode 100644 index 0000000000000..94b13294ae9ea --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.285/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.285 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.286/Alibaba.AlibabaCloudCLI.installer.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.286/Alibaba.AlibabaCloudCLI.installer.yaml new file mode 100644 index 0000000000000..b0b85a47add08 --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.286/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.286 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: aliyun.exe + PortableCommandAlias: aliyun +ReleaseDate: 2025-06-28 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aliyun/aliyun-cli/releases/download/v3.0.286/aliyun-cli-windows-3.0.286-amd64.zip + InstallerSha256: 145E6A514233A0C9B79120E4456BE260DB387789D652E6C3468FEA098FC2F12F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.286/Alibaba.AlibabaCloudCLI.locale.en-US.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.286/Alibaba.AlibabaCloudCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..b2c2ecc657327 --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.286/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.286 +PackageLocale: en-US +Publisher: Alibaba Cloud +PublisherUrl: https://www.alibabacloud.com/ +PublisherSupportUrl: https://github.com/aliyun/aliyun-cli/issues +PrivacyUrl: https://www.alibabacloud.com/help/en/legal/latest/alibaba-cloud-international-website-privacy-policy +Author: Aliyun Computing Co., Ltd. +PackageName: Alibaba Cloud CLI +PackageUrl: https://www.alibabacloud.com/help/en/alibaba-cloud-cli +License: Apache-2.0 +LicenseUrl: https://github.com/aliyun/aliyun-cli/blob/master/LICENSE +Copyright: Copyright (c) 2009-present, Alibaba Cloud All rights reserved. +ShortDescription: The Alibaba Cloud CLI is a tool to manage and use Alibaba Cloud resources through a command line interface. It is written in Go and built on the top of Alibaba Cloud OpenAPI. +Description: |- + Alibaba Cloud Command Line Interface (Alibaba Cloud CLI) is an open source tool built on the Alibaba Cloud SDK for Go. You can use the aliyun command to interact with other Alibaba Cloud services to manage your Alibaba Cloud resources. + Alibaba Cloud CLI can directly access the Alibaba cloud product OpenAPI. You can manage and maintain your own Alibaba Cloud resources by developing the shell script based on Alibaba Cloud CLI. Make sure that you have activated the cloud product you want to use and understand the API usage of the product. +Moniker: aliyun-cli +Tags: +- alibaba-cloud +- aliyun +ReleaseNotes: 'Full Changelog: https://github.com/aliyun/aliyun-cli/compare/v3.0.285...v3.0.286' +ReleaseNotesUrl: https://github.com/aliyun/aliyun-cli/releases/tag/v3.0.286 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.286/Alibaba.AlibabaCloudCLI.locale.zh-CN.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.286/Alibaba.AlibabaCloudCLI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..49272f4a28344 --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.286/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.286 +PackageLocale: zh-CN +Publisher: 阿里云 +PublisherUrl: https://www.aliyun.com/ +PublisherSupportUrl: https://github.com/aliyun/aliyun-cli/issues +PrivacyUrl: https://terms.aliyun.com/legal-agreement/terms/suit_bu1_ali_cloud/suit_bu1_ali_cloud201902141711_54837.html +Author: 阿里云计算有限公司 +PackageName: 阿里云CLI +PackageUrl: https://help.aliyun.com/product/29991.html +License: Apache-2.0 +LicenseUrl: https://github.com/aliyun/aliyun-cli/blob/master/LICENSE +Copyright: Copyright (c) 2009-present, Alibaba Cloud All rights reserved. +ShortDescription: 阿里云命令行工具是用 Go 语言编写的, 基于阿里云 OpenAPI 打造的,用于管理阿里云资源的工具。通过下载和配置该工具,您可以在一个命令行方式下管理多个阿里云产品资源。 +Description: 阿里云命令行工具 CLI(Alibaba Cloud CLI)是基于阿里云开放 API 建立的管理工具。借助此工具,您可以通过调用阿里云开放 API 来管理阿里云产品。该命令行工具与阿里云开放 API 一一对应,灵活性高且易于扩展。您可基于该命令行工具对阿里云原生 API 进行封装,扩展出您想要的功能。 +Tags: +- 阿里云 +ReleaseNotesUrl: https://github.com/aliyun/aliyun-cli/releases/tag/v3.0.286 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.286/Alibaba.AlibabaCloudCLI.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.286/Alibaba.AlibabaCloudCLI.yaml new file mode 100644 index 0000000000000..46e03b3397aed --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.286/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.286 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.287/Alibaba.AlibabaCloudCLI.installer.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.287/Alibaba.AlibabaCloudCLI.installer.yaml new file mode 100644 index 0000000000000..8cc2dcc008e4c --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.287/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.287 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: aliyun.exe + PortableCommandAlias: aliyun +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aliyun/aliyun-cli/releases/download/v3.0.287/aliyun-cli-windows-3.0.287-amd64.zip + InstallerSha256: D4FC0B420912F44E3E27BD8F78F6DBDED33F995739130ED35AEE2D1FEA511135 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.287/Alibaba.AlibabaCloudCLI.locale.en-US.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.287/Alibaba.AlibabaCloudCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..801648a57e77c --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.287/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.287 +PackageLocale: en-US +Publisher: Alibaba Cloud +PublisherUrl: https://www.alibabacloud.com/ +PublisherSupportUrl: https://github.com/aliyun/aliyun-cli/issues +PrivacyUrl: https://www.alibabacloud.com/help/en/legal/latest/alibaba-cloud-international-website-privacy-policy +Author: Aliyun Computing Co., Ltd. +PackageName: Alibaba Cloud CLI +PackageUrl: https://www.alibabacloud.com/help/en/alibaba-cloud-cli +License: Apache-2.0 +LicenseUrl: https://github.com/aliyun/aliyun-cli/blob/master/LICENSE +Copyright: Copyright (c) 2009-present, Alibaba Cloud All rights reserved. +ShortDescription: The Alibaba Cloud CLI is a tool to manage and use Alibaba Cloud resources through a command line interface. It is written in Go and built on the top of Alibaba Cloud OpenAPI. +Description: |- + Alibaba Cloud Command Line Interface (Alibaba Cloud CLI) is an open source tool built on the Alibaba Cloud SDK for Go. You can use the aliyun command to interact with other Alibaba Cloud services to manage your Alibaba Cloud resources. + Alibaba Cloud CLI can directly access the Alibaba cloud product OpenAPI. You can manage and maintain your own Alibaba Cloud resources by developing the shell script based on Alibaba Cloud CLI. Make sure that you have activated the cloud product you want to use and understand the API usage of the product. +Moniker: aliyun-cli +Tags: +- alibaba-cloud +- aliyun +ReleaseNotes: 'Full Changelog: https://github.com/aliyun/aliyun-cli/compare/v3.0.286...v3.0.287' +ReleaseNotesUrl: https://github.com/aliyun/aliyun-cli/releases/tag/v3.0.287 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.287/Alibaba.AlibabaCloudCLI.locale.zh-CN.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.287/Alibaba.AlibabaCloudCLI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..879e703b07108 --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.287/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.287 +PackageLocale: zh-CN +Publisher: 阿里云 +PublisherUrl: https://www.aliyun.com/ +PublisherSupportUrl: https://github.com/aliyun/aliyun-cli/issues +PrivacyUrl: https://terms.aliyun.com/legal-agreement/terms/suit_bu1_ali_cloud/suit_bu1_ali_cloud201902141711_54837.html +Author: 阿里云计算有限公司 +PackageName: 阿里云CLI +PackageUrl: https://help.aliyun.com/product/29991.html +License: Apache-2.0 +LicenseUrl: https://github.com/aliyun/aliyun-cli/blob/master/LICENSE +Copyright: Copyright (c) 2009-present, Alibaba Cloud All rights reserved. +ShortDescription: 阿里云命令行工具是用 Go 语言编写的, 基于阿里云 OpenAPI 打造的,用于管理阿里云资源的工具。通过下载和配置该工具,您可以在一个命令行方式下管理多个阿里云产品资源。 +Description: 阿里云命令行工具 CLI(Alibaba Cloud CLI)是基于阿里云开放 API 建立的管理工具。借助此工具,您可以通过调用阿里云开放 API 来管理阿里云产品。该命令行工具与阿里云开放 API 一一对应,灵活性高且易于扩展。您可基于该命令行工具对阿里云原生 API 进行封装,扩展出您想要的功能。 +Tags: +- 阿里云 +ReleaseNotesUrl: https://github.com/aliyun/aliyun-cli/releases/tag/v3.0.287 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.287/Alibaba.AlibabaCloudCLI.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.287/Alibaba.AlibabaCloudCLI.yaml new file mode 100644 index 0000000000000..f17021dfa9d91 --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.287/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.287 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.288/Alibaba.AlibabaCloudCLI.installer.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.288/Alibaba.AlibabaCloudCLI.installer.yaml new file mode 100644 index 0000000000000..a4a91aac0e291 --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.288/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.288 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: aliyun.exe + PortableCommandAlias: aliyun +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aliyun/aliyun-cli/releases/download/v3.0.288/aliyun-cli-windows-3.0.288-amd64.zip + InstallerSha256: 235313D22F8CF8004A116367F970093D5466FF77E4DEE61C897AE07B83F0643A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.288/Alibaba.AlibabaCloudCLI.locale.en-US.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.288/Alibaba.AlibabaCloudCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..ab5816c50f2df --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.288/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.288 +PackageLocale: en-US +Publisher: Alibaba Cloud +PublisherUrl: https://www.alibabacloud.com/ +PublisherSupportUrl: https://github.com/aliyun/aliyun-cli/issues +PrivacyUrl: https://www.alibabacloud.com/help/en/legal/latest/alibaba-cloud-international-website-privacy-policy +Author: Aliyun Computing Co., Ltd. +PackageName: Alibaba Cloud CLI +PackageUrl: https://www.alibabacloud.com/help/en/alibaba-cloud-cli +License: Apache-2.0 +LicenseUrl: https://github.com/aliyun/aliyun-cli/blob/master/LICENSE +Copyright: Copyright (c) 2009-present, Alibaba Cloud All rights reserved. +ShortDescription: The Alibaba Cloud CLI is a tool to manage and use Alibaba Cloud resources through a command line interface. It is written in Go and built on the top of Alibaba Cloud OpenAPI. +Description: |- + Alibaba Cloud Command Line Interface (Alibaba Cloud CLI) is an open source tool built on the Alibaba Cloud SDK for Go. You can use the aliyun command to interact with other Alibaba Cloud services to manage your Alibaba Cloud resources. + Alibaba Cloud CLI can directly access the Alibaba cloud product OpenAPI. You can manage and maintain your own Alibaba Cloud resources by developing the shell script based on Alibaba Cloud CLI. Make sure that you have activated the cloud product you want to use and understand the API usage of the product. +Moniker: aliyun-cli +Tags: +- alibaba-cloud +- aliyun +ReleaseNotes: 'Full Changelog: https://github.com/aliyun/aliyun-cli/compare/v3.0.287...v3.0.288' +ReleaseNotesUrl: https://github.com/aliyun/aliyun-cli/releases/tag/v3.0.288 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.288/Alibaba.AlibabaCloudCLI.locale.zh-CN.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.288/Alibaba.AlibabaCloudCLI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2426e648c5117 --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.288/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.288 +PackageLocale: zh-CN +Publisher: 阿里云 +PublisherUrl: https://www.aliyun.com/ +PublisherSupportUrl: https://github.com/aliyun/aliyun-cli/issues +PrivacyUrl: https://terms.aliyun.com/legal-agreement/terms/suit_bu1_ali_cloud/suit_bu1_ali_cloud201902141711_54837.html +Author: 阿里云计算有限公司 +PackageName: 阿里云CLI +PackageUrl: https://help.aliyun.com/product/29991.html +License: Apache-2.0 +LicenseUrl: https://github.com/aliyun/aliyun-cli/blob/master/LICENSE +Copyright: Copyright (c) 2009-present, Alibaba Cloud All rights reserved. +ShortDescription: 阿里云命令行工具是用 Go 语言编写的, 基于阿里云 OpenAPI 打造的,用于管理阿里云资源的工具。通过下载和配置该工具,您可以在一个命令行方式下管理多个阿里云产品资源。 +Description: 阿里云命令行工具 CLI(Alibaba Cloud CLI)是基于阿里云开放 API 建立的管理工具。借助此工具,您可以通过调用阿里云开放 API 来管理阿里云产品。该命令行工具与阿里云开放 API 一一对应,灵活性高且易于扩展。您可基于该命令行工具对阿里云原生 API 进行封装,扩展出您想要的功能。 +Tags: +- 阿里云 +ReleaseNotesUrl: https://github.com/aliyun/aliyun-cli/releases/tag/v3.0.288 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/AlibabaCloudCLI/3.0.288/Alibaba.AlibabaCloudCLI.yaml b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.288/Alibaba.AlibabaCloudCLI.yaml new file mode 100644 index 0000000000000..53820d3f9ad29 --- /dev/null +++ b/manifests/a/Alibaba/AlibabaCloudCLI/3.0.288/Alibaba.AlibabaCloudCLI.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: Alibaba.AlibabaCloudCLI +PackageVersion: 3.0.288 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/Lingma/1.100.0/Alibaba.Lingma.installer.yaml b/manifests/a/Alibaba/Lingma/1.100.0/Alibaba.Lingma.installer.yaml index 78e71629e4ff6..b54b1d99fee44 100644 --- a/manifests/a/Alibaba/Lingma/1.100.0/Alibaba.Lingma.installer.yaml +++ b/manifests/a/Alibaba/Lingma/1.100.0/Alibaba.Lingma.installer.yaml @@ -155,5 +155,15 @@ Installers: InstallerUrl: https://lingma-ide.oss-rg-china-mainland.aliyuncs.com/stable/0.1.5/7d0c9147a7f10d16a2dd9bc9f72456b87d51be27/LingmaSetup-x64-0.1.5.exe InstallerSha256: EC396B548861902896D026CBEED473F9B3D880FBD9BE64A613A9367B7A6A0A2E ProductCode: '{E03E77F0-C06C-44D5-BFF1-33EDBBE21F3B}_is1' +- Architecture: arm64 + Scope: user + InstallerUrl: https://lingma-ide.oss-rg-china-mainland.aliyuncs.com/stable/0.1.5/7d0c9147a7f10d16a2dd9bc9f72456b87d51be27/LingmaUserSetup-arm64-0.1.5.exe + InstallerSha256: A872D5BC538ED0070EDC12976ACD7509A70A9BD750CBFE2589A1B059B722AE35 + ProductCode: '{38B31348-0F09-4613-975A-530CB8749398}_is1' +- Architecture: arm64 + Scope: machine + InstallerUrl: https://lingma-ide.oss-rg-china-mainland.aliyuncs.com/stable/0.1.5/7d0c9147a7f10d16a2dd9bc9f72456b87d51be27/LingmaSetup-arm64-0.1.5.exe + InstallerSha256: E560848418CEA255BD8724BE8471688A2445E74202FFF24D7EAD7E5E07CA1DA2 + ProductCode: '{157D79C6-9B5E-4D97-8982-BE405FBF92F6}_is1' ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/Quark/4.2.0.418/Alibaba.Quark.installer.yaml b/manifests/a/Alibaba/Quark/4.2.0.418/Alibaba.Quark.installer.yaml new file mode 100644 index 0000000000000..a07af581d9dd0 --- /dev/null +++ b/manifests/a/Alibaba/Quark/4.2.0.418/Alibaba.Quark.installer.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Alibaba.Quark +PackageVersion: 4.2.0.418 +InstallerType: inno +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- mhtml +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: '{FB7670C2-7F99-426D-B687-21BB585A5C73}_is1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://umcdn.quark.cn/download/37212/quarkpc/pcquark@homepage_oficial/QuarkPC_V4.2.0.418_pc_pf30002_(zh-cn)_release_(Build2277525-250702154827-x64).exe + InstallerSha256: 198ED9E15C495724ACCAFFE3FEEE91753592B64207AB18ABEF540B5691FE5205 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://umcdn.quark.cn/download/37212/quarkpc/pcquark@homepage_oficial/QuarkPC_V4.2.0.418_pc_pf30002_(zh-cn)_release_(Build2277525-250702154827-x64).exe + InstallerSha256: 198ED9E15C495724ACCAFFE3FEEE91753592B64207AB18ABEF540B5691FE5205 + InstallerSwitches: + Custom: /ALLUSERS + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Quark' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/Quark/4.2.0.418/Alibaba.Quark.locale.en-US.yaml b/manifests/a/Alibaba/Quark/4.2.0.418/Alibaba.Quark.locale.en-US.yaml new file mode 100644 index 0000000000000..14443d7348bfb --- /dev/null +++ b/manifests/a/Alibaba/Quark/4.2.0.418/Alibaba.Quark.locale.en-US.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: Alibaba.Quark +PackageVersion: 4.2.0.418 +PackageLocale: en-US +Publisher: Quark +PublisherUrl: https://www.quark.cn/ +PrivacyUrl: https://terms.alicdn.com/legal-agreement/terms/c_end_product_protocol/20230727184418287/20230727184418287.html +Author: Guangzhou Dongyue Information Technology Co., Ltd. +PackageName: 夸克 +PackageUrl: https://www.quark.cn/ +License: Freeware +LicenseUrl: https://terms.alicdn.com/legal-agreement/terms/c_end_product_protocol/20230727183841535/20230727183841535.html +Copyright: Copyright © 2024 The Quark Authors. All rights reserved. +ShortDescription: Quark is a browser that integrates search, cloud drive, utilities and more, providing users with fast, intelligent and efficient experience. +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/Quark/4.2.0.418/Alibaba.Quark.locale.zh-CN.yaml b/manifests/a/Alibaba/Quark/4.2.0.418/Alibaba.Quark.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8b430354fbb00 --- /dev/null +++ b/manifests/a/Alibaba/Quark/4.2.0.418/Alibaba.Quark.locale.zh-CN.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Alibaba.Quark +PackageVersion: 4.2.0.418 +PackageLocale: zh-CN +Publisher: Quark +PublisherUrl: https://www.quark.cn/ +PrivacyUrl: https://terms.alicdn.com/legal-agreement/terms/c_end_product_protocol/20230727184418287/20230727184418287.html +Author: 广州市动悦信息技术有限公司 +PackageName: 夸克 +PackageUrl: https://www.quark.cn/ +License: 免费软件 +LicenseUrl: https://terms.alicdn.com/legal-agreement/terms/c_end_product_protocol/20230727183841535/20230727183841535.html +Copyright: 版权所有 2024 The Quark Authors。保留所有权利。 +ShortDescription: 夸克是一款集搜索、网盘、工具等功能于一体的浏览器,为用户提供极速、智能、高效的体验。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Alibaba/Quark/4.2.0.418/Alibaba.Quark.yaml b/manifests/a/Alibaba/Quark/4.2.0.418/Alibaba.Quark.yaml new file mode 100644 index 0000000000000..5ba809734bd36 --- /dev/null +++ b/manifests/a/Alibaba/Quark/4.2.0.418/Alibaba.Quark.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: Alibaba.Quark +PackageVersion: 4.2.0.418 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3.2059/AllroundAutomations.PLSQLDeveloper.installer.yaml b/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3.2059/AllroundAutomations.PLSQLDeveloper.installer.yaml new file mode 100644 index 0000000000000..2f2c987946ec4 --- /dev/null +++ b/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3.2059/AllroundAutomations.PLSQLDeveloper.installer.yaml @@ -0,0 +1,18 @@ +# 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: AllroundAutomations.PLSQLDeveloper +PackageVersion: 15.0.3.2059 +InstallerLocale: en-US +InstallerType: msi +Installers: +- Architecture: x64 + InstallerUrl: https://www.allroundautomations.com/files/plsqldev1503x64.msi + InstallerSha256: C53A23F9BCE04412E6D9F3D12785FBA6580F63D7E4AB690221627E945A5A48B3 + ProductCode: '{2E30F5B5-19BC-4817-BB30-90EC7CE8696F}' +- Architecture: x86 + InstallerUrl: https://www.allroundautomations.com/files/plsqldev1503x32.msi + InstallerSha256: A70B6AF09432692D973EB1452D168D0B690FB76980785EE7332E245242200D2B + ProductCode: '{E2E07AE0-7D1D-4383-BD71-E545F7E7BAC9}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3.2059/AllroundAutomations.PLSQLDeveloper.locale.en-US.yaml b/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3.2059/AllroundAutomations.PLSQLDeveloper.locale.en-US.yaml new file mode 100644 index 0000000000000..22a17b07c98da --- /dev/null +++ b/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3.2059/AllroundAutomations.PLSQLDeveloper.locale.en-US.yaml @@ -0,0 +1,35 @@ +# 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: AllroundAutomations.PLSQLDeveloper +PackageVersion: 15.0.3.2059 +PackageLocale: en-US +Publisher: Allround Automations +PublisherUrl: https://www.allroundautomations.com/ +PublisherSupportUrl: https://www.allroundautomations.com/support/ +PrivacyUrl: https://www.allroundautomations.com/privacy-policy/ +Author: Allround Automations +PackageName: PL/SQL Developer +PackageUrl: https://www.allroundautomations.com/products/pl-sql-developer/ +License: Proprietary +LicenseUrl: https://www.allroundautomations.com/license-terms/ +Copyright: © 2023 Allround Automations +# CopyrightUrl: +ShortDescription: 3rd Party ORACLE Database Development Tool +Description: PL/SQL Developer is an Integrated Development Environment for developing, testing, debugging and optimizing Oracle PL/SQL stored program units like packages, triggers and so on. PL/SQL Developer features context sensitive help and database object descriptions, syntax highlighting, data querying and editing, a graphical browser, and other functions to make a developer’s life easier. +Moniker: plsql-developer +Tags: +- allround +- oracle +- pl/sql +- plsql +- sql +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://www.allroundautomations.com/order/ +InstallationNotes: |- + The PL/SQL Developer trial version is fully functional and has all the features + you'll find in the registered version. It is only limited by a trial period of 30 days. +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3.2059/AllroundAutomations.PLSQLDeveloper.yaml b/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3.2059/AllroundAutomations.PLSQLDeveloper.yaml new file mode 100644 index 0000000000000..7e773fdde4d2b --- /dev/null +++ b/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3.2059/AllroundAutomations.PLSQLDeveloper.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: AllroundAutomations.PLSQLDeveloper +PackageVersion: 15.0.3.2059 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3/AllroundAutomations.PLSQLDeveloper.installer.yaml b/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3/AllroundAutomations.PLSQLDeveloper.installer.yaml deleted file mode 100644 index e19f64813722d..0000000000000 --- a/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3/AllroundAutomations.PLSQLDeveloper.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 $debug=QUSU.CRLF.7-3-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: AllroundAutomations.PLSQLDeveloper -PackageVersion: 15.0.3 -InstallerLocale: en-US -InstallerType: msi -AppsAndFeaturesEntries: -- DisplayVersion: 15.0.3.2059 -Installers: -- Architecture: x64 - InstallerUrl: https://www.allroundautomations.com/files/plsqldev1503x64.msi - InstallerSha256: C53A23F9BCE04412E6D9F3D12785FBA6580F63D7E4AB690221627E945A5A48B3 - ProductCode: '{2E30F5B5-19BC-4817-BB30-90EC7CE8696F}' -- Architecture: x86 - InstallerUrl: https://www.allroundautomations.com/files/plsqldev1503x32.msi - InstallerSha256: A70B6AF09432692D973EB1452D168D0B690FB76980785EE7332E245242200D2B - ProductCode: '{E2E07AE0-7D1D-4383-BD71-E545F7E7BAC9}' -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3/AllroundAutomations.PLSQLDeveloper.locale.en-US.yaml b/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3/AllroundAutomations.PLSQLDeveloper.locale.en-US.yaml deleted file mode 100644 index 28dbc0aa47537..0000000000000 --- a/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3/AllroundAutomations.PLSQLDeveloper.locale.en-US.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 $debug=QUSU.CRLF.7-3-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: AllroundAutomations.PLSQLDeveloper -PackageVersion: 15.0.3 -PackageLocale: en-US -Publisher: Allround Automations -PublisherUrl: https://www.allroundautomations.com/ -PublisherSupportUrl: https://www.allroundautomations.com/support/ -PrivacyUrl: https://www.allroundautomations.com/privacy-policy/ -Author: Allround Automations -PackageName: PL/SQL Developer -PackageUrl: https://www.allroundautomations.com/products/pl-sql-developer/ -License: Proprietary -LicenseUrl: https://www.allroundautomations.com/license-terms/ -Copyright: © 2023 Allround Automations -# CopyrightUrl: -ShortDescription: 3rd Party ORACLE Database Development Tool -Description: PL/SQL Developer is an Integrated Development Environment for developing, testing, debugging and optimizing Oracle PL/SQL stored program units like packages, triggers and so on. PL/SQL Developer features context sensitive help and database object descriptions, syntax highlighting, data querying and editing, a graphical browser, and other functions to make a developer’s life easier. -Moniker: plsql-developer -Tags: -- allround -- oracle -- pl/sql -- plsql -- sql -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -PurchaseUrl: https://www.allroundautomations.com/order/ -InstallationNotes: |- - The PL/SQL Developer trial version is fully functional and has all the features - you'll find in the registered version. It is only limited by a trial period of 30 days. -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3/AllroundAutomations.PLSQLDeveloper.yaml b/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3/AllroundAutomations.PLSQLDeveloper.yaml deleted file mode 100644 index e118f98fec9c5..0000000000000 --- a/manifests/a/AllroundAutomations/PLSQLDeveloper/15.0.3/AllroundAutomations.PLSQLDeveloper.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 $debug=QUSU.CRLF.7-3-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: AllroundAutomations.PLSQLDeveloper -PackageVersion: 15.0.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2148/AllroundAutomations.PLSQLDeveloper.installer.yaml b/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2148/AllroundAutomations.PLSQLDeveloper.installer.yaml deleted file mode 100644 index 936f6221ed5c4..0000000000000 --- a/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2148/AllroundAutomations.PLSQLDeveloper.installer.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Automatically updated by the winget bot at 2024/Dec/27 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: AllroundAutomations.PLSQLDeveloper -PackageVersion: 16.0.1.2148 -InstallerLocale: en-US -InstallerType: msi -Scope: machine -ReleaseDate: 2024-12-12 -AppsAndFeaturesEntries: -- DisplayVersion: 15.0.3.2059 -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\PLSQL Developer 16:PLSQL Developer 16\.' -Installers: -- Architecture: x64 - InstallerUrl: https://www.allroundautomations.com/files/plsqldev1601x64.msi - InstallerSha256: 9C334D318B59D691D6778C86DFC5125AC9CEF611EE9667A47E843DA84589F95D - ProductCode: '{F64A0DB7-1412-4940-8228-E636BB51CD6E}' - AppsAndFeaturesEntries: - - DisplayName: PL/SQL Developer 16 (64 bit) - Publisher: Allround Automations - ProductCode: '{F64A0DB7-1412-4940-8228-E636BB51CD6E}' - UpgradeCode: '{829D4309-2D10-4B07-88AB-3388833EC74E}' -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2148/AllroundAutomations.PLSQLDeveloper.locale.en-US.yaml b/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2148/AllroundAutomations.PLSQLDeveloper.locale.en-US.yaml deleted file mode 100644 index 53ae25b696f0a..0000000000000 --- a/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2148/AllroundAutomations.PLSQLDeveloper.locale.en-US.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Automatically updated by the winget bot at 2024/Dec/27 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: AllroundAutomations.PLSQLDeveloper -PackageVersion: 16.0.1.2148 -PackageLocale: en-US -Publisher: Allround Automations -PublisherUrl: https://www.allroundautomations.com/ -PublisherSupportUrl: https://www.allroundautomations.com/support/ -PrivacyUrl: https://www.allroundautomations.com/privacy-policy/ -Author: Allround Automations -PackageName: PL/SQL Developer -PackageUrl: https://www.allroundautomations.com/products/pl-sql-developer/ -License: Proprietary -LicenseUrl: https://www.allroundautomations.com/license-terms/ -Copyright: © 2023 Allround Automations -ShortDescription: 3rd Party ORACLE Database Development Tool -Description: PL/SQL Developer is an Integrated Development Environment for developing, testing, debugging and optimizing Oracle PL/SQL stored program units like packages, triggers and so on. PL/SQL Developer features context sensitive help and database object descriptions, syntax highlighting, data querying and editing, a graphical browser, and other functions to make a developer’s life easier. -Moniker: plsql-developer -Tags: -- allround -- oracle -- pl/sql -- plsql -- sql -PurchaseUrl: https://www.allroundautomations.com/order/ -InstallationNotes: |- - The PL/SQL Developer trial version is fully functional and has all the features - you'll find in the registered version. It is only limited by a trial period of 30 days. -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2148/AllroundAutomations.PLSQLDeveloper.yaml b/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2148/AllroundAutomations.PLSQLDeveloper.yaml deleted file mode 100644 index 0acc50aa6b01b..0000000000000 --- a/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2148/AllroundAutomations.PLSQLDeveloper.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2024/Dec/27 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: AllroundAutomations.PLSQLDeveloper -PackageVersion: 16.0.1.2148 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 diff --git a/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2149/AllroundAutomations.PLSQLDeveloper.installer.yaml b/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2149/AllroundAutomations.PLSQLDeveloper.installer.yaml index 0d805aedb68d2..d45e4232af1ea 100644 --- a/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2149/AllroundAutomations.PLSQLDeveloper.installer.yaml +++ b/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2149/AllroundAutomations.PLSQLDeveloper.installer.yaml @@ -1,5 +1,5 @@ -# Automatically updated by the winget bot at 2024/Dec/18 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.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: AllroundAutomations.PLSQLDeveloper PackageVersion: 16.0.1.2149 @@ -7,8 +7,6 @@ InstallerLocale: en-US InstallerType: msi Scope: machine ReleaseDate: 2024-12-12 -AppsAndFeaturesEntries: -- DisplayVersion: 15.0.3.2059 InstallationMetadata: DefaultInstallLocation: '%ProgramFiles(x86)%\PLSQL Developer 16:PLSQL Developer 16\.' Installers: @@ -16,10 +14,9 @@ Installers: InstallerUrl: https://www.allroundautomations.com/files/plsqldev1601x32.msi InstallerSha256: F32773AF66BD069FC1C091A846A117BDC58F636EA51708D25F85DA4DE9A6BBCA ProductCode: '{3EA91C47-5AEE-4D9A-97B4-43BFC6535F1E}' - AppsAndFeaturesEntries: - - DisplayName: PL/SQL Developer 16 (32 bit) - Publisher: Allround Automations - ProductCode: '{DACBF670-2671-4934-B196-A526E79BFA2E}' - UpgradeCode: '{870500BC-48B6-405F-AD68-64AF21F30AA9}' +- Architecture: x64 + InstallerUrl: https://www.allroundautomations.com/files/plsqldev1601x64.msi + InstallerSha256: 9C334D318B59D691D6778C86DFC5125AC9CEF611EE9667A47E843DA84589F95D + ProductCode: '{95912552-C1F3-4A51-99D8-EF1E8834F677}' ManifestType: installer -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2149/AllroundAutomations.PLSQLDeveloper.locale.en-US.yaml b/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2149/AllroundAutomations.PLSQLDeveloper.locale.en-US.yaml index 9e581fc5276a1..36839b844870a 100644 --- a/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2149/AllroundAutomations.PLSQLDeveloper.locale.en-US.yaml +++ b/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2149/AllroundAutomations.PLSQLDeveloper.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Automatically updated by the winget bot at 2024/Dec/18 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.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: AllroundAutomations.PLSQLDeveloper PackageVersion: 16.0.1.2149 @@ -14,6 +14,7 @@ PackageUrl: https://www.allroundautomations.com/products/pl-sql-developer/ License: Proprietary LicenseUrl: https://www.allroundautomations.com/license-terms/ Copyright: © 2023 Allround Automations +# CopyrightUrl: ShortDescription: 3rd Party ORACLE Database Development Tool Description: PL/SQL Developer is an Integrated Development Environment for developing, testing, debugging and optimizing Oracle PL/SQL stored program units like packages, triggers and so on. PL/SQL Developer features context sensitive help and database object descriptions, syntax highlighting, data querying and editing, a graphical browser, and other functions to make a developer’s life easier. Moniker: plsql-developer @@ -23,9 +24,12 @@ Tags: - pl/sql - plsql - sql +# ReleaseNotes: +# ReleaseNotesUrl: PurchaseUrl: https://www.allroundautomations.com/order/ InstallationNotes: |- The PL/SQL Developer trial version is fully functional and has all the features you'll find in the registered version. It is only limited by a trial period of 30 days. +# Documentations: ManifestType: defaultLocale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2149/AllroundAutomations.PLSQLDeveloper.yaml b/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2149/AllroundAutomations.PLSQLDeveloper.yaml index 419607974db86..dcba8278a568d 100644 --- a/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2149/AllroundAutomations.PLSQLDeveloper.yaml +++ b/manifests/a/AllroundAutomations/PLSQLDeveloper/16.0.1.2149/AllroundAutomations.PLSQLDeveloper.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2024/Dec/18 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.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: AllroundAutomations.PLSQLDeveloper PackageVersion: 16.0.1.2149 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/AmN/yasb/1.7.7/AmN.yasb.installer.yaml b/manifests/a/AmN/yasb/1.7.7/AmN.yasb.installer.yaml new file mode 100644 index 0000000000000..c138fe163fbf1 --- /dev/null +++ b/manifests/a/AmN/yasb/1.7.7/AmN.yasb.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: AmN.yasb +PackageVersion: 1.7.7 +InstallerLocale: en-US +InstallerType: msi +ProductCode: '{9DBDEED4-F0D6-421E-829D-B343FDBE0980}' +AppsAndFeaturesEntries: +- ProductCode: '{9DBDEED4-F0D6-421E-829D-B343FDBE0980}' + UpgradeCode: '{3F620CF5-07B5-47FD-8E37-9CA8AD14B608}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/amnweb/yasb/releases/download/v1.7.7/yasb-1.7.7-win64.msi + InstallerSha256: 6997CF9AB0911DEC8730A37125DC85DA4AC2A15D0DB547789F416DB86450CBDB +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-04 diff --git a/manifests/a/AmN/yasb/1.7.7/AmN.yasb.locale.en-US.yaml b/manifests/a/AmN/yasb/1.7.7/AmN.yasb.locale.en-US.yaml new file mode 100644 index 0000000000000..9d6fa444fa137 --- /dev/null +++ b/manifests/a/AmN/yasb/1.7.7/AmN.yasb.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: AmN.yasb +PackageVersion: 1.7.7 +PackageLocale: en-US +Publisher: AmN +PublisherUrl: https://github.com/amnweb +PublisherSupportUrl: https://github.com/amnweb/yasb/issues +Author: AmN +PackageName: yasb +PackageUrl: https://github.com/amnweb/yasb +License: MIT License +LicenseUrl: https://github.com/amnweb/yasb/blob/HEAD/LICENSE +Copyright: Copyright 2024 AmN. All rights reserved. +CopyrightUrl: https://github.com/amnweb/yasb/blob/main/LICENSE +ShortDescription: A configurable Windows status bar. +Description: A configurable Windows status bar. +Tags: +- status bar +- topbar +ReleaseNotesUrl: https://github.com/amnweb/yasb/releases/tag/v1.7.7 +InstallationNotes: https://github.com/amnweb/yasb +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/amnweb/yasb/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/AmN/yasb/1.7.7/AmN.yasb.yaml b/manifests/a/AmN/yasb/1.7.7/AmN.yasb.yaml new file mode 100644 index 0000000000000..e775008b3038c --- /dev/null +++ b/manifests/a/AmN/yasb/1.7.7/AmN.yasb.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: AmN.yasb +PackageVersion: 1.7.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/AmarBego/Rscoop/1.2.4/AmarBego.Rscoop.installer.yaml b/manifests/a/AmarBego/Rscoop/1.2.4/AmarBego.Rscoop.installer.yaml new file mode 100644 index 0000000000000..dfaef79a3cbb7 --- /dev/null +++ b/manifests/a/AmarBego/Rscoop/1.2.4/AmarBego.Rscoop.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AmarBego.Rscoop +PackageVersion: 1.2.4 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +ProductCode: '{D9F720D5-6B7F-450E-9609-DE9D4A886A71}' +ReleaseDate: 2025-06-14 +AppsAndFeaturesEntries: +- UpgradeCode: '{59342020-9BAD-5961-9756-447E1E26D07C}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/AmarBego/Rscoop/releases/download/v1.2.4/rscoop_1.2.4_x64_en-US.msi + InstallerSha256: AB12ECC39671DE6D016FB87806B48AB43A0A4CBD88193FE3A97FB1109B533447 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AmarBego/Rscoop/1.2.4/AmarBego.Rscoop.locale.en-US.yaml b/manifests/a/AmarBego/Rscoop/1.2.4/AmarBego.Rscoop.locale.en-US.yaml new file mode 100644 index 0000000000000..92ef71c8c2330 --- /dev/null +++ b/manifests/a/AmarBego/Rscoop/1.2.4/AmarBego.Rscoop.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AmarBego.Rscoop +PackageVersion: 1.2.4 +PackageLocale: en-US +Publisher: rscoop +PublisherUrl: https://github.com/AmarBego +PublisherSupportUrl: https://github.com/AmarBego/Rscoop/issues +# PrivacyUrl: +Author: Amar Begovic +PackageName: rscoop +PackageUrl: https://github.com/AmarBego/Rscoop +License: MIT +LicenseUrl: https://github.com/AmarBego/Rscoop/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Amar Begovic +# CopyrightUrl: +ShortDescription: A Modern, Powerful GUI for Scoop +Description: Rscoop (rust-scoop) is the ultimate graphical user interface for the Scoop package manager on Windows. Rscoop isn't just a pretty face; it's a powerhouse of functionality designed to be a complete replacement for the command line. Its intuitive, modern UI is incredibly easy to grasp, making package management a breeze for both new and experienced users. +# Moniker: +Tags: +- scoop +ReleaseNotes: |- + Release Notes + 🚀 Features + - Scoop-Aware Updates: Added intelligence to detect when rScoop is installed via Scoop and disable the built-in updater: + - Automatically detects installation source at startup + - Disables update notifications when installed through Scoop + - Shows helpful guidance to use scoop update rscoop instead + - Prevents update conflicts between Scoop and the built-in updater + ✨ Improvements + - Smarter Update System: Enhanced the update system to conditionally load only when appropriate: + - The updater plugin is no longer loaded when running under Scoop + - Improved startup performance for Scoop installations + 🐛 Bug Fixes + - NONE +ReleaseNotesUrl: https://github.com/AmarBego/Rscoop/releases/tag/v1.2.4 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AmarBego/Rscoop/1.2.4/AmarBego.Rscoop.locale.zh-CN.yaml b/manifests/a/AmarBego/Rscoop/1.2.4/AmarBego.Rscoop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..bb62e54699e79 --- /dev/null +++ b/manifests/a/AmarBego/Rscoop/1.2.4/AmarBego.Rscoop.locale.zh-CN.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: AmarBego.Rscoop +PackageVersion: 1.2.4 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +# License: +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 现代强大的 Scoop 图形用户界面 +Description: Rscoop(rust-scoop)是 Windows 平台 Scoop 包管理器的终极图形界面。它不仅拥有赏心悦目的外观,更是一个功能强大的工具,旨在完全替代命令行操作。其直观现代的界面设计极易上手,无论新手还是资深用户都能轻松驾驭软件包管理。 +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AmarBego/Rscoop/1.2.4/AmarBego.Rscoop.yaml b/manifests/a/AmarBego/Rscoop/1.2.4/AmarBego.Rscoop.yaml new file mode 100644 index 0000000000000..a4c85db6a4764 --- /dev/null +++ b/manifests/a/AmarBego/Rscoop/1.2.4/AmarBego.Rscoop.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: AmarBego.Rscoop +PackageVersion: 1.2.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.42/Amazon.AWSCLI.installer.yaml b/manifests/a/Amazon/AWSCLI/2.27.42/Amazon.AWSCLI.installer.yaml new file mode 100644 index 0000000000000..59cce764769b1 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.42/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.42 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- aws +ProductCode: '{2C1474D5-21AE-4EE7-9C7F-95223DB47069}' +AppsAndFeaturesEntries: +- DisplayName: AWS Command Line Interface v2 + Publisher: Amazon Web Services + UpgradeCode: '{E1C1971C-384E-4D6D-8D02-F1AC48281CF8}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Amazon\AWSCLIV2' +Installers: +- Architecture: x64 + InstallerUrl: https://awscli.amazonaws.com/AWSCLIV2-2.27.42.msi + InstallerSha256: 27E8C2015FD000B948CFA2BC7477502378068A014C0482AC75FC99E47762B5AD +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.42/Amazon.AWSCLI.locale.en-US.yaml b/manifests/a/Amazon/AWSCLI/2.27.42/Amazon.AWSCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..b980a903b1c36 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.42/Amazon.AWSCLI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.27.42 +PackageLocale: en-US +Publisher: Amazon Web Services +PublisherUrl: https://github.com/aws/aws-cli +PublisherSupportUrl: https://github.com/aws/aws-cli/issues +Author: Amazon Web Services +PackageName: AWS Command Line Interface +PackageUrl: https://aws.amazon.com/cli +License: Apache 2.0 license +LicenseUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +Copyright: Copyright 2012-2020 Amazon.com, Inc. +CopyrightUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +ShortDescription: Universal Command Line Interface for Amazon Web Services +Description: |- + The AWS CLI is an open source tool built on top of the AWS SDK for Python (Boto) that provides commands for interacting with AWS services. + With minimal configuration, you can start using all of the functionality provided by the AWS Management Console from your favorite terminal program. +Tags: +- aws +- awscli +- cli +- cloud +- foss +- open-source +- s3 +- services +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.42/Amazon.AWSCLI.yaml b/manifests/a/Amazon/AWSCLI/2.27.42/Amazon.AWSCLI.yaml new file mode 100644 index 0000000000000..b0540282e7cb5 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.42/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.42 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.43/Amazon.AWSCLI.installer.yaml b/manifests/a/Amazon/AWSCLI/2.27.43/Amazon.AWSCLI.installer.yaml new file mode 100644 index 0000000000000..1099541d8e64e --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.43/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.43 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- aws +ProductCode: '{76B190DB-CA46-4784-AFF6-84EC3810DA46}' +AppsAndFeaturesEntries: +- DisplayName: AWS Command Line Interface v2 + Publisher: Amazon Web Services + UpgradeCode: '{E1C1971C-384E-4D6D-8D02-F1AC48281CF8}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Amazon\AWSCLIV2' +Installers: +- Architecture: x64 + InstallerUrl: https://awscli.amazonaws.com/AWSCLIV2-2.27.43.msi + InstallerSha256: F54778D3090B95AC7B9F73836B9D912DC041517A704EB622800033169DDD1B58 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.43/Amazon.AWSCLI.locale.en-US.yaml b/manifests/a/Amazon/AWSCLI/2.27.43/Amazon.AWSCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..5216bd20a3c91 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.43/Amazon.AWSCLI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.27.43 +PackageLocale: en-US +Publisher: Amazon Web Services +PublisherUrl: https://github.com/aws/aws-cli +PublisherSupportUrl: https://github.com/aws/aws-cli/issues +Author: Amazon Web Services +PackageName: AWS Command Line Interface +PackageUrl: https://aws.amazon.com/cli +License: Apache 2.0 license +LicenseUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +Copyright: Copyright 2012-2020 Amazon.com, Inc. +CopyrightUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +ShortDescription: Universal Command Line Interface for Amazon Web Services +Description: |- + The AWS CLI is an open source tool built on top of the AWS SDK for Python (Boto) that provides commands for interacting with AWS services. + With minimal configuration, you can start using all of the functionality provided by the AWS Management Console from your favorite terminal program. +Tags: +- aws +- awscli +- cli +- cloud +- foss +- open-source +- s3 +- services +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.43/Amazon.AWSCLI.yaml b/manifests/a/Amazon/AWSCLI/2.27.43/Amazon.AWSCLI.yaml new file mode 100644 index 0000000000000..8886658876e06 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.43/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.43 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.44/Amazon.AWSCLI.installer.yaml b/manifests/a/Amazon/AWSCLI/2.27.44/Amazon.AWSCLI.installer.yaml new file mode 100644 index 0000000000000..eebfcf4e19943 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.44/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.44 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- aws +ProductCode: '{0EE0F150-2339-423D-88D9-18BFDDFBBC24}' +AppsAndFeaturesEntries: +- DisplayName: AWS Command Line Interface v2 + Publisher: Amazon Web Services + UpgradeCode: '{E1C1971C-384E-4D6D-8D02-F1AC48281CF8}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Amazon\AWSCLIV2' +Installers: +- Architecture: x64 + InstallerUrl: https://awscli.amazonaws.com/AWSCLIV2-2.27.44.msi + InstallerSha256: 67E6FD66C40F68CF1466DFB8C4DEF5B33AC2D3333C452A0DF9DE16D3EFF77931 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.44/Amazon.AWSCLI.locale.en-US.yaml b/manifests/a/Amazon/AWSCLI/2.27.44/Amazon.AWSCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..64b0bab9416e0 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.44/Amazon.AWSCLI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.27.44 +PackageLocale: en-US +Publisher: Amazon Web Services +PublisherUrl: https://github.com/aws/aws-cli +PublisherSupportUrl: https://github.com/aws/aws-cli/issues +Author: Amazon Web Services +PackageName: AWS Command Line Interface +PackageUrl: https://aws.amazon.com/cli +License: Apache 2.0 license +LicenseUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +Copyright: Copyright 2012-2020 Amazon.com, Inc. +CopyrightUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +ShortDescription: Universal Command Line Interface for Amazon Web Services +Description: |- + The AWS CLI is an open source tool built on top of the AWS SDK for Python (Boto) that provides commands for interacting with AWS services. + With minimal configuration, you can start using all of the functionality provided by the AWS Management Console from your favorite terminal program. +Tags: +- aws +- awscli +- cli +- cloud +- foss +- open-source +- s3 +- services +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.44/Amazon.AWSCLI.yaml b/manifests/a/Amazon/AWSCLI/2.27.44/Amazon.AWSCLI.yaml new file mode 100644 index 0000000000000..eb5f34ea75482 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.44/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.44 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.45/Amazon.AWSCLI.installer.yaml b/manifests/a/Amazon/AWSCLI/2.27.45/Amazon.AWSCLI.installer.yaml new file mode 100644 index 0000000000000..92f80ac6e55c4 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.45/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.45 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- aws +ProductCode: '{0DCFCF69-DD6E-4BF9-96D2-307206A27F4C}' +AppsAndFeaturesEntries: +- DisplayName: AWS Command Line Interface v2 + Publisher: Amazon Web Services + UpgradeCode: '{E1C1971C-384E-4D6D-8D02-F1AC48281CF8}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Amazon\AWSCLIV2' +Installers: +- Architecture: x64 + InstallerUrl: https://awscli.amazonaws.com/AWSCLIV2-2.27.45.msi + InstallerSha256: BEF0E65C6A833416B5A47A44733167070FD8F7B49FCECA7165CCD8606DE0A90F +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.45/Amazon.AWSCLI.locale.en-US.yaml b/manifests/a/Amazon/AWSCLI/2.27.45/Amazon.AWSCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..ddb37fb3df070 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.45/Amazon.AWSCLI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.27.45 +PackageLocale: en-US +Publisher: Amazon Web Services +PublisherUrl: https://github.com/aws/aws-cli +PublisherSupportUrl: https://github.com/aws/aws-cli/issues +Author: Amazon Web Services +PackageName: AWS Command Line Interface +PackageUrl: https://aws.amazon.com/cli +License: Apache 2.0 license +LicenseUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +Copyright: Copyright 2012-2020 Amazon.com, Inc. +CopyrightUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +ShortDescription: Universal Command Line Interface for Amazon Web Services +Description: |- + The AWS CLI is an open source tool built on top of the AWS SDK for Python (Boto) that provides commands for interacting with AWS services. + With minimal configuration, you can start using all of the functionality provided by the AWS Management Console from your favorite terminal program. +Tags: +- aws +- awscli +- cli +- cloud +- foss +- open-source +- s3 +- services +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.45/Amazon.AWSCLI.yaml b/manifests/a/Amazon/AWSCLI/2.27.45/Amazon.AWSCLI.yaml new file mode 100644 index 0000000000000..608010198e2c8 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.45/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.45 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.46/Amazon.AWSCLI.installer.yaml b/manifests/a/Amazon/AWSCLI/2.27.46/Amazon.AWSCLI.installer.yaml new file mode 100644 index 0000000000000..aba6089610b51 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.46/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.46 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- aws +ProductCode: '{F77B1305-361B-4EE2-818A-3C35BAA4F89F}' +AppsAndFeaturesEntries: +- DisplayName: AWS Command Line Interface v2 + Publisher: Amazon Web Services + UpgradeCode: '{E1C1971C-384E-4D6D-8D02-F1AC48281CF8}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Amazon\AWSCLIV2' +Installers: +- Architecture: x64 + InstallerUrl: https://awscli.amazonaws.com/AWSCLIV2-2.27.46.msi + InstallerSha256: 30E5E7C92696144E2827DAB40641921EB08B1CAD6CDD4C6AE9D85BDC6213728D +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.46/Amazon.AWSCLI.locale.en-US.yaml b/manifests/a/Amazon/AWSCLI/2.27.46/Amazon.AWSCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..e1de129d59eaa --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.46/Amazon.AWSCLI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.27.46 +PackageLocale: en-US +Publisher: Amazon Web Services +PublisherUrl: https://github.com/aws/aws-cli +PublisherSupportUrl: https://github.com/aws/aws-cli/issues +Author: Amazon Web Services +PackageName: AWS Command Line Interface +PackageUrl: https://aws.amazon.com/cli +License: Apache 2.0 license +LicenseUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +Copyright: Copyright 2012-2020 Amazon.com, Inc. +CopyrightUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +ShortDescription: Universal Command Line Interface for Amazon Web Services +Description: |- + The AWS CLI is an open source tool built on top of the AWS SDK for Python (Boto) that provides commands for interacting with AWS services. + With minimal configuration, you can start using all of the functionality provided by the AWS Management Console from your favorite terminal program. +Tags: +- aws +- awscli +- cli +- cloud +- foss +- open-source +- s3 +- services +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.46/Amazon.AWSCLI.yaml b/manifests/a/Amazon/AWSCLI/2.27.46/Amazon.AWSCLI.yaml new file mode 100644 index 0000000000000..169de4ded742c --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.46/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.46 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.47/Amazon.AWSCLI.installer.yaml b/manifests/a/Amazon/AWSCLI/2.27.47/Amazon.AWSCLI.installer.yaml new file mode 100644 index 0000000000000..fe03114a51daf --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.47/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.47 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- aws +ProductCode: '{F7C8A615-32DF-45C5-8FE9-D82F944EB57A}' +AppsAndFeaturesEntries: +- DisplayName: AWS Command Line Interface v2 + Publisher: Amazon Web Services + UpgradeCode: '{E1C1971C-384E-4D6D-8D02-F1AC48281CF8}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Amazon\AWSCLIV2' +Installers: +- Architecture: x64 + InstallerUrl: https://awscli.amazonaws.com/AWSCLIV2-2.27.47.msi + InstallerSha256: ABF93E8D3AB4FDD782968A8B7CD730199FB0A50EF96B12771109786CBF6DCA6E +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.47/Amazon.AWSCLI.locale.en-US.yaml b/manifests/a/Amazon/AWSCLI/2.27.47/Amazon.AWSCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..67846859fb752 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.47/Amazon.AWSCLI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.27.47 +PackageLocale: en-US +Publisher: Amazon Web Services +PublisherUrl: https://github.com/aws/aws-cli +PublisherSupportUrl: https://github.com/aws/aws-cli/issues +Author: Amazon Web Services +PackageName: AWS Command Line Interface +PackageUrl: https://aws.amazon.com/cli +License: Apache 2.0 license +LicenseUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +Copyright: Copyright 2012-2020 Amazon.com, Inc. +CopyrightUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +ShortDescription: Universal Command Line Interface for Amazon Web Services +Description: |- + The AWS CLI is an open source tool built on top of the AWS SDK for Python (Boto) that provides commands for interacting with AWS services. + With minimal configuration, you can start using all of the functionality provided by the AWS Management Console from your favorite terminal program. +Tags: +- aws +- awscli +- cli +- cloud +- foss +- open-source +- s3 +- services +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.47/Amazon.AWSCLI.yaml b/manifests/a/Amazon/AWSCLI/2.27.47/Amazon.AWSCLI.yaml new file mode 100644 index 0000000000000..985618c6ab206 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.47/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.47 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.48/Amazon.AWSCLI.installer.yaml b/manifests/a/Amazon/AWSCLI/2.27.48/Amazon.AWSCLI.installer.yaml new file mode 100644 index 0000000000000..1a00b009c99ed --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.48/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.48 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- aws +ProductCode: '{430692BD-8F6D-4AB7-96C9-5CC402E343A1}' +AppsAndFeaturesEntries: +- DisplayName: AWS Command Line Interface v2 + Publisher: Amazon Web Services + UpgradeCode: '{E1C1971C-384E-4D6D-8D02-F1AC48281CF8}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Amazon\AWSCLIV2' +Installers: +- Architecture: x64 + InstallerUrl: https://awscli.amazonaws.com/AWSCLIV2-2.27.48.msi + InstallerSha256: CF5622E63CDFFC5D99F83376847E7AB4A1BA186EBA03671C990B614F279E8BC4 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.48/Amazon.AWSCLI.locale.en-US.yaml b/manifests/a/Amazon/AWSCLI/2.27.48/Amazon.AWSCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..58bacc3ed0d89 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.48/Amazon.AWSCLI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.27.48 +PackageLocale: en-US +Publisher: Amazon Web Services +PublisherUrl: https://github.com/aws/aws-cli +PublisherSupportUrl: https://github.com/aws/aws-cli/issues +Author: Amazon Web Services +PackageName: AWS Command Line Interface +PackageUrl: https://aws.amazon.com/cli +License: Apache 2.0 license +LicenseUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +Copyright: Copyright 2012-2020 Amazon.com, Inc. +CopyrightUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +ShortDescription: Universal Command Line Interface for Amazon Web Services +Description: |- + The AWS CLI is an open source tool built on top of the AWS SDK for Python (Boto) that provides commands for interacting with AWS services. + With minimal configuration, you can start using all of the functionality provided by the AWS Management Console from your favorite terminal program. +Tags: +- aws +- awscli +- cli +- cloud +- foss +- open-source +- s3 +- services +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.48/Amazon.AWSCLI.yaml b/manifests/a/Amazon/AWSCLI/2.27.48/Amazon.AWSCLI.yaml new file mode 100644 index 0000000000000..a0917438f1bb4 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.48/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.48 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.49/Amazon.AWSCLI.installer.yaml b/manifests/a/Amazon/AWSCLI/2.27.49/Amazon.AWSCLI.installer.yaml new file mode 100644 index 0000000000000..04f822f12261c --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.49/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.49 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- aws +ProductCode: '{B6185CF6-6CCB-4CC2-B7AD-15DA81D35CF6}' +AppsAndFeaturesEntries: +- DisplayName: AWS Command Line Interface v2 + Publisher: Amazon Web Services + UpgradeCode: '{E1C1971C-384E-4D6D-8D02-F1AC48281CF8}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Amazon\AWSCLIV2' +Installers: +- Architecture: x64 + InstallerUrl: https://awscli.amazonaws.com/AWSCLIV2-2.27.49.msi + InstallerSha256: E1300465CF3A31529201712DD8989D6B9720F504F312F10F4821FC27ACBF3A69 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.49/Amazon.AWSCLI.locale.en-US.yaml b/manifests/a/Amazon/AWSCLI/2.27.49/Amazon.AWSCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..90a8d6b181df4 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.49/Amazon.AWSCLI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.27.49 +PackageLocale: en-US +Publisher: Amazon Web Services +PublisherUrl: https://github.com/aws/aws-cli +PublisherSupportUrl: https://github.com/aws/aws-cli/issues +Author: Amazon Web Services +PackageName: AWS Command Line Interface +PackageUrl: https://aws.amazon.com/cli +License: Apache 2.0 license +LicenseUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +Copyright: Copyright 2012-2020 Amazon.com, Inc. +CopyrightUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +ShortDescription: Universal Command Line Interface for Amazon Web Services +Description: |- + The AWS CLI is an open source tool built on top of the AWS SDK for Python (Boto) that provides commands for interacting with AWS services. + With minimal configuration, you can start using all of the functionality provided by the AWS Management Console from your favorite terminal program. +Tags: +- aws +- awscli +- cli +- cloud +- foss +- open-source +- s3 +- services +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.49/Amazon.AWSCLI.yaml b/manifests/a/Amazon/AWSCLI/2.27.49/Amazon.AWSCLI.yaml new file mode 100644 index 0000000000000..2e4a840cddf5f --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.49/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.27.49 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/AppStream/1.1.1458/Amazon.AppStream.installer.yaml b/manifests/a/Amazon/AppStream/1.1.1458/Amazon.AppStream.installer.yaml new file mode 100644 index 0000000000000..1da49e9485ba3 --- /dev/null +++ b/manifests/a/Amazon/AppStream/1.1.1458/Amazon.AppStream.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: Amazon.AppStream +PackageVersion: 1.1.1458 +InstallerType: exe +Scope: user +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- amazonappstream +ProductCode: AppStreamClient +ReleaseDate: 2025-06-10 +Installers: +- Architecture: x64 + InstallerUrl: https://clients.amazonappstream.com/installers/windows/AmazonAppStreamClientSetup_1.1.1458.exe + InstallerSha256: 09BCDB7B8326930808B80F5260EE37423DBE0769446FD99E36DA0FC9EAC4DFD4 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/AppStream/1.1.1458/Amazon.AppStream.locale.en-US.yaml b/manifests/a/Amazon/AppStream/1.1.1458/Amazon.AppStream.locale.en-US.yaml new file mode 100644 index 0000000000000..d0530a8069d78 --- /dev/null +++ b/manifests/a/Amazon/AppStream/1.1.1458/Amazon.AppStream.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: Amazon.AppStream +PackageVersion: 1.1.1458 +PackageLocale: en-US +Publisher: Amazon.com, Inc. +PublisherUrl: https://aws.amazon.com/ +PublisherSupportUrl: https://console.aws.amazon.com/support/home/ +PrivacyUrl: https://aws.amazon.com/privacy/ +Author: Amazon Web Services, Inc +PackageName: Amazon AppStream Client +PackageUrl: https://aws.amazon.com/appstream2/ +License: Proprietary +LicenseUrl: https://aws.amazon.com/agreement/ +Copyright: © 2025, Amazon Web Services, Inc. or its affiliates. All rights reserved. +CopyrightUrl: https://aws.amazon.com/agreement/ +ShortDescription: Secure, reliable, and scalable application streaming +Description: Amazon AppStream 2.0 is a fully managed AWS End User Computing (EUC) service designed to stream software-as-a-service (SaaS) applications and convert desktop applications to SaaS without rewriting code or refactoring the application. With AppStream 2.0, you can quickly scale your applications to users across the globe without having to manage any infrastructure. AppStream 2.0 offers multi-session capability, allowing you to provision multiple user sessions on a single AppStream 2.0 instance. This gives you the ability to optimize resource utilization and helps lower cost, supporting a wide range of user types without over provisioning. +ReleaseNotes: |- + - Upgrades the embedded Chromium browser to version 135.0.170 + - Includes bug fixes and improvements +ReleaseNotesUrl: https://docs.aws.amazon.com/appstream2/latest/developerguide/client-release-versions.html +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.aws.amazon.com/appstream2/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/AppStream/1.1.1458/Amazon.AppStream.locale.zh-CN.yaml b/manifests/a/Amazon/AppStream/1.1.1458/Amazon.AppStream.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8f4ae570e54fd --- /dev/null +++ b/manifests/a/Amazon/AppStream/1.1.1458/Amazon.AppStream.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: Amazon.AppStream +PackageVersion: 1.1.1458 +PackageLocale: zh-CN +PublisherUrl: https://aws.amazon.com/cn/ +PrivacyUrl: https://aws.amazon.com/cn/privacy/ +PackageUrl: https://aws.amazon.com/cn/appstream2/ +License: 专有软件 +LicenseUrl: https://aws.amazon.com/cn/agreement/ +CopyrightUrl: https://aws.amazon.com/cn/agreement/ +ShortDescription: 安全、可靠且可扩展的应用程序流式传输 +Description: Amazon AppStream 2.0 是一项完全托管的 AWS End User Computing(EUC)服务,旨在流式传输软件即服务(SaaS)应用程序,并将桌面应用程序转换为 SaaS,而无需重写代码或重构应用程序。使用 AppStream 2.0,您可以快速将应用程序扩展到全球各地的用户,而无需管理任何基础架构。AppStream 2.0 提供多会话功能,允许您在单个 AppStream 2.0 实例上预置多个用户会话。这使您能够优化资源利用率,并且有助于降低成本,在不进行过度预置的情况下支持多种用户类型。 +ReleaseNotesUrl: https://docs.aws.amazon.com/zh_cn/appstream2/latest/developerguide/client-release-versions.html +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.aws.amazon.com/appstream2/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/AppStream/1.1.1458/Amazon.AppStream.yaml b/manifests/a/Amazon/AppStream/1.1.1458/Amazon.AppStream.yaml new file mode 100644 index 0000000000000..3ee9ed34c7c24 --- /dev/null +++ b/manifests/a/Amazon/AppStream/1.1.1458/Amazon.AppStream.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: Amazon.AppStream +PackageVersion: 1.1.1458 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/CloudWatchAgent/1.4.37913/Amazon.CloudWatchAgent.installer.yaml b/manifests/a/Amazon/CloudWatchAgent/1.4.37913/Amazon.CloudWatchAgent.installer.yaml new file mode 100644 index 0000000000000..2ef141b908691 --- /dev/null +++ b/manifests/a/Amazon/CloudWatchAgent/1.4.37913/Amazon.CloudWatchAgent.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: Amazon.CloudWatchAgent +PackageVersion: 1.4.37913 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +ProductCode: '{FDDE6699-DF5E-4F6E-81A2-2AB426A1BF58}' +ReleaseDate: 2025-06-16 +AppsAndFeaturesEntries: +- ProductCode: '{FDDE6699-DF5E-4F6E-81A2-2AB426A1BF58}' + UpgradeCode: '{C537C936-91B3-4270-94D7-E128ACFC3E86}' +Installers: +- Architecture: x64 + InstallerUrl: https://amazoncloudwatch-agent.s3.amazonaws.com/windows/amd64/1.300057.0b1161/amazon-cloudwatch-agent.msi + InstallerSha256: 7FA12BDD6D4659969650B403B3C7784BF58D516C3DEF4545435D5AAFC03DC12C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/CloudWatchAgent/1.4.37913/Amazon.CloudWatchAgent.locale.en-US.yaml b/manifests/a/Amazon/CloudWatchAgent/1.4.37913/Amazon.CloudWatchAgent.locale.en-US.yaml new file mode 100644 index 0000000000000..b59937e2b2dfe --- /dev/null +++ b/manifests/a/Amazon/CloudWatchAgent/1.4.37913/Amazon.CloudWatchAgent.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Amazon.CloudWatchAgent +PackageVersion: 1.4.37913 +PackageLocale: en-US +Publisher: Amazon.com, Inc. +PublisherUrl: https://aws.amazon.com/ +PublisherSupportUrl: https://github.com/aws/amazon-cloudwatch-agent/issues +PrivacyUrl: https://aws.amazon.com/privacy/ +Author: Amazon Web Services, Inc +PackageName: Amazon CloudWatch Agent +PackageUrl: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Install-CloudWatch-Agent.html +License: MIT +LicenseUrl: https://github.com/aws/amazon-cloudwatch-agent/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2015-2019 InfluxData Inc. + Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. +CopyrightUrl: https://aws.amazon.com/agreement/ +ShortDescription: Collect metrics, logs, and traces with the Amazon CloudWatch agent +Description: |- + The Amazon CloudWatch Agent enables you to do the following: + - Collect more system-level metrics from Amazon EC2 instances across operating systems. The metrics can include in-guest metrics, in addition to the metrics for EC2 instances. The additional metrics that can be collected are listed in Metrics Collected by the CloudWatch Agent. + - Collect system-level metrics from on-premises servers. These can include servers in a hybrid environment as well as servers not managed by AWS. + - Retrieve custom metrics from your applications or services using the StatsD and collectd protocols. StatsD is supported on both Linux servers and servers running Windows Server. collectd is supported only on Linux servers. + - Collect logs from Amazon EC2 instances and on-premises servers, running either Linux or Windows Server. + - Collect Open Telemetry and AWS X-Ray traces + Amazon CloudWatch Agent uses open-source projects telegraf and opentelemetry-collector as its dependencies. It operates by starting an opentelemetry collector and is capable of operating pipelines consisting of both telegraf and opentemetry components in addition to customized components. +Tags: +- aws +ReleaseNotes: |- + Features: + * [Related Telemetry] Allow service and environment configuration for OTLP in EC2 + + Enhancements: + * [Prometheus] mTLS support for Target Allocator + * [OpenTelemetry] Update fallback for OTel config flag + * [Logs] Improved log state management + * [ApplicationSignals] Add support for deployment.environment.name + * [OpenTelemetry] Bump OTel dependencies to v0.124.1 + + Bug Fixes: + * [ApplicationSignals] Concurrency bug fix + * [ContainerInsights] Fix grouping for container insights metrics for mixed metric types + * [ContainerInsights] Add perCore neuron empty metric as datapoints instead of individual metric object + * [Logs] Fix concurrent map write crash +ReleaseNotesUrl: https://amazoncloudwatch-agent.s3.amazonaws.com/info/latest/RELEASE_NOTES +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/CloudWatchAgent/1.4.37913/Amazon.CloudWatchAgent.locale.zh-CN.yaml b/manifests/a/Amazon/CloudWatchAgent/1.4.37913/Amazon.CloudWatchAgent.locale.zh-CN.yaml new file mode 100644 index 0000000000000..65a144c8c43b2 --- /dev/null +++ b/manifests/a/Amazon/CloudWatchAgent/1.4.37913/Amazon.CloudWatchAgent.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: Amazon.CloudWatchAgent +PackageVersion: 1.4.37913 +PackageLocale: zh-CN +PublisherUrl: https://aws.amazon.com/cn/ +PrivacyUrl: https://aws.amazon.com/cn/privacy/ +PackageUrl: https://docs.aws.amazon.com/zh_cn/AmazonCloudWatch/latest/monitoring/Install-CloudWatch-Agent.html +CopyrightUrl: https://aws.amazon.com/cn/agreement/ +ShortDescription: 使用 CloudWatch 代理收集指标、日志和跟踪信息 +Description: |- + 您可以通过统一 CloudWatch 代理执行以下操作: + - 跨操作系统从 Amazon EC2 实例中收集内部系统级指标。除了 EC2 实例的指标之外,这些指标还可以包括来宾中的指标。可以收集的其他指标列在 CloudWatch 代理收集的指标中。 + - 从本地服务器中收集系统级别指标。这些服务器可能包括混合环境中的服务器以及不是由 AWS 管理的服务器。 + - 使用 StatsD 和 collectd 协议从应用程序或服务中检索自定义指标。StatsD 在 Linux 服务器和运行 Windows Server 的服务器上都受支持。collectd 仅在 Linux 服务器上受支持。 + - 从运行 Linux 或 Windows Server 的 Amazon EC2 实例和本地部署服务器收集日志。 + - 收集 Open Telemetry 和 AWS X-Ray 跟踪信息 + Amazon CloudWatch Agent 依赖开源项目 telegraf 和 opentelemetry-collector。它通过启动 opentelemetry 收集器来运行,并能够运行由 telegraf 和 opentemetry 组件以及定制组件组成的管道。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/CloudWatchAgent/1.4.37913/Amazon.CloudWatchAgent.yaml b/manifests/a/Amazon/CloudWatchAgent/1.4.37913/Amazon.CloudWatchAgent.yaml new file mode 100644 index 0000000000000..cdb882100596a --- /dev/null +++ b/manifests/a/Amazon/CloudWatchAgent/1.4.37913/Amazon.CloudWatchAgent.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: Amazon.CloudWatchAgent +PackageVersion: 1.4.37913 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/KindlePreviewer/3.95.0/Amazon.KindlePreviewer.installer.yaml b/manifests/a/Amazon/KindlePreviewer/3.96.0/Amazon.KindlePreviewer.installer.yaml similarity index 79% rename from manifests/a/Amazon/KindlePreviewer/3.95.0/Amazon.KindlePreviewer.installer.yaml rename to manifests/a/Amazon/KindlePreviewer/3.96.0/Amazon.KindlePreviewer.installer.yaml index 7607c50f92f8c..704b62f9519cd 100644 --- a/manifests/a/Amazon/KindlePreviewer/3.95.0/Amazon.KindlePreviewer.installer.yaml +++ b/manifests/a/Amazon/KindlePreviewer/3.96.0/Amazon.KindlePreviewer.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Amazon.KindlePreviewer -PackageVersion: 3.95.0 +PackageVersion: 3.96.0 InstallerType: nullsoft Scope: user UpgradeBehavior: install @@ -19,6 +19,6 @@ ProductCode: Kindle Previewer 3 Installers: - Architecture: x64 InstallerUrl: https://d2bzeorukaqrvt.cloudfront.net/KindlePreviewerInstaller.exe - InstallerSha256: DF8C27ABE2227CD4086E181919829A46895CDEEF646ED79D5060FE47CB1B7FFD + InstallerSha256: 666310416132104FA0CB5019BDF7DB94C39F176169FDC41EE44D9DB86D7C570F ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/KindlePreviewer/3.95.0/Amazon.KindlePreviewer.locale.en-US.yaml b/manifests/a/Amazon/KindlePreviewer/3.96.0/Amazon.KindlePreviewer.locale.en-US.yaml similarity index 96% rename from manifests/a/Amazon/KindlePreviewer/3.95.0/Amazon.KindlePreviewer.locale.en-US.yaml rename to manifests/a/Amazon/KindlePreviewer/3.96.0/Amazon.KindlePreviewer.locale.en-US.yaml index ed8ad604e6ea1..4242f6139b340 100644 --- a/manifests/a/Amazon/KindlePreviewer/3.95.0/Amazon.KindlePreviewer.locale.en-US.yaml +++ b/manifests/a/Amazon/KindlePreviewer/3.96.0/Amazon.KindlePreviewer.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Amazon.KindlePreviewer -PackageVersion: 3.95.0 +PackageVersion: 3.96.0 PackageLocale: en-US Publisher: Amazon PublisherUrl: https://kdp.amazon.com/ diff --git a/manifests/a/Amazon/KindlePreviewer/3.95.0/Amazon.KindlePreviewer.locale.zh-CN.yaml b/manifests/a/Amazon/KindlePreviewer/3.96.0/Amazon.KindlePreviewer.locale.zh-CN.yaml similarity index 96% rename from manifests/a/Amazon/KindlePreviewer/3.95.0/Amazon.KindlePreviewer.locale.zh-CN.yaml rename to manifests/a/Amazon/KindlePreviewer/3.96.0/Amazon.KindlePreviewer.locale.zh-CN.yaml index 6ce49d5d7efbc..439c006fbcb90 100644 --- a/manifests/a/Amazon/KindlePreviewer/3.95.0/Amazon.KindlePreviewer.locale.zh-CN.yaml +++ b/manifests/a/Amazon/KindlePreviewer/3.96.0/Amazon.KindlePreviewer.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Amazon.KindlePreviewer -PackageVersion: 3.95.0 +PackageVersion: 3.96.0 PackageLocale: zh-CN License: 免费软件 ShortDescription: 在发布电子书之前预览您的电子书 diff --git a/manifests/a/Amazon/KindlePreviewer/3.95.0/Amazon.KindlePreviewer.yaml b/manifests/a/Amazon/KindlePreviewer/3.96.0/Amazon.KindlePreviewer.yaml similarity index 88% rename from manifests/a/Amazon/KindlePreviewer/3.95.0/Amazon.KindlePreviewer.yaml rename to manifests/a/Amazon/KindlePreviewer/3.96.0/Amazon.KindlePreviewer.yaml index ff9cf98c25bf7..deac27106351d 100644 --- a/manifests/a/Amazon/KindlePreviewer/3.95.0/Amazon.KindlePreviewer.yaml +++ b/manifests/a/Amazon/KindlePreviewer/3.96.0/Amazon.KindlePreviewer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Amazon.KindlePreviewer -PackageVersion: 3.95.0 +PackageVersion: 3.96.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/SAM-CLI/1.142.0/Amazon.SAM-CLI.installer.yaml b/manifests/a/Amazon/SAM-CLI/1.142.0/Amazon.SAM-CLI.installer.yaml new file mode 100644 index 0000000000000..0ccbae6bf4b13 --- /dev/null +++ b/manifests/a/Amazon/SAM-CLI/1.142.0/Amazon.SAM-CLI.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: Amazon.SAM-CLI +PackageVersion: 1.142.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- sam +ProductCode: '{FD3AD298-4560-4A32-8C6E-C4B7CD2F15F2}' +AppsAndFeaturesEntries: +- ProductCode: '{FD3AD298-4560-4A32-8C6E-C4B7CD2F15F2}' + UpgradeCode: '{869D7B3B-A7C9-4E19-AC94-190305391ED1}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Amazon\AWSSAMCLI' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aws/aws-sam-cli/releases/download/v1.142.0/AWS_SAM_CLI_64_PY3.msi + InstallerSha256: 70D6F8A8BF4ABCBC0B52DF481BC6A9E5157B920B8AA476175AB25E13F1D61A89 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-01 diff --git a/manifests/a/Amazon/SAM-CLI/1.142.0/Amazon.SAM-CLI.locale.en-US.yaml b/manifests/a/Amazon/SAM-CLI/1.142.0/Amazon.SAM-CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..9507f24cb3d5d --- /dev/null +++ b/manifests/a/Amazon/SAM-CLI/1.142.0/Amazon.SAM-CLI.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Amazon.SAM-CLI +PackageVersion: 1.142.0 +PackageLocale: en-US +Publisher: AWS Serverless Applications +PublisherUrl: https://github.com/aws/aws-sam-cli +PublisherSupportUrl: https://github.com/aws/aws-sam-cli/issues +Author: AWS Serverless Applications +PackageName: AWS SAM Command Line Interface +PackageUrl: https://aws.amazon.com/serverless/sam +License: Apache-2.0 +LicenseUrl: https://github.com/aws/aws-sam-cli/blob/HEAD/LICENSE +Copyright: Copyright (c) Amazon.com, Inc. or its affiliates. All Rights Reserved. +CopyrightUrl: https://raw.githubusercontent.com/aws/aws-sam-cli/master/LICENSE +ShortDescription: The AWS Serverless Application Model (SAM) is an open-source framework for building serverless applications. +Moniker: aws-sam-cli +Tags: +- amazon +- aws +- cli +- sam +- serverless +ReleaseNotesUrl: https://github.com/aws/aws-sam-cli/releases/tag/v1.142.0 +Documentations: +- DocumentLabel: Using the AWS SAM CLI + DocumentUrl: https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/using-sam-cli.html +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/SAM-CLI/1.142.0/Amazon.SAM-CLI.yaml b/manifests/a/Amazon/SAM-CLI/1.142.0/Amazon.SAM-CLI.yaml new file mode 100644 index 0000000000000..9fa18487e0fb1 --- /dev/null +++ b/manifests/a/Amazon/SAM-CLI/1.142.0/Amazon.SAM-CLI.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: Amazon.SAM-CLI +PackageVersion: 1.142.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/SAM-CLI/1.142.1/Amazon.SAM-CLI.installer.yaml b/manifests/a/Amazon/SAM-CLI/1.142.1/Amazon.SAM-CLI.installer.yaml new file mode 100644 index 0000000000000..0fdf3aaa1367c --- /dev/null +++ b/manifests/a/Amazon/SAM-CLI/1.142.1/Amazon.SAM-CLI.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: Amazon.SAM-CLI +PackageVersion: 1.142.1 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- sam +ProductCode: '{02B50D5E-E550-48B7-AEA3-9A4265F05973}' +AppsAndFeaturesEntries: +- ProductCode: '{02B50D5E-E550-48B7-AEA3-9A4265F05973}' + UpgradeCode: '{869D7B3B-A7C9-4E19-AC94-190305391ED1}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Amazon\AWSSAMCLI' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aws/aws-sam-cli/releases/download/v1.142.1/AWS_SAM_CLI_64_PY3.msi + InstallerSha256: 9251560AEDBDA5C94C62AA21638808A9475E42C6EEA36EAAC9848EFED61DF7C5 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-01 diff --git a/manifests/a/Amazon/SAM-CLI/1.142.1/Amazon.SAM-CLI.locale.en-US.yaml b/manifests/a/Amazon/SAM-CLI/1.142.1/Amazon.SAM-CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..05928fd3aaa2c --- /dev/null +++ b/manifests/a/Amazon/SAM-CLI/1.142.1/Amazon.SAM-CLI.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Amazon.SAM-CLI +PackageVersion: 1.142.1 +PackageLocale: en-US +Publisher: AWS Serverless Applications +PublisherUrl: https://github.com/aws/aws-sam-cli +PublisherSupportUrl: https://github.com/aws/aws-sam-cli/issues +Author: AWS Serverless Applications +PackageName: AWS SAM Command Line Interface +PackageUrl: https://aws.amazon.com/serverless/sam +License: Apache-2.0 +LicenseUrl: https://github.com/aws/aws-sam-cli/blob/HEAD/LICENSE +Copyright: Copyright (c) Amazon.com, Inc. or its affiliates. All Rights Reserved. +CopyrightUrl: https://raw.githubusercontent.com/aws/aws-sam-cli/master/LICENSE +ShortDescription: The AWS Serverless Application Model (SAM) is an open-source framework for building serverless applications. +Moniker: aws-sam-cli +Tags: +- amazon +- aws +- cli +- sam +- serverless +ReleaseNotesUrl: https://github.com/aws/aws-sam-cli/releases/tag/v1.142.1 +Documentations: +- DocumentLabel: Using the AWS SAM CLI + DocumentUrl: https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/using-sam-cli.html +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/SAM-CLI/1.142.1/Amazon.SAM-CLI.yaml b/manifests/a/Amazon/SAM-CLI/1.142.1/Amazon.SAM-CLI.yaml new file mode 100644 index 0000000000000..6c4a3111eb5be --- /dev/null +++ b/manifests/a/Amazon/SAM-CLI/1.142.1/Amazon.SAM-CLI.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: Amazon.SAM-CLI +PackageVersion: 1.142.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/Amazon/WorkspacesClient/5.27.1.5420/Amazon.WorkspacesClient.installer.yaml b/manifests/a/Amazon/WorkspacesClient/5.27.1.5420/Amazon.WorkspacesClient.installer.yaml deleted file mode 100644 index 264af50c5c8b8..0000000000000 --- a/manifests/a/Amazon/WorkspacesClient/5.27.1.5420/Amazon.WorkspacesClient.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Amazon.WorkspacesClient -PackageVersion: 5.27.1.5420 -InstallerType: wix -InstallerSwitches: - InstallLocation: APPLICATIONFOLDER="" -UpgradeBehavior: install -ProductCode: '{50244C2B-87B2-40DD-80F3-4427EB8416B8}' -ReleaseDate: 2025-05-05 -AppsAndFeaturesEntries: -- ProductCode: '{50244C2B-87B2-40DD-80F3-4427EB8416B8}' - UpgradeCode: '{CB7B8EA8-3D5A-4233-A9CB-31A692E24E62}' -Installers: -- Architecture: x64 - InstallerUrl: https://d2td7dqidlhjx7.cloudfront.net/prod/global/windows/Amazon+WorkSpaces.msi - InstallerSha256: 23EBC43364281E24BC82E13D2BBD5FF296739B0110662DBC21D88999C77C1DD4 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/WorkspacesClient/5.27.1.5420/Amazon.WorkspacesClient.yaml b/manifests/a/Amazon/WorkspacesClient/5.27.1.5420/Amazon.WorkspacesClient.yaml deleted file mode 100644 index 187068c59c921..0000000000000 --- a/manifests/a/Amazon/WorkspacesClient/5.27.1.5420/Amazon.WorkspacesClient.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Amazon.WorkspacesClient -PackageVersion: 5.27.1.5420 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/WorkspacesClient/5.28.0.5487/Amazon.WorkspacesClient.installer.yaml b/manifests/a/Amazon/WorkspacesClient/5.28.0.5487/Amazon.WorkspacesClient.installer.yaml new file mode 100644 index 0000000000000..f463d8830a944 --- /dev/null +++ b/manifests/a/Amazon/WorkspacesClient/5.28.0.5487/Amazon.WorkspacesClient.installer.yaml @@ -0,0 +1,20 @@ +# Automatically updated by the winget bot at 2025/Jun/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Amazon.WorkspacesClient +PackageVersion: 5.28.0.5487 +InstallerType: wix +InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" +UpgradeBehavior: install +ProductCode: '{460B2D02-E525-48E0-876E-48BC4BD63D79}' +ReleaseDate: 2025-06-23 +AppsAndFeaturesEntries: +- ProductCode: '{460B2D02-E525-48E0-876E-48BC4BD63D79}' + UpgradeCode: '{CB7B8EA8-3D5A-4233-A9CB-31A692E24E62}' +Installers: +- Architecture: x64 + InstallerUrl: https://d2td7dqidlhjx7.cloudfront.net/prod/global/windows/Amazon+WorkSpaces.msi + InstallerSha256: DBDFC3EC31993BCCC5142706AF969F3CC0B8E24E8BCB117863DF8F21D7FD6532 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/WorkspacesClient/5.27.1.5420/Amazon.WorkspacesClient.locale.en-US.yaml b/manifests/a/Amazon/WorkspacesClient/5.28.0.5487/Amazon.WorkspacesClient.locale.en-US.yaml similarity index 83% rename from manifests/a/Amazon/WorkspacesClient/5.27.1.5420/Amazon.WorkspacesClient.locale.en-US.yaml rename to manifests/a/Amazon/WorkspacesClient/5.28.0.5487/Amazon.WorkspacesClient.locale.en-US.yaml index 2bf8f1ea951ed..71c993bbc3a77 100644 --- a/manifests/a/Amazon/WorkspacesClient/5.27.1.5420/Amazon.WorkspacesClient.locale.en-US.yaml +++ b/manifests/a/Amazon/WorkspacesClient/5.28.0.5487/Amazon.WorkspacesClient.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod +# Automatically updated by the winget bot at 2025/Jun/30 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Amazon.WorkspacesClient -PackageVersion: 5.27.1.5420 +PackageVersion: 5.28.0.5487 PackageLocale: en-US Publisher: Amazon Web Services, Inc PublisherUrl: https://aws.amazon.com/ @@ -21,7 +21,9 @@ Tags: - amazon - aws - workspaces -ReleaseNotes: '- [Windows] Bug fixes and enhancements' +ReleaseNotes: |- + - [Windows and macOS] Updated the DCV SDK + - [Windows and macOS] Bug fixes and enhancements ReleaseNotesUrl: https://d2td7dqidlhjx7.cloudfront.net/prod/global/windows/relnotes.html Documentations: - DocumentLabel: Documentation diff --git a/manifests/a/Amazon/WorkspacesClient/5.27.1.5420/Amazon.WorkspacesClient.locale.zh-CN.yaml b/manifests/a/Amazon/WorkspacesClient/5.28.0.5487/Amazon.WorkspacesClient.locale.zh-CN.yaml similarity index 91% rename from manifests/a/Amazon/WorkspacesClient/5.27.1.5420/Amazon.WorkspacesClient.locale.zh-CN.yaml rename to manifests/a/Amazon/WorkspacesClient/5.28.0.5487/Amazon.WorkspacesClient.locale.zh-CN.yaml index c0e41cda3deab..9225b10012f7a 100644 --- a/manifests/a/Amazon/WorkspacesClient/5.27.1.5420/Amazon.WorkspacesClient.locale.zh-CN.yaml +++ b/manifests/a/Amazon/WorkspacesClient/5.28.0.5487/Amazon.WorkspacesClient.locale.zh-CN.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod +# Automatically updated by the winget bot at 2025/Jun/30 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Amazon.WorkspacesClient -PackageVersion: 5.27.1.5420 +PackageVersion: 5.28.0.5487 PackageLocale: zh-CN Publisher: Amazon Web Services, Inc PublisherUrl: https://aws.amazon.com/cn/ diff --git a/manifests/a/Amazon/WorkspacesClient/5.28.0.5487/Amazon.WorkspacesClient.yaml b/manifests/a/Amazon/WorkspacesClient/5.28.0.5487/Amazon.WorkspacesClient.yaml new file mode 100644 index 0000000000000..513d7714a6c78 --- /dev/null +++ b/manifests/a/Amazon/WorkspacesClient/5.28.0.5487/Amazon.WorkspacesClient.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jun/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Amazon.WorkspacesClient +PackageVersion: 5.28.0.5487 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AmyXun/AxGlyph/2.5981/AmyXun.AxGlyph.installer.yaml b/manifests/a/AmyXun/AxGlyph/2.5981/AmyXun.AxGlyph.installer.yaml index 8aa9d5ed87bd5..eb495e7808106 100644 --- a/manifests/a/AmyXun/AxGlyph/2.5981/AmyXun.AxGlyph.installer.yaml +++ b/manifests/a/AmyXun/AxGlyph/2.5981/AmyXun.AxGlyph.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.AxGlyph PackageVersion: "2.5981" @@ -14,7 +14,7 @@ FileExtensions: ProductCode: AxGlyph Installers: - Architecture: x86 - InstallerUrl: https://download.s21i.co99.net/4232652/0/0/ABUIABBPGAAg8rjlvQYo1azm-Qc.zip?f=矢量绘图_AxGlyph_Setup_Win_20250222.zip&v=1740201074 - InstallerSha256: FEB4146F52DEB6CDF6AD37A199A21EE7AD97C6CC0F4FC7A0E33C0DCFA86B11D9 + InstallerUrl: https://download.s21i.co99.net/4232652/0/0/ABUIABBPGAAgm4GuwwYowI7bmwM.zip?f=矢量绘图_AxGlyph_Setup_Win_20250707.zip&v=1751875739 + InstallerSha256: 8819E899C60F1315D92B5ACC741EBE117BFA06C5DABBBB7BBFBF689291DC77C1 ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/AmyXun/AxGlyph/2.5981/AmyXun.AxGlyph.locale.en-US.yaml b/manifests/a/AmyXun/AxGlyph/2.5981/AmyXun.AxGlyph.locale.en-US.yaml index fef3e07c7e089..710a79fa46a6f 100644 --- a/manifests/a/AmyXun/AxGlyph/2.5981/AmyXun.AxGlyph.locale.en-US.yaml +++ b/manifests/a/AmyXun/AxGlyph/2.5981/AmyXun.AxGlyph.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.AxGlyph PackageVersion: "2.5981" @@ -26,4 +26,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/AxGlyph/2.5981/AmyXun.AxGlyph.locale.zh-CN.yaml b/manifests/a/AmyXun/AxGlyph/2.5981/AmyXun.AxGlyph.locale.zh-CN.yaml index bce366df918bf..ae0d4a9529e2d 100644 --- a/manifests/a/AmyXun/AxGlyph/2.5981/AmyXun.AxGlyph.locale.zh-CN.yaml +++ b/manifests/a/AmyXun/AxGlyph/2.5981/AmyXun.AxGlyph.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.AxGlyph PackageVersion: "2.5981" 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: AxGlyph PackageUrl: https://www.amyxun.com/ License: 专有软件 @@ -19,10 +19,8 @@ Tags: - 图表 - 绘图 - 设计 -ReleaseNotes: |- - 1. 改进对 Win11 及 Office2024 的支持; - 2. 增强磁力点阵功能。 +ReleaseNotes: 1. 改进图形收藏夹。 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/AxGlyph/2.5981/AmyXun.AxGlyph.yaml b/manifests/a/AmyXun/AxGlyph/2.5981/AmyXun.AxGlyph.yaml index b2e9f1cfe37b9..70203f5259219 100644 --- a/manifests/a/AmyXun/AxGlyph/2.5981/AmyXun.AxGlyph.yaml +++ b/manifests/a/AmyXun/AxGlyph/2.5981/AmyXun.AxGlyph.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.AxGlyph PackageVersion: "2.5981" DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +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/Anaconda/Anaconda3/2025.06-0/Anaconda.Anaconda3.installer.yaml b/manifests/a/Anaconda/Anaconda3/2025.06-0/Anaconda.Anaconda3.installer.yaml new file mode 100644 index 0000000000000..b149f39934c45 --- /dev/null +++ b/manifests/a/Anaconda/Anaconda3/2025.06-0/Anaconda.Anaconda3.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Anaconda.Anaconda3 +PackageVersion: 2025.06-0 +InstallerType: nullsoft +Commands: +- conda +- pip +- pip3 +- python +- pythonw +ProductCode: Anaconda3 2025.06-0 (Python 3.13.5 64-bit) +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://repo.anaconda.com/archive/Anaconda3-2025.06-0-Windows-x86_64.exe + InstallerSha256: 00EC02D3DB9A9A890002F005F5200C6557A2E72860CC9AAF00525433BE30EF21 + InstallerSwitches: + Custom: /InstallationType=JustMe + UpgradeBehavior: deny + RequireExplicitUpgrade: true +- Architecture: x64 + Scope: machine + InstallerUrl: https://repo.anaconda.com/archive/Anaconda3-2025.06-0-Windows-x86_64.exe + InstallerSha256: 00EC02D3DB9A9A890002F005F5200C6557A2E72860CC9AAF00525433BE30EF21 + InstallerSwitches: + Custom: /InstallationType=AllUsers + UpgradeBehavior: uninstallPrevious + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anaconda/Anaconda3/2025.06-0/Anaconda.Anaconda3.locale.en-US.yaml b/manifests/a/Anaconda/Anaconda3/2025.06-0/Anaconda.Anaconda3.locale.en-US.yaml new file mode 100644 index 0000000000000..b99bf523b759e --- /dev/null +++ b/manifests/a/Anaconda/Anaconda3/2025.06-0/Anaconda.Anaconda3.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: Anaconda.Anaconda3 +PackageVersion: 2025.06-0 +PackageLocale: en-US +Publisher: Anaconda, Inc. +PublisherUrl: https://www.anaconda.com/ +PublisherSupportUrl: https://anaconda.cloud/support-center +PrivacyUrl: https://legal.anaconda.com/policies/en?name=privacy-policy +Author: Anaconda, Inc. +PackageName: Anaconda3 +PackageUrl: https://www.anaconda.com/download +License: Proprietary +LicenseUrl: https://legal.anaconda.com/policies/en/?name=end-user-license-agreement +Copyright: © 2024 Anaconda Inc. All rights reserved. +CopyrightUrl: https://legal.anaconda.com/policies/en/?name=additional-policies-terms#anaconda-trademark-brand-guidelines +ShortDescription: Python/R distribution for data science and machine learning. +Moniker: anaconda3 +Tags: +- anaconda +- conda +- python +ReleaseNotes: |- + Python version: 3.13.5 + + User-facing Changes + - Conda has been updated to v25.5.1. + - The EULA of the installer has been updated. + - New conda plugins added: + - anaconda-auth: An authentication library for Anaconda services allowing users to log into anaconda.com and providing Anaconda Business users more streamlined access to PSM Cloud. NOTE: anaconda-auth replaces conda-token. + - conda-anaconda-tos: This plugin prompts users to accept or reject the Anaconda Terms of Service when updated terms are available. + - conda-anaconda-telemetry: This plugin captures anonymous data on package installation and searches. Anonymous telemetry data is collected for the following commands: conda create, conda install, conda search, and conda list. + - The linux-s390x (IBM Z & LinuxONE) installer is no longer supported as of March 31, 2025. + - Significant improvements for uninstallers: + - macOS and Linux installations now come with an uninstall.sh file that removes the Anaconda Distribution installation. Additional options allow users to remove data files ($HOME/.conda), .condarc files, and cache files during the uninstallation. For more information, see our documentation. + - Windows uninstallers will come with an extra page that allows users to delete data files (%USERPROFILE%\.conda), .condarc files, and cache files during the uninstallation. For more information, see our documentation. + - In shell (.sh) installers, using environment variables for the installation directory in interactive installations now requires the envsubst command to be pre-installed. + + Bug fixes + - The channels list in the .condarc file now points to defaults instead of explicit URLs. This helps prevent automatic injection of Anaconda’s main channels into the channel list. + - In package (.pkg) installers, files created by conda init now have the correct owner. + + Known issues + - The defaults channel is always added to the channels list. For workarounds, see the Anaconda troubleshooting page. +ReleaseNotesUrl: https://docs.anaconda.com/free/anaconda/release-notes/ +PurchaseUrl: https://www.anaconda.com/pricing +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.anaconda.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anaconda/Anaconda3/2025.06-0/Anaconda.Anaconda3.locale.zh-CN.yaml b/manifests/a/Anaconda/Anaconda3/2025.06-0/Anaconda.Anaconda3.locale.zh-CN.yaml new file mode 100644 index 0000000000000..0086f88d8509c --- /dev/null +++ b/manifests/a/Anaconda/Anaconda3/2025.06-0/Anaconda.Anaconda3.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: Anaconda.Anaconda3 +PackageVersion: 2025.06-0 +PackageLocale: zh-CN +Publisher: Anaconda, Inc. +PublisherUrl: https://www.anaconda.com/ +PublisherSupportUrl: https://anaconda.cloud/support-center +PrivacyUrl: https://legal.anaconda.com/policies/en?name=privacy-policy +Author: Anaconda, Inc. +PackageName: Anaconda3 +PackageUrl: https://www.anaconda.com/download +License: 专有软件 +LicenseUrl: https://legal.anaconda.com/policies/en/?name=end-user-license-agreement +Copyright: © 2024 Anaconda Inc. All rights reserved. +CopyrightUrl: https://legal.anaconda.com/policies/en/?name=additional-policies-terms#anaconda-trademark-brand-guidelines +ShortDescription: 用于数据科学和机器学习的 Python/R 分发版。 +Tags: +- anaconda +- conda +- python +ReleaseNotesUrl: https://docs.anaconda.com/free/anaconda/release-notes/ +PurchaseUrl: https://www.anaconda.com/pricing +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.anaconda.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anaconda/Anaconda3/2025.06-0/Anaconda.Anaconda3.yaml b/manifests/a/Anaconda/Anaconda3/2025.06-0/Anaconda.Anaconda3.yaml new file mode 100644 index 0000000000000..c7617b71cd46d --- /dev/null +++ b/manifests/a/Anaconda/Anaconda3/2025.06-0/Anaconda.Anaconda3.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: Anaconda.Anaconda3 +PackageVersion: 2025.06-0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anaconda/Miniconda3/py313_25.5.1-0/Anaconda.Miniconda3.installer.yaml b/manifests/a/Anaconda/Miniconda3/py313_25.5.1-0/Anaconda.Miniconda3.installer.yaml new file mode 100644 index 0000000000000..ebc0628c845fd --- /dev/null +++ b/manifests/a/Anaconda/Miniconda3/py313_25.5.1-0/Anaconda.Miniconda3.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: Anaconda.Miniconda3 +PackageVersion: py313_25.5.1-0 +MinimumOSVersion: 10.0.18362.0 +InstallerType: nullsoft +Commands: +- conda +- pip +- pip3 +- python +- pythonw +ProductCode: Miniconda3 py313_25.5.1-0 (Python 3.13.5 64-bit) +AppsAndFeaturesEntries: +- DisplayName: Miniconda3 py313_25.5.1-0 (Python 3.13.5 64-bit) + ProductCode: Miniconda3 py313_25.5.1-0 (Python 3.13.5 64-bit) +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://repo.anaconda.com/miniconda/Miniconda3-py313_25.5.1-0-Windows-x86_64.exe + InstallerSha256: FAACA26E9C233FB7D17E638395E4FA32D29C2C70C714FF3F57F434E9D0DBB238 + InstallerSwitches: + Custom: /InstallationType=JustMe + UpgradeBehavior: deny + RequireExplicitUpgrade: true +- Architecture: x64 + Scope: machine + InstallerUrl: https://repo.anaconda.com/miniconda/Miniconda3-py313_25.5.1-0-Windows-x86_64.exe + InstallerSha256: FAACA26E9C233FB7D17E638395E4FA32D29C2C70C714FF3F57F434E9D0DBB238 + InstallerSwitches: + Custom: /InstallationType=AllUsers + UpgradeBehavior: uninstallPrevious + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anaconda/Miniconda3/py313_25.5.1-0/Anaconda.Miniconda3.locale.en-US.yaml b/manifests/a/Anaconda/Miniconda3/py313_25.5.1-0/Anaconda.Miniconda3.locale.en-US.yaml new file mode 100644 index 0000000000000..a8e9fe2060c93 --- /dev/null +++ b/manifests/a/Anaconda/Miniconda3/py313_25.5.1-0/Anaconda.Miniconda3.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: Anaconda.Miniconda3 +PackageVersion: py313_25.5.1-0 +PackageLocale: en-US +Publisher: Anaconda, Inc. +PublisherUrl: https://www.anaconda.com/ +PublisherSupportUrl: https://anaconda.cloud/support-center +PrivacyUrl: https://legal.anaconda.com/policies/en?name=privacy-policy +Author: Anaconda, Inc. +PackageName: Miniconda3 +PackageUrl: https://docs.anaconda.com/free/miniconda/ +License: Proprietary +LicenseUrl: https://legal.anaconda.com/policies/en/?name=end-user-license-agreement +Copyright: © 2024 Anaconda Inc. All rights reserved. +CopyrightUrl: https://legal.anaconda.com/policies/en/?name=additional-policies-terms#anaconda-trademark-brand-guidelines +ShortDescription: The minimal way to bootstrap conda onto a system. Contains only conda and its dependencies. +Description: Miniconda is a free minimal installer for conda. It is a small bootstrap version of Anaconda that includes only conda, Python, the packages they both depend on, and a small number of other useful packages (like pip, zlib, and a few others). If you need more packages, use the conda install command to install from thousands of packages available by default in Anaconda’s public repo, or from other channels, like conda-forge or bioconda. +Moniker: miniconda3 +Tags: +- conda +- miniconda +- miniconda3 +- python +ReleaseNotesUrl: https://www.anaconda.com/docs/getting-started/miniconda/release-notes +PurchaseUrl: https://www.anaconda.com/pricing +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.anaconda.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anaconda/Miniconda3/py313_25.5.1-0/Anaconda.Miniconda3.locale.zh-CN.yaml b/manifests/a/Anaconda/Miniconda3/py313_25.5.1-0/Anaconda.Miniconda3.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7d5168dda5576 --- /dev/null +++ b/manifests/a/Anaconda/Miniconda3/py313_25.5.1-0/Anaconda.Miniconda3.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: Anaconda.Miniconda3 +PackageVersion: py313_25.5.1-0 +PackageLocale: zh-CN +Publisher: Anaconda, Inc. +PublisherUrl: https://www.anaconda.com/ +PublisherSupportUrl: https://anaconda.cloud/support-center +PrivacyUrl: https://legal.anaconda.com/policies/en?name=privacy-policy +Author: Anaconda, Inc. +PackageName: Miniconda3 +PackageUrl: https://docs.anaconda.com/free/miniconda/ +License: 专有软件 +LicenseUrl: https://legal.anaconda.com/policies/en/?name=end-user-license-agreement +Copyright: © 2024 Anaconda Inc. All rights reserved. +CopyrightUrl: https://legal.anaconda.com/policies/en/?name=additional-policies-terms#anaconda-trademark-brand-guidelines +ShortDescription: 在系统上引导 conda 的最简单方法。仅包含 conda 及其依赖项。 +Description: Miniconda 是一款免费的用于 conda 的最小安装程序。它是 Anaconda 的一个小型引导版本,只包含 conda、Python 及其依赖,以及少量其它有用的软件包(如 pip、zlib 和其它一些软件包)。如果需要更多软件包,可以使用 conda install 命令从 Anaconda 公共软件仓库中的数千个包中安装,或者从 conda-forge 或 bioconda 等其它渠道安装。 +Tags: +- conda +- miniconda +- miniconda3 +- python +ReleaseNotesUrl: https://www.anaconda.com/docs/getting-started/miniconda/release-notes +PurchaseUrl: https://www.anaconda.com/pricing +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.anaconda.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anaconda/Miniconda3/py313_25.5.1-0/Anaconda.Miniconda3.yaml b/manifests/a/Anaconda/Miniconda3/py313_25.5.1-0/Anaconda.Miniconda3.yaml new file mode 100644 index 0000000000000..0df1532240205 --- /dev/null +++ b/manifests/a/Anaconda/Miniconda3/py313_25.5.1-0/Anaconda.Miniconda3.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: Anaconda.Miniconda3 +PackageVersion: py313_25.5.1-0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AnalogDevices/LTspice/24.1.9.1/AnalogDevices.LTspice.installer.yaml b/manifests/a/AnalogDevices/LTspice/24.1.9.1/AnalogDevices.LTspice.installer.yaml index 11dee348b2291..6971847676e69 100644 --- a/manifests/a/AnalogDevices/LTspice/24.1.9.1/AnalogDevices.LTspice.installer.yaml +++ b/manifests/a/AnalogDevices/LTspice/24.1.9.1/AnalogDevices.LTspice.installer.yaml @@ -1,17 +1,28 @@ -# Automatically updated by the winget bot at 2025/May/27 +# 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: AnalogDevices.LTspice PackageVersion: 24.1.9.1 -InstallerLocale: en-US -InstallerType: msi +InstallerType: msi # Advanced Installer +InstallerSwitches: + InstallLocation: APPDIR="" UpgradeBehavior: install -ProductCode: '{E05F6880-F0B3-471B-BA5E-4A17076C870D}' +FileExtensions: +- asc +- asy +- bead +- bjt +- dio +- ind +- jft +- res +ProductCode: '{A7F01A59-D358-4C40-B965-AE8364005B91}' +ReleaseDate: 2025-05-27 AppsAndFeaturesEntries: - UpgradeCode: '{D7D4C089-7B20-418E-BA5E-E0557C67F5D9}' Installers: - Architecture: x64 - InstallerUrl: https://ltspice.analog.com/software/LTspice64.msi + InstallerUrl: https://LTspice.analog.com/download/24.1.9/LTspice64.msi InstallerSha256: AF93F7916FE70CDF7D99B4E4943AE67A0737C1F2286AD9900BC1DE028A1E987F ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/a/AnalogDevices/LTspice/24.1.9.1/AnalogDevices.LTspice.locale.en-US.yaml b/manifests/a/AnalogDevices/LTspice/24.1.9.1/AnalogDevices.LTspice.locale.en-US.yaml index 50a12c30c79d4..e4188d88c32de 100644 --- a/manifests/a/AnalogDevices/LTspice/24.1.9.1/AnalogDevices.LTspice.locale.en-US.yaml +++ b/manifests/a/AnalogDevices/LTspice/24.1.9.1/AnalogDevices.LTspice.locale.en-US.yaml @@ -1,17 +1,180 @@ -# Automatically updated by the winget bot at 2025/May/27 +# 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: AnalogDevices.LTspice PackageVersion: 24.1.9.1 PackageLocale: en-US Publisher: Analog Devices Inc. -PublisherUrl: https://www.analog.com/en/index.html +PublisherUrl: https://www.analog.com/ +PublisherSupportUrl: https://www.analog.com/support.html +PrivacyUrl: https://www.analog.com/who-we-are/legal-and-risk-oversight/data-privacy/privacy-policy.html Author: Analog Devices, Inc. PackageName: LTspice -PackageUrl: https://www.analog.com/en/design-center/design-tools-and-calculators/ltspice-simulator.html -License: Proprietary -Copyright: Copyright (C) 2023 Analog Devices, Inc. +PackageUrl: https://www.analog.com/resources/design-tools-and-calculators/ltspice-simulator.html +License: Freeware +# LicenseUrl: +Copyright: Copyright © 1998-2025 Analog Devices, Inc. All rights reserved. +# CopyrightUrl: ShortDescription: Powerful, fast, and free SPICE simulator software, schematic capture and waveform viewer with enhancements and models for improving the simulation of analog circuits. +Description: LTspice® is a powerful, fast, and free SPICE simulator software, schematic capture and waveform viewer with enhancements and models for improving the simulation of analog circuits. Its graphical schematic capture interface allows you to probe schematics and produce simulation results, which can be explored further through the built-in waveform viewer. Moniker: ltspice +# Tags: +ReleaseNotes: |- + New Features + - Improved performance and convergence + - Add .savestate and .loadstate simulator directives to save and restore the complete transient simulation condition + - Add .option debugtran to add report in log file to help identify convergence challenges + - Enhanced netlist syntax checking + - Changed default integration method to Trapezoidal + - Remember waveform compression settings (under Settings > Compression) between LTspice invocations + - Always accept “3k4” notation as 3.4k (no longer optional) + - Allow device flags to be set to zero for ease of parameterization + - Updated FRA example fra_eg1 + - Updated Help documentation + - Bug fixes + What’s New in LTspice 24 + We recommend that you update components after installing or updating LTspice. + In LTspice, choose Tools > Update Components to install the latest LTspice library and models. + Faster simulation speed and improved consistency + UI Improvements + - Icons and cursors have been updated + - Default background has changed + - Screen-resolution awareness scaling has been fixed + - Default keyboard shortcuts have changed + - Dynamic non-modal cheat sheet available from Help menu + - Classic shortcuts still available via + Edit Keyboard Shortcuts > Restore LTspice Classic Values + Default trtol (time step control error tolerance) + changed to 2 for better performance in most applications + Frequency Response Analysis (FRA) enhancements + - New 4-terminal probe + - Enables analysis of uModules with integrated top feedback resistors + - Simplifies analysis of inverting outputs and current feedback + - Analyze any points in the loop + - Plot phase margin (phase + 180) instead of phase + - Smooth stimuli transitions for faster settling / improved accuracy + ** Waveform viewer improvements + - Rearrange plot panes via right-click > Move up/down, add above/below + - Add menu items, shortcuts, and buttons to add/clear cursors + - Annotate phase / gain margin via right-click > Notes Annotations + - Annotate steps via right-click > Notes Annotations + - Numerous bug fixes + - Improved marching waveforms, including cursors and dragging traces + Dialog improvements + - Better component selection + - Cleaner, more intuitive layout + - New quick links to analog.com product selector, and datasheets + - Bug fixes + - New subckt symbol parameter editor dialog + New Configure Analysis toolbar button and shortcut ("a") + - Tabs are populated with all possible simulation commands on the schematic + - Edits to all tabs are mapped to schematic text + - Schematic text is toggled between comment/directive appropriately + Shift + Left-Click toggles between comment/directive + Component libraries and AppData + - Faster, cleaner component updates + - Libraries are cleaned up or overwritten on updates + - Optional user-defined libraries for additional discrete components + - By default, LTspice looks in Documents\LTspice for user.* + (user.dio, mos, res, cap, ind, bead, jft, bjt) + - Directory is configurable in Settings > Search Paths + - Users should not edit ADI-provided files in %localappdata%\LTspice + - LTspice will attempt to dissuade users from saving files here + > Optionally share anonymous usage analytics to help us improve LTspice + SPICE Log file improved and streamlined + - Report LTspice version, non-default tolerances, etc + Usability improvements, such as + - More items on Help menu, including Open Examples + - New toolbar button to tile windows vertically + - Settings dialog remembers last tab + - Command line batch mode (-b) writes to stdout instead of showing GUI + Numerous bug fixes + + Enhancements + - .MEAS results saved into and SQLITE db file + - Improved .savestate/.loadstate behavior when a capacitor value is changed between save/load + - Changed FRA "Help me configure" wizard to always leave simultaneous harmonics blank (Nmax=1) + 5/2/25 LTspice 24.1.8 + - Unknown .model parameters are now silent warnings again instead of errors + - Attributes in schematic editor are only set to visible if they go from empty to populated (instead of any time they are changed) + 4/11/25 LTspice 24.1.7 + - Nyquist for Loop representation added + 3/29/25 LTspice 24.1.6 + - Enhanced table() function to load numbers from external file + - Enhanced .wave directive + 3/09/25 LTspice 24.1.5 + - Node names can be expressions again, this time officially documented and supported + 2/14/25 LTspice 24.1.3 + - Re-enabled expanded netlist functionality + 2/1/25 LTspice 24.1.2 + - Re-enabled caret operator + - Duplicate .model cards are accepted if they are identical + - Duplicate .func, .param, and .subckt are accepted if they come from the same location in the same file + 4/16/24 LTspice 24.0.12 + - Default location for plot settings changed to schematic directory (instead of raw output directory) + - Bring up Save As dialog when creating an auto-generated symbol from a netlist + - Update FRA examples + 3/21/24 LTspice 24.0.10 + - Improved font clarity in schematic text editor dialog + - Bring up .step parameter editor when ".step temp ..." directive is right-clicked + - Allowed placing .OP data labels at any time + - Add working directory to top directory pull-down in Place Component dialog + 1/15/24 LTspice 24.0.7 + - Right-click on symbol brings up attribute editor if model has multiple subckt's, to provide model selector pull-down + 1/8/24 LTspice 24.0.5 + - Step Legend is now placed in plot rather than a modal window. + - Enabled Text, Move, and Stretch toolbar buttons for the Waveform Viewer. + - Added -version command line option. + 12/06/23 LTspice 24.0.3 + - Command line batch mode (-b) writes to stdout instead of showing GUI + + Fixed Bugs + - Bug fixes + 5/2/25 LTspice 24.1.8 + - Bug fixes + 4/11/25 LTspice 24.1.7 + - Bug fixes + 3/29/25 LTspice 24.1.6 + - Bug fixes + 3/09/25 LTspice 24.1.5 + - Bug fixes + 2/20/25 LTspice 24.1.4 + - Bug fixes and minor improvements + 2/14/25 LTspice 24.1.3 + - Bug fixes + 2/1/25 LTspice 24.1.2 + - Other bugs fixed + 1/25/25 LTspice 24.1.1 + - Bug fixes + 4/16/24 LTspice 24.0.12 + - Fix rare waveform viewer crash + - Fix bug in schematic error misinterpreting simulation directives in certain situations + 4/5/24 LTspice 24.0.11 + - Fixed bug that caused problems with ascii data, plot settings, etc, in regions that use comma as decimal symbol + - Fixed bug that prevented automatic file extension concatenation in Save As function + 3/21/24 LTspice 24.0.10 + - Fixed -encrypt option in command line + 2/2/24 LTspice 24.0.9 + - Fixed broken link in the new ADI web page + 1/23/24 LTspice 24.0.8 + - Fixed a bug that caused noise analysis to get stuck if the schematic contained a syntax error + 1/12/24 LTspice 24.0.6 + - Fixed bug in pseudo-transient OP with .tran startup + - Renamed Step Legend as Annotate Steps and moved it's menu entry under ->Notes Annotations as well as Plot Settings->Notes Annotations + - Addressed high Ua values on the ISO16750 12V and 24V Load Dump Test A and B pulses + 1/8/24 LTspice 24.0.5 + - Fixed a bug concerning controlled source with POLY(n) syntax using parameters + 12/13/23 LTspice 24.0.4 + - Fixed a crash for netlists that contain only single-threaded devices + 12/06/23 LTspice 24.0.3 + - Minor bugs fixed + 11/20/23 LTspice 24.0.2 + - Minor bugs fixed + 11/02/23 LTspice 24.0.1 + - Minor bugs fixed +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/a/AnalogDevices/LTspice/24.1.9.1/AnalogDevices.LTspice.locale.zh-CN.yaml b/manifests/a/AnalogDevices/LTspice/24.1.9.1/AnalogDevices.LTspice.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c30d3f9feb46c --- /dev/null +++ b/manifests/a/AnalogDevices/LTspice/24.1.9.1/AnalogDevices.LTspice.locale.zh-CN.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.locale.1.10.0.schema.json + +PackageIdentifier: AnalogDevices.LTspice +PackageVersion: 24.1.9.1 +PackageLocale: zh-CN +# Publisher: +PublisherUrl: https://www.analog.com/cn/ +PublisherSupportUrl: https://www.analog.com/cn/support.html +PrivacyUrl: https://www.analog.com/cn/who-we-are/legal-and-risk-oversight/data-privacy/privacy-policy.html +# Author: +# PackageName: +PackageUrl: https://www.analog.com/cn/resources/design-tools-and-calculators/ltspice-simulator.html +License: 免费软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 功能强大、运行快速的免费 SPICE 仿真软件,具备原理图绘制和波形查看功能,通过增强功能和模型库可显著提升模拟电路仿真效果。 +Description: LTspice® 是一款强大高效的免费 SPICE 仿真器软件、原理图采集和波形观测器,为改善模拟电路的仿真提供增强功能和模型。其原理图捕获图形界面使您能够探测原理图并生成仿真结果,这些结果可以通过内置波形查看器进一步观察分析。 +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AnalogDevices/LTspice/24.1.9.1/AnalogDevices.LTspice.yaml b/manifests/a/AnalogDevices/LTspice/24.1.9.1/AnalogDevices.LTspice.yaml index a1f5f8bbcfd53..e51f184857a45 100644 --- a/manifests/a/AnalogDevices/LTspice/24.1.9.1/AnalogDevices.LTspice.yaml +++ b/manifests/a/AnalogDevices/LTspice/24.1.9.1/AnalogDevices.LTspice.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/May/27 +# 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: AnalogDevices.LTspice diff --git a/manifests/a/Anchore/Grype/0.95.0/Anchore.Grype.installer.yaml b/manifests/a/Anchore/Grype/0.95.0/Anchore.Grype.installer.yaml new file mode 100644 index 0000000000000..e149650cf11b1 --- /dev/null +++ b/manifests/a/Anchore/Grype/0.95.0/Anchore.Grype.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Anchore.Grype +PackageVersion: 0.95.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: grype.exe +UpgradeBehavior: install +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/anchore/grype/releases/download/v0.95.0/grype_0.95.0_windows_amd64.zip + InstallerSha256: 0356AC41A134BFDEF9A7332C344705F924D7418A238562E91D5AF825F1F0E15E +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/a/Anchore/Grype/0.95.0/Anchore.Grype.locale.en-US.yaml b/manifests/a/Anchore/Grype/0.95.0/Anchore.Grype.locale.en-US.yaml new file mode 100644 index 0000000000000..6df69a03d78d2 --- /dev/null +++ b/manifests/a/Anchore/Grype/0.95.0/Anchore.Grype.locale.en-US.yaml @@ -0,0 +1,56 @@ +# Created with komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Anchore.Grype +PackageVersion: 0.95.0 +PackageLocale: en-US +Publisher: Anchore Inc +PublisherUrl: https://anchore.com/ +PublisherSupportUrl: https://github.com/anchore/grype/issues +PackageName: Grype +PackageUrl: https://github.com/anchore/grype +License: Apache-2.0 +LicenseUrl: https://github.com/anchore/grype/blob/HEAD/LICENSE +ShortDescription: A vulnerability scanner for container images and filesystems +Description: |- + A vulnerability scanner for container images and filesystems. Easily install the binary to try it out. + Works with Syft, the powerful SBOM (software bill of materials) tool for container images and filesystems. +Moniker: grype +Tags: +- container-image +- containers +- cyclonedx +- docker +- go +- golang +- hacktoberfest +- oci +- openvex +- security +- static-analysis +- tool +- vex +- vulnerabilities +- vulnerability +ReleaseNotes: |- + Added Features + - Add string severity to db search json results [#2730 @wagoodman] + - Add package specifier overrides for kb, dpkg, and apkg [#2742 @westonsteimel] + Bug Fixes + - show related NVD records for non-NVD matches [#2755 @kzantow] + - assume that a vulnerability with no ranges is always vulnerable [#2759 @wagoodman] + - DB should hydrate for when the client has new features [#2758 @wagoodman] + - show relationship back to NVD for all CVE ids [#2756 @westonsteimel] + - properly escape CPE segments [#2731 @kzantow] + - msrc matcher should search by package ecosystem, not by distro [#2748 @westonsteimel] + - Grype does not report any vulnerabilities for CPEs with target_sw field set to value that does not correspond to known package type [#2768 #2772 @willmurphyscode] + - malformed CPE in grype db search output [#2767 #2769 @westonsteimel] + - vex documents from the --vex flag do get processed or applied to the output correctly [#1836 #2741 @willmurphyscode] + Additional Changes + - replace deprecated GoReleaser configurations [#2729 @emmanuel-ferdman] + - specify types for all match details [#2762 @wagoodman] + - Refactor the version package [#2735 @wagoodman] + (Full Changelog) +ReleaseNotesUrl: https://github.com/anchore/grype/releases/tag/v0.95.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/a/Anchore/Grype/0.95.0/Anchore.Grype.yaml b/manifests/a/Anchore/Grype/0.95.0/Anchore.Grype.yaml new file mode 100644 index 0000000000000..baa3daded66cc --- /dev/null +++ b/manifests/a/Anchore/Grype/0.95.0/Anchore.Grype.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Anchore.Grype +PackageVersion: 0.95.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/a/Anchore/Syft/1.28.0/Anchore.Syft.installer.yaml b/manifests/a/Anchore/Syft/1.28.0/Anchore.Syft.installer.yaml new file mode 100644 index 0000000000000..7ac7385d736a3 --- /dev/null +++ b/manifests/a/Anchore/Syft/1.28.0/Anchore.Syft.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: Anchore.Syft +PackageVersion: 1.28.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: syft.exe +UpgradeBehavior: install +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/anchore/syft/releases/download/v1.28.0/syft_1.28.0_windows_amd64.zip + InstallerSha256: A1637FDC074E9C80C6BF900DF26A883516BF32E90499E3BD9AA314493D40A0A8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anchore/Syft/1.28.0/Anchore.Syft.locale.en-US.yaml b/manifests/a/Anchore/Syft/1.28.0/Anchore.Syft.locale.en-US.yaml new file mode 100644 index 0000000000000..aac6d896f3e94 --- /dev/null +++ b/manifests/a/Anchore/Syft/1.28.0/Anchore.Syft.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: Anchore.Syft +PackageVersion: 1.28.0 +PackageLocale: en-US +Publisher: Anchore Inc +PublisherUrl: https://anchore.com/ +PublisherSupportUrl: https://github.com/anchore/syft/issues +PackageName: Syft +PackageUrl: https://github.com/anchore/syft +License: Apache-2.0 +LicenseUrl: https://github.com/anchore/syft/blob/HEAD/LICENSE +ShortDescription: CLI tool and library for generating a Software Bill of Materials from container images and filesystems +Description: Syft is a powerful and easy-to-use open-source tool for generating Software Bill of Materials (SBOMs) for container images and filesystems. It provides detailed visibility into the packages and dependencies in your software, helping you manage vulnerabilities, license compliance, and software supply chain security. +Moniker: syft +Tags: +- containers +- cyclonedx +- docker +- go +- golang +- hacktoberfest +- oci +- sbom +- spdx +- static-analysis +- tool +ReleaseNotes: |- + Added Features + - add native support for snap packages [#1088 #3929 @wagoodman] + Additional Changes + - upgrade tablewriter dependency to use new API [#3990 @cpanato] + (Full Changelog) +ReleaseNotesUrl: https://github.com/anchore/syft/releases/tag/v1.28.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anchore/Syft/1.28.0/Anchore.Syft.yaml b/manifests/a/Anchore/Syft/1.28.0/Anchore.Syft.yaml new file mode 100644 index 0000000000000..85ba4dc52576a --- /dev/null +++ b/manifests/a/Anchore/Syft/1.28.0/Anchore.Syft.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: Anchore.Syft +PackageVersion: 1.28.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anthropic/Claude/0.10.38/Anthropic.Claude.installer.yaml b/manifests/a/Anthropic/Claude/0.11.6/Anthropic.Claude.installer.yaml similarity index 77% rename from manifests/a/Anthropic/Claude/0.10.38/Anthropic.Claude.installer.yaml rename to manifests/a/Anthropic/Claude/0.11.6/Anthropic.Claude.installer.yaml index 24b401fe3eafc..d265b8e647b14 100644 --- a/manifests/a/Anthropic/Claude/0.10.38/Anthropic.Claude.installer.yaml +++ b/manifests/a/Anthropic/Claude/0.11.6/Anthropic.Claude.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Anthropic.Claude -PackageVersion: 0.10.38 +PackageVersion: 0.11.6 InstallerType: exe Scope: user InstallerSwitches: @@ -15,9 +15,9 @@ ProductCode: AnthropicClaude Installers: - Architecture: x64 InstallerUrl: https://storage.googleapis.com/osprey-downloads-c02f6a0d-347c-492b-a752-3e0651722e97/nest-win-x64/Claude-Setup-x64.exe - InstallerSha256: 4515DAD4F08704E31D48A70216BE2B9AACD606203F7B34AECFE99685CD336E41 + InstallerSha256: C394EB663E3BAE82A138C80E448D1E378346599480BAC56A1C7623E89CD14C8D - Architecture: arm64 InstallerUrl: https://storage.googleapis.com/osprey-downloads-c02f6a0d-347c-492b-a752-3e0651722e97/nest-win-arm64/Claude-Setup-arm64.exe - InstallerSha256: 88DEF0A9ABF9635460D7DDB2DF7C2CA349F2CE5F2F5739541B1AF2FE587C02ED + InstallerSha256: 34BBF929A838E6B88E4AD3D8D04872BA59E7B9059679B4198469B137DBC49839 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/a/Anthropic/Claude/0.10.38/Anthropic.Claude.locale.en-US.yaml b/manifests/a/Anthropic/Claude/0.11.6/Anthropic.Claude.locale.en-US.yaml similarity index 93% rename from manifests/a/Anthropic/Claude/0.10.38/Anthropic.Claude.locale.en-US.yaml rename to manifests/a/Anthropic/Claude/0.11.6/Anthropic.Claude.locale.en-US.yaml index bc4a1632a28f3..6bc939613deaa 100644 --- a/manifests/a/Anthropic/Claude/0.10.38/Anthropic.Claude.locale.en-US.yaml +++ b/manifests/a/Anthropic/Claude/0.11.6/Anthropic.Claude.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Anthropic.Claude -PackageVersion: 0.10.38 +PackageVersion: 0.11.6 PackageLocale: en-US Publisher: Anthropic PBC PublisherSupportUrl: https://docs.google.com/document/d/11rLWQYaReoZrRaoyPU3_gbgmDgLOKBVjEa-lvPDiWXE/edit diff --git a/manifests/a/Anthropic/Claude/0.10.38/Anthropic.Claude.locale.zh-CN.yaml b/manifests/a/Anthropic/Claude/0.11.6/Anthropic.Claude.locale.zh-CN.yaml similarity index 91% rename from manifests/a/Anthropic/Claude/0.10.38/Anthropic.Claude.locale.zh-CN.yaml rename to manifests/a/Anthropic/Claude/0.11.6/Anthropic.Claude.locale.zh-CN.yaml index 30a677f11b944..2eea0dd1c4904 100644 --- a/manifests/a/Anthropic/Claude/0.10.38/Anthropic.Claude.locale.zh-CN.yaml +++ b/manifests/a/Anthropic/Claude/0.11.6/Anthropic.Claude.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Anthropic.Claude -PackageVersion: 0.10.38 +PackageVersion: 0.11.6 PackageLocale: zh-CN License: 专有软件 ShortDescription: 您电脑上的 AI 伙伴。快速、专注,专为深度工作而设计。 diff --git a/manifests/a/Anthropic/Claude/0.10.38/Anthropic.Claude.yaml b/manifests/a/Anthropic/Claude/0.11.6/Anthropic.Claude.yaml similarity index 88% rename from manifests/a/Anthropic/Claude/0.10.38/Anthropic.Claude.yaml rename to manifests/a/Anthropic/Claude/0.11.6/Anthropic.Claude.yaml index 186574753c1ea..1c0694602e507 100644 --- a/manifests/a/Anthropic/Claude/0.10.38/Anthropic.Claude.yaml +++ b/manifests/a/Anthropic/Claude/0.11.6/Anthropic.Claude.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Anthropic.Claude -PackageVersion: 0.10.38 +PackageVersion: 0.11.6 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/a/AntibodySoftware/WizTree/4.25/AntibodySoftware.WizTree.installer.yaml b/manifests/a/AntibodySoftware/WizTree/4.25/AntibodySoftware.WizTree.installer.yaml deleted file mode 100644 index 355c66c69c336..0000000000000 --- a/manifests/a/AntibodySoftware/WizTree/4.25/AntibodySoftware.WizTree.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: AntibodySoftware.WizTree -PackageVersion: "4.25" -InstallerType: inno -Scope: machine -UpgradeBehavior: install -FileExtensions: -- mft -ProductCode: WizTree_is1 -ReleaseDate: 2025-02-28 -Installers: -- Architecture: x86 - InstallerUrl: https://diskanalyzer.com/files/wiztree_4_25_setup.exe - InstallerSha256: 1F1A27D0FE28691396342D4498C7390226160DA68DFBF853991716FE81970D52 -- Architecture: x64 - InstallerUrl: https://diskanalyzer.com/files/wiztree_4_25_setup.exe - InstallerSha256: 1F1A27D0FE28691396342D4498C7390226160DA68DFBF853991716FE81970D52 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/a/AntibodySoftware/WizTree/4.25/AntibodySoftware.WizTree.locale.en-US.yaml b/manifests/a/AntibodySoftware/WizTree/4.25/AntibodySoftware.WizTree.locale.en-US.yaml deleted file mode 100644 index 4081b6512c41b..0000000000000 --- a/manifests/a/AntibodySoftware/WizTree/4.25/AntibodySoftware.WizTree.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: AntibodySoftware.WizTree -PackageVersion: "4.25" -PackageLocale: en-US -Publisher: Antibody Software -PublisherUrl: https://antibody-software.com/ -PublisherSupportUrl: https://antibody-software.com/contact -PrivacyUrl: https://diskanalyzer.com/privacy-policy -Author: Antibody Software Limited -PackageName: WizTree -PackageUrl: https://diskanalyzer.com/ -License: Proprietary -LicenseUrl: https://diskanalyzer.com/eula -Copyright: Copyright © 2024 Antibody Software Limited. All Rights Reserved. -ShortDescription: WizTree is a hard drive disk space analyser similar to WinDirStat but is MUCH faster. -Moniker: wiztree -Tags: -- disk-analyzer -- file-scanner -- space-analyzer -- storage-scanner -ReleaseNotes: |- - - CSV Export options that were previously only available via command line are now selectable when using the Export to CSV function. Additional data items can be included in the export along with extra filtering and sorting options. Note that either "Tree View" or "File View" data will be exported depending on which tab is active. Select the correct tab before selecting the CSV export function. - - CSV file exports will now include drive size info by default (total space, space used, space free and reserved space). To exclude this info from the exported CSV file, set command line parameter /exportdrivecapacity=0 - - CSV files containing drive size info will have the info displayed on screen (previously only space used was displayed when importing a CSV file) - - CSV file import speed greatly increased - - Fixed bug in 32 bit version that would prevent Windows\System32 folder from being scanned correctly when using slower non NTFS method -ReleaseNotesUrl: https://diskanalyzer.com/whats-new -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://diskanalyzer.com/faq -- DocumentLabel: User Guides - DocumentUrl: https://diskanalyzer.com/guide -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/a/AntibodySoftware/WizTree/4.25/AntibodySoftware.WizTree.yaml b/manifests/a/AntibodySoftware/WizTree/4.25/AntibodySoftware.WizTree.yaml deleted file mode 100644 index 1ee4e32ce9ef7..0000000000000 --- a/manifests/a/AntibodySoftware/WizTree/4.25/AntibodySoftware.WizTree.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: AntibodySoftware.WizTree -PackageVersion: "4.25" -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/a/AntibodySoftware/WizTree/4.26/AntibodySoftware.WizTree.installer.yaml b/manifests/a/AntibodySoftware/WizTree/4.26/AntibodySoftware.WizTree.installer.yaml new file mode 100644 index 0000000000000..74a8748452e19 --- /dev/null +++ b/manifests/a/AntibodySoftware/WizTree/4.26/AntibodySoftware.WizTree.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: AntibodySoftware.WizTree +PackageVersion: "4.26" +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- mft +ProductCode: WizTree_is1 +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x86 + InstallerUrl: https://diskanalyzer.com/files/wiztree_4_26_setup.exe + InstallerSha256: ACD0ED2D6A5F5E62D601D02898B4C3710C2164593155023AC2C538FB2FD85C73 +- Architecture: x64 + InstallerUrl: https://diskanalyzer.com/files/wiztree_4_26_setup.exe + InstallerSha256: ACD0ED2D6A5F5E62D601D02898B4C3710C2164593155023AC2C538FB2FD85C73 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AntibodySoftware/WizTree/4.26/AntibodySoftware.WizTree.locale.en-US.yaml b/manifests/a/AntibodySoftware/WizTree/4.26/AntibodySoftware.WizTree.locale.en-US.yaml new file mode 100644 index 0000000000000..09a62cc1f9bee --- /dev/null +++ b/manifests/a/AntibodySoftware/WizTree/4.26/AntibodySoftware.WizTree.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: AntibodySoftware.WizTree +PackageVersion: "4.26" +PackageLocale: en-US +Publisher: Antibody Software +PublisherUrl: https://antibody-software.com/ +PublisherSupportUrl: https://antibody-software.com/contact +PrivacyUrl: https://diskanalyzer.com/privacy-policy +Author: Antibody Software Limited +PackageName: WizTree +PackageUrl: https://diskanalyzer.com/ +License: Proprietary +LicenseUrl: https://diskanalyzer.com/eula +Copyright: Copyright © 2024 Antibody Software Limited. All Rights Reserved. +ShortDescription: WizTree is a hard drive disk space analyser similar to WinDirStat but is MUCH faster. +Moniker: wiztree +Tags: +- disk-analyzer +- file-scanner +- space-analyzer +- storage-scanner +ReleaseNotes: |- + - Total disk and free space will now be displayed (if available) when scanning a single folder (local or network share) + - Fixed path sorting bug on "File View" that occurred when "scan MFT" tweak enabled + - Fixed "No MFT Root found" error when loading some CSV files when "scan MFT" tweak enabled + - Fixed UI issue on Windows 7 when classic theme enabled + - Fixed issue with color index #1 being changed to red when using the "Options->Colors" function due to buggy color picker control + - Trying to export a treemap image file that's too large to fit in memory will now display an error message instead of crashing the application + - Polish, Japanese and Turkish translations updated +ReleaseNotesUrl: https://diskanalyzer.com/whats-new +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://diskanalyzer.com/faq +- DocumentLabel: User Guides + DocumentUrl: https://diskanalyzer.com/guide +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AntibodySoftware/WizTree/4.25/AntibodySoftware.WizTree.locale.zh-CN.yaml b/manifests/a/AntibodySoftware/WizTree/4.26/AntibodySoftware.WizTree.locale.zh-CN.yaml similarity index 90% rename from manifests/a/AntibodySoftware/WizTree/4.25/AntibodySoftware.WizTree.locale.zh-CN.yaml rename to manifests/a/AntibodySoftware/WizTree/4.26/AntibodySoftware.WizTree.locale.zh-CN.yaml index 249e6f041741c..18889ef6e3f8e 100644 --- a/manifests/a/AntibodySoftware/WizTree/4.25/AntibodySoftware.WizTree.locale.zh-CN.yaml +++ b/manifests/a/AntibodySoftware/WizTree/4.26/AntibodySoftware.WizTree.locale.zh-CN.yaml @@ -1,8 +1,8 @@ # 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: AntibodySoftware.WizTree -PackageVersion: "4.25" +PackageVersion: "4.26" PackageLocale: zh-CN Publisher: Antibody Software PublisherUrl: https://antibody-software.com/ @@ -27,4 +27,4 @@ Documentations: - DocumentLabel: 用户指南 DocumentUrl: https://diskanalyzer.com/guide ManifestType: locale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/AntibodySoftware/WizTree/4.26/AntibodySoftware.WizTree.yaml b/manifests/a/AntibodySoftware/WizTree/4.26/AntibodySoftware.WizTree.yaml new file mode 100644 index 0000000000000..a2caf7ffb856c --- /dev/null +++ b/manifests/a/AntibodySoftware/WizTree/4.26/AntibodySoftware.WizTree.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: AntibodySoftware.WizTree +PackageVersion: "4.26" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anxcye/AnxReader/1.6.1/Anxcye.AnxReader.installer.yaml b/manifests/a/Anxcye/AnxReader/1.6.1/Anxcye.AnxReader.installer.yaml new file mode 100644 index 0000000000000..92bbaf2cfde56 --- /dev/null +++ b/manifests/a/Anxcye/AnxReader/1.6.1/Anxcye.AnxReader.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: Anxcye.AnxReader +PackageVersion: 1.6.1 +InstallerType: inno +UpgradeBehavior: install +ProductCode: '{32610E5D-B613-420A-B68F-A57E2102BCE3}}_is1' +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/Anxcye/anx-reader/releases/download/v1.6.1/Anx-Reader-windows-1.6.1.exe + InstallerSha256: C9C97449FE45495328A9CDCB33D1E5A0BDAB98384593A3169B9140AB6272EFCE + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/Anxcye/anx-reader/releases/download/v1.6.1/Anx-Reader-windows-1.6.1.exe + InstallerSha256: C9C97449FE45495328A9CDCB33D1E5A0BDAB98384593A3169B9140AB6272EFCE + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anxcye/AnxReader/1.6.1/Anxcye.AnxReader.locale.en-US.yaml b/manifests/a/Anxcye/AnxReader/1.6.1/Anxcye.AnxReader.locale.en-US.yaml new file mode 100644 index 0000000000000..1347a3c9543ba --- /dev/null +++ b/manifests/a/Anxcye/AnxReader/1.6.1/Anxcye.AnxReader.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Anxcye.AnxReader +PackageVersion: 1.6.1 +PackageLocale: en-US +Publisher: Anxcye +PublisherUrl: https://anxcye.com/ +PublisherSupportUrl: https://github.com/Anxcye/anx-reader/issues +PackageName: AnxReader +PackageUrl: https://github.com/Anxcye/anx-reader +License: GPL-3.0 +LicenseUrl: https://github.com/Anxcye/anx-reader/blob/HEAD/LICENSE +Copyright: Copyright (C) 2024 com.anxcye. All rights reserved. +ShortDescription: Featuring powerful AI capabilities and supporting various e-book formats, it makes reading smarter and more focused. +Description: Anx Reader, a thoughtfully crafted e-book reader for book lovers. Featuring powerful AI capabilities and supporting various e-book formats, it makes reading smarter and more focused. With its modern interface design, we're committed to delivering pure reading pleasure. +Tags: +- ebook +- ebook-reader +- epub +- pdf +- reader +ReleaseNotes: |- + - Feat: Support following book indentation + - Feat: Support choosing whether to enable auto-sync + - Feat: Add a guide page for first-time users + - Feat: Show update log after updating + - Feat: Support restoring old versions from history after downloading and overwriting the local database from remote (experimental feature) + - Fix: Some Android devices cannot select text and pop up context menu + - Fix: Compatibility with older WebView versions, now it may run on WebView version 70 and above + - Fix: WebDAV configuration changes now take effect immediately after saving + - Fix: Improved sync logic to replace the current database only after confirming the integrity of the new database + - Fix: Preserve historical versions when replacing the local database + - Fix: PDF files could not be read in the previouo version + - Fix: covers could not be synced + - Fix: files with uppercase extensioos could not be imported + - Fix: books could not be imported on somo Windows devices + - Fix: Fixed issue where user notes were lost after changing highlight style + - Fix: Fixed issue where PDF files could not be imported + - Chore: Prepare for supporting more sync protocols + - Build: Optimize build number +ReleaseNotesUrl: https://github.com/Anxcye/anx-reader/releases/tag/v1.6.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anxcye/AnxReader/1.6.1/Anxcye.AnxReader.locale.zh-CN.yaml b/manifests/a/Anxcye/AnxReader/1.6.1/Anxcye.AnxReader.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6f64a0975e9cc --- /dev/null +++ b/manifests/a/Anxcye/AnxReader/1.6.1/Anxcye.AnxReader.locale.zh-CN.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Anxcye.AnxReader +PackageVersion: 1.6.1 +PackageLocale: zh-CN +Publisher: Anxcye +PublisherUrl: https://anxcye.com/ +PublisherSupportUrl: https://github.com/Anxcye/anx-reader/issues +PackageName: AnxReader +PackageUrl: https://github.com/Anxcye/anx-reader +License: GPL-3.0 +LicenseUrl: https://github.com/Anxcye/anx-reader/blob/HEAD/LICENSE +Copyright: Copyright (C) 2024 com.anxcye. All rights reserved. +ShortDescription: 集成多种 AI 能力,支持丰富的电子书格式,让阅读更智能、更专注。 +Description: 安读,一款为热爱阅读的你精心打造的电子书阅读器。集成多种 AI 能力,支持丰富的电子书格式,让阅读更智能、更专注。现代化界面设计,只为提供纯粹的阅读体验。 +Tags: +- epub +- pdf +- 安读 +- 电子书 +- 电子书阅读器 +- 阅读器 +ReleaseNotes: |- + - Feat: 支持跟随书籍缩进 + - Feat: 支持选择是否开启自动同步功能 + - Feat: 添加首次启动的引导页 + - Feat:更新后能够展示更新日志 + - Feat: 从远端下载数据库覆盖本地后,能够从历史版本中选择旧版本恢复(实验性功能) + - Fix: 部分安卓设备无法在选择文段后弹出上下文菜单 + - Fix: 兼容较旧的 WebView 版本,现在或许可以在 WebView 70 以上的版本上运行了 + - Fix: 修复保存 WebDAV 配置信息后未能立即生效的问题 + - Fix: 修复同步逻辑,能够在判断新数据库完整后再替换当前数据库 + - Fix: 在替换本地数据库时能够保留历史版本 + - Fix: 修复上一版本中 PDF 无法阅读的问题 + - Fix: 修复封面无法同步的问题 + - Fix: 修复大写扩展名的文件无法导入的问题 + - Fix: 部分情况下 Windows 端无法导入书籍 + - Fix: 修复修改划线样式后用户笔记丢失的问题 + - Fix: pdf 无法导入的问题 + - Chore: 为更多同步协议做好准备 + - Build: 优化构建号 +ReleaseNotesUrl: https://github.com/Anxcye/anx-reader/releases/tag/v1.6.1 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anxcye/AnxReader/1.6.1/Anxcye.AnxReader.yaml b/manifests/a/Anxcye/AnxReader/1.6.1/Anxcye.AnxReader.yaml new file mode 100644 index 0000000000000..9bee39804d3be --- /dev/null +++ b/manifests/a/Anxcye/AnxReader/1.6.1/Anxcye.AnxReader.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: Anxcye.AnxReader +PackageVersion: 1.6.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AnyAssociation/Anytype/0.47.4/AnyAssociation.Anytype.installer.yaml b/manifests/a/AnyAssociation/Anytype/0.47.4/AnyAssociation.Anytype.installer.yaml new file mode 100644 index 0000000000000..8dd39bb7eacf9 --- /dev/null +++ b/manifests/a/AnyAssociation/Anytype/0.47.4/AnyAssociation.Anytype.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AnyAssociation.Anytype +PackageVersion: 0.47.4 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- anytype +ProductCode: 425256e4-03e3-5ba0-b070-d372039ec7ab +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x64 + InstallerUrl: https://anytype-release.fra1.cdn.digitaloceanspaces.com/Anytype%20Setup%200.47.4.exe + InstallerSha256: B46B4482C321DAE075D4F211AFBA25E16086BFF1AF9AB59DE6E3A17E16E12EED +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AnyAssociation/Anytype/0.47.4/AnyAssociation.Anytype.locale.en-US.yaml b/manifests/a/AnyAssociation/Anytype/0.47.4/AnyAssociation.Anytype.locale.en-US.yaml new file mode 100644 index 0000000000000..542a6a115f507 --- /dev/null +++ b/manifests/a/AnyAssociation/Anytype/0.47.4/AnyAssociation.Anytype.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: AnyAssociation.Anytype +PackageVersion: 0.47.4 +PackageLocale: en-US +Publisher: Any Association +PublisherUrl: https://anytype.io/ +PublisherSupportUrl: https://anytype.io/faq +PrivacyUrl: https://anytype.io/website_privacy +Author: Any Association +PackageName: Anytype +PackageUrl: https://download.anytype.io/ +License: Proprietary +LicenseUrl: https://anytype.io/terms_of_use +Copyright: Copyright © 2024 Any Association +ShortDescription: Next generation software that breaks down barriers between applications, gives back privacy and data ownership to users. +Tags: +- agenda +- calendar +- checklist +- collaborate +- collaboration +- docs +- document +- list +- markdown +- notes +- schedule +- task +- to-do +- todo +PurchaseUrl: https://anytype.io/pricing +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://anytype.io/faq +- DocumentLabel: Docs + DocumentUrl: https://doc.anytype.io/anytype-docs +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AnyAssociation/Anytype/0.47.4/AnyAssociation.Anytype.locale.zh-CN.yaml b/manifests/a/AnyAssociation/Anytype/0.47.4/AnyAssociation.Anytype.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3518ebba86bab --- /dev/null +++ b/manifests/a/AnyAssociation/Anytype/0.47.4/AnyAssociation.Anytype.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: AnyAssociation.Anytype +PackageVersion: 0.47.4 +PackageLocale: zh-CN +Publisher: Any Association +PublisherUrl: https://anytype.io/ +PublisherSupportUrl: https://anytype.io/faq +PrivacyUrl: https://anytype.io/website_privacy +Author: Any Association +PackageName: Anytype +PackageUrl: https://download.anytype.io/ +License: 专有软件 +LicenseUrl: https://anytype.io/terms_of_use +Copyright: Copyright © 2024 Any Association +ShortDescription: Next generation software that breaks down barriers between applications, gives back privacy and data ownership to users. +Tags: +- markdown +- 任务 +- 列表 +- 协作 +- 协同 +- 待办 +- 待办事项 +- 提醒事项 +- 文档 +- 日历 +- 日程 +- 清单 +- 笔记 +- 议程 +PurchaseUrl: https://anytype.io/pricing +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://anytype.io/faq +- DocumentLabel: 文档 + DocumentUrl: https://doc.anytype.io/anytype-docs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AnyAssociation/Anytype/0.47.4/AnyAssociation.Anytype.yaml b/manifests/a/AnyAssociation/Anytype/0.47.4/AnyAssociation.Anytype.yaml new file mode 100644 index 0000000000000..c8d30826c0e1a --- /dev/null +++ b/manifests/a/AnyAssociation/Anytype/0.47.4/AnyAssociation.Anytype.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: AnyAssociation.Anytype +PackageVersion: 0.47.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AnyAssociation/Anytype/0.47.5/AnyAssociation.Anytype.installer.yaml b/manifests/a/AnyAssociation/Anytype/0.47.5/AnyAssociation.Anytype.installer.yaml new file mode 100644 index 0000000000000..d4f7365403dbe --- /dev/null +++ b/manifests/a/AnyAssociation/Anytype/0.47.5/AnyAssociation.Anytype.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AnyAssociation.Anytype +PackageVersion: 0.47.5 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- anytype +ProductCode: 425256e4-03e3-5ba0-b070-d372039ec7ab +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://anytype-release.fra1.cdn.digitaloceanspaces.com/Anytype%20Setup%200.47.5.exe + InstallerSha256: AE531EDCF9CF31617FF2169746E3DB3A3823D302C3AC7002122E5E1D9CA61E7C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AnyAssociation/Anytype/0.47.5/AnyAssociation.Anytype.locale.en-US.yaml b/manifests/a/AnyAssociation/Anytype/0.47.5/AnyAssociation.Anytype.locale.en-US.yaml new file mode 100644 index 0000000000000..03194c162ac8f --- /dev/null +++ b/manifests/a/AnyAssociation/Anytype/0.47.5/AnyAssociation.Anytype.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: AnyAssociation.Anytype +PackageVersion: 0.47.5 +PackageLocale: en-US +Publisher: Any Association +PublisherUrl: https://anytype.io/ +PublisherSupportUrl: https://anytype.io/faq +PrivacyUrl: https://anytype.io/website_privacy +Author: Any Association +PackageName: Anytype +PackageUrl: https://download.anytype.io/ +License: Proprietary +LicenseUrl: https://anytype.io/terms_of_use +Copyright: Copyright © 2024 Any Association +ShortDescription: Next generation software that breaks down barriers between applications, gives back privacy and data ownership to users. +Tags: +- agenda +- calendar +- checklist +- collaborate +- collaboration +- docs +- document +- list +- markdown +- notes +- schedule +- task +- to-do +- todo +PurchaseUrl: https://anytype.io/pricing +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://anytype.io/faq +- DocumentLabel: Docs + DocumentUrl: https://doc.anytype.io/anytype-docs +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AnyAssociation/Anytype/0.47.5/AnyAssociation.Anytype.locale.zh-CN.yaml b/manifests/a/AnyAssociation/Anytype/0.47.5/AnyAssociation.Anytype.locale.zh-CN.yaml new file mode 100644 index 0000000000000..880e077a12f27 --- /dev/null +++ b/manifests/a/AnyAssociation/Anytype/0.47.5/AnyAssociation.Anytype.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: AnyAssociation.Anytype +PackageVersion: 0.47.5 +PackageLocale: zh-CN +Publisher: Any Association +PublisherUrl: https://anytype.io/ +PublisherSupportUrl: https://anytype.io/faq +PrivacyUrl: https://anytype.io/website_privacy +Author: Any Association +PackageName: Anytype +PackageUrl: https://download.anytype.io/ +License: 专有软件 +LicenseUrl: https://anytype.io/terms_of_use +Copyright: Copyright © 2024 Any Association +ShortDescription: Next generation software that breaks down barriers between applications, gives back privacy and data ownership to users. +Tags: +- markdown +- 任务 +- 列表 +- 协作 +- 协同 +- 待办 +- 待办事项 +- 提醒事项 +- 文档 +- 日历 +- 日程 +- 清单 +- 笔记 +- 议程 +PurchaseUrl: https://anytype.io/pricing +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://anytype.io/faq +- DocumentLabel: 文档 + DocumentUrl: https://doc.anytype.io/anytype-docs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AnyAssociation/Anytype/0.47.5/AnyAssociation.Anytype.yaml b/manifests/a/AnyAssociation/Anytype/0.47.5/AnyAssociation.Anytype.yaml new file mode 100644 index 0000000000000..46473ea7cd831 --- /dev/null +++ b/manifests/a/AnyAssociation/Anytype/0.47.5/AnyAssociation.Anytype.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: AnyAssociation.Anytype +PackageVersion: 0.47.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AnyDesk/AnyDesk/9.5.6/AnyDesk.AnyDesk.installer.yaml b/manifests/a/AnyDesk/AnyDesk/9.5.7/AnyDesk.AnyDesk.installer.yaml similarity index 85% rename from manifests/a/AnyDesk/AnyDesk/9.5.6/AnyDesk.AnyDesk.installer.yaml rename to manifests/a/AnyDesk/AnyDesk/9.5.7/AnyDesk.AnyDesk.installer.yaml index f4d0146ed16e3..5673a8934cc04 100644 --- a/manifests/a/AnyDesk/AnyDesk/9.5.6/AnyDesk.AnyDesk.installer.yaml +++ b/manifests/a/AnyDesk/AnyDesk/9.5.7/AnyDesk.AnyDesk.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: AnyDesk.AnyDesk -PackageVersion: 9.5.6 +PackageVersion: 9.5.7 InstallerType: exe Scope: machine InstallModes: @@ -24,6 +24,6 @@ ElevationRequirement: elevationRequired Installers: - Architecture: x86 InstallerUrl: https://download.anydesk.com/AnyDesk.exe - InstallerSha256: C3BFCD713B4758D4D83FDF5929A6666554338386A59BC97932DEF37EF3B96613 + InstallerSha256: 9D401DE6AC21FF0203B106EDC92CE190CA5012175E4E3AADC4A8DD53AECFD97C ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/a/AnyDesk/AnyDesk/9.5.6/AnyDesk.AnyDesk.locale.en-US.yaml b/manifests/a/AnyDesk/AnyDesk/9.5.7/AnyDesk.AnyDesk.locale.en-US.yaml similarity index 95% rename from manifests/a/AnyDesk/AnyDesk/9.5.6/AnyDesk.AnyDesk.locale.en-US.yaml rename to manifests/a/AnyDesk/AnyDesk/9.5.7/AnyDesk.AnyDesk.locale.en-US.yaml index ae310dc0eaa64..79e2e9fd34653 100644 --- a/manifests/a/AnyDesk/AnyDesk/9.5.6/AnyDesk.AnyDesk.locale.en-US.yaml +++ b/manifests/a/AnyDesk/AnyDesk/9.5.7/AnyDesk.AnyDesk.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: AnyDesk.AnyDesk -PackageVersion: 9.5.6 +PackageVersion: 9.5.7 PackageLocale: en-US Publisher: AnyDesk Software GmbH PublisherUrl: https://anydesk.com/ diff --git a/manifests/a/AnyDesk/AnyDesk/9.5.6/AnyDesk.AnyDesk.locale.zh-CN.yaml b/manifests/a/AnyDesk/AnyDesk/9.5.7/AnyDesk.AnyDesk.locale.zh-CN.yaml similarity index 95% rename from manifests/a/AnyDesk/AnyDesk/9.5.6/AnyDesk.AnyDesk.locale.zh-CN.yaml rename to manifests/a/AnyDesk/AnyDesk/9.5.7/AnyDesk.AnyDesk.locale.zh-CN.yaml index d4e6b9e17a041..608e7860edf20 100644 --- a/manifests/a/AnyDesk/AnyDesk/9.5.6/AnyDesk.AnyDesk.locale.zh-CN.yaml +++ b/manifests/a/AnyDesk/AnyDesk/9.5.7/AnyDesk.AnyDesk.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: AnyDesk.AnyDesk -PackageVersion: 9.5.6 +PackageVersion: 9.5.7 PackageLocale: zh-CN PublisherUrl: https://anydesk.com/ PublisherSupportUrl: https://anydesk.com/zhs/contact diff --git a/manifests/a/AnyDesk/AnyDesk/9.5.6/AnyDesk.AnyDesk.yaml b/manifests/a/AnyDesk/AnyDesk/9.5.7/AnyDesk.AnyDesk.yaml similarity index 88% rename from manifests/a/AnyDesk/AnyDesk/9.5.6/AnyDesk.AnyDesk.yaml rename to manifests/a/AnyDesk/AnyDesk/9.5.7/AnyDesk.AnyDesk.yaml index 0efcef45e26d9..64207947878ae 100644 --- a/manifests/a/AnyDesk/AnyDesk/9.5.6/AnyDesk.AnyDesk.yaml +++ b/manifests/a/AnyDesk/AnyDesk/9.5.7/AnyDesk.AnyDesk.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: AnyDesk.AnyDesk -PackageVersion: 9.5.6 +PackageVersion: 9.5.7 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.1.6/Anysphere.Cursor.installer.yaml b/manifests/a/Anysphere/Cursor/1.1.6/Anysphere.Cursor.installer.yaml new file mode 100644 index 0000000000000..c19c0d64763b7 --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.1.6/Anysphere.Cursor.installer.yaml @@ -0,0 +1,176 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Anysphere.Cursor +PackageVersion: 1.1.6 +InstallerType: inno +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- cursor +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ini +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- log +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- ps1 +- psd1 +- psgi +- psm1 +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- svgz +- t +- tex +- toml +- ts +- tsx +- txt +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ReleaseDate: 2025-06-12 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://downloads.cursor.com/production/5b19bac7a947f54e4caa3eb7e4c5fbf832389853/win32/x64/user-setup/CursorUserSetup-x64-1.1.6.exe + InstallerSha256: 40BEA353DD6EE41C502C33DEB6AFF8DADC237689422C7950422F0346AFF3AC40 + ProductCode: '{DADADADA-ADAD-ADAD-ADAD-ADADADADADAD}}_is1' +- Architecture: x64 + Scope: machine + InstallerUrl: https://downloads.cursor.com/production/5b19bac7a947f54e4caa3eb7e4c5fbf832389853/win32/x64/system-setup/CursorSetup-x64-1.1.6.exe + InstallerSha256: A4E009767794794F48FD4F5A94CB34A69E76067419D13AE8BADD9DB3C89DFF6B + ProductCode: '{D7D7D7D7-7D7D-7D7D-7D7D-7D7D7D7D7D7D}}_is1' +- Architecture: arm64 + Scope: user + InstallerUrl: https://downloads.cursor.com/production/5b19bac7a947f54e4caa3eb7e4c5fbf832389853/win32/arm64/user-setup/CursorUserSetup-arm64-1.1.6.exe + InstallerSha256: 5CF1236BEA09F884A33851915849E1B43BE2A4653E5E7BB8EAAF31E7C533B77A + ProductCode: '{DBDBDBDB-BDBD-BDBD-BDBD-BDBDBDBDBDBD}}_is1' +- Architecture: arm64 + Scope: machine + InstallerUrl: https://downloads.cursor.com/production/5b19bac7a947f54e4caa3eb7e4c5fbf832389853/win32/arm64/system-setup/CursorSetup-arm64-1.1.6.exe + InstallerSha256: 50313A1693FC0D30387A68B3D34D0E816A6D1A9A795B5E32AFF24678F1E9D500 + ProductCode: '{D8D8D8D8-8D8D-8D8D-8D8D-8D8D8D8D8D8D}}_is1' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.1.6/Anysphere.Cursor.locale.en-US.yaml b/manifests/a/Anysphere/Cursor/1.1.6/Anysphere.Cursor.locale.en-US.yaml new file mode 100644 index 0000000000000..cac9a35b2799a --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.1.6/Anysphere.Cursor.locale.en-US.yaml @@ -0,0 +1,68 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Anysphere.Cursor +PackageVersion: 1.1.6 +PackageLocale: en-US +Publisher: Anysphere +PublisherUrl: https://www.cursor.com/ +PublisherSupportUrl: https://forum.cursor.com/ +PrivacyUrl: https://www.cursor.com/privacy +Author: Anysphere Inc. +PackageName: Cursor +PackageUrl: https://www.cursor.com/ +License: Proprietary +LicenseUrl: https://www.cursor.com/terms-of-service +ShortDescription: The AI Code Editor +Description: Cursor is a new, intelligent IDE, empowered by seamless integrations with AI. Built upon VSCode, Cursor is quick to learn, but can make you extraordinarily productive. +Tags: +- ai +- code +- coding +- develop +- development +- programming +ReleaseNotes: |- + You can now launch Background Agents directly from Slack by mentioning @Cursor. Agents can read the thread, understand what's going on, and create PRs in GitHub, all without leaving the conversation. + Use Cursor where your team works + Mention @Cursor in any thread with a prompt like: + + Agents run remotely in a secure environment and you'll get updates directly in Slack, including links to Cursor and GitHub, when the work is done. + Agents understand context + Cursor reads the entire Slack thread before starting, so Background Agents understand the full context when you reference previous discussions or issues. + + You can also ask Cursor to investigate issues and get answers: + + Getting started + To use Background Agents in Slack, an admin needs to set up the integration first. Check out our setup documentation or ask your workspace admin to connect Cursor from the Dashboard → Integrations page. + Once connected, try it in any channel with @Cursor and write a prompt. Use the command help to see all commands, or settings to configure your default model, repo, and branch. + Improvements (1) + - Search in settings with Cmd/Ctrl+F + MCP (3) + - Progress notifications from servers + - Dynamic tool registration + - Roots supports + Patches (3) + 1.1.1 + - Fixed workspaces indexing issue + 1.1.2 + - Improved client side performance + 1.1.3 + - Fixed MCP performance regression + - Added PR search and indexing + - Improved deeplink experience + - Added option to change upstream marketplace provider + 1.1.4 + - Improved Background Agent reliability + - Fixed search in Chat UI bug + 1.1.5 + - Small performance improvements + 1.1.6 + - Fixed an agent latency regression that occurs for users using Remote SSH +ReleaseNotesUrl: https://changelog.cursor.com/ +PurchaseUrl: https://www.cursor.com/pricing +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.cursor.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.1.6/Anysphere.Cursor.locale.zh-CN.yaml b/manifests/a/Anysphere/Cursor/1.1.6/Anysphere.Cursor.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7dc8e7de73d99 --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.1.6/Anysphere.Cursor.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: Anysphere.Cursor +PackageVersion: 1.1.6 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: AI 代码编辑器 +Description: Cursor 是一款全新的智能 IDE,可与 AI 无缝集成。Cursor 以 VSCode 为基础,上手很快,但却能让你的工作效率超乎寻常。 +Tags: +- ai +- 代码 +- 开发 +- 编程 +ReleaseNotesUrl: https://changelog.cursor.com/ +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.cursor.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.1.6/Anysphere.Cursor.yaml b/manifests/a/Anysphere/Cursor/1.1.6/Anysphere.Cursor.yaml new file mode 100644 index 0000000000000..ecd4d15a12c64 --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.1.6/Anysphere.Cursor.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: Anysphere.Cursor +PackageVersion: 1.1.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.1.7/Anysphere.Cursor.installer.yaml b/manifests/a/Anysphere/Cursor/1.1.7/Anysphere.Cursor.installer.yaml new file mode 100644 index 0000000000000..4f53f3687959c --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.1.7/Anysphere.Cursor.installer.yaml @@ -0,0 +1,176 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Anysphere.Cursor +PackageVersion: 1.1.7 +InstallerType: inno +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- cursor +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ini +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- log +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- ps1 +- psd1 +- psgi +- psm1 +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- svgz +- t +- tex +- toml +- ts +- tsx +- txt +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ReleaseDate: 2025-06-12 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://downloads.cursor.com/production/7111807980fa9c93aedd455ffa44b682c0dc1356/win32/x64/user-setup/CursorUserSetup-x64-1.1.7.exe + InstallerSha256: D1E21249854100B9391248FF980506A2AF183880AF2882E33CE5B025B561ABE5 + ProductCode: '{DADADADA-ADAD-ADAD-ADAD-ADADADADADAD}}_is1' +- Architecture: x64 + Scope: machine + InstallerUrl: https://downloads.cursor.com/production/7111807980fa9c93aedd455ffa44b682c0dc1356/win32/x64/system-setup/CursorSetup-x64-1.1.7.exe + InstallerSha256: BB60F78D5431EF67A5F45497D92E44B38E17373BE73472208ACF3AE7ADA17B3D + ProductCode: '{D7D7D7D7-7D7D-7D7D-7D7D-7D7D7D7D7D7D}}_is1' +- Architecture: arm64 + Scope: user + InstallerUrl: https://downloads.cursor.com/production/7111807980fa9c93aedd455ffa44b682c0dc1356/win32/arm64/user-setup/CursorUserSetup-arm64-1.1.7.exe + InstallerSha256: 0BC1A74218197EDA58A7200E6C6B42CEFE64FC9AAF01608AB4AD32E0818BA466 + ProductCode: '{DBDBDBDB-BDBD-BDBD-BDBD-BDBDBDBDBDBD}}_is1' +- Architecture: arm64 + Scope: machine + InstallerUrl: https://downloads.cursor.com/production/7111807980fa9c93aedd455ffa44b682c0dc1356/win32/arm64/system-setup/CursorSetup-arm64-1.1.7.exe + InstallerSha256: 400A15F44DC38EA84BB2041C8F1704FBA07A99EE88589DF92A8D21F3394E75CD + ProductCode: '{D8D8D8D8-8D8D-8D8D-8D8D-8D8D8D8D8D8D}}_is1' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.1.7/Anysphere.Cursor.locale.en-US.yaml b/manifests/a/Anysphere/Cursor/1.1.7/Anysphere.Cursor.locale.en-US.yaml new file mode 100644 index 0000000000000..2ae2a6f5ae43c --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.1.7/Anysphere.Cursor.locale.en-US.yaml @@ -0,0 +1,70 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Anysphere.Cursor +PackageVersion: 1.1.7 +PackageLocale: en-US +Publisher: Anysphere +PublisherUrl: https://www.cursor.com/ +PublisherSupportUrl: https://forum.cursor.com/ +PrivacyUrl: https://www.cursor.com/privacy +Author: Anysphere Inc. +PackageName: Cursor +PackageUrl: https://www.cursor.com/ +License: Proprietary +LicenseUrl: https://www.cursor.com/terms-of-service +ShortDescription: The AI Code Editor +Description: Cursor is a new, intelligent IDE, empowered by seamless integrations with AI. Built upon VSCode, Cursor is quick to learn, but can make you extraordinarily productive. +Tags: +- ai +- code +- coding +- develop +- development +- programming +ReleaseNotes: |- + You can now launch Background Agents directly from Slack by mentioning @Cursor. Agents can read the thread, understand what's going on, and create PRs in GitHub, all without leaving the conversation. + Use Cursor where your team works + Mention @Cursor in any thread with a prompt like: + + Agents run remotely in a secure environment and you'll get updates directly in Slack, including links to Cursor and GitHub, when the work is done. + Agents understand context + Cursor reads the entire Slack thread before starting, so Background Agents understand the full context when you reference previous discussions or issues. + + You can also ask Cursor to investigate issues and get answers: + + Getting started + To use Background Agents in Slack, an admin needs to set up the integration first. Check out our setup documentation or ask your workspace admin to connect Cursor from the Dashboard → Integrations page. + Once connected, try it in any channel with @Cursor and write a prompt. Use the command help to see all commands, or settings to configure your default model, repo, and branch. + Improvements (1) + - Search in settings with Cmd/Ctrl+F + MCP (3) + - Progress notifications from servers + - Dynamic tool registration + - Roots supports + Patches (7) + 1.1.1 + - Fixed workspaces indexing issue + 1.1.2 + - Improved client side performance + 1.1.3 + - Fixed MCP performance regression + - Added PR search and indexing + - Improved deeplink experience + - Added option to change upstream marketplace provider + 1.1.4 + - Improved Background Agent reliability + - Fixed search in Chat UI bug + 1.1.5 + - Small performance improvements + 1.1.6 + - Fixed an agent latency regression that occurs for users using Remote SSH + 1.1.7 + - Small bug fixes and performance improvements +ReleaseNotesUrl: https://changelog.cursor.com/ +PurchaseUrl: https://www.cursor.com/pricing +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.cursor.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.1.7/Anysphere.Cursor.locale.zh-CN.yaml b/manifests/a/Anysphere/Cursor/1.1.7/Anysphere.Cursor.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1fd7ec86c362e --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.1.7/Anysphere.Cursor.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: Anysphere.Cursor +PackageVersion: 1.1.7 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: AI 代码编辑器 +Description: Cursor 是一款全新的智能 IDE,可与 AI 无缝集成。Cursor 以 VSCode 为基础,上手很快,但却能让你的工作效率超乎寻常。 +Tags: +- ai +- 代码 +- 开发 +- 编程 +ReleaseNotesUrl: https://changelog.cursor.com/ +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.cursor.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.1.7/Anysphere.Cursor.yaml b/manifests/a/Anysphere/Cursor/1.1.7/Anysphere.Cursor.yaml new file mode 100644 index 0000000000000..f16de62c7c209 --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.1.7/Anysphere.Cursor.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: Anysphere.Cursor +PackageVersion: 1.1.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.2.0/Anysphere.Cursor.installer.yaml b/manifests/a/Anysphere/Cursor/1.2.0/Anysphere.Cursor.installer.yaml new file mode 100644 index 0000000000000..2d5d5bb783efe --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.2.0/Anysphere.Cursor.installer.yaml @@ -0,0 +1,175 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Anysphere.Cursor +PackageVersion: 1.2.0 +InstallerType: inno +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- cursor +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ini +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- log +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- ps1 +- psd1 +- psgi +- psm1 +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- svgz +- t +- tex +- toml +- ts +- tsx +- txt +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://downloads.cursor.com/production/eb5fa4768da0747b79dc34f0b79ab20dbf58202c/win32/x64/user-setup/CursorUserSetup-x64-1.2.0.exe + InstallerSha256: D5F588C3580E8E40D84AFA6BC75514307DEE161AD43355AC59CDDD07090010B9 + ProductCode: '{DADADADA-ADAD-ADAD-ADAD-ADADADADADAD}}_is1' +- Architecture: x64 + Scope: machine + InstallerUrl: https://downloads.cursor.com/production/eb5fa4768da0747b79dc34f0b79ab20dbf58202c/win32/x64/system-setup/CursorSetup-x64-1.2.0.exe + InstallerSha256: BB4AA33A4650CFD850EFBD3BAF5681E0F6DD0A6F946EF378D366E6F34E7AB729 + ProductCode: '{D7D7D7D7-7D7D-7D7D-7D7D-7D7D7D7D7D7D}}_is1' +- Architecture: arm64 + Scope: user + InstallerUrl: https://downloads.cursor.com/production/eb5fa4768da0747b79dc34f0b79ab20dbf58202c/win32/arm64/user-setup/CursorUserSetup-arm64-1.2.0.exe + InstallerSha256: CD89C6C40974EB7922C4175F4EAAF760B9BA97E7B360A52D9F0B6D783B34ADD2 + ProductCode: '{DBDBDBDB-BDBD-BDBD-BDBD-BDBDBDBDBDBD}}_is1' +- Architecture: arm64 + Scope: machine + InstallerUrl: https://downloads.cursor.com/production/eb5fa4768da0747b79dc34f0b79ab20dbf58202c/win32/arm64/system-setup/CursorSetup-arm64-1.2.0.exe + InstallerSha256: F9F3E6133F9A8EB4191CECAE188DFCBBAF0B7B668AAE16FD9F715425E82EF3C6 + ProductCode: '{D8D8D8D8-8D8D-8D8D-8D8D-8D8D8D8D8D8D}}_is1' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.2.0/Anysphere.Cursor.locale.en-US.yaml b/manifests/a/Anysphere/Cursor/1.2.0/Anysphere.Cursor.locale.en-US.yaml new file mode 100644 index 0000000000000..c74000c96d3e6 --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.2.0/Anysphere.Cursor.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: Anysphere.Cursor +PackageVersion: 1.2.0 +PackageLocale: en-US +Publisher: Anysphere +PublisherUrl: https://www.cursor.com/ +PublisherSupportUrl: https://forum.cursor.com/ +PrivacyUrl: https://www.cursor.com/privacy +Author: Anysphere Inc. +PackageName: Cursor +PackageUrl: https://www.cursor.com/ +License: Proprietary +LicenseUrl: https://www.cursor.com/terms-of-service +ShortDescription: The AI Code Editor +Description: Cursor is a new, intelligent IDE, empowered by seamless integrations with AI. Built upon VSCode, Cursor is quick to learn, but can make you extraordinarily productive. +Tags: +- ai +- code +- coding +- develop +- development +- programming +ReleaseNotesUrl: https://changelog.cursor.com/ +PurchaseUrl: https://www.cursor.com/pricing +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.cursor.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.2.0/Anysphere.Cursor.locale.zh-CN.yaml b/manifests/a/Anysphere/Cursor/1.2.0/Anysphere.Cursor.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8fef6a63e2086 --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.2.0/Anysphere.Cursor.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: Anysphere.Cursor +PackageVersion: 1.2.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: AI 代码编辑器 +Description: Cursor 是一款全新的智能 IDE,可与 AI 无缝集成。Cursor 以 VSCode 为基础,上手很快,但却能让你的工作效率超乎寻常。 +Tags: +- ai +- 代码 +- 开发 +- 编程 +ReleaseNotesUrl: https://changelog.cursor.com/ +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.cursor.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.2.0/Anysphere.Cursor.yaml b/manifests/a/Anysphere/Cursor/1.2.0/Anysphere.Cursor.yaml new file mode 100644 index 0000000000000..ca356b4be99a1 --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.2.0/Anysphere.Cursor.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: Anysphere.Cursor +PackageVersion: 1.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.2.1/Anysphere.Cursor.installer.yaml b/manifests/a/Anysphere/Cursor/1.2.1/Anysphere.Cursor.installer.yaml new file mode 100644 index 0000000000000..cb93297dd1e45 --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.2.1/Anysphere.Cursor.installer.yaml @@ -0,0 +1,175 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Anysphere.Cursor +PackageVersion: 1.2.1 +InstallerType: inno +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- cursor +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ini +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- log +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- ps1 +- psd1 +- psgi +- psm1 +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- svgz +- t +- tex +- toml +- ts +- tsx +- txt +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://downloads.cursor.com/production/031e7e0ff1e2eda9c1a0f5df67d44053b059c5df/win32/x64/user-setup/CursorUserSetup-x64-1.2.1.exe + InstallerSha256: BA553AAF416DA2877D4DD2C6D2C034FCC27C73BCBAAF6DF4D324DBE5A0CFE58E + ProductCode: '{DADADADA-ADAD-ADAD-ADAD-ADADADADADAD}}_is1' +- Architecture: x64 + Scope: machine + InstallerUrl: https://downloads.cursor.com/production/031e7e0ff1e2eda9c1a0f5df67d44053b059c5df/win32/x64/system-setup/CursorSetup-x64-1.2.1.exe + InstallerSha256: 2E41C3F8CADB06F77C4E645D2124BFB2C05574DBD99CBA85943CC0BE3BB31964 + ProductCode: '{D7D7D7D7-7D7D-7D7D-7D7D-7D7D7D7D7D7D}}_is1' +- Architecture: arm64 + Scope: user + InstallerUrl: https://downloads.cursor.com/production/031e7e0ff1e2eda9c1a0f5df67d44053b059c5df/win32/arm64/user-setup/CursorUserSetup-arm64-1.2.1.exe + InstallerSha256: 1140626FE401D6346644512D91C54D2CBC23276DB4C192A704E1ADEB2CBEDE45 + ProductCode: '{DBDBDBDB-BDBD-BDBD-BDBD-BDBDBDBDBDBD}}_is1' +- Architecture: arm64 + Scope: machine + InstallerUrl: https://downloads.cursor.com/production/031e7e0ff1e2eda9c1a0f5df67d44053b059c5df/win32/arm64/system-setup/CursorSetup-arm64-1.2.1.exe + InstallerSha256: 24FD524BF369EC49B9710C29E06848C9F117F8BC4CEF8FF4AC03B83DEF877884 + ProductCode: '{D8D8D8D8-8D8D-8D8D-8D8D-8D8D8D8D8D8D}}_is1' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.2.1/Anysphere.Cursor.locale.en-US.yaml b/manifests/a/Anysphere/Cursor/1.2.1/Anysphere.Cursor.locale.en-US.yaml new file mode 100644 index 0000000000000..a1fe000759475 --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.2.1/Anysphere.Cursor.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: Anysphere.Cursor +PackageVersion: 1.2.1 +PackageLocale: en-US +Publisher: Anysphere +PublisherUrl: https://www.cursor.com/ +PublisherSupportUrl: https://forum.cursor.com/ +PrivacyUrl: https://www.cursor.com/privacy +Author: Anysphere Inc. +PackageName: Cursor +PackageUrl: https://www.cursor.com/ +License: Proprietary +LicenseUrl: https://www.cursor.com/terms-of-service +ShortDescription: The AI Code Editor +Description: Cursor is a new, intelligent IDE, empowered by seamless integrations with AI. Built upon VSCode, Cursor is quick to learn, but can make you extraordinarily productive. +Tags: +- ai +- code +- coding +- develop +- development +- programming +ReleaseNotesUrl: https://changelog.cursor.com/ +PurchaseUrl: https://www.cursor.com/pricing +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.cursor.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.2.1/Anysphere.Cursor.locale.zh-CN.yaml b/manifests/a/Anysphere/Cursor/1.2.1/Anysphere.Cursor.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7a92b24170905 --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.2.1/Anysphere.Cursor.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: Anysphere.Cursor +PackageVersion: 1.2.1 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: AI 代码编辑器 +Description: Cursor 是一款全新的智能 IDE,可与 AI 无缝集成。Cursor 以 VSCode 为基础,上手很快,但却能让你的工作效率超乎寻常。 +Tags: +- ai +- 代码 +- 开发 +- 编程 +ReleaseNotesUrl: https://changelog.cursor.com/ +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.cursor.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.2.1/Anysphere.Cursor.yaml b/manifests/a/Anysphere/Cursor/1.2.1/Anysphere.Cursor.yaml new file mode 100644 index 0000000000000..c827e57275207 --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.2.1/Anysphere.Cursor.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: Anysphere.Cursor +PackageVersion: 1.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.2.2/Anysphere.Cursor.installer.yaml b/manifests/a/Anysphere/Cursor/1.2.2/Anysphere.Cursor.installer.yaml new file mode 100644 index 0000000000000..f0f28fe6428e2 --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.2.2/Anysphere.Cursor.installer.yaml @@ -0,0 +1,176 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Anysphere.Cursor +PackageVersion: 1.2.2 +InstallerType: inno +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- cursor +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ini +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- log +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- ps1 +- psd1 +- psgi +- psm1 +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- svgz +- t +- tex +- toml +- ts +- tsx +- txt +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/win32/x64/user-setup/CursorUserSetup-x64-1.2.2.exe + InstallerSha256: 4A5045D8BF21B5C2F81F76C8D2885D5B831511BC3811BC9D7DBB434E8DD33134 + ProductCode: '{DADADADA-ADAD-ADAD-ADAD-ADADADADADAD}}_is1' +- Architecture: x64 + Scope: machine + InstallerUrl: https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/win32/x64/system-setup/CursorSetup-x64-1.2.2.exe + InstallerSha256: E055DD2D5F441B52AF8E3392A5ECD181EBAD66EADC614759326962017B3B9335 + ProductCode: '{D7D7D7D7-7D7D-7D7D-7D7D-7D7D7D7D7D7D}}_is1' +- Architecture: arm64 + Scope: user + InstallerUrl: https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/win32/arm64/user-setup/CursorUserSetup-arm64-1.2.2.exe + InstallerSha256: 58FC91C5718121898AB961A8CF8BB5F4260AF7698473CA8CA149A1B05032D39C + ProductCode: '{DBDBDBDB-BDBD-BDBD-BDBD-BDBDBDBDBDBD}}_is1' +- Architecture: arm64 + Scope: machine + InstallerUrl: https://downloads.cursor.com/production/faa03b17cce93e8a80b7d62d57f5eda6bb6ab9fa/win32/arm64/system-setup/CursorSetup-arm64-1.2.2.exe + InstallerSha256: 1D60CEA76E437C04A7A806A3BDB357D2DEBDF09C62823CD2ADAC80AE765DBFA3 + ProductCode: '{D8D8D8D8-8D8D-8D8D-8D8D-8D8D8D8D8D8D}}_is1' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.2.2/Anysphere.Cursor.locale.en-US.yaml b/manifests/a/Anysphere/Cursor/1.2.2/Anysphere.Cursor.locale.en-US.yaml new file mode 100644 index 0000000000000..6949edf3f75a0 --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.2.2/Anysphere.Cursor.locale.en-US.yaml @@ -0,0 +1,76 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Anysphere.Cursor +PackageVersion: 1.2.2 +PackageLocale: en-US +Publisher: Anysphere +PublisherUrl: https://www.cursor.com/ +PublisherSupportUrl: https://forum.cursor.com/ +PrivacyUrl: https://www.cursor.com/privacy +Author: Anysphere Inc. +PackageName: Cursor +PackageUrl: https://www.cursor.com/ +License: Proprietary +LicenseUrl: https://www.cursor.com/terms-of-service +ShortDescription: The AI Code Editor +Description: Cursor is a new, intelligent IDE, empowered by seamless integrations with AI. Built upon VSCode, Cursor is quick to learn, but can make you extraordinarily productive. +Tags: +- ai +- code +- coding +- develop +- development +- programming +ReleaseNotes: |- + Agent To-dos + Agents now plan ahead with structured to-do lists, making long-horizon tasks easier to understand and track. + The agent breaks down longer tasks with dependencies, visible to you in chat and streamed into Slack when relevant. It can update this list as work progresses, keeping context fresh and interactions predictable. + To-dos are also visible in Slack if integration is setup! + + Queued messages + You can now queue follow-up messages for Agent once it's done with current task. Just type your instructions and send. Once in queue, you can reorder tasks and start executing without waiting. + + Memories (now GA) + Memories is now GA. Since 1.0, we've improved memory generation quality, added in-editor UI polish, and introduced user approvals for background-generated memories to preserve trust. + + PR indexing & search + Cursor now indexes and summarizes PRs much like it does files. You can search old PRs semantically or explicitly fetch a PR, issue, commit, or branch into context. + This includes associated GitHub comments, BugBot reviews, and Slack agent support—making postmortem analysis or incident tracing much faster. + + Improved embeddings for semantic search + Codebase search is now much more accurate with our new embedding model. We've also re-tuned prompts to yield cleaner, more focused results. + + Faster Tab + Tab completions are now ~100ms faster, and TTFT has been reduced by 30%. We made this possible by restructuring our memory management system and optimizing data transfer pathways. + + Let Agent resolve merge conflicts + When merge conflicts occur, Agent can now attempt to resolve them for you. Click Resolve in Chat and relevant context will be added to resolve the conflict. + + Background Agent improvements + Several improvements to Background Agents make them more predictable and resilient: + - PRs follow your team's template + - Changes to the agent branch are auto-pulled in + - Conflicts (like rebases) are now surfaced as actionable follow-ups + - You can commit directly from the sidebar + - Slack and web deeplinks open the associated repo, even if you don't have it open + Improvements (7) + - VS Code upgraded to 1.99 + - Extensions are now hosted on Open VSC + - Improved Slack agent responsiveness and notification clarity + - Agent "commit changes" now available in UI + - Background Agent respects team PR templates and merges more predictably + - Deep performance tuning across indexing and vector services + - VSCode remote extension connection stability improved + Fixes (4) + - Memory leaks in SolidJS detection system patched + - Chat rendering bugs resolved (toolcall display, overflow issues) + - Usage limit errors now display clearer, scoped messages + - Token auth stability improvements across external services +ReleaseNotesUrl: https://changelog.cursor.com/ +PurchaseUrl: https://www.cursor.com/pricing +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.cursor.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.2.2/Anysphere.Cursor.locale.zh-CN.yaml b/manifests/a/Anysphere/Cursor/1.2.2/Anysphere.Cursor.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a6a9ef676f052 --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.2.2/Anysphere.Cursor.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: Anysphere.Cursor +PackageVersion: 1.2.2 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: AI 代码编辑器 +Description: Cursor 是一款全新的智能 IDE,可与 AI 无缝集成。Cursor 以 VSCode 为基础,上手很快,但却能让你的工作效率超乎寻常。 +Tags: +- ai +- 代码 +- 开发 +- 编程 +ReleaseNotesUrl: https://changelog.cursor.com/ +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.cursor.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Anysphere/Cursor/1.2.2/Anysphere.Cursor.yaml b/manifests/a/Anysphere/Cursor/1.2.2/Anysphere.Cursor.yaml new file mode 100644 index 0000000000000..6fc7958a8cc84 --- /dev/null +++ b/manifests/a/Anysphere/Cursor/1.2.2/Anysphere.Cursor.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: Anysphere.Cursor +PackageVersion: 1.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/Groovy/3/3.0.25/Apache.Groovy.3.installer.yaml b/manifests/a/Apache/Groovy/3/3.0.25/Apache.Groovy.3.installer.yaml new file mode 100644 index 0000000000000..97f7d79c578c3 --- /dev/null +++ b/manifests/a/Apache/Groovy/3/3.0.25/Apache.Groovy.3.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: Apache.Groovy.3 +PackageVersion: 3.0.25 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" +UpgradeBehavior: install +Commands: +- grape +- groovy +- groovyc +- groovyConsole +- groovydoc +- groovysh +- java2groovy +- startGroovy +FileExtensions: +- groovy +- gsh +- gvy +- gy +ProductCode: '{A4061E4B-C0BF-4100-9655-459584FEE7C1}' +AppsAndFeaturesEntries: +- ProductCode: '{A4061E4B-C0BF-4100-9655-459584FEE7C1}' + UpgradeCode: '{786BFBD0-0462-4AAD-B54E-70F1F3F58A9A}' +Installers: +- Architecture: neutral + InstallerUrl: https://groovy.jfrog.io/artifactory/dist-release-local/groovy-windows-installer/groovy-3.0.25/groovy-3.0.25.msi + InstallerSha256: A6CB85E068731059C55A59E15FA7AAD3EDC1919C655E97D80421F86D55E0BEB6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/Groovy/3/3.0.25/Apache.Groovy.3.locale.en-US.yaml b/manifests/a/Apache/Groovy/3/3.0.25/Apache.Groovy.3.locale.en-US.yaml new file mode 100644 index 0000000000000..ce83461c50593 --- /dev/null +++ b/manifests/a/Apache/Groovy/3/3.0.25/Apache.Groovy.3.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: Apache.Groovy.3 +PackageVersion: 3.0.25 +PackageLocale: en-US +Publisher: The Groovy Team +PublisherUrl: https://apache.org/ +PublisherSupportUrl: https://www.groovy-lang.org/support.html +PrivacyUrl: https://privacy.apache.org/policies/privacy-policy-public.html +Author: The Groovy Team +PackageName: Groovy 3 +PackageUrl: https://www.groovy-lang.org/ +License: Apache-2.0 +LicenseUrl: https://github.com/apache/groovy/blob/HEAD/LICENSE +Copyright: © 2003-2024 the Apache Groovy project +ShortDescription: A multi-faceted language for the Java platform +Description: Apache Groovy is a powerful, optionally typed and dynamic language, with static-typing and static compilation capabilities, for the Java platform aimed at improving developer productivity thanks to a concise, familiar and easy to learn syntax. It integrates smoothly with any Java program, and immediately delivers to your application powerful features, including scripting capabilities, Domain-Specific Language authoring, runtime and compile-time meta-programming and functional programming. +Moniker: groovy-3 +Tags: +- dynamic-typing +- functional-programming +- jvm-languages +- language +- metaprogramming +- programming +- programming-language +- static-typing +ReleaseNotesUrl: https://groovy-lang.org/releasenotes/groovy-3.0.html +Documentations: +- DocumentLabel: Learn + DocumentUrl: https://www.groovy-lang.org/learn.html +- DocumentLabel: Documentation + DocumentUrl: https://www.groovy-lang.org/documentation.html +- DocumentLabel: FAQ + DocumentUrl: https://www.groovy-lang.org/faq.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/Groovy/3/3.0.25/Apache.Groovy.3.locale.zh-CN.yaml b/manifests/a/Apache/Groovy/3/3.0.25/Apache.Groovy.3.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c3d5915cece44 --- /dev/null +++ b/manifests/a/Apache/Groovy/3/3.0.25/Apache.Groovy.3.locale.zh-CN.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Apache.Groovy.3 +PackageVersion: 3.0.25 +PackageLocale: zh-CN +Publisher: The Groovy Team +PublisherUrl: https://apache.org/ +PublisherSupportUrl: https://www.groovy-lang.org/support.html +PrivacyUrl: https://privacy.apache.org/policies/privacy-policy-public.html +Author: The Groovy Team +PackageName: Groovy 3 +PackageUrl: https://www.groovy-lang.org/ +License: Apache-2.0 +LicenseUrl: https://github.com/apache/groovy/blob/HEAD/LICENSE +Copyright: © 2003-2024 the Apache Groovy project +ShortDescription: 适用于 Java 平台的多功能语言 +Description: Apache Groovy 是一种功能强大、可选择类型的动态语言,具有静态类型和静态编译功能,适用于 Java 平台,旨在通过简洁、熟悉和易学的语法提高开发人员的工作效率。它能与任何 Java 程序顺利集成,并能立即为您的应用程序提供强大的功能,包括脚本能力、特定域语言编写、运行时和编译时元编程以及函数式编程。 +Tags: +- jvm语言 +- 元编程 +- 函数式编程 +- 动态类型 +- 编程 +- 编程语言 +- 语言 +- 静态类型 +ReleaseNotesUrl: https://groovy-lang.org/releasenotes/groovy-3.0.html +Documentations: +- DocumentLabel: 学习 + DocumentUrl: https://www.groovy-lang.org/learn.html +- DocumentLabel: 文档 + DocumentUrl: https://www.groovy-lang.org/documentation.html +- DocumentLabel: 常见问题 + DocumentUrl: https://www.groovy-lang.org/faq.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/Groovy/3/3.0.25/Apache.Groovy.3.yaml b/manifests/a/Apache/Groovy/3/3.0.25/Apache.Groovy.3.yaml new file mode 100644 index 0000000000000..3ed5e4c242a65 --- /dev/null +++ b/manifests/a/Apache/Groovy/3/3.0.25/Apache.Groovy.3.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: Apache.Groovy.3 +PackageVersion: 3.0.25 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/Groovy/4/4.0.27/Apache.Groovy.4.installer.yaml b/manifests/a/Apache/Groovy/4/4.0.27/Apache.Groovy.4.installer.yaml new file mode 100644 index 0000000000000..4150f77f46489 --- /dev/null +++ b/manifests/a/Apache/Groovy/4/4.0.27/Apache.Groovy.4.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: Apache.Groovy.4 +PackageVersion: 4.0.27 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" +UpgradeBehavior: install +Commands: +- grape +- groovy +- groovyc +- groovyConsole +- groovydoc +- groovysh +- java2groovy +- startGroovy +FileExtensions: +- groovy +- gsh +- gvy +- gy +ProductCode: '{188FDA9F-9808-4036-9E3E-54E77D9043AD}' +AppsAndFeaturesEntries: +- ProductCode: '{188FDA9F-9808-4036-9E3E-54E77D9043AD}' + UpgradeCode: '{786BFBD0-0462-4AAD-B54E-70F1F3F58A9A}' +Installers: +- Architecture: neutral + InstallerUrl: https://groovy.jfrog.io/artifactory/dist-release-local/groovy-windows-installer/groovy-4.0.27/groovy-4.0.27.msi + InstallerSha256: 95BEE3024C1695D12C5834F7FBE61300A90A1D9F2FCCE3402800AA0AB8E123BC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/Groovy/4/4.0.27/Apache.Groovy.4.locale.en-US.yaml b/manifests/a/Apache/Groovy/4/4.0.27/Apache.Groovy.4.locale.en-US.yaml new file mode 100644 index 0000000000000..2b79e8095b0af --- /dev/null +++ b/manifests/a/Apache/Groovy/4/4.0.27/Apache.Groovy.4.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: Apache.Groovy.4 +PackageVersion: 4.0.27 +PackageLocale: en-US +Publisher: The Groovy Team +PublisherUrl: https://apache.org/ +PublisherSupportUrl: https://www.groovy-lang.org/support.html +PrivacyUrl: https://privacy.apache.org/policies/privacy-policy-public.html +Author: The Groovy Team +PackageName: Groovy 4 +PackageUrl: https://www.groovy-lang.org/ +License: Apache-2.0 +LicenseUrl: https://github.com/apache/groovy/blob/HEAD/LICENSE +Copyright: © 2003-2024 the Apache Groovy project +ShortDescription: A multi-faceted language for the Java platform +Description: Apache Groovy is a powerful, optionally typed and dynamic language, with static-typing and static compilation capabilities, for the Java platform aimed at improving developer productivity thanks to a concise, familiar and easy to learn syntax. It integrates smoothly with any Java program, and immediately delivers to your application powerful features, including scripting capabilities, Domain-Specific Language authoring, runtime and compile-time meta-programming and functional programming. +Moniker: groovy-4 +Tags: +- dynamic-typing +- functional-programming +- jvm-languages +- language +- metaprogramming +- programming +- programming-language +- static-typing +ReleaseNotesUrl: https://groovy-lang.org/releasenotes/groovy-4.0.html +Documentations: +- DocumentLabel: Learn + DocumentUrl: https://www.groovy-lang.org/learn.html +- DocumentLabel: Documentation + DocumentUrl: https://www.groovy-lang.org/documentation.html +- DocumentLabel: FAQ + DocumentUrl: https://www.groovy-lang.org/faq.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/Groovy/4/4.0.27/Apache.Groovy.4.locale.zh-CN.yaml b/manifests/a/Apache/Groovy/4/4.0.27/Apache.Groovy.4.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c6065739bdcc8 --- /dev/null +++ b/manifests/a/Apache/Groovy/4/4.0.27/Apache.Groovy.4.locale.zh-CN.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Apache.Groovy.4 +PackageVersion: 4.0.27 +PackageLocale: zh-CN +Publisher: The Groovy Team +PublisherUrl: https://apache.org/ +PublisherSupportUrl: https://www.groovy-lang.org/support.html +PrivacyUrl: https://privacy.apache.org/policies/privacy-policy-public.html +Author: The Groovy Team +PackageName: Groovy 4 +PackageUrl: https://www.groovy-lang.org/ +License: Apache-2.0 +LicenseUrl: https://github.com/apache/groovy/blob/HEAD/LICENSE +Copyright: © 2003-2024 the Apache Groovy project +ShortDescription: 适用于 Java 平台的多功能语言 +Description: Apache Groovy 是一种功能强大、可选择类型的动态语言,具有静态类型和静态编译功能,适用于 Java 平台,旨在通过简洁、熟悉和易学的语法提高开发人员的工作效率。它能与任何 Java 程序顺利集成,并能立即为您的应用程序提供强大的功能,包括脚本能力、特定域语言编写、运行时和编译时元编程以及函数式编程。 +Tags: +- jvm语言 +- 元编程 +- 函数式编程 +- 动态类型 +- 编程 +- 编程语言 +- 语言 +- 静态类型 +ReleaseNotesUrl: https://groovy-lang.org/releasenotes/groovy-4.0.html +Documentations: +- DocumentLabel: 学习 + DocumentUrl: https://www.groovy-lang.org/learn.html +- DocumentLabel: 文档 + DocumentUrl: https://www.groovy-lang.org/documentation.html +- DocumentLabel: 常见问题 + DocumentUrl: https://www.groovy-lang.org/faq.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/Groovy/4/4.0.27/Apache.Groovy.4.yaml b/manifests/a/Apache/Groovy/4/4.0.27/Apache.Groovy.4.yaml new file mode 100644 index 0000000000000..23fc12ea95232 --- /dev/null +++ b/manifests/a/Apache/Groovy/4/4.0.27/Apache.Groovy.4.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: Apache.Groovy.4 +PackageVersion: 4.0.27 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/NetBeans/20/Apache.NetBeans.installer.yaml b/manifests/a/Apache/NetBeans/20/Apache.NetBeans.installer.yaml index 06e3d997d7ff5..420f2409bd5b4 100644 --- a/manifests/a/Apache/NetBeans/20/Apache.NetBeans.installer.yaml +++ b/manifests/a/Apache/NetBeans/20/Apache.NetBeans.installer.yaml @@ -1,21 +1,21 @@ -# Created with YamlCreate.ps1 v2.3.1 $debug=QUSU.CRLF.5-1-19041-3930.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Apache.NetBeans PackageVersion: "20" InstallerType: exe InstallModes: -- interactive -- silent + - interactive + - silent InstallerSwitches: Silent: --silent SilentWithProgress: --silent Dependencies: PackageDependencies: - - PackageIdentifier: BellSoft.LibericaJDK.11 + - PackageIdentifier: BellSoft.LibericaJDK.11 Installers: -- Architecture: x64 - InstallerUrl: https://archive.apache.org/dist/netbeans/netbeans-installers/20/Apache-NetBeans-20-bin-windows-x64.exe - InstallerSha256: 45ECDEE28979536BA8A4B1340E6B11ED113E83113CF2699F504038F549D16C3B + - Architecture: x64 + InstallerUrl: https://archive.apache.org/dist/netbeans/netbeans-installers/20/Apache-NetBeans-20-bin-windows-x64.exe + InstallerSha256: 45ECDEE28979536BA8A4B1340E6B11ED113E83113CF2699F504038F549D16C3B ManifestType: installer -ManifestVersion: 1.5.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/NetBeans/20/Apache.NetBeans.locale.en-US.yaml b/manifests/a/Apache/NetBeans/20/Apache.NetBeans.locale.en-US.yaml index 54fddf6af1bbb..55bbd0aef1892 100644 --- a/manifests/a/Apache/NetBeans/20/Apache.NetBeans.locale.en-US.yaml +++ b/manifests/a/Apache/NetBeans/20/Apache.NetBeans.locale.en-US.yaml @@ -1,28 +1,28 @@ -# Created with YamlCreate.ps1 v2.3.1 $debug=QUSU.CRLF.5-1-19041-3930.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Apache.NetBeans PackageVersion: "20" PackageLocale: en-US Publisher: Apache NetBeans PublisherUrl: https://www.apache.org/ -PublisherSupportUrl: https://netbeans.apache.org/help/index.html -# PrivacyUrl: -# Author: +PublisherSupportUrl: https://netbeans.apache.org/front/main/help/index.html +# PrivacyUrl: +# Author: PackageName: Apache NetBeans IDE -PackageUrl: https://netbeans.apache.org/ +PackageUrl: https://netbeans.apache.org/front/main/index.html License: Apache-2.0 -LicenseUrl: https://github.com/apache/netbeans +LicenseUrl: https://github.com/apache/netbeans/blob/master/LICENSE Copyright: Copyright © 2017-2023 The Apache Software Foundation. -# CopyrightUrl: +# CopyrightUrl: ShortDescription: Development Environment, Tooling Platform and Application Framework. Description: Apache NetBeans is much more than a text editor. It highlights source code syntactically and semantically, lets you easily refactor code, with a range of handy and powerful tools. Moniker: netbeans -# Tags: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: ManifestType: defaultLocale -ManifestVersion: 1.5.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/NetBeans/20/Apache.NetBeans.locale.zh-CN.yaml b/manifests/a/Apache/NetBeans/20/Apache.NetBeans.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b53a3cd001d35 --- /dev/null +++ b/manifests/a/Apache/NetBeans/20/Apache.NetBeans.locale.zh-CN.yaml @@ -0,0 +1,28 @@ +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Apache.NetBeans +PackageVersion: "20" +PackageLocale: zh-CN +Publisher: Apache NetBeans +PublisherUrl: https://www.apache.org/ +PublisherSupportUrl: https://netbeans.apache.org/front/main/help/index.html +# PrivacyUrl: +# Author: +PackageName: Apache NetBeans IDE +PackageUrl: https://netbeans.apache.org/front/main/index.html +License: Apache-2.0 +LicenseUrl: https://github.com/apache/netbeans/blob/master/LICENSE +Copyright: Copyright © 2017-2023 The Apache Software Foundation. +# CopyrightUrl: +ShortDescription: 开发环境、工具平台和应用程序框架。 +Description: Apache NetBeans 不仅仅是一个文本编辑器。它在语法和语义上高亮源代码,让你轻松重构代码,并提供一系列方便且强大的工具。 +# Moniker: netbeans +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/NetBeans/20/Apache.NetBeans.yaml b/manifests/a/Apache/NetBeans/20/Apache.NetBeans.yaml index 9f186f6e9fc46..e21c0c84c5839 100644 --- a/manifests/a/Apache/NetBeans/20/Apache.NetBeans.yaml +++ b/manifests/a/Apache/NetBeans/20/Apache.NetBeans.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.3.1 $debug=QUSU.CRLF.5-1-19041-3930.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Apache.NetBeans PackageVersion: "20" DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.5.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/NetBeans/21/Apache.NetBeans.installer.yaml b/manifests/a/Apache/NetBeans/21/Apache.NetBeans.installer.yaml new file mode 100644 index 0000000000000..d32238adf75a0 --- /dev/null +++ b/manifests/a/Apache/NetBeans/21/Apache.NetBeans.installer.yaml @@ -0,0 +1,22 @@ +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Apache.NetBeans +PackageVersion: "21" +InstallerType: exe +InstallModes: + - interactive + - silent +ReleaseDate: 2024-02-24 +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +Dependencies: + PackageDependencies: + - PackageIdentifier: BellSoft.LibericaJDK.11 +Installers: + - Architecture: x64 + InstallerUrl: https://archive.apache.org/dist/netbeans/netbeans-installers/21/Apache-NetBeans-21-bin-windows-x64.exe + InstallerSha256: 35C90E6066B6C61A9274BE1109C43BE371D5E74BE4F47D81CF577FDB6544ABAD +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/NetBeans/21/Apache.NetBeans.locale.en-US.yaml b/manifests/a/Apache/NetBeans/21/Apache.NetBeans.locale.en-US.yaml new file mode 100644 index 0000000000000..e9bf2e938ae93 --- /dev/null +++ b/manifests/a/Apache/NetBeans/21/Apache.NetBeans.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Apache.NetBeans +PackageVersion: "21" +PackageLocale: en-US +Publisher: Apache NetBeans +PublisherUrl: https://www.apache.org/ +PublisherSupportUrl: https://netbeans.apache.org/help/index.html +PackageName: Apache NetBeans IDE +PackageUrl: https://netbeans.apache.org/ +License: Apache-2.0 +LicenseUrl: https://github.com/apache/netbeans +Copyright: Copyright © 2017-2023 The Apache Software Foundation. +ShortDescription: Development Environment, Tooling Platform and Application Framework. +Description: Apache NetBeans is much more than a text editor. It highlights source code syntactically and semantically, lets you easily refactor code, with a range of handy and powerful tools. +Moniker: netbeans +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/NetBeans/21/Apache.NetBeans.yaml b/manifests/a/Apache/NetBeans/21/Apache.NetBeans.yaml new file mode 100644 index 0000000000000..f7ae205fccc5f --- /dev/null +++ b/manifests/a/Apache/NetBeans/21/Apache.NetBeans.yaml @@ -0,0 +1,8 @@ +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Apache.NetBeans +PackageVersion: "21" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/NetBeans/22/Apache.NetBeans.installer.yaml b/manifests/a/Apache/NetBeans/22/Apache.NetBeans.installer.yaml new file mode 100644 index 0000000000000..2629dbcc12566 --- /dev/null +++ b/manifests/a/Apache/NetBeans/22/Apache.NetBeans.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Apache.NetBeans +PackageVersion: "22" +InstallerType: exe +InstallModes: + - interactive + - silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +Dependencies: + PackageDependencies: + # Requires JDK/JRE >= 17 + - PackageIdentifier: BellSoft.LibericaJDK.22 +ReleaseDate: 2024-05-23 +Installers: + - Architecture: x64 + InstallerUrl: https://archive.apache.org/dist/netbeans/netbeans-installers/22/Apache-NetBeans-22-bin-windows-x64.exe + InstallerSha256: 44B1F8D5C93B8C62C0BADBBA89DF381FA48C903259991C281DFF94FEC31826C8 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/a/Apache/NetBeans/22/Apache.NetBeans.locale.en-US.yaml b/manifests/a/Apache/NetBeans/22/Apache.NetBeans.locale.en-US.yaml new file mode 100644 index 0000000000000..8e61d8f81cb6e --- /dev/null +++ b/manifests/a/Apache/NetBeans/22/Apache.NetBeans.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Apache.NetBeans +PackageVersion: "22" +PackageLocale: en-US +Publisher: Apache NetBeans +PublisherUrl: https://www.apache.org/ +PublisherSupportUrl: https://netbeans.apache.org/help/index.html +PackageName: Apache NetBeans IDE +PackageUrl: https://netbeans.apache.org/ +License: Apache-2.0 +LicenseUrl: https://github.com/apache/netbeans +Copyright: Copyright © 2017-2023 The Apache Software Foundation. +ShortDescription: Development Environment, Tooling Platform and Application Framework. +Description: Apache NetBeans is much more than a text editor. It highlights source code syntactically and semantically, lets you easily refactor code, with a range of handy and powerful tools. +Moniker: netbeans +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/a/Apache/NetBeans/22/Apache.NetBeans.yaml b/manifests/a/Apache/NetBeans/22/Apache.NetBeans.yaml new file mode 100644 index 0000000000000..74c6f352009a7 --- /dev/null +++ b/manifests/a/Apache/NetBeans/22/Apache.NetBeans.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Apache.NetBeans +PackageVersion: "22" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/a/Apache/NetBeans/23/Apache.NetBeans.installer.yaml b/manifests/a/Apache/NetBeans/23/Apache.NetBeans.installer.yaml new file mode 100644 index 0000000000000..864591cc21e42 --- /dev/null +++ b/manifests/a/Apache/NetBeans/23/Apache.NetBeans.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 v2.4.1 $debug=NVS0.CRLF.7-4-5.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Apache.NetBeans +PackageVersion: "23" +InstallerType: exe +InstallModes: + - interactive + - silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +Dependencies: + PackageDependencies: + # Requires JDK/JRE >= 17 + - PackageIdentifier: BellSoft.LibericaJDK.22 +ReleaseDate: 2024-09-19 +Installers: + - Architecture: x64 + InstallerUrl: https://archive.apache.org/dist/netbeans/netbeans-installers/23/Apache-NetBeans-23-bin-windows-x64.exe + InstallerSha256: 7C13B961C06DF2D025C89C3556C515C921D555D3A4AE2D600FA6D4DA90E01817 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/a/Apache/NetBeans/23/Apache.NetBeans.locale.en-US.yaml b/manifests/a/Apache/NetBeans/23/Apache.NetBeans.locale.en-US.yaml new file mode 100644 index 0000000000000..f58e92b3df7b6 --- /dev/null +++ b/manifests/a/Apache/NetBeans/23/Apache.NetBeans.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.4.1 $debug=NVS0.CRLF.7-4-5.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Apache.NetBeans +PackageVersion: "23" +PackageLocale: en-US +Publisher: Apache NetBeans +PublisherUrl: https://netbeans.apache.org/ +PublisherSupportUrl: https://netbeans.apache.org/front/main/help/ +PackageName: Apache NetBeans IDE +PackageUrl: https://netbeans.apache.org/ +License: Apache-2.0 +LicenseUrl: https://github.com/apache/netbeans +Copyright: Copyright © 2017-2023 The Apache Software Foundation. +ShortDescription: Development Environment, Tooling Platform and Application Framework. +Description: Apache NetBeans is much more than a text editor. It highlights source code syntactically and semantically, lets you easily refactor code, with a range of handy and powerful tools. +Moniker: netbeans +ReleaseNotesUrl: https://github.com/apache/netbeans/releases/tag/23 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/a/Apache/NetBeans/23/Apache.NetBeans.yaml b/manifests/a/Apache/NetBeans/23/Apache.NetBeans.yaml new file mode 100644 index 0000000000000..917d579ee32bf --- /dev/null +++ b/manifests/a/Apache/NetBeans/23/Apache.NetBeans.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.1 $debug=NVS0.CRLF.7-4-5.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Apache.NetBeans +PackageVersion: "23" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/a/Apache/NetBeans/24/Apache.NetBeans.installer.yaml b/manifests/a/Apache/NetBeans/24/Apache.NetBeans.installer.yaml new file mode 100644 index 0000000000000..964601a6f7b8b --- /dev/null +++ b/manifests/a/Apache/NetBeans/24/Apache.NetBeans.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Apache.NetBeans +PackageVersion: "24" +InstallerType: exe +InstallModes: + - interactive + - silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +Dependencies: + PackageDependencies: + - PackageIdentifier: BellSoft.LibericaJDK.22 +ReleaseDate: 2024-12-05 +Installers: + - Architecture: x64 + InstallerUrl: https://archive.apache.org/dist/netbeans/netbeans-installers/24/Apache-NetBeans-24-bin-windows-x64.exe + InstallerSha256: 901623BC0B6ADD7A6A9D06B825298A1B222A4C81115DE7A3E6D2213ED105CD9B +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/a/Apache/NetBeans/24/Apache.NetBeans.locale.en-US.yaml b/manifests/a/Apache/NetBeans/24/Apache.NetBeans.locale.en-US.yaml new file mode 100644 index 0000000000000..adf2b00e382ed --- /dev/null +++ b/manifests/a/Apache/NetBeans/24/Apache.NetBeans.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Apache.NetBeans +PackageVersion: "24" +PackageLocale: en-US +Publisher: Apache NetBeans +PublisherUrl: https://netbeans.apache.org/ +PublisherSupportUrl: https://netbeans.apache.org/front/main/help/ +PackageName: Apache NetBeans IDE +PackageUrl: https://netbeans.apache.org/ +License: Apache-2.0 +LicenseUrl: https://github.com/apache/netbeans +Copyright: Copyright © 2017-2023 The Apache Software Foundation. +ShortDescription: Development Environment, Tooling Platform and Application Framework. +Description: Apache NetBeans is much more than a text editor. It highlights source code syntactically and semantically, lets you easily refactor code, with a range of handy and powerful tools. +Moniker: netbeans +ReleaseNotesUrl: https://github.com/apache/netbeans/releases/tag/24 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/Apache/NetBeans/24/Apache.NetBeans.yaml b/manifests/a/Apache/NetBeans/24/Apache.NetBeans.yaml new file mode 100644 index 0000000000000..84b3853910779 --- /dev/null +++ b/manifests/a/Apache/NetBeans/24/Apache.NetBeans.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Apache.NetBeans +PackageVersion: "24" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/Apache/NetBeans/25/Apache.NetBeans.installer.yaml b/manifests/a/Apache/NetBeans/25/Apache.NetBeans.installer.yaml index ba8ad7946170b..86329585d1410 100644 --- a/manifests/a/Apache/NetBeans/25/Apache.NetBeans.installer.yaml +++ b/manifests/a/Apache/NetBeans/25/Apache.NetBeans.installer.yaml @@ -1,23 +1,22 @@ -# Created with komac v2.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Apache.NetBeans -PackageVersion: '25' +PackageVersion: "25" InstallerType: exe InstallModes: -- interactive -- silent + - interactive + - silent InstallerSwitches: Silent: --silent SilentWithProgress: --silent Dependencies: PackageDependencies: - - PackageIdentifier: BellSoft.LibericaJDK.23 + - PackageIdentifier: BellSoft.LibericaJDK.23 ReleaseDate: 2025-02-14 Installers: -- Architecture: x64 - InstallerUrl: https://dlcdn.apache.org/netbeans/netbeans-installers/25/Apache-NetBeans-25-bin-windows-x64.exe - InstallerSha256: C9ABF083DA621199F33174588B485EA64E0CF0A0572D8B8AF6E10149BE91146D + - Architecture: x64 + InstallerUrl: https://archive.apache.org/dist/netbeans/netbeans-installers/25/Apache-NetBeans-25-bin-windows-x64.exe + InstallerSha256: C9ABF083DA621199F33174588B485EA64E0CF0A0572D8B8AF6E10149BE91146D ManifestType: installer -ManifestVersion: 1.9.0 - +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/NetBeans/25/Apache.NetBeans.locale.en-US.yaml b/manifests/a/Apache/NetBeans/25/Apache.NetBeans.locale.en-US.yaml index 27b974bdc58d6..d95c65c49f7d7 100644 --- a/manifests/a/Apache/NetBeans/25/Apache.NetBeans.locale.en-US.yaml +++ b/manifests/a/Apache/NetBeans/25/Apache.NetBeans.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Apache.NetBeans -PackageVersion: '25' +PackageVersion: "25" PackageLocale: en-US Publisher: Apache NetBeans PublisherUrl: https://netbeans.apache.org/ @@ -16,5 +16,4 @@ ShortDescription: Development Environment, Tooling Platform and Application Fram Description: Apache NetBeans is much more than a text editor. It highlights source code syntactically and semantically, lets you easily refactor code, with a range of handy and powerful tools. Moniker: netbeans ManifestType: defaultLocale -ManifestVersion: 1.9.0 - +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apache/NetBeans/25/Apache.NetBeans.yaml b/manifests/a/Apache/NetBeans/25/Apache.NetBeans.yaml index 6d3a9542b2c2e..13b240d61a240 100644 --- a/manifests/a/Apache/NetBeans/25/Apache.NetBeans.yaml +++ b/manifests/a/Apache/NetBeans/25/Apache.NetBeans.yaml @@ -1,9 +1,8 @@ -# Created with komac v2.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Apache.NetBeans -PackageVersion: '25' +PackageVersion: "25" DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 - +ManifestVersion: 1.10.0 diff --git a/manifests/a/ApeCloud/kbcli/1.0.0/ApeCloud.kbcli.installer.yaml b/manifests/a/ApeCloud/kbcli/1.0.0/ApeCloud.kbcli.installer.yaml deleted file mode 100644 index 3c9cd0b7ecaa5..0000000000000 --- a/manifests/a/ApeCloud/kbcli/1.0.0/ApeCloud.kbcli.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with WinGet Releaser using komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: ApeCloud.kbcli -PackageVersion: 1.0.0 -InstallerLocale: en-US -InstallerType: portable -Commands: -- kbcli -ReleaseDate: 2025-05-28 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/apecloud/kbcli/releases/download/v1.0.0/kbcli.exe - InstallerSha256: 874B81BA7C8E06E904D89821B89021F4F28B9CF96990795F3F08A22C1097FC6D -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/a/ApeCloud/kbcli/1.0.0/ApeCloud.kbcli.locale.en-US.yaml b/manifests/a/ApeCloud/kbcli/1.0.0/ApeCloud.kbcli.locale.en-US.yaml deleted file mode 100644 index 7882af152a75b..0000000000000 --- a/manifests/a/ApeCloud/kbcli/1.0.0/ApeCloud.kbcli.locale.en-US.yaml +++ /dev/null @@ -1,132 +0,0 @@ -# Created with WinGet Releaser using komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: ApeCloud.kbcli -PackageVersion: 1.0.0 -PackageLocale: en-US -Publisher: ApeCloud -PublisherUrl: https://kubeblocks.io/ -PublisherSupportUrl: https://github.com/apecloud/kbcli/issues -Author: ApeCloud -PackageName: kbcli -PackageUrl: https://github.com/apecloud/kbcli -License: AGPL-3.0 -LicenseUrl: https://github.com/apecloud/kbcli/blob/HEAD/LICENSE -Copyright: Copyright (C) 2022-2023 ApeCloud Co., Ltd -ShortDescription: A command line interface for KubeBlocks -Moniker: kbcli -ReleaseNotes: |- - What's Changed - - feat: support to run ops forcibly by @wangyelei in #289 - - chore: check crds status when install or upgrade kb by @ldming in #288 - - feat: change according new bench api by @fengluodb in #291 - - chore: don not report error when the k8s provider is unknown by @iziang in #293 - - chore: add "--path-prefix" flag to backuprepo create command by @zjx20 in #294 - - chore: support rebuild-instance cmd and update the customOps cmd by @wangyelei in #295 - - chore: update rebuild-instance cmd to new api by @wangyelei in #296 - - feat: adjust configconstraint api (#297) by @sophon-zt in #298 - - docs: add a CONTRIBUTING.md file for kbcli repo by @SuperAayush in #299 - - feat: add tpcds cmd by @fengluodb in #303 - - chore: remove deprecated class command by @ldming in #305 - - chore: bot repeat approve by @JashBook in #311 - - chore: get image registry by k8s provider and region by @ldming in #307 - - chore: auto update kbcli embed chart changes by @apecloud-bot in #315 - - chore: compatible sharding and instance by @wangyelei in #318 - - chore: update sharding ops by @wangyelei in #320 - - chore: remove sharding components by @wangyelei in #322 - - fix: sample code for the cluster section by @dengkailu in #317 - - chore: update new monitor api for kbcli (#7015) by @sophon-zt in #316 - - chore: prefer using StorageProvider from the dataprotection API group by @zjx20 in #324 - - chore: update opsRequest api by @wangyelei in #325 - - chore: fix custom ops bug by @wangyelei in #327 - - chore: show the recoverable time when describing the cluster by @wangyelei in #329 - - fix: create custom ops failed by @wangyelei in #330 - - fix: check if the specified backup method exists when creating a backup by @d976045024 in #328 - - fix: no cluster name when using list-ops cmd by @wangyelei in #334 - - chore: remove unused login cmd by @ldming in #335 - - fix: update the example in backuppolicy.go by @d976045024 in #336 - - chore: update kb version to 0.9.0-beta.20 (#332) by @sophon-zt in #338 - - chore: remove migration by @ldming in #340 - - fix: Raise the version constraint of KBCLI and KB (#300) by @d976045024 in #339 - - chore: remove builder cmd by @ldming in #342 - - chore: remove fault command by @ldming in #343 - - chore: improve report desc by @ldming in #344 - - chore: make doc by @ldming in #347 - - chore: remove bench command by @fengluodb in #346 - - fix: check existence of backuprepo before creating a backup by @gnolong in #337 - - chore: support to upgrade componentDef and serviceVersion by @wangyelei in #348 - - chore: update monitor-related and configconstraint api by @sophon-zt in #351 - - chore: remove alert by @lynnleelhl in #355 - - chore: optimize pod status display to be the same as kubectl get pod by @wangyelei in #356 - - chore: support convert configconstraint from v1alpha1 to v1beta1 (#357) by @sophon-zt in #358 - - chore: continuous backup's availablePod is not correct. by @wangyelei in #359 - - chore: support wait-addons flag for kb install by @ldming in #364 - - chore: update kb version to 0.9.0-beta.32 by @sophon-zt in #369 - - chore: fix get recoverable time fail by @wangyelei in #372 - - fix: conversion error log (#7532) by @sophon-zt in #375 - - docs: fix typos by @Chiwency in #360 - - fix: kbcli uninstall kubeblocks fail (#7646) by @sophon-zt in #377 - - chore: support expose NodePort service and add default role seletor by @iziang in #381 - - fix: kbcli cluster expose error by @iziang in #384 - - fix: kbcli cluster expose Failed to process the operation of OpsRequest by @iziang in #387 - - feat: add shortcut for elasticsearch by @iziang in #389 - - feat: update xinference addon to support shm size by @lynnleelhl in #391 - - fix: disable helm pre-upgrade-hook (#393) by @sophon-zt in #394 - - feat: add 'kbcli create apecloud-mysql' subcommand by @gnolong in #363 - - chore: update gomod replace and doc by @ldming in #396 - - feat: add shortcut for qdrant by @iziang in #395 - - chore: update elasticsearch embedded chart by @iziang in #399 - - fix: update default k3s version in makefile by @gnolong in #402 - - fix: fix cluster connect --show-example by @1aal in #403 - - feat: update addon to newest by @lynnleelhl in #405 - - chore: remove service version for elasticsearch and qdrant by @iziang in #400 - - chore: update create accout w.r.t lorry by @shanshanying in #411 - - fix: promote error when use 0.9 api by @ldming in #414 - - [Improvement] enable addons in batch by @nayutah in #415 - - chore: replace registry by @ahlfors in #413 - - chore: fix make generate error by @JashBook in #422 - - fix: support create sharding cluster by @yipeng1030 in #435 - - chore: adapt cluster connect command with 1.0 api by @wangyelei in #437 - - chore: adapt cluster describe command with 1.0 api by @wangyelei in #438 - - chore: delete deploy when upgrade by @ldming in #440 - - feat: restore-by-keys by @Chiwency in #443 - - feat: imporve cluster register and addon by @yipeng1030 in #442 - - chore: udpate Makefile on buiding embeding charts by @shanshanying in #450 - - chore: remove the region check for eks by @wangyelei in #451 - - feat: check helm release status before kubeblocks upgrade by @yipeng1030 in #447 - - chore: update kb api version to 1.0 by @wangyelei in #458 - - feat: addon install require to specify the version by @ldming in #457 - - chore: fix cluster chart version when auto register by @yipeng1030 in #462 - - fix: fetch kb version from helm release chart before upgrade by @yipeng1030 in #466 - - chore: enable rbac by default for elasticsearch (#460) by @iziang in #461 - - feat: adapt ops with new api by @wangyelei in #467 - - feat: playground only support k3d by @yipeng1030 in #471 - - chore: adapt update and dataprotection command by @wangyelei in #469 - - chore: adapt list-instances and report command by @wangyelei in #475 - - chore: adapt clusterDefinition commands by @wangyelei in #476 - - chore: playground only support k3d and aws by @yipeng1030 in #472 - - chore: upgrade kb addon to latest by @JashBook in #477 - - chore: support skip helm schema validation by @ldming in #480 - - chore: support to skip helm schema validattion by @ldming in #481 - - chore: cmpd/cmpv list/describe adapt 1.0 api by @yipeng1030 in #479 - - chore: cluster create support specify schedulingpolicy by @yipeng1030 in #483 - - chore: support ops-def list and describe by @yipeng1030 in #484 - - chore: support to install 1.0 KB when existing 0.9.2 KB by @wangyelei in #486 - - chore: pick etcd to release-1.0 by @loomts in #497 - - chore: auto update kbcli embed chart changes by @apecloud-bot in #553 - - chore: default addon list update kbcli docs by @shanshanying in #560 - - chore: rename cmd delete_resource_with_version to purge for release-1.0 by @yipeng1030 in #576 - - chore: delete dashboard cmd for 1.0 by @yipeng1030 in #577 - - fix: etcd null param by @loomts in #603 - New Contributors - - @SuperAayush made their first contribution in #299 - - @dengkailu made their first contribution in #317 - - @d976045024 made their first contribution in #328 - - @gnolong made their first contribution in #337 - - @Chiwency made their first contribution in #360 - - @nayutah made their first contribution in #415 - - @ahlfors made their first contribution in #413 - Full Changelog: v0.7.4...v1.0.0 -ReleaseNotesUrl: https://github.com/apecloud/kbcli/releases/tag/v1.0.0 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/a/ApeCloud/kbcli/1.0.0/ApeCloud.kbcli.yaml b/manifests/a/ApeCloud/kbcli/1.0.0/ApeCloud.kbcli.yaml deleted file mode 100644 index e47d9508ac886..0000000000000 --- a/manifests/a/ApeCloud/kbcli/1.0.0/ApeCloud.kbcli.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: ApeCloud.kbcli -PackageVersion: 1.0.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/a/Apipost/ApiPost/8.1.13/Apipost.ApiPost.installer.yaml b/manifests/a/Apipost/ApiPost/8.1.13/Apipost.ApiPost.installer.yaml deleted file mode 100644 index f63067199da50..0000000000000 --- a/manifests/a/Apipost/ApiPost/8.1.13/Apipost.ApiPost.installer.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Apipost.ApiPost -PackageVersion: 8.1.13 -InstallerLocale: zh-CN -InstallerType: nullsoft -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -ProductCode: c33e9355-57f0-58c9-90b1-75594c88b8f3 -ReleaseDate: 2025-05-19 -AppsAndFeaturesEntries: -- DisplayName: Apipost 8.1.13 -Installers: -- Architecture: x86 - InstallerUrl: https://www.apipost.cn/dl.php?client=Win&arch=ia32&version=8.1.13 - InstallerSha256: 11FB32D6E0D74C59BB3B7EE2A45D462CE07738D3982C8B329F237998BD142B41 -- Architecture: x64 - InstallerUrl: https://www.apipost.cn/dl.php?client=Win&arch=x64&version=8.1.13 - InstallerSha256: AFDE06E1192361F5CC4EFFFF880C9C5D36D36E50B974A1E754D9D6E74C809746 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/a/Apipost/ApiPost/8.1.13/Apipost.ApiPost.locale.zh-CN.yaml b/manifests/a/Apipost/ApiPost/8.1.13/Apipost.ApiPost.locale.zh-CN.yaml deleted file mode 100644 index d86ba843d36ff..0000000000000 --- a/manifests/a/Apipost/ApiPost/8.1.13/Apipost.ApiPost.locale.zh-CN.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Apipost.ApiPost -PackageVersion: 8.1.13 -PackageLocale: zh-CN -Publisher: Beijing Arctic Fox Information Technology Co., Ltd. -PublisherUrl: https://www.apipost.cn/about/ -PublisherSupportUrl: https://qa.apipost.cn/ -PackageName: Apipost -PackageUrl: https://www.apipost.cn/download.html -License: Proprietary -Copyright: Beijing Arctic Fox Information Technology Co., Ltd. -CopyrightUrl: https://www.apipost.cn/about/ -ShortDescription: AI驱动的下一代API开发管理工具 -ReleaseNotesUrl: https://wiki.apipost.cn/docs/changelog/#8113%E6%9B%B4%E6%96%B0%E6%97%A5%E5%BF%97 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/a/Apipost/ApiPost/8.1.13/Apipost.ApiPost.yaml b/manifests/a/Apipost/ApiPost/8.1.13/Apipost.ApiPost.yaml deleted file mode 100644 index 2947e4c85852d..0000000000000 --- a/manifests/a/Apipost/ApiPost/8.1.13/Apipost.ApiPost.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Apipost.ApiPost -PackageVersion: 8.1.13 -DefaultLocale: zh-CN -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/a/Apipost/ApiPost/8.1.18/Apipost.ApiPost.installer.yaml b/manifests/a/Apipost/ApiPost/8.1.18/Apipost.ApiPost.installer.yaml new file mode 100644 index 0000000000000..15292c405056a --- /dev/null +++ b/manifests/a/Apipost/ApiPost/8.1.18/Apipost.ApiPost.installer.yaml @@ -0,0 +1,37 @@ +# 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: Apipost.ApiPost +PackageVersion: 8.1.18 +InstallerType: nullsoft # electron-builder +InstallerSwitches: + Upgrade: --updated +ProductCode: c33e9355-57f0-58c9-90b1-75594c88b8f3 +UpgradeBehavior: install +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://www.apipost.cn/dl.php?client=Win&arch=ia32&version=8.1.18 + InstallerSha256: 1AE87275331C2BA3ABD00FB3B5E254AD5417AB0EA67D983A6C5CF694B03FEEDD + InstallerSwitches: + Custom: /currentuser +- Architecture: x86 + Scope: machine + InstallerUrl: https://www.apipost.cn/dl.php?client=Win&arch=ia32&version=8.1.18 + InstallerSha256: 1AE87275331C2BA3ABD00FB3B5E254AD5417AB0EA67D983A6C5CF694B03FEEDD + InstallerSwitches: + Custom: /allusers +- Architecture: x64 + Scope: user + InstallerUrl: https://www.apipost.cn/dl.php?client=Win&arch=x64&version=8.1.18 + InstallerSha256: F3F327726E6C1534B9D359F09599AF00D3F80AE0000694AF532A144BE0019948 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://www.apipost.cn/dl.php?client=Win&arch=x64&version=8.1.18 + InstallerSha256: F3F327726E6C1534B9D359F09599AF00D3F80AE0000694AF532A144BE0019948 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apipost/ApiPost/8.1.18/Apipost.ApiPost.locale.en-US.yaml b/manifests/a/Apipost/ApiPost/8.1.18/Apipost.ApiPost.locale.en-US.yaml new file mode 100644 index 0000000000000..66e936db95190 --- /dev/null +++ b/manifests/a/Apipost/ApiPost/8.1.18/Apipost.ApiPost.locale.en-US.yaml @@ -0,0 +1,38 @@ +# 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: Apipost.ApiPost +PackageVersion: 8.1.18 +PackageLocale: en-US +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: Proprietary +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: AI-driven next-generation API development management tool +# Description: +# Moniker: +Tags: +- api +- automation +- debug +- develop +- development +- interface +- internet +- network +- request +- response +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apipost/ApiPost/8.1.18/Apipost.ApiPost.locale.zh-CN.yaml b/manifests/a/Apipost/ApiPost/8.1.18/Apipost.ApiPost.locale.zh-CN.yaml new file mode 100644 index 0000000000000..82e289c33e558 --- /dev/null +++ b/manifests/a/Apipost/ApiPost/8.1.18/Apipost.ApiPost.locale.zh-CN.yaml @@ -0,0 +1,56 @@ +# 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: Apipost.ApiPost +PackageVersion: 8.1.18 +PackageLocale: zh-CN +Publisher: Beijing Arctic Fox Information Technology Co., Ltd. +PublisherUrl: https://www.apipost.cn/ +PublisherSupportUrl: https://qa.apipost.cn/ +# PrivacyUrl: +Author: 北京北极狐信息科技有限公司 +PackageName: Apipost +PackageUrl: https://www.apipost.cn/download.html +License: 专有软件 +# LicenseUrl: +Copyright: Copyright © 北京北极狐信息科技有限公司 All rights reserved. +# CopyrightUrl: +ShortDescription: AI 驱动的下一代 API 开发管理工具 +# Description: +# Moniker: +Tags: +- api +- 互联网 +- 响应 +- 开发 +- 接口 +- 网络 +- 自动化 +- 请求 +- 调试 +ReleaseNotes: |- + 🔥新增: 支持 AI 智能搜索,通过语义识别与模糊匹配,精准查找接口数据 + 🔥新增: 支持 AI 生成测试数据,通过描述需求即可自动生成测试数据,告别手动创建 + 🔥新增: 在系统设置中支持设置 不接受版本更新的提示 (仅 8.1.18 及以上版本支持) + 🔥新增: 支持在数据库操作中插入 动态值,用于向数据表插入动态生成的模拟数据 + ⚡优化: 提升接口发送请求速度 + ⚡优化: 解决多处 卡顿问题,提升操作流畅度 + ⚡优化: 提升客户端启动速度 + ⚡优化: 在目录树中增加 移动操作,可将数据项移动到目标目录下 + ⚡优化: 字典库(参数助手)默认展示状态 改为收起,需点击展开 + ⚡优化: 自动化测试中,接口响应数据 超过 5MB 时提示下载,避免界面卡顿 + 🐞修复: 地址 URL 中存在变量时,可能导致 生成 cURL 失败 的问题 + 🐞修复: 在环境内移动服务顺序后,页面排序未同步更新 的问题 + 🐞修复: 文档中状态码字典数据过多时,点击导致页面跳动 的问题 + 🐞修复: 自动化测试中引用添加接口用例后,修改数据保存未同步更新 的问题 + 🐞修复: 调试 SSE(流式响应) 类型接口时,响应数据 未按 JSON 格式展示 的问题 + 🐞修复: 当接口位于层级较深目录下时,其 前置 URL 在自动化测试中未生效 的问题 + 🐞修复: 自动化测试中,IF 控制器 下引用了测试用例时,条件不满足仍执行子步骤 的问题 + 🐞修复: 导入项目 时 部分数据未正确导入 的问题 + 🐞修复: 在数据结构(schema)中输入字段名时出现光标跳动 的问题 +ReleaseNotesUrl: https://wiki.apipost.cn/docs/changelog/#8118更新日志 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apipost/ApiPost/8.1.18/Apipost.ApiPost.yaml b/manifests/a/Apipost/ApiPost/8.1.18/Apipost.ApiPost.yaml new file mode 100644 index 0000000000000..7953cf1d43cd5 --- /dev/null +++ b/manifests/a/Apipost/ApiPost/8.1.18/Apipost.ApiPost.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: Apipost.ApiPost +PackageVersion: 8.1.18 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apipost/ApiPost/8.1.19/Apipost.ApiPost.installer.yaml b/manifests/a/Apipost/ApiPost/8.1.19/Apipost.ApiPost.installer.yaml new file mode 100644 index 0000000000000..5f868d795cd11 --- /dev/null +++ b/manifests/a/Apipost/ApiPost/8.1.19/Apipost.ApiPost.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: Apipost.ApiPost +PackageVersion: 8.1.19 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: c33e9355-57f0-58c9-90b1-75594c88b8f3 +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://img.cdn.apipost.cn/dl/8.1.19/Apipost_win_ia32_8.1.19.exe + InstallerSha256: 936850B949B46E1F21A65A44604A6627E3411FC6B43B92018067002A1821B3AF + InstallerSwitches: + Custom: /currentuser +- Architecture: x86 + Scope: machine + InstallerUrl: https://img.cdn.apipost.cn/dl/8.1.19/Apipost_win_ia32_8.1.19.exe + InstallerSha256: 936850B949B46E1F21A65A44604A6627E3411FC6B43B92018067002A1821B3AF + InstallerSwitches: + Custom: /allusers +- Architecture: x64 + Scope: user + InstallerUrl: https://img.cdn.apipost.cn/dl/8.1.19/Apipost_win_x64_8.1.19.exe + InstallerSha256: ED6A6224957A39FECD300F7BB3D05E49482D5D2BFD4B386328FD9579CD38E1EE + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://img.cdn.apipost.cn/dl/8.1.19/Apipost_win_x64_8.1.19.exe + InstallerSha256: ED6A6224957A39FECD300F7BB3D05E49482D5D2BFD4B386328FD9579CD38E1EE + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apipost/ApiPost/8.1.19/Apipost.ApiPost.locale.en-US.yaml b/manifests/a/Apipost/ApiPost/8.1.19/Apipost.ApiPost.locale.en-US.yaml new file mode 100644 index 0000000000000..4dde6b63d4fea --- /dev/null +++ b/manifests/a/Apipost/ApiPost/8.1.19/Apipost.ApiPost.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Apipost.ApiPost +PackageVersion: 8.1.19 +PackageLocale: en-US +License: Proprietary +ShortDescription: AI-driven next-generation API development management tool +Tags: +- api +- automation +- debug +- develop +- development +- interface +- internet +- network +- request +- response +ReleaseNotes: |- + 🔥🔥大幅优化客户端启动、接口响应速度及操作流畅性!! + 🔥新增: 支持 AI 智能搜索,通过语义识别与模糊匹配,精准查找接口数据。 + 🔥新增: 支持 AI 生成测试数据,通过描述需求即可自动生成测试数据,告别手动创建。 + 🔥新增: 在系统设置中支持设置 不接受版本更新的提示 (仅 8.1.18 及以上版本支持)。 + 🔥新增: 支持在数据库操作中插入 动态值,用于向数据表插入动态生成的模拟数据。 + ⚡优化: 提升接口发送请求速度 + ⚡优化: 解决多处 卡顿问题,提升操作流畅度 + ⚡优化: 提升客户端启动速度 + ⚡优化: 在目录树中增加 移动操作,可将数据项移动到目标目录下 + ⚡优化: 字典库(参数助手)默认展示状态 改为收起,需点击展开 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apipost/ApiPost/8.1.19/Apipost.ApiPost.locale.zh-CN.yaml b/manifests/a/Apipost/ApiPost/8.1.19/Apipost.ApiPost.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5a9577019de08 --- /dev/null +++ b/manifests/a/Apipost/ApiPost/8.1.19/Apipost.ApiPost.locale.zh-CN.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: Apipost.ApiPost +PackageVersion: 8.1.19 +PackageLocale: zh-CN +Publisher: Beijing Arctic Fox Information Technology Co., Ltd. +PublisherUrl: https://www.apipost.cn/ +PublisherSupportUrl: https://qa.apipost.cn/ +Author: 北京北极狐信息科技有限公司 +PackageName: Apipost +PackageUrl: https://www.apipost.cn/download.html +License: 专有软件 +Copyright: Copyright © 北京北极狐信息科技有限公司 All rights reserved. +ShortDescription: AI 驱动的下一代 API 开发管理工具 +Tags: +- api +- 互联网 +- 响应 +- 开发 +- 接口 +- 网络 +- 自动化 +- 请求 +- 调试 +ReleaseNotesUrl: https://wiki.apipost.cn/docs/changelog/#8118更新日志 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apipost/ApiPost/8.1.19/Apipost.ApiPost.yaml b/manifests/a/Apipost/ApiPost/8.1.19/Apipost.ApiPost.yaml new file mode 100644 index 0000000000000..6b004fbe013df --- /dev/null +++ b/manifests/a/Apipost/ApiPost/8.1.19/Apipost.ApiPost.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: Apipost.ApiPost +PackageVersion: 8.1.19 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.0.3/AppByTroye.KoodoReader.installer.yaml b/manifests/a/AppByTroye/KoodoReader/2.0.3/AppByTroye.KoodoReader.installer.yaml new file mode 100644 index 0000000000000..0217198ef69b5 --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.0.3/AppByTroye.KoodoReader.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: AppByTroye.KoodoReader +PackageVersion: 2.0.3 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +FileExtensions: +- azw +- azw3 +- cb7 +- cbr +- cbt +- cbz +- epub +- fb2 +- mobi +- pdf +ProductCode: 233610fa-2bda-5a09-a37b-75e0bafa7920 +ReleaseDate: 2025-06-23 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://dl.koodoreader.com/v2.0.3/Koodo-Reader-2.0.3.exe + InstallerSha256: C400DD7F3E8B3C155517568AE703DD3DFD6299971AEE0EEDD7B449FBDEA4EBE4 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://dl.koodoreader.com/v2.0.3/Koodo-Reader-2.0.3.exe + InstallerSha256: C400DD7F3E8B3C155517568AE703DD3DFD6299971AEE0EEDD7B449FBDEA4EBE4 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.0.3/AppByTroye.KoodoReader.locale.en-US.yaml b/manifests/a/AppByTroye/KoodoReader/2.0.3/AppByTroye.KoodoReader.locale.en-US.yaml new file mode 100644 index 0000000000000..20b03f81b8d29 --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.0.3/AppByTroye.KoodoReader.locale.en-US.yaml @@ -0,0 +1,63 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AppByTroye.KoodoReader +PackageVersion: 2.0.3 +PackageLocale: en-US +Publisher: App by Troye +PublisherUrl: https://www.koodoreader.com/ +PublisherSupportUrl: https://www.koodoreader.com/support +PrivacyUrl: https://www.koodoreader.com/en/privacy +Author: Troye +PackageName: Koodo Reader +PackageUrl: https://www.koodoreader.com/ +License: AGPL-3.0 +LicenseUrl: https://github.com/koodo-reader/koodo-reader/blob/HEAD/LICENSE +Copyright: © 2024 App by Troye. All rights reserved. +CopyrightUrl: https://www.koodoreader.com/en/term +ShortDescription: All-in-one ebook reader +Description: Koodo Reader is an all-in-one eBook reader for Windows, macOS, Linux, and the web, supporting over 15 formats. +Moniker: koodoreader +Tags: +- ebook +- ebook-reader +- epub +- pdf +- reader +ReleaseNotes: |- + New Features + - Importing local books now supports importing folders. Please click the dropdown button next to the "Import" button. + - Importing cloud books now supports importing folders. Please click the "Import This Folder" button next to the folder. + - Importing cloud books now supports importing books from Google Drive and OneDrive. + - Support for managing library data in Google Drive. New libraries will be stored directly in the KoodoReader folder in the root directory of Google Drive. Due to this change, you will need to reauthorize Google Drive. + - Desktop version now includes a FAQ section. Please click the chat button in the lower right corner. + - Added a "Window Always on Top" option in Settings. Go to Settings > General to enable it. + - (Mobile) Importing local books now supports importing folders. + - (Mobile) Importing cloud books now supports importing folders. + - (Mobile) Importing cloud books now supports importing books from Google Drive and OneDrive. + - (Mobile) Support for managing library data in Google Drive. New libraries will be stored directly in the KoodoReader folder in the root directory of Google Drive. Due to this change, you will need to reauthorize Google Drive. + - (Mobile) Support for importing custom reading background images. + - (Mobile) Added an optimized setting for online TTS engines to resolve brief pauses between sentences during TTS playback. Go to Settings > Reading Options to enable it. + - (Mobile) Improved the voice selection page for TTS, supporting switching TTS engines and filtering voices by language. + Fixes + - Fixed an issue where importing WebDAV books resulted in an extra folder with the same name in the file list. + - Fixed abnormal page scaling in some books. + - Fixed an issue where book covers were not displayed in the left panel. + - Fixed an issue where footnotes in some books did not pop up for display. + - Fixed an issue where highlighting text across pages did not show the text popup. + - (Mobile) Fixed an issue where large books could not be downloaded from S3. + - (Mobile) Fixed an issue on iOS where text selection could not be expanded. + - (Mobile) Fixed an issue where text color did not update after setting the reading background. + - (Mobile) Fixed an issue on tablets where rotating the screen caused books to display in only one column. + - (Mobile) Fixed an issue on tablets where chapter titles overlapped with book content. + - (Mobile) Adapted for iOS 26, resolving the issue of books not syncing. + [!NOTE] + This is a developer release and is NOT recommended for general use. For stable releases, please visit Koodo Reader. + [!TIP] + You can also download the installation package for this version from the our self-hosted mirror. +ReleaseNotesUrl: https://github.com/koodo-reader/koodo-reader/releases/tag/v2.0.3 +Documentations: +- DocumentLabel: Document + DocumentUrl: https://www.koodoreader.com/document +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.0.3/AppByTroye.KoodoReader.locale.zh-CN.yaml b/manifests/a/AppByTroye/KoodoReader/2.0.3/AppByTroye.KoodoReader.locale.zh-CN.yaml new file mode 100644 index 0000000000000..0678a0af24304 --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.0.3/AppByTroye.KoodoReader.locale.zh-CN.yaml @@ -0,0 +1,56 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: AppByTroye.KoodoReader +PackageVersion: 2.0.3 +PackageLocale: zh-CN +PublisherUrl: https://www.koodoreader.com/zh +PublisherSupportUrl: https://www.koodoreader.com/zh/support +PrivacyUrl: https://www.koodoreader.com/zh/privacy +PackageUrl: https://www.koodoreader.com/zh +CopyrightUrl: https://www.koodoreader.com/zh/term +ShortDescription: 开源电子阅读解决方案 +Description: Koodo Reader 是一个开源的电子书阅读器,支持多达 15 种主流电子书格式,内置笔记、高亮、翻译功能,助力高效书籍阅读和学习。 +Tags: +- epub +- pdf +- 电子书 +- 电子书阅读器 +- 阅读器 +ReleaseNotes: |- + 新增 + - 导入本地图书支持导入文件夹,请点击导入图书按钮旁的下拉按钮 + - 导入云端图书支持导入文件夹,请点击文件夹旁的导入此文件夹按钮 + - 导入云端图书支持导入 Google Drive 和 OneDrive 中的图书 + - 支持在 Google Drive 中管理图书库数据,新的图书库会直接存储在 Google Drive 根目录下的 KoodoReader 文件夹,由于这个变化,需要您重新授权 Google Drive + - 桌面版新增常见问题模块,请点击右下角的聊天按钮 + - 设置新增窗口始终置顶,请前往设置-通用开启 + -(移动版)导入本地图书支持导入文件夹 + -(移动版)导入云端图书支持导入文件夹 + -(移动版)导入云端图书支持导入 Google Drive 和 OneDrive 中的图书 + -(移动版)支持在 Google Drive 中管理图书库数据,新的图书库会直接存储在 Google Drive 根目录下的 KoodoReader 文件夹,由于这个变化,需要您重新授权 Google Drive + -(移动版)支持导入自定义的阅读背景图片 + -(移动版)新增优化在线 TTS 引擎的设置,用于解决听书时每句话之间短暂的停顿,请前往设置-阅读选项开启 + -(移动版)优化听书的声音选择页面,支持切换 TTS 引擎,按语言筛选声音 + 修复 + - 修复导入 WebDAV 图书时,文件列表中多了一个同名文件夹的问题 + - 修复部分图书页面缩放异常 + - 修复左侧侧边栏中图书封面不显示的问题 + - 修复部分图书中的脚注不弹出展示的问题 + - 修复高亮跨页的文字时不显示文字弹窗的问题 + -(移动版)修复无法从 S3 下载大体积图书的问题 + -(移动版)修复 iOS 上选择文字之后,无法扩选文字的问题 + -(移动版)修复设置阅读背景之后,文字颜色不更新的问题 + -(移动版)修复平板上旋转屏幕之后,图书只展示一列的问题 + -(移动版)修复平板上,章节标题和图书内容重叠的问题 + -(移动版)适配 iOS 26 ,解决图书无法同步的问题 + [!NOTE] + 此版本为开发版,不建议长期使用,如果您希望下载稳定版,请访问 Koodo Reader. + [!TIP] + 我们还提供了高速下载镜像,您也可以从 自托管镜像 下载此版本的安装包 +ReleaseNotesUrl: https://github.com/koodo-reader/koodo-reader/releases/tag/v2.0.3 +Documentations: +- DocumentLabel: 帮助文档 + DocumentUrl: https://www.koodoreader.com/zh/document +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.0.3/AppByTroye.KoodoReader.yaml b/manifests/a/AppByTroye/KoodoReader/2.0.3/AppByTroye.KoodoReader.yaml new file mode 100644 index 0000000000000..38d4e8764ab56 --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.0.3/AppByTroye.KoodoReader.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: AppByTroye.KoodoReader +PackageVersion: 2.0.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.0.4/AppByTroye.KoodoReader.installer.yaml b/manifests/a/AppByTroye/KoodoReader/2.0.4/AppByTroye.KoodoReader.installer.yaml new file mode 100644 index 0000000000000..c85478ac771b0 --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.0.4/AppByTroye.KoodoReader.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: AppByTroye.KoodoReader +PackageVersion: 2.0.4 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +FileExtensions: +- azw +- azw3 +- cb7 +- cbr +- cbt +- cbz +- epub +- fb2 +- mobi +- pdf +ProductCode: 233610fa-2bda-5a09-a37b-75e0bafa7920 +ReleaseDate: 2025-06-29 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://dl.koodoreader.com/v2.0.4/Koodo-Reader-2.0.4.exe + InstallerSha256: C6D1ECC1CB9795EAFBAF7046D0579B07461564F2DC945A14D4B9964C99D7B8F9 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://dl.koodoreader.com/v2.0.4/Koodo-Reader-2.0.4.exe + InstallerSha256: C6D1ECC1CB9795EAFBAF7046D0579B07461564F2DC945A14D4B9964C99D7B8F9 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.0.4/AppByTroye.KoodoReader.locale.en-US.yaml b/manifests/a/AppByTroye/KoodoReader/2.0.4/AppByTroye.KoodoReader.locale.en-US.yaml new file mode 100644 index 0000000000000..7e3821c8092da --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.0.4/AppByTroye.KoodoReader.locale.en-US.yaml @@ -0,0 +1,61 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AppByTroye.KoodoReader +PackageVersion: 2.0.4 +PackageLocale: en-US +Publisher: App by Troye +PublisherUrl: https://www.koodoreader.com/ +PublisherSupportUrl: https://www.koodoreader.com/support +PrivacyUrl: https://www.koodoreader.com/en/privacy +Author: Troye +PackageName: Koodo Reader +PackageUrl: https://www.koodoreader.com/ +License: AGPL-3.0 +LicenseUrl: https://github.com/koodo-reader/koodo-reader/blob/HEAD/LICENSE +Copyright: © 2024 App by Troye. All rights reserved. +CopyrightUrl: https://www.koodoreader.com/en/term +ShortDescription: All-in-one ebook reader +Description: Koodo Reader is an all-in-one eBook reader for Windows, macOS, Linux, and the web, supporting over 15 formats. +Moniker: koodoreader +Tags: +- ebook +- ebook-reader +- epub +- pdf +- reader +ReleaseNotes: |- + New Features + - My Notes and My Highlights now support filtering by book. Click the "Filter by Book" button in the upper-right corner. + - Added an option to enable auto-launch with system startup in Settings > General. + - Added support for clearing set background and text colors. Click the "Clear" button next to the options. + - (Mobile) Added an auto-reading feature—books will scroll automatically at your set reading speed. Tap the "More" button in the upper-right corner of the reading page to enable it. + - (Mobile) Added over 10 built-in fonts, Including Noto Sans, Noto Serif, EB Garamond and more. + - (Mobile) Optimized the language selection in the text-to-speech voice settings, now supporting internationalization (no longer displays language codes). + - (Mobile) Added an extra confirmation step before clear all data. + - (Mobile) Koodo Reader will now appear as an optional app when opening book files on your phone. + - (Mobile) Newly imported scanned PDFs will now automatically open with the native PDF reader to enhance PDF performance. + Fixes + - Fixed delayed updates to the total book count after switching bookshelves. + - Fixed startup errors on some Ubuntu devices. + - Fixed the pop-up position when selecting text in double-page mode. + - Fixed an issue where page width could turn negative, causing text to disappear. + - Fixed issues where some books couldn’t navigate via table of contents or display footnotes. + - Fixed interruptions in AI output when the server region is set to China. + - Fixed the position of the "Export All" menu. + - Fixed the position of the customer support window. + - (Mobile) Fixed elements being obscured by the Dynamic Island in landscape mode. + - (Mobile) Fixed PDF misalignment in single-page mode. + - (Mobile) Fixed delays when opening the reading menu. + - (Mobile) Fixed the reading menu remaining visible after exiting the reading interface. + - (Mobile) Fixed an issue where iOS would redirect to a "not found" page when opening shared files. + [!NOTE] + This is a developer release and is NOT recommended for general use. For stable releases, please visit Koodo Reader. + [!TIP] + You can also download the installation package for this version from the our self-hosted mirror. +ReleaseNotesUrl: https://github.com/koodo-reader/koodo-reader/releases/tag/v2.0.4 +Documentations: +- DocumentLabel: Document + DocumentUrl: https://www.koodoreader.com/document +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.0.4/AppByTroye.KoodoReader.locale.zh-CN.yaml b/manifests/a/AppByTroye/KoodoReader/2.0.4/AppByTroye.KoodoReader.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3ee92a4358e63 --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.0.4/AppByTroye.KoodoReader.locale.zh-CN.yaml @@ -0,0 +1,54 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: AppByTroye.KoodoReader +PackageVersion: 2.0.4 +PackageLocale: zh-CN +PublisherUrl: https://www.koodoreader.com/zh +PublisherSupportUrl: https://www.koodoreader.com/zh/support +PrivacyUrl: https://www.koodoreader.com/zh/privacy +PackageUrl: https://www.koodoreader.com/zh +CopyrightUrl: https://www.koodoreader.com/zh/term +ShortDescription: 开源电子阅读解决方案 +Description: Koodo Reader 是一个开源的电子书阅读器,支持多达 15 种主流电子书格式,内置笔记、高亮、翻译功能,助力高效书籍阅读和学习。 +Tags: +- epub +- pdf +- 电子书 +- 电子书阅读器 +- 阅读器 +ReleaseNotes: |- + 新增 + - 我的笔记、我的高亮支持按照图书进行筛选,请点击页面右上角的按图书筛选按钮 + - 设置新增开机自启动的选项,请前往设置-通用开启 + - 支持清除已经设置的背景颜色和文字颜色,请点击选项旁的清除按钮 + -(移动版)新增自动阅读功能,图书将按照您设定的阅读速度自动滚动,请点击阅读页面右上角的更多按钮开启 + -(移动版)新增 10 余款内置字体,包括思源宋体,霞鹜文楷,朱雀仿宋等 + -(移动版)听书声音选择页面的语言选项优化,支持国际化,不再显示语言代码 + -(移动版)删除全部数据之前增加额外的确认步骤 + -(移动版)现在当您尝试打开手机上的图书文件时,Koodo Reader 将作为可选的打开方式展示 + -(移动版)现在新导入的扫描版 PDF 将自动使用原生 PDF 阅读器打开,以提升 PDF 性能 + 修复 + - 修复切换书架之后,图书总数更新不及时的问题 + - 修复部分 Ubuntu 设备上启动之后的报错 + - 修复双页模式下选择文字的弹窗位置问题 + - 修复页面宽度变成负值,导致不显示文字的问题 + - 修复部分图书无法目录跳转和显示脚注的问题 + - 修复服务器地区选择中国之后,AI 功能输出文字中断的问题 + - 修复导出全部菜单的位置问题 + - 修复反馈建议窗口的位置问题 + -(移动版)修复手机横屏下,App 元素被灵动岛遮挡的问题 + -(移动版)修复 PDF 在单页模式下,上下不居中的问题 + -(移动版)修复阅读菜单弹出的延迟问题 + -(移动版)修复阅读菜单退出阅读之后仍然显示的问题 + -(移动版)修复 iOS 打开分享文件时跳转到 not found 页面的问题 + [!NOTE] + 此版本为开发版,不建议长期使用,如果您希望下载稳定版,请访问 Koodo Reader. + [!TIP] + 我们还提供了高速下载镜像,您也可以从 自托管镜像 下载此版本的安装包 +ReleaseNotesUrl: https://github.com/koodo-reader/koodo-reader/releases/tag/v2.0.4 +Documentations: +- DocumentLabel: 帮助文档 + DocumentUrl: https://www.koodoreader.com/zh/document +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.0.4/AppByTroye.KoodoReader.yaml b/manifests/a/AppByTroye/KoodoReader/2.0.4/AppByTroye.KoodoReader.yaml new file mode 100644 index 0000000000000..25c263f4ef1ab --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.0.4/AppByTroye.KoodoReader.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: AppByTroye.KoodoReader +PackageVersion: 2.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.0.5/AppByTroye.KoodoReader.installer.yaml b/manifests/a/AppByTroye/KoodoReader/2.0.5/AppByTroye.KoodoReader.installer.yaml new file mode 100644 index 0000000000000..d1c4fd6788eaa --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.0.5/AppByTroye.KoodoReader.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: AppByTroye.KoodoReader +PackageVersion: 2.0.5 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +FileExtensions: +- azw +- azw3 +- cb7 +- cbr +- cbt +- cbz +- epub +- fb2 +- mobi +- pdf +ProductCode: 233610fa-2bda-5a09-a37b-75e0bafa7920 +ReleaseDate: 2025-07-06 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://dl.koodoreader.com/v2.0.5/Koodo-Reader-2.0.5.exe + InstallerSha256: C795F306C7610807E57DEF1DDDBF3ACCBFC9FB3CB9CF9458AA82F61E8B76D817 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://dl.koodoreader.com/v2.0.5/Koodo-Reader-2.0.5.exe + InstallerSha256: C795F306C7610807E57DEF1DDDBF3ACCBFC9FB3CB9CF9458AA82F61E8B76D817 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.0.5/AppByTroye.KoodoReader.locale.en-US.yaml b/manifests/a/AppByTroye/KoodoReader/2.0.5/AppByTroye.KoodoReader.locale.en-US.yaml new file mode 100644 index 0000000000000..6a04235cc1beb --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.0.5/AppByTroye.KoodoReader.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: AppByTroye.KoodoReader +PackageVersion: 2.0.5 +PackageLocale: en-US +Publisher: App by Troye +PublisherUrl: https://www.koodoreader.com/ +PublisherSupportUrl: https://www.koodoreader.com/support +PrivacyUrl: https://www.koodoreader.com/en/privacy +Author: Troye +PackageName: Koodo Reader +PackageUrl: https://www.koodoreader.com/ +License: AGPL-3.0 +LicenseUrl: https://github.com/koodo-reader/koodo-reader/blob/HEAD/LICENSE +Copyright: © 2024 App by Troye. All rights reserved. +CopyrightUrl: https://www.koodoreader.com/en/term +ShortDescription: All-in-one ebook reader +Description: Koodo Reader is an all-in-one eBook reader for Windows, macOS, Linux, and the web, supporting over 15 formats. +Moniker: koodoreader +Tags: +- ebook +- ebook-reader +- epub +- pdf +- reader +ReleaseNotes: |- + New Features + - Added a reminder that folders need to be created in advance when adding WebDAV + - PDF reader now supports rendering from even-numbered pages for better display of certain books. Enable this in the right-hand reading options panel + - (Mobile) Added a reminder that folders need to be created in advance when adding WebDAV + - (Mobile) Built-in fonts are now categorized and displayed by language + - (Mobile) Added WebView version detection, with proactive prompts for users with outdated WebView versions + Fixes + - Fixed the misalignment of top and bottom panels when the right-hand reading options panel is pinned + - Fixed inaccurate reading progress for some books + - Fixed empty file lists when importing books from OneDrive and Google Drive with folder names containing Chinese characters + - Fixed the issue where the web version couldn’t authorize local folders on first launch + - Fixed missing text popups when selecting text beyond the page in scroll mode + - Fixed text being obscured in some books + - Fixed the issue where clearing text color in dark mode didn’t take effect + - (Mobile) Fixed inaccurate reading progress for some books + - (Mobile) Fixed empty file lists when importing books from OneDrive and Google Drive with folder names containing Chinese characters + - (Mobile) Fixed the issue where Koodo Sync didn’t automatically sync after the first data source binding + - (Mobile) Fixed system font settings not applying after restarting the app + - (Mobile) Fixed system font settings in dropdown menus not taking effect + - (Mobile) Fixed a blank area obscuring the app when typing in some popups + - (Mobile) Fixed headers and footers appearing on top of page-turning animations + - (Mobile) Fixed the loading animation persisting when no search results were found in book search + [!NOTE] + This is a developer release and is NOT recommended for general use. For stable releases, please visit Koodo Reader. + [!TIP] + You can also download the installation package for this version from the our self-hosted mirror. +ReleaseNotesUrl: https://github.com/koodo-reader/koodo-reader/releases/tag/v2.0.5 +Documentations: +- DocumentLabel: Document + DocumentUrl: https://www.koodoreader.com/document +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.0.5/AppByTroye.KoodoReader.locale.zh-CN.yaml b/manifests/a/AppByTroye/KoodoReader/2.0.5/AppByTroye.KoodoReader.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8e1f00ab28251 --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.0.5/AppByTroye.KoodoReader.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: AppByTroye.KoodoReader +PackageVersion: 2.0.5 +PackageLocale: zh-CN +PublisherUrl: https://www.koodoreader.com/zh +PublisherSupportUrl: https://www.koodoreader.com/zh/support +PrivacyUrl: https://www.koodoreader.com/zh/privacy +PackageUrl: https://www.koodoreader.com/zh +CopyrightUrl: https://www.koodoreader.com/zh/term +ShortDescription: 开源电子阅读解决方案 +Description: Koodo Reader 是一个开源的电子书阅读器,支持多达 15 种主流电子书格式,内置笔记、高亮、翻译功能,助力高效书籍阅读和学习。 +Tags: +- epub +- pdf +- 电子书 +- 电子书阅读器 +- 阅读器 +ReleaseNotes: |- + 新增 + - 添加 WebDAV 时增加文件夹需要提前创建的提示 + - PDF 阅读器新增从偶数页开始渲染的设置,用于更好的展示部分图书的内容,请在右侧阅读选项面板中开启 + -(移动版)添加 WebDAV 时增加文件夹需要提前创建的提示 + -(移动版)内置字体按照字体语言分类展示 + -(移动版)添加笔记弹窗改为只有拖动 handler 时才会收起弹窗 + -(移动版)增加 Webview 版本检测,并主动提示用户的 Webview 版本太低 + 修复 + - 修复固定右侧阅读选项面板之后,顶部和底部的面板不居中的问题 + - 修复部分图书阅读进度不精确的问题 + - 修复导入 OneDrive 和 Google Drive 中的图书,文件夹名包含中文时文件列表为空的问题 + - 修复首次打开网页版始终无法授权本地文件夹的问题 + - 修复滚动模式下选择文件超出页面时不显示文字弹窗的问题 + - 修复部分图书文字被遮挡的问题 + - 修复黑夜模式下清除文字颜色不生效的问题 + -(移动版)修复部分图书阅读进度不精确的问题 + -(移动版)修复导入 OneDrive 和 Google Drive 中的图书,文件夹名包含中文时文件列表为空的问题 + -(移动版)修复开启 Koodo Sync 之后,首次绑定数据源之后不自动同步的问题 + -(移动版)修复系统字体设置重启 App 之后不生效的问题 + -(移动版)修复下拉菜单中系统字体设置不生效的问题 + -(移动版)修复书中搜索和 AI 问书弹窗输入文字时,键盘顶部出现一片空白遮挡的问题 + -(移动版)修复页眉和页脚显示在翻页动画顶部的问题 + -(移动版)修复书中搜索如果没有搜到结果,就一直展示加载中动画的问题 + [!NOTE] + 此版本为开发版,不建议长期使用,如果您希望下载稳定版,请访问 Koodo Reader. + [!TIP] + 我们还提供了高速下载镜像,您也可以从 自托管镜像 下载此版本的安装包 +ReleaseNotesUrl: https://github.com/koodo-reader/koodo-reader/releases/tag/v2.0.5 +Documentations: +- DocumentLabel: 帮助文档 + DocumentUrl: https://www.koodoreader.com/zh/document +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.0.5/AppByTroye.KoodoReader.yaml b/manifests/a/AppByTroye/KoodoReader/2.0.5/AppByTroye.KoodoReader.yaml new file mode 100644 index 0000000000000..18fc129147881 --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.0.5/AppByTroye.KoodoReader.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: AppByTroye.KoodoReader +PackageVersion: 2.0.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppFlowy/AppFlowy/0.9.4/AppFlowy.AppFlowy.installer.yaml b/manifests/a/AppFlowy/AppFlowy/0.9.4/AppFlowy.AppFlowy.installer.yaml new file mode 100644 index 0000000000000..1fbb6122d8838 --- /dev/null +++ b/manifests/a/AppFlowy/AppFlowy/0.9.4/AppFlowy.AppFlowy.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AppFlowy.AppFlowy +PackageVersion: 0.9.4 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallerSwitches: + Silent: /sp- /verysilent /norestart + SilentWithProgress: /sp- /silent /norestart +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: AppFlowy_is1 +ReleaseDate: 2025-07-02 +AppsAndFeaturesEntries: +- ProductCode: AppFlowy_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\AppFlowy\' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/AppFlowy-IO/AppFlowy/releases/download/0.9.4/AppFlowy-0.9.4-windows-x86_64.exe + InstallerSha256: FD828D51529604FF63A9527BCDC2FD385E9C4EC0D22F135BD10DAD51A0FC0968 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppFlowy/AppFlowy/0.9.4/AppFlowy.AppFlowy.locale.en-US.yaml b/manifests/a/AppFlowy/AppFlowy/0.9.4/AppFlowy.AppFlowy.locale.en-US.yaml new file mode 100644 index 0000000000000..0db15352a72dd --- /dev/null +++ b/manifests/a/AppFlowy/AppFlowy/0.9.4/AppFlowy.AppFlowy.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AppFlowy.AppFlowy +PackageVersion: 0.9.4 +PackageLocale: en-US +Publisher: AppFlowy-IO +PublisherUrl: https://github.com/AppFlowy-IO +PublisherSupportUrl: https://github.com/AppFlowy-IO/AppFlowy/issues +PackageName: AppFlowy +PackageUrl: https://github.com/AppFlowy-IO/AppFlowy +License: AGPL-3.0 +LicenseUrl: https://github.com/AppFlowy-IO/AppFlowy/blob/HEAD/LICENSE +Copyright: Copyright (C) 2007 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/AppFlowy-IO/AppFlowy/blob/main/LICENSE +ShortDescription: The Open Source Alternative To Notion. +Description: |- + AppFlowy is an open source alternative to Notion. + You are in charge of your data and customizations. +Tags: +- content-management +- content-services +- editor +- flutter +- flutter-app +- flutter-apps +- flutter-examples +- flutter-ui +- low-code +- no-code +- notion +- notion-alternative +- rust +- rust-lang +- rust-language +- wiki +ReleaseNotes: |- + Version 0.9.4 – 02/07/2025 + Desktop + New Features + - Private page sharing: Add members to private pages with Can View or Can Edit permissions + - Guest editor collaboration: Invite non-members (guest editors) to collaborate in real-time on your pages + - Shared with me: Browse all pages shared with you under the new Shared with me section + - New syncing protocol: Optimized for faster, more reliable multi-user and multi-device data sync + Mobile + New Features + - Shared page collaboration: View and edit pages that have been shared with you on iOS and Android + - New syncing protocol: Optimized for faster, more reliable multi-user and multi-device data sync +ReleaseNotesUrl: https://github.com/AppFlowy-IO/AppFlowy/releases/tag/0.9.4 +PurchaseUrl: https://ko-fi.com/appflowy +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppFlowy/AppFlowy/0.9.4/AppFlowy.AppFlowy.yaml b/manifests/a/AppFlowy/AppFlowy/0.9.4/AppFlowy.AppFlowy.yaml new file mode 100644 index 0000000000000..46034c893bb5e --- /dev/null +++ b/manifests/a/AppFlowy/AppFlowy/0.9.4/AppFlowy.AppFlowy.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: AppFlowy.AppFlowy +PackageVersion: 0.9.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.installer.yaml b/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.installer.yaml index 3b222288cabc7..d88a67078b116 100644 --- a/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.installer.yaml +++ b/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.installer.yaml @@ -1,4 +1,4 @@ -# Created with YamlCreate.ps1 Dumplings Mod +# Automatically updated by the winget bot at 2025/Jun/25 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Appest.Dida @@ -12,9 +12,9 @@ ReleaseDate: 2025-06-19 Installers: - Architecture: x86 InstallerUrl: https://cdn.dida365.cn/download/win/dida_win_setup_release_x86_6320.exe - InstallerSha256: 66257D070E4E371C6C6B66C2763C682AF71EC3648A2B8BDC461A1F05955C7EAA + InstallerSha256: C32A0A0D5771C138D11D0A92814A275DC3B733C45CE1D0AECB9A15FECFD98577 - Architecture: x64 InstallerUrl: https://cdn.dida365.cn/download/win64/dida_win_setup_release_x64_6320.exe - InstallerSha256: 635A6C3AFA68DABEF8E0D3461C1B8C289C5D4BF3A786A866D19D603015A86588 + InstallerSha256: 3A4A4218659535CFFF3C51C450E9A683806414748739183A55727F05660E0DF1 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.locale.en-US.yaml b/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.locale.en-US.yaml index 8ad52e2327477..2015337e817d4 100644 --- a/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.locale.en-US.yaml +++ b/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with YamlCreate.ps1 Dumplings Mod +# Automatically updated by the winget bot at 2025/Jun/25 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Appest.Dida diff --git a/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.locale.zh-CN.yaml b/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.locale.zh-CN.yaml index 7a1ad870a3a02..fb2885c57a4c9 100644 --- a/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.locale.zh-CN.yaml +++ b/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with YamlCreate.ps1 Dumplings Mod +# Automatically updated by the winget bot at 2025/Jun/25 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Appest.Dida diff --git a/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.yaml b/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.yaml index 5909c560a952b..16898b35e2942 100644 --- a/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.yaml +++ b/manifests/a/Appest/Dida/6.3.2.0/Appest.Dida.yaml @@ -1,4 +1,4 @@ -# Created with YamlCreate.ps1 Dumplings Mod +# Automatically updated by the winget bot at 2025/Jun/25 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Appest.Dida diff --git a/manifests/a/Appest/Dida/6.3.3.0/Appest.Dida.installer.yaml b/manifests/a/Appest/Dida/6.3.3.0/Appest.Dida.installer.yaml new file mode 100644 index 0000000000000..65f2e620d029e --- /dev/null +++ b/manifests/a/Appest/Dida/6.3.3.0/Appest.Dida.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: Appest.Dida +PackageVersion: 6.3.3.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- ticktick +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x86 + InstallerUrl: https://cdn.dida365.cn/download/win/dida_win_setup_release_x86_6330.exe + InstallerSha256: B6FD6721633CB2C4CD331C38D9A6854345890D50267B71D10425873879AD3CD4 +- Architecture: x64 + InstallerUrl: https://cdn.dida365.cn/download/win64/dida_win_setup_release_x64_6330.exe + InstallerSha256: BBE9D5AC55CF96A689C31D2B57C0654F21782358BB2A9911318AE76F6E644AE2 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Appest/Dida/6.3.3.0/Appest.Dida.locale.en-US.yaml b/manifests/a/Appest/Dida/6.3.3.0/Appest.Dida.locale.en-US.yaml new file mode 100644 index 0000000000000..1cae41c3271f9 --- /dev/null +++ b/manifests/a/Appest/Dida/6.3.3.0/Appest.Dida.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: Appest.Dida +PackageVersion: 6.3.3.0 +PackageLocale: en-US +Publisher: 杭州随笔记网络技术有限公司 +PublisherUrl: https://www.dida365.com +PublisherSupportUrl: https://help.dida365.com +PrivacyUrl: https://dida365.com/about/privacy +Author: Hangzhou Suibiji Network Technology Co., Ltd. +PackageName: 滴答清单 +PackageUrl: https://www.dida365.com +License: Proprietary +LicenseUrl: https://dida365.com/about/tos +Copyright: © 2024 DIDA Team All rights reserved +ShortDescription: To-Do List & Calendar +Description: |- + Dida is a powerful to-do & task management app with seamless cloud synchronization across all your devices. + Whether you need to schedule an agenda, make memos, share shopping lists, collaborate in a team, or even develop a new habit, Dida is always here to help you get stuff done and keep life on track. +Tags: +- agenda +- calendar +- checklist +- collaboration +- gtd +- list +- memo +- memorandum +- notes +- schedule +- task +- to-do +- todo +ReleaseNotes: |- + Optimized Focus Record Experience + - More Flexible Editing: Removed restrictions for adding and deleting focus sessions—manage your records more freely. + - Added Filters: Filter records by date, duration, or linked status to quickly find what you need. + - Clear History: Easily remove all focus records and start fresh whenever you need. +PurchaseUrl: https://www.dida365.com/about/upgrade +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Appest/Dida/6.3.3.0/Appest.Dida.locale.zh-CN.yaml b/manifests/a/Appest/Dida/6.3.3.0/Appest.Dida.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e07832e998c3b --- /dev/null +++ b/manifests/a/Appest/Dida/6.3.3.0/Appest.Dida.locale.zh-CN.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Appest.Dida +PackageVersion: 6.3.3.0 +PackageLocale: zh-CN +Publisher: 杭州随笔记网络技术有限公司 +PublisherUrl: https://www.dida365.com +PublisherSupportUrl: https://help.dida365.com +PrivacyUrl: https://dida365.com/about/privacy +Author: 杭州随笔记网络技术有限公司 +PackageName: 滴答清单 +PackageUrl: https://www.dida365.com +License: 专有软件 +LicenseUrl: https://dida365.com/about/tos +Copyright: 版权所有 ©2024 滴答清单团队 保留一切权力 +ShortDescription: 专注日历提醒事项和时间管理番茄钟 +Description: 滴答清单,一款轻便的待办事项(Todo)、日程管理(GTD)应用,全球逾千万用户的共同选择。它可以帮你制定项目计划、设置会议提醒、安排行程规划、保持工作专注,还能用于记录备忘、整理购物清单。滴答清单集计划表、备忘录、日程清单、笔记、便签、闹钟、日历、番茄钟、在线协作多种实用功能于一体,是你高效办公、目标管理、习惯养成及便捷生活的得力助手。 +Tags: +- 任务 +- 列表 +- 协作 +- 协同 +- 备忘 +- 备忘录 +- 待办 +- 待办事项 +- 提醒事项 +- 日历 +- 日程 +- 日程管理 +- 时间管理 +- 清单 +- 笔记 +- 议程 +ReleaseNotes: |- + 专注记录体验优化 + - 添加与删除更灵活:移除操作限制,支持自由添加和删除专注记录,使用更顺手。 + - 新增筛选功能:支持按“日期”、“时长”、“关联状态”等维度筛选,快速找到所需记录。 + - 支持一键清空:新增清空全部记录功能,轻松整理,开启全新阶段。 +PurchaseUrl: https://www.dida365.com/about/upgrade +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Appest/Dida/6.3.3.0/Appest.Dida.yaml b/manifests/a/Appest/Dida/6.3.3.0/Appest.Dida.yaml new file mode 100644 index 0000000000000..743afdb601808 --- /dev/null +++ b/manifests/a/Appest/Dida/6.3.3.0/Appest.Dida.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: Appest.Dida +PackageVersion: 6.3.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Appest/TickTick/6.3.2.0/Appest.TickTick.installer.yaml b/manifests/a/Appest/TickTick/6.3.2.0/Appest.TickTick.installer.yaml new file mode 100644 index 0000000000000..f0f79e1877f9d --- /dev/null +++ b/manifests/a/Appest/TickTick/6.3.2.0/Appest.TickTick.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: Appest.TickTick +PackageVersion: 6.3.2.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- ticktick +ReleaseDate: 2025-06-19 +Installers: +- Architecture: x86 + InstallerUrl: https://d2atcrkye2ik4e.cloudfront.net/download/win/tick_win_setup_release_x86_6320.exe + InstallerSha256: FC694A589E18A43EDE4AB9E39CD4844DA2A8D3F6E3016DCAB6A8212D893D507F +- Architecture: x64 + InstallerUrl: https://d2atcrkye2ik4e.cloudfront.net/download/win64/tick_win_setup_release_x64_6320.exe + InstallerSha256: E4C8F8A27E74D346E7860E9CD5A51575E2EF2B12E99D4C6D9C37788522D2C645 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Appest/TickTick/6.3.2.0/Appest.TickTick.locale.en-US.yaml b/manifests/a/Appest/TickTick/6.3.2.0/Appest.TickTick.locale.en-US.yaml new file mode 100644 index 0000000000000..5227a24367c7e --- /dev/null +++ b/manifests/a/Appest/TickTick/6.3.2.0/Appest.TickTick.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: Appest.TickTick +PackageVersion: 6.3.2.0 +PackageLocale: en-US +Publisher: Appest.com +PublisherUrl: https://ticktick.com/ +PublisherSupportUrl: https://support.ticktick.com/ +PrivacyUrl: https://www.ticktick.com/about/privacy +Author: Appest Inc. +PackageName: TickTick +PackageUrl: https://www.ticktick.com/ +License: Proprietary +LicenseUrl: https://ticktick.com/about/tos +Copyright: © 2024 TickTick Team All rights reserved +ShortDescription: To-Do List & Calendar +Description: TickTick is a powerful to-do & task management app with seamless cloud synchronization across all your devices. Whether you need to schedule an agenda, make memos, share shopping lists, collaborate in a team, or even develop a new habit, TickTick is always here to help you get stuff done and keep life on track. +Tags: +- agenda +- calendar +- checklist +- collaboration +- gtd +- list +- memo +- memorandum +- notes +- reminder +- schedule +- task +- to-do +- todo +ReleaseNotes: |- + Optimized Countdown Experience: + - Grouped Display: Enable "Show Group" to display separate tabs for Countdowns, Anniversaries, Birthdays, and Holidays, making browsing easier by category. (Go to the Countdown tab > More Menu > Show Group.) + - Flexible Time Format: Click the number of days to toggle between days, weeks, or years for a more personalized view. + - Birthday Age Display: Enable "Show Age" on the birthday edit page to automatically calculate and display the person's age. +ReleaseNotesUrl: https://www.ticktick.com/public/changelog/en.html +PurchaseUrl: https://www.ticktick.com/about/upgrade +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Appest/TickTick/6.3.2.0/Appest.TickTick.locale.zh-CN.yaml b/manifests/a/Appest/TickTick/6.3.2.0/Appest.TickTick.locale.zh-CN.yaml new file mode 100644 index 0000000000000..491c797b68fbe --- /dev/null +++ b/manifests/a/Appest/TickTick/6.3.2.0/Appest.TickTick.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: Appest.TickTick +PackageVersion: 6.3.2.0 +PackageLocale: zh-CN +Publisher: Appest.com +PublisherUrl: https://ticktick.com/ +PublisherSupportUrl: https://support.ticktick.com/ +PrivacyUrl: https://www.ticktick.com/about/privacy +Author: Appest Inc. +PackageName: TickTick +PackageUrl: https://www.ticktick.com/ +License: 专有软件 +LicenseUrl: https://ticktick.com/about/tos +Copyright: 版权所有©2024 TickTick团队 保留一切权力 +ShortDescription: 专注日历提醒事项和时间管理番茄钟 +Description: TickTick,一款轻便的待办事项(Todo)、日程管理(GTD)应用,全球逾千万用户的共同选择。它可以帮你制定项目计划、设置会议提醒、 安排行程规划、保持工作专注,还能用于记录备忘、整理购物清单。TickTick 集计划表、备忘录、日程清单、笔记、便签、闹钟、日历、番茄钟、在线协作多种实用功能于一体,是你高效办公、目标管理、习惯养成及便捷生活的得力助手。 +Tags: +- 任务 +- 列表 +- 协作 +- 协同 +- 备忘 +- 备忘录 +- 待办 +- 待办事项 +- 提醒事项 +- 日历 +- 日程 +- 日程管理 +- 时间管理 +- 清单 +- 笔记 +- 议程 +ReleaseNotes: |- + 倒数纪念日体验优化: + - 新增分组显示:开启“显示分组”后,倒数日、纪念日、生日和节日将自动分类,清晰有序,一目了然。(在模块首页,点击“更多菜单” > “显示分组”即可开启) + - 支持时间格式切换:点击天数即可切换为天/周/年格式。 + - 生日支持显示岁数:在编辑界面开启“显示岁数”后,生日将自动计算年龄,方便直接查看。 +ReleaseNotesUrl: https://www.dida365.com/public/changelog/zh.html +PurchaseUrl: https://www.ticktick.com/about/upgrade +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Appest/TickTick/6.3.2.0/Appest.TickTick.yaml b/manifests/a/Appest/TickTick/6.3.2.0/Appest.TickTick.yaml new file mode 100644 index 0000000000000..da179692b4a55 --- /dev/null +++ b/manifests/a/Appest/TickTick/6.3.2.0/Appest.TickTick.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: Appest.TickTick +PackageVersion: 6.3.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppiumDevelopers/AppiumInspector/2025.7.1/AppiumDevelopers.AppiumInspector.installer.yaml b/manifests/a/AppiumDevelopers/AppiumInspector/2025.7.1/AppiumDevelopers.AppiumInspector.installer.yaml new file mode 100644 index 0000000000000..820291b10abe3 --- /dev/null +++ b/manifests/a/AppiumDevelopers/AppiumInspector/2025.7.1/AppiumDevelopers.AppiumInspector.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: AppiumDevelopers.AppiumInspector +PackageVersion: 2025.7.1 +InstallerLocale: en-US +InstallerType: nullsoft +ProductCode: 5335de9f-10e5-5584-90c5-274c050b3ea9 +ReleaseDate: 2025-07-06 +AppsAndFeaturesEntries: +- DisplayName: Appium Inspector 2025.7.1 + ProductCode: 5335de9f-10e5-5584-90c5-274c050b3ea9 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/appium/appium-inspector/releases/download/v2025.7.1/Appium-Inspector-2025.7.1-win-x64.exe + InstallerSha256: AC5BB1C423AC296B5D2A642C7DBBB817F3A6CC5E19E46F39D76F957CABACAB4C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppiumDevelopers/AppiumInspector/2025.7.1/AppiumDevelopers.AppiumInspector.locale.en-US.yaml b/manifests/a/AppiumDevelopers/AppiumInspector/2025.7.1/AppiumDevelopers.AppiumInspector.locale.en-US.yaml new file mode 100644 index 0000000000000..dedd6c1fe4771 --- /dev/null +++ b/manifests/a/AppiumDevelopers/AppiumInspector/2025.7.1/AppiumDevelopers.AppiumInspector.locale.en-US.yaml @@ -0,0 +1,64 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AppiumDevelopers.AppiumInspector +PackageVersion: 2025.7.1 +PackageLocale: en-US +Publisher: Appium Developers +PublisherUrl: https://github.com/appium +PublisherSupportUrl: https://github.com/appium/appium-inspector/issues +PackageName: Appium Inspector +PackageUrl: https://github.com/appium/appium-inspector +License: Apache-2.0 +LicenseUrl: https://github.com/appium/appium-inspector/blob/HEAD/LICENSE +Copyright: Copyright © 2023 Appium Developers +ShortDescription: An app inspector for use with an Appium server +Tags: +- appium +- inspector +ReleaseNotes: |- + Highlights + - Theme support + - The Inspector is now available in light, dark, and system themes + - The default theme is system + - Upgrade embedded antd design framework to v5 + - Slightly adjusted overall design + - Buttons, input fields and other elements now use rounded corners + - Adjust Commands list + - Moved Execute Method, Get Settings and Update Settings to the top of the list + - Added 6 new commands + - Removed 27 commands (all of which have execute method replacements) + What's Changed + 🚀 New Features + - feat: adjust Commands tab command list by @eglitise in #2018, #2023 + - refactor: upgrade antd to v5 by @wilhus in #2123 + - feat: dark theme by @wilhus in #2138 + 🛠 Fixes + - chore: update ruby commands by @KazuCocoa in #2020 + - fix: attach to session tab not making requests by @regan-karlewicz in #2103 + - fix: Fix URL in error notification by @wilhus in #2118 + - fix: resolve error when switching saved caps set after closing session by @eglitise in #2146 + - fix: components and icons size by @wilhus in #2147 + - fix: restore style of toggle recording button by @eglitise in #2150 + 📖 Documentation + - docs: add plugin-related information by @eglitise in #2000 + - fix(docs): fix typo by @noritaka1166 in #2096 + - docs: add app settings page for theme & update images by @eglitise in #2161 + 🌐 Localization + - chore: Update translations by @github-actions in #2006, #2019, #2034, #2048, #2107, #2116, #2164 + 🔍 Other Changes + - refactor: fix typos and use optional chaining by @noritaka1166 in #2097 + - chore(deps): remove cheerio from renovate blacklist by @eglitise in #2119 + - refactor: button group to space compact by @wilhus in #2127 + - refactor: use input text area in caps editor by @wilhus in #2129 + - refactor: collapse usage by @wilhus in #2128 + - refactor: notification to hooks usage by @wilhus in #2130 + - ci: add explicit write permission by @KazuCocoa in #2155 + - chore: adjust deprecated antd properties by @eglitise in #2159 + New Contributors + - @noritaka1166 made their first contribution in #2096 + - @wilhus made their first contribution in #2118 + Full Changelog: v2025.3.1...v2025.7.1 +ReleaseNotesUrl: https://github.com/appium/appium-inspector/releases/tag/v2025.7.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AppiumDevelopers/AppiumInspector/2025.7.1/AppiumDevelopers.AppiumInspector.yaml b/manifests/a/AppiumDevelopers/AppiumInspector/2025.7.1/AppiumDevelopers.AppiumInspector.yaml new file mode 100644 index 0000000000000..596dc56b1d6d3 --- /dev/null +++ b/manifests/a/AppiumDevelopers/AppiumInspector/2025.7.1/AppiumDevelopers.AppiumInspector.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: AppiumDevelopers.AppiumInspector +PackageVersion: 2025.7.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apryse/XodoPDFReader/2025.1.0/Apryse.XodoPDFReader.installer.yaml b/manifests/a/Apryse/XodoPDFReader/2025.1.0/Apryse.XodoPDFReader.installer.yaml deleted file mode 100644 index b69e00347655f..0000000000000 --- a/manifests/a/Apryse/XodoPDFReader/2025.1.0/Apryse.XodoPDFReader.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Automatically updated by the winget bot at 2025/Apr/03 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Apryse.XodoPDFReader -PackageVersion: 2025.1.0 -InstallerLocale: en-US -InstallerType: exe -Scope: machine -InstallModes: -- silent -InstallerSwitches: - Silent: -q - SilentWithProgress: -q -UpgradeBehavior: install -FileExtensions: -- pdf -Installers: -- Architecture: x64 - InstallerUrl: https://getpdfstudio.xodo.com/xodopdfreader/XodoPDFReader_win64.exe - InstallerSha256: EE794028FD07E07BFA1619F251B8897524CDF7B5629B2131030D493130B6A395 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/a/Apryse/XodoPDFReader/2025.1.0/Apryse.XodoPDFReader.yaml b/manifests/a/Apryse/XodoPDFReader/2025.1.0/Apryse.XodoPDFReader.yaml deleted file mode 100644 index 6112dde912064..0000000000000 --- a/manifests/a/Apryse/XodoPDFReader/2025.1.0/Apryse.XodoPDFReader.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Apr/03 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Apryse.XodoPDFReader -PackageVersion: 2025.1.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/a/Apryse/XodoPDFReader/2025.2.0/Apryse.XodoPDFReader.installer.yaml b/manifests/a/Apryse/XodoPDFReader/2025.2.0/Apryse.XodoPDFReader.installer.yaml new file mode 100644 index 0000000000000..ff6d401712eec --- /dev/null +++ b/manifests/a/Apryse/XodoPDFReader/2025.2.0/Apryse.XodoPDFReader.installer.yaml @@ -0,0 +1,22 @@ +# Automatically updated by the winget bot at 2025/Jun/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Apryse.XodoPDFReader +PackageVersion: 2025.2.0 +InstallerLocale: en-US +InstallerType: exe +Scope: machine +InstallModes: +- silent +InstallerSwitches: + Silent: -q + SilentWithProgress: -q +UpgradeBehavior: install +FileExtensions: +- pdf +Installers: +- Architecture: x64 + InstallerUrl: https://getpdfstudio.xodo.com/xodopdfreader/XodoPDFReader_win64.exe + InstallerSha256: D3B47B856293F267A47157A1A95615FC89222D0E8F6FB6BE9CE0A59314826014 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Apryse/XodoPDFReader/2025.1.0/Apryse.XodoPDFReader.locale.en-US.yaml b/manifests/a/Apryse/XodoPDFReader/2025.2.0/Apryse.XodoPDFReader.locale.en-US.yaml similarity index 76% rename from manifests/a/Apryse/XodoPDFReader/2025.1.0/Apryse.XodoPDFReader.locale.en-US.yaml rename to manifests/a/Apryse/XodoPDFReader/2025.2.0/Apryse.XodoPDFReader.locale.en-US.yaml index 5404cd12635c2..690332642fa14 100644 --- a/manifests/a/Apryse/XodoPDFReader/2025.1.0/Apryse.XodoPDFReader.locale.en-US.yaml +++ b/manifests/a/Apryse/XodoPDFReader/2025.2.0/Apryse.XodoPDFReader.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Apr/03 +# Automatically updated by the winget bot at 2025/Jun/30 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Apryse.XodoPDFReader -PackageVersion: 2025.1.0 +PackageVersion: 2025.2.0 PackageLocale: en-US Publisher: Apryse PackageName: Xodo PDF Reader diff --git a/manifests/a/Apryse/XodoPDFReader/2025.2.0/Apryse.XodoPDFReader.yaml b/manifests/a/Apryse/XodoPDFReader/2025.2.0/Apryse.XodoPDFReader.yaml new file mode 100644 index 0000000000000..3c78b1456b75b --- /dev/null +++ b/manifests/a/Apryse/XodoPDFReader/2025.2.0/Apryse.XodoPDFReader.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jun/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Apryse.XodoPDFReader +PackageVersion: 2025.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AptosCore/aptos/7.6.0/AptosCore.aptos.installer.yaml b/manifests/a/AptosCore/aptos/7.6.0/AptosCore.aptos.installer.yaml new file mode 100644 index 0000000000000..ff4828b92f8a7 --- /dev/null +++ b/manifests/a/AptosCore/aptos/7.6.0/AptosCore.aptos.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AptosCore.aptos +PackageVersion: 7.6.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: aptos.exe +InstallModes: +- silent +InstallerSwitches: + Custom: -norestart +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aptos-labs/aptos-core/releases/download/aptos-cli-v7.6.0/aptos-cli-7.6.0-Windows-x86_64.zip + InstallerSha256: 16403340D7C722AC6A7A491E0B3D539E21E3760D8BD36C481896F156E47C9834 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AptosCore/aptos/7.6.0/AptosCore.aptos.locale.en-US.yaml b/manifests/a/AptosCore/aptos/7.6.0/AptosCore.aptos.locale.en-US.yaml new file mode 100644 index 0000000000000..d8d4ab738d9f0 --- /dev/null +++ b/manifests/a/AptosCore/aptos/7.6.0/AptosCore.aptos.locale.en-US.yaml @@ -0,0 +1,139 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AptosCore.aptos +PackageVersion: 7.6.0 +PackageLocale: en-US +Publisher: WGB5445 +PublisherUrl: https://github.com/WGB5445 +PublisherSupportUrl: https://github.com/WGB5445 +Author: Aptos Labs +PackageName: Aptos +PackageUrl: https://github.com/aptos-labs/aptos-core +License: Apache-2.0 +LicenseUrl: https://github.com/aptos-labs/aptos-core/blob/HEAD/LICENSE +Copyright: https://github.com/aptos-labs/aptos-core/blob/main/LICENSE +ShortDescription: Cli tool - Aptos is a layer 1 blockchain built to support the widespread use of blockchain through better technology and user experience. +Description: Cli tool - Aptos is a layer 1 blockchain built to support the widespread use of blockchain through better technology and user experience. +Moniker: aptos +Tags: +- aptos +- blockchain +- cli +- move +ReleaseNotes: |- + Commits + - 995dda1: [precommit] re-enable (Zekun Li) #16430 + - 5acc4c6: [pipeline] enable the local flag (Zekun Li) #16430 + - 4ace4e7: [pipeline] add support for order vote disabled (Zekun Li) #16430 + - 1ad348c: fix issue #16195 (#16441) (Jun Xu) #16441 + - 7b5f158: [compiler] Fixing a bug in inferred type defaults (#16469) (Wolfgang Grieskamp) #16469 + - 5a98989: [compiler] Fixing cyclic type replacement leading to stack overflow (#16473) (Wolfgang Grieskamp) #16473 + - d641f20: [compiler] Ensure that all arguments of lambda are curried (#16474) (Wolfgang Grieskamp) #16474 + - db82295: [compiler-v2] Do not warn if native structs have unused type params (#16157) (Vineeth Kashyap) #16157 + - 17a8317: [stateless_account] add feature gating to account api (#16475) (Aaron) #16475 + - 9bb1861: config_buffer fix (#16480) (zhoujunma) #16480 + - 595f2ee: Add TransactionPayloadInner variant in TransactionPayload (#16299) (Satya Vusirikala) #16299 + - 54901bb: we need to separate aptos-experimental workloads separately, as it is only on devnet (#16466) (igor-aptos) #16466 + - 94ce3ff: [compiler-v2] Reorder compiler passes (#16482) (Vineeth Kashyap) #16482 + - 47af10a: [lint] Fix a false positive for needless mutable reference linter (#16488) (Vineeth Kashyap) #16488 + - e85fbda: fix txn-emitter - check secondary source account existance (#16467) (igor-aptos) #16467 + - e9f3e90: Ethereum DAA implementation (#16367) (Maayan) #16367 + - ec4e960: [CLI Movefmt] Added support to format single file (#16472) (Jake Silverman) #16472 + - b8db7aa: Update version pin on snok/install-poetry (Stelian Ionescu) #16496 + - fefd397: [CLI Movefmt] Fix bug where movefmt runs over curr directory if package path given does not exist (#16489) (Jake Silverman) #16489 + - 8fb1ad5: address igors comments (#16498) (Maayan) #16498 + - 123cfbe: delete println for debug (#16502) (Aaron) #16502 + - 193cbb1: update cli-e2e-tests poetry version (Aaron) #16504 + - ceea603: fix cli-e2e-test after defaulting fa store & stateless account (#16486) (Aaron) #16486 + - 22918df: [function values][api] Implement missing signature token conversion (#16505) (Wolfgang Grieskamp) #16505 + - 6db0d9b: [lint] Fix false positive in self assignment lint check (#16490) (Vineeth Kashyap) #16490 + - 73d1386: [compiler-v2] Fix function type display (#16481) (Vineeth Kashyap) #16481 + - 7a17af0: rest-client prints text error (#16508) (Alden Hu) #16508 + - 21a9e2b: fix 16407 (#16476) (Teng Zhang) #16476 + - 8b7ca41: [compiler-v2] Provide error hints when trying to call a closure via field access (#16511) (Vineeth Kashyap) #16511 + - 5cd813f: Transaction validation for orderless transactions (#16307) (Satya Vusirikala) #16307 + - 082d0ac: [compiler-v2] Fix type checking of returns within lambdas (#16514) (Vineeth Kashyap) #16514 + - 8a41be5: Adding closure related tests. (#16436) (Vineeth Kashyap) #16436 + - 16808c7: Storage, API and Protos changes for orderless transactions (#16252) (Satya Vusirikala) #16252 + - 82ee58e: [compiler-v2] Update unused variable checker (#16507) (Vineeth Kashyap) #16507 + - 6508e33: add test txns (#16510) (Renee Tso) #16510 + - c9c0197: Allow txn-generator-lib to use new language features (#16500) (igor-aptos) #16500 + - 1e53167: Add info for debugging conflicts (#16372) (igor-aptos) #16372 + - 519a237: fix bug 16155 (#16497) (Jun Xu) #16497 + - 5fa31e6: [debugger] release sender lock early (#16503) (Alden Hu) #16503 + - dde3795: Update confidential asset transfer to use dispatchable_fungible_asset (#16525) (Oliver He) #16525 + - 6a0e693: [api] fix account txn api after stateless account (#16517) (Aaron) #16517 + - c4b2790: Update Docker images (gedigi) #16531 + - tolerate missing cfs when open read-only (#16536) #16536 (Alden Hu) + - 27a8eec: [Indexer-Grpc-V2] Latency metrics. (#16529) (Guoteng Rao) #16529 + - 8c0b5cf: [compiler-v2] Compiler checks for various reference of a reference (#16527) (Vineeth Kashyap) #16527 + - c6c2099: using new language features for aptos-experimental (#16523) (igor-aptos) #16523 + - 07ff0fd: [scripts] Remove extra scripts (#16457) (Greg Nazario) #16457 + - a96e4ee: replay-on-archive: remove hack to ignore failure on first txn of each chunk (#16515) (Alden Hu) #16515 + - 173c4ed: BlockSTMv2 PR [1/n]: scheduler_status and tests (#16447) (Rati Gelashvili) #16447 + - 8fb4961: Update x25519-dalek to use a version with zeroize 1.6 (#16499) (Oliver He) #16499 + - 55b3c65: [Rust] Update Rust version to 1.80.1 (Josh Lind) #16541 + - 3d79578: [compiler-v2] Error on returning nested tuples (#16540) (Vineeth Kashyap) #16540 + - 91e2205: [trivial][compiler-v2] Raise error when implicitly packing a wrapper struct defined in another module (#16544) (Teng Zhang) #16544 + - 02db872: Fix error code in ristretto255_bulletproofs (#16542) (Oliver He) #16542 + - c984ec2: [exec-pool] Enable new ConsensusMsg::BlockRetrievalRequest (#16142) (Andrew Hariri) #16142 + - a03a618: Add URI field to the evm daa abstract signature (#16524) (Maayan) #16524 + - 6ef1741: Fix transactional tests when aptos-experimental uses some new FV features (#16555) (igor-aptos) #16555 + - 4da6668: [observer] fix if let scope for mutex (Zekun Li) #16570 + - ab93b85: [Experimental][Orderbook] Add market APIs for the orderbook (#16520) (Sital Kedia) #16520 + - a13363f: [pipeline] abort pending persisting blocks properly (Zekun Li) #16573 + - e14efe6: Rust 1.86.0 (#16568) (Greg Nazario) #16568 + - 9764d55: [Experimental][Orderbook] Update the clearinghouse APIs (#16580) (Sital Kedia) #16580 + - 0675d0d: [fuzzer] Added samply as alternative to flamegraph and bumped arbitrary (#16530) (Andrea Cappa (zi0Black)) #16530 + - 55e4f52: Make --chunked-publish usable on all networks (#16557) (igor-aptos) #16557 + - 53c2d87: struct StateSlot: Option with hotness (aldenhu) #16563 + - 102bc3a: Enlarge HotState (#16571) (Alden Hu) #16563 + - 4a79726: refine (aldenhu) #16563 + - 4723413: Use chunking in txn generator lib (#16575) (igor-aptos) #16575 + - f9f7dfe: [vm] Enhance event construction (#16561) (George Mitenkov) #16561 + - 1bfecca: update num-derives num-traits (#16598) (Alden Hu) #16598 + - edd50f0: Refactored prefetch_aptos_framework to utilize cfg_if! for improved clarity and maintainability. (#16591) (Andrea Cappa (zi0Black)) #16591 + - 5197a2b: [Consensus Observer] Fix parent pipeline futures in CO. (Josh Lind) #16603 + - 4f09b3b: Bump gas version to V1_31 (#16566) (Satya Vusirikala) #16566 + - 2dd9c73: fix api/types/src/derive.rs example address (#16613) (Logan Wang) #16613 + - cc83529: [Orderbook] Add re-insert API and cleanup cancel API (#16604) (Sital Kedia) #16604 + - e2f3a57: [vm] Improve init_module error messaging when building packages and running code (#16546) (George Mitenkov) #16546 + - fc0ccb5: Revert "replay-on-archive: remove hack to ignore failure on first txn of each chunk (#16515)" (#16615) (Alden Hu) #16615 + - b1a380f: [Experimantal][Orderbook] Clean up clearinghouse APIs and remove max_settlement_size API (#16618) (Sital Kedia) #16618 + - 9cfb33b: [vm] Transactional tests for VM are now configurable (#16552) (George Mitenkov) #16552 + - abe3bea: [refactoring] Lazy loading preparation (#16394) (George Mitenkov) #16394 + - 0828a59: [vm] Remove raw address display (#16549) (George Mitenkov) #16549 + - a6716c0: [testing] Support for printing function values in transactional tests (#16538) (George Mitenkov) #16538 + - 6d52179: [compiler-v2] Remove copy progpagation (#16608) (Vineeth Kashyap) #16608 + - 02486f4: Make maximum transaction filter size configurable (#16632) (Justin Chang) #16632 + - 9922930: Add API key support to aptos-release-builder (#16627) (Satya Vusirikala) #16627 + - 3a9aa92: Refactor Status: comments, queue manager (#16596) (Rati Gelashvili) #16596 + - e0e49d0: [trivial] Fix outdated error message for invalid optimize option (#16635) (Vineeth Kashyap) #16635 + - 68a49d5: [compiler-v2] Disallow lambda lifting in functions (#16634) (Vineeth Kashyap) #16634 + - 938e35b: Typo in nonce_validation (#16639) (Satya Vusirikala) #16639 + - c4dbe7f: [smoke-test][optqs] remote batch fetch from block voters (#16163) (Balaji Arun) #16163 + - a5bb32d: [Experimental][Orderbook] Remove unique index from the order placement API (#16630) (Sital Kedia) #16630 + - aafb7c2: [Consensus Observer] Fix subscription metrics. (Josh Lind) #16600 + - dac0205: [Consensus Observer] Add and check fallback metric in forge. (Josh Lind) #16600 + - e99fdd5: [forge] print all errors together on test failure (#16640) (Balaji Arun) #16640 + - c351fab: Remove obsolete version field from Docker compose files (Stelian Ionescu) #16647 + - ebdfadf: [ScriptComposer] Remove the usage of Fetch and rely on an externally passed-in Module (#16610) (Logan Wang) #16610 + - 42c8f69: [Consensus Observer] Rename ActiveObserverState to ObserverEpochState. (Josh Lind) #16597 + - 7b2f66e: [Consensus Observer] Add ObserverBlockData struct and move functions. (Josh Lind) #16597 + - 6d2aa02: [Consensus Observer] Add unit tests for block data. (Josh Lind) #16597 + - 3ada356: [Forge] Increase consensus observer fallback thresholds. (Josh Lind) #16597 + - 8e7ecb3: [release] Bump Version Workflow (Balaji Arun) #16648 + - 6ff41a5: [telemetry] export package version (Balaji Arun) #16648 + - 00e0d4d: enable_perkey_jwk_consensus (#16445) (zhoujunma) #16445 + - d290c2f: Add the account restoration processor to local net (#16655) (Oliver He) #16655 + - c0b9a78: [move][docs] fixed confidential_transfer (#16650) (dovgopoly) #16650 + - c1ed1c7: Fix inline for_each* methods in OrderedMap and BigOrderedMap (#16651) (igor-aptos) #16651 + - e6c1a9c: [smt] Use partition_point for partition (wqfish) #16626 + - 32ef767: [Compiler-v2] Do not allow parameters with function types in inline functions to be used as regular parameters (#16478) (Teng Zhang) #16478 + - 6d54f0f: [compiler-v2] Check privileged enum operations outside the defining module (#16652) (Vineeth Kashyap) #16652 + - 997dd0f: [Experimental][Orderbook] Add API to decrease the size of the order without changing its priority (#16621) (Sital Kedia) #16621 + - 53a8ac3: [storage] Add a new sparse merkle tree representing hot state (wqfish) #16629 +ReleaseNotesUrl: https://github.com/aptos-labs/aptos-core/releases/tag/aptos-cli-v7.6.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AptosCore/aptos/7.6.0/AptosCore.aptos.yaml b/manifests/a/AptosCore/aptos/7.6.0/AptosCore.aptos.yaml new file mode 100644 index 0000000000000..ebec33e6fb16b --- /dev/null +++ b/manifests/a/AptosCore/aptos/7.6.0/AptosCore.aptos.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: AptosCore.aptos +PackageVersion: 7.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AquaSecurity/Trivy/0.64.1/AquaSecurity.Trivy.installer.yaml b/manifests/a/AquaSecurity/Trivy/0.64.1/AquaSecurity.Trivy.installer.yaml new file mode 100644 index 0000000000000..17c58fcd77d14 --- /dev/null +++ b/manifests/a/AquaSecurity/Trivy/0.64.1/AquaSecurity.Trivy.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: AquaSecurity.Trivy +PackageVersion: 0.64.1 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: trivy.exe +Commands: +- trivy +FileExtensions: +- trivyignore +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aquasecurity/trivy/releases/download/v0.64.1/trivy_0.64.1_windows-64bit.zip + InstallerSha256: D03BCE6326FF75D041F2499E801357D3DA6B08A28BE085580D9B0BDF84971D12 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AquaSecurity/Trivy/0.64.1/AquaSecurity.Trivy.locale.en-US.yaml b/manifests/a/AquaSecurity/Trivy/0.64.1/AquaSecurity.Trivy.locale.en-US.yaml new file mode 100644 index 0000000000000..d294c70b21e3b --- /dev/null +++ b/manifests/a/AquaSecurity/Trivy/0.64.1/AquaSecurity.Trivy.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AquaSecurity.Trivy +PackageVersion: 0.64.1 +PackageLocale: en-US +Publisher: Aqua Security Software +PublisherUrl: https://www.aquasec.com/ +PublisherSupportUrl: https://github.com/aquasecurity/trivy +PackageName: Trivy +PackageUrl: https://aquasecurity.github.io/trivy +License: Apache-2.0 +LicenseUrl: https://github.com/aquasecurity/trivy/blob/HEAD/LICENSE +ShortDescription: Trivy is a comprehensive and versatile security scanner. +Description: Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more +Moniker: trivy +Tags: +- cli +- containers +- devops-tools +- docker +- golang +- infrastructure-as-code +- kubernetes +- sbom +- security +- security-tools +- vulnerability +- vulnerability-detector +- vulnerability-scanners +ReleaseNotes: |- + Changelog + - 86ee3c1 release: v0.64.1 [release/v0.64] (#9122) + - 4e12722 fix(misconf): skip rewriting expr if attr is nil [backport: release/v0.64] (#9127) + - 9a7d384 fix(cli): Add more non-sensitive flags to telemetry [backport: release/v0.64] (#9124) + - 53adfba fix(rootio): check full version to detect root.io packages [backport: release/v0.64] (#9120) + - 8cf1bf9 fix(alma): parse epochs from rpmqa file [backport: release/v0.64] (#9119) +ReleaseNotesUrl: https://github.com/aquasecurity/trivy/releases/tag/v0.64.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AquaSecurity/Trivy/0.64.1/AquaSecurity.Trivy.yaml b/manifests/a/AquaSecurity/Trivy/0.64.1/AquaSecurity.Trivy.yaml new file mode 100644 index 0000000000000..0ecd253ba6c1d --- /dev/null +++ b/manifests/a/AquaSecurity/Trivy/0.64.1/AquaSecurity.Trivy.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: AquaSecurity.Trivy +PackageVersion: 0.64.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Arelle/Arelle/2.37.28/Arelle.Arelle.installer.yaml b/manifests/a/Arelle/Arelle/2.37.28/Arelle.Arelle.installer.yaml new file mode 100644 index 0000000000000..10129738619c0 --- /dev/null +++ b/manifests/a/Arelle/Arelle/2.37.28/Arelle.Arelle.installer.yaml @@ -0,0 +1,33 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Arelle.Arelle +PackageVersion: 2.37.28 +UpgradeBehavior: install +ReleaseDate: 2025-06-27 +Installers: +- Architecture: neutral + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: arelleCmdLine.exe + PortableCommandAlias: arelleCmdLine + - RelativeFilePath: arelleGUI.exe + PortableCommandAlias: arelleGUI + InstallerUrl: https://github.com/Arelle/Arelle/releases/download/2.37.28/arelle-win-2.37.28.zip + InstallerSha256: B320881BE0038BFCBC95353565412F8EB842AA70B301E26BE2BB7A576F91FBB9 + ArchiveBinariesDependOnPath: true +- InstallerLocale: en-US + Architecture: x64 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://github.com/Arelle/Arelle/releases/download/2.37.28/arelle-win-2.37.28.exe + InstallerSha256: B5C4162EE63B4FDED3D5F81D6839882133B3FBE1CAC6B44FB7D4BFE547F7FBB8 + ProductCode: Arelle + AppsAndFeaturesEntries: + - Publisher: arelle.org + ProductCode: Arelle + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Arelle' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Arelle/Arelle/2.37.28/Arelle.Arelle.locale.en-US.yaml b/manifests/a/Arelle/Arelle/2.37.28/Arelle.Arelle.locale.en-US.yaml new file mode 100644 index 0000000000000..8262a649f7e4b --- /dev/null +++ b/manifests/a/Arelle/Arelle/2.37.28/Arelle.Arelle.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Arelle.Arelle +PackageVersion: 2.37.28 +PackageLocale: en-US +Publisher: Arelle +PublisherUrl: https://arelle.org/ +PublisherSupportUrl: https://groups.google.com/d/forum/arelle-users +Author: Workiva, Inc. +PackageName: Arelle +PackageUrl: https://github.com/Arelle/Arelle +License: Apache 2.0 +LicenseUrl: https://github.com/Arelle/Arelle/blob/HEAD/LICENSE.md +Copyright: Copyright © 2011-present Workiva, Inc. +CopyrightUrl: https://arelle.readthedocs.io/en/latest/license.html +ShortDescription: Arelle is an end-to-end open source XBRL platform +Description: Arelle is an end-to-end open source XBRL platform, which provides the XBRL community with an easy to use set of tools. It supports XBRL and its extension features in an extensible manner. It does this in a compact yet robust framework that can be used as a desktop application and can be integrated with other applications and languages utilizing its web service, command line interface, and Python API. +Moniker: arelle +ReleaseNotes: |- + What's Changed + - Add documentation for NT-19 (#1754) @derekgengenbacher-wf + ⬆️ Dependencies + 4 changes + - Bump the python-dependencies group with 6 updates (#1752) @dependabot[bot] + - Bump the dotnet-dependencies group with 3 updates (#1751) @dependabot[bot] + - Bump docker/setup-buildx-action from 3.10.0 to 3.11.1 in the gha-dependencies group (#1750) @dependabot[bot] + - Bump the python-dependencies group across 1 directory with 9 updates (#1736) @dependabot[bot] +ReleaseNotesUrl: https://github.com/Arelle/Arelle/releases/tag/2.37.28 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Arelle/Arelle/2.37.28/Arelle.Arelle.yaml b/manifests/a/Arelle/Arelle/2.37.28/Arelle.Arelle.yaml new file mode 100644 index 0000000000000..7178502265ef2 --- /dev/null +++ b/manifests/a/Arelle/Arelle/2.37.28/Arelle.Arelle.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: Arelle.Arelle +PackageVersion: 2.37.28 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Argente/Utilities/3.0.1.1/Argente.Utilities.installer.yaml b/manifests/a/Argente/Utilities/3.0.1.1/Argente.Utilities.installer.yaml new file mode 100644 index 0000000000000..889c2bb1a51b8 --- /dev/null +++ b/manifests/a/Argente/Utilities/3.0.1.1/Argente.Utilities.installer.yaml @@ -0,0 +1,72 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Argente.Utilities +PackageVersion: 3.0.1.1 +# Support: Windows 7/8.1/10/11 (32/64-bit) +MinimumOSVersion: 7.0.0.0 +InstallModes: +- interactive +- silent +- silentWithProgress +ReleaseDate: 2025-06-18 +Installers: +# InnoSetup install wizard. +- Architecture: x86 + InstallerUrl: https://argenteutilities.com/en/download/utilitiesx86 + InstallerSha256: D167AAF66AE94DE5E11F224214E503AC65FAC1C1658138C46E1F93FFF96166E8 + InstallerType: inno + UpgradeBehavior: install + ElevationRequirement: elevatesSelf + InstallerSwitches: + Silent: --hidden + SilentWithProgress: --hidden +- Architecture: x64 + InstallerUrl: https://argenteutilities.com/en/download/utilitiesx64 + InstallerSha256: 5CC444EF6F7530E79A6C0B505B12A723716EFC60801DE78CAAD2C781D4507246 + InstallerType: inno + UpgradeBehavior: install + ElevationRequirement: elevatesSelf + InstallerSwitches: + Silent: --hidden + SilentWithProgress: --hidden +- Architecture: arm64 + InstallerUrl: https://argenteutilities.com/en/download/utilitiesarm64 + InstallerSha256: 78EDB8CC823CD8F1032E47A11C6BA3CD3D0CAD1CCAAD0B3D76B06772189765E2 + InstallerType: inno + UpgradeBehavior: install + ElevationRequirement: elevatesSelf + InstallerSwitches: + Silent: --hidden + SilentWithProgress: --hidden + +# Portable executables. +- Architecture: x86 + InstallerUrl: https://argenteutilities.com/en/download/utilitiesx86portable + InstallerSha256: EDDD698F085D6654DEEA60A096DE34621B43C2007D26D4483EA756A61097A949 + NestedInstallerFiles: + - RelativeFilePath: Argente.Utilities.X86/Argente.Utilities.exe + InstallerType: zip + NestedInstallerType: portable + ArchiveBinariesDependOnPath: true + UpgradeBehavior: uninstallPrevious +- Architecture: x64 + InstallerUrl: https://argenteutilities.com/en/download/utilitiesx64portable + InstallerSha256: 9A8F8A2702F19365115E9E5272B1E25F2C319701AD22B98E66A667D3096B0A8D + NestedInstallerFiles: + - RelativeFilePath: Argente.Utilities.X64/Argente.Utilities.exe + InstallerType: zip + NestedInstallerType: portable + ArchiveBinariesDependOnPath: true + UpgradeBehavior: uninstallPrevious +- Architecture: arm64 + InstallerUrl: https://argenteutilities.com/en/download/utilitiesarm64portable + InstallerSha256: 311C584FBF14736329AA84FA5DD123D124CFC3FCE1C55515664B3B93AF5C1F9F + NestedInstallerFiles: + - RelativeFilePath: Argente.Utilities.Arm64/Argente.Utilities.exe + InstallerType: zip + NestedInstallerType: portable + ArchiveBinariesDependOnPath: true + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Argente/Utilities/3.0.1.1/Argente.Utilities.locale.en-US.yaml b/manifests/a/Argente/Utilities/3.0.1.1/Argente.Utilities.locale.en-US.yaml new file mode 100644 index 0000000000000..fec2cda7f4746 --- /dev/null +++ b/manifests/a/Argente/Utilities/3.0.1.1/Argente.Utilities.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Argente.Utilities +PackageVersion: 3.0.1.1 +PackageLocale: en-US +Publisher: https://argenteutilities.com/en +PublisherUrl: https://argenteutilities.com/en +PrivacyUrl: https://argenteutilities.com/en# +Author: Raúl Argente +PackageName: Argente Utilities +PackageUrl: https://argenteutilities.com/en/downloads +License: Proprietary +LicenseUrl: https://argenteutilities.com/en/downloads#:~:text=Legal%20conditions +Copyright: Copyright © 2008 - 2025 Raúl Argente +CopyrightUrl: https://argenteutilities.com/en/downloads#:~:text=Copyright +ShortDescription: > + The choice of more than 13.000.000 users, protects your privacy, fix mistakes + and make your device faster and safe +ReleaseNotes: |- + ARGENTE UTILITIES 3.0.1.1 + + 24 June 2025 | Programs | Raúl Argente + + New version of Argente Utilities. Version 3.0.1.1 introduces significant + improvements in security, speed, and stability. The application is under + continuous development. + + - Improved: [Disk Cleaner] package cleanup + - Improved: [Uninstall Manager] detection of package extensions + - Improved: [Uninstall Manager] element search filter + - Improved: [Uninstall Manager] trace search + - Fixed: [General] other internal errors +ReleaseNotesUrl: https://argenteutilities.com/en/blog#:~:text=ARGENTE%20UTILITIES%203.0.1.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Argente/Utilities/3.0.1.1/Argente.Utilities.yaml b/manifests/a/Argente/Utilities/3.0.1.1/Argente.Utilities.yaml new file mode 100644 index 0000000000000..2c66fa2ec771c --- /dev/null +++ b/manifests/a/Argente/Utilities/3.0.1.1/Argente.Utilities.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Argente.Utilities +PackageVersion: 3.0.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Argotronic/ArgusMonitor/7.2.4.3044/Argotronic.ArgusMonitor.installer.yaml b/manifests/a/Argotronic/ArgusMonitor/7.2.4.3044/Argotronic.ArgusMonitor.installer.yaml deleted file mode 100644 index 8d1b9766f935e..0000000000000 --- a/manifests/a/Argotronic/ArgusMonitor/7.2.4.3044/Argotronic.ArgusMonitor.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/31 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Argotronic.ArgusMonitor -PackageVersion: 7.2.4.3044 -InstallerLocale: en-US -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -UpgradeBehavior: install -AppsAndFeaturesEntries: -- ProductCode: ArgusMonitor -Installers: -- Architecture: x64 - InstallerUrl: https://www.argusmonitor.com/downloads/ArgusMonitor_Setup.exe - InstallerSha256: 9AC80AFF14B6334BD6ADED6D2773E23B20CD5FB2C680A787877012F38E563162 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/a/Argotronic/ArgusMonitor/7.2.4.3044/Argotronic.ArgusMonitor.yaml b/manifests/a/Argotronic/ArgusMonitor/7.2.4.3044/Argotronic.ArgusMonitor.yaml deleted file mode 100644 index 40740b61dbef6..0000000000000 --- a/manifests/a/Argotronic/ArgusMonitor/7.2.4.3044/Argotronic.ArgusMonitor.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/31 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Argotronic.ArgusMonitor -PackageVersion: 7.2.4.3044 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/a/Argotronic/ArgusMonitor/7.2.5.3050/Argotronic.ArgusMonitor.installer.yaml b/manifests/a/Argotronic/ArgusMonitor/7.2.5.3050/Argotronic.ArgusMonitor.installer.yaml new file mode 100644 index 0000000000000..660c8b3bc35b4 --- /dev/null +++ b/manifests/a/Argotronic/ArgusMonitor/7.2.5.3050/Argotronic.ArgusMonitor.installer.yaml @@ -0,0 +1,17 @@ +# Automatically updated by the winget bot at 2025/Jun/25 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Argotronic.ArgusMonitor +PackageVersion: 7.2.5.3050 +InstallerLocale: en-US +MinimumOSVersion: 10.0.0.0 +InstallerType: nullsoft +UpgradeBehavior: install +AppsAndFeaturesEntries: +- ProductCode: ArgusMonitor +Installers: +- Architecture: x64 + InstallerUrl: https://www.argusmonitor.com/downloads/ArgusMonitor_Setup.exe + InstallerSha256: AFFA79B3FCB8BA6DC0C49368F7436034F3A7F8B3FF832163DC9B8741399676B5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Argotronic/ArgusMonitor/7.2.4.3044/Argotronic.ArgusMonitor.locale.en-US.yaml b/manifests/a/Argotronic/ArgusMonitor/7.2.5.3050/Argotronic.ArgusMonitor.locale.en-US.yaml similarity index 89% rename from manifests/a/Argotronic/ArgusMonitor/7.2.4.3044/Argotronic.ArgusMonitor.locale.en-US.yaml rename to manifests/a/Argotronic/ArgusMonitor/7.2.5.3050/Argotronic.ArgusMonitor.locale.en-US.yaml index 61e9f8c1ef87c..d6a3bebe25d71 100644 --- a/manifests/a/Argotronic/ArgusMonitor/7.2.4.3044/Argotronic.ArgusMonitor.locale.en-US.yaml +++ b/manifests/a/Argotronic/ArgusMonitor/7.2.5.3050/Argotronic.ArgusMonitor.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/May/31 +# Automatically updated by the winget bot at 2025/Jun/25 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Argotronic.ArgusMonitor -PackageVersion: 7.2.4.3044 +PackageVersion: 7.2.5.3050 PackageLocale: en-US Publisher: Argotronic GmbH PublisherUrl: https://www.argusmonitor.com/ diff --git a/manifests/a/Argotronic/ArgusMonitor/7.2.5.3050/Argotronic.ArgusMonitor.yaml b/manifests/a/Argotronic/ArgusMonitor/7.2.5.3050/Argotronic.ArgusMonitor.yaml new file mode 100644 index 0000000000000..84a08111428b6 --- /dev/null +++ b/manifests/a/Argotronic/ArgusMonitor/7.2.5.3050/Argotronic.ArgusMonitor.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jun/25 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Argotronic.ArgusMonitor +PackageVersion: 7.2.5.3050 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Arm/WindowsPerf/5.0.0/Arm.WindowsPerf.installer.yaml b/manifests/a/Arm/WindowsPerf/5.0.0/Arm.WindowsPerf.installer.yaml new file mode 100644 index 0000000000000..5c0899fe18f98 --- /dev/null +++ b/manifests/a/Arm/WindowsPerf/5.0.0/Arm.WindowsPerf.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.6.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Arm.WindowsPerf +PackageVersion: 5.0.0 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{1ACE4754-BF60-454A-9E6D-861DE875AE83}' +Platform: + - Windows.Desktop +Installers: +- InstallerUrl: https://developer.arm.com/-/cdn-downloads/permalink/WindowsPerf/Installer/windowsperf-5.0.0.msi + Architecture: arm64 + InstallerSha256: db4e2db8ff82f1c02274fbcbe1a4d684ba5ebd27bed0a0ccbcaef02172b46b79 +ManifestType: installer +ManifestVersion: 1.10.0 +ElevationRequirement: elevationRequired diff --git a/manifests/a/Arm/WindowsPerf/5.0.0/Arm.WindowsPerf.locale.en-US.yaml b/manifests/a/Arm/WindowsPerf/5.0.0/Arm.WindowsPerf.locale.en-US.yaml new file mode 100644 index 0000000000000..5ae108c3cadd9 --- /dev/null +++ b/manifests/a/Arm/WindowsPerf/5.0.0/Arm.WindowsPerf.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.6.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Arm.WindowsPerf +PackageVersion: 5.0.0 +PackageLocale: en-US +Publisher: Arm +PackageName: WindowsPerf +License: BSD-3 +ShortDescription: WindowsPerf is (Linux perf inspired) Windows on Arm performance profiling tool +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Arm/WindowsPerf/5.0.0/Arm.WindowsPerf.yaml b/manifests/a/Arm/WindowsPerf/5.0.0/Arm.WindowsPerf.yaml new file mode 100644 index 0000000000000..271c68c1741f1 --- /dev/null +++ b/manifests/a/Arm/WindowsPerf/5.0.0/Arm.WindowsPerf.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Arm.WindowsPerf +PackageVersion: 5.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/ArtemChepurnyi/Keyguard/1.13.0/ArtemChepurnyi.Keyguard.installer.yaml b/manifests/a/ArtemChepurnyi/Keyguard/1.13.0/ArtemChepurnyi.Keyguard.installer.yaml new file mode 100644 index 0000000000000..dd74aee74d1b1 --- /dev/null +++ b/manifests/a/ArtemChepurnyi/Keyguard/1.13.0/ArtemChepurnyi.Keyguard.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: ArtemChepurnyi.Keyguard +PackageVersion: 1.13.0 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +ProductCode: '{AE9CDFF1-3371-36BA-AEC0-80605FBB2729}' +ReleaseDate: 2025-07-05 +AppsAndFeaturesEntries: +- UpgradeCode: '{846C6281-F349-4833-9E0E-AAE1C06006A0}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/AChep/keyguard-app/releases/download/r20250705/Keyguard-1.13.0.msi + InstallerSha256: F4258B438535B657834842A2C15030D89AD2F2928B8FBFBB25A78038B69C6BF0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/ArtemChepurnyi/Keyguard/1.13.0/ArtemChepurnyi.Keyguard.locale.en-US.yaml b/manifests/a/ArtemChepurnyi/Keyguard/1.13.0/ArtemChepurnyi.Keyguard.locale.en-US.yaml new file mode 100644 index 0000000000000..780969c469967 --- /dev/null +++ b/manifests/a/ArtemChepurnyi/Keyguard/1.13.0/ArtemChepurnyi.Keyguard.locale.en-US.yaml @@ -0,0 +1,102 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ArtemChepurnyi.Keyguard +PackageVersion: 1.13.0 +PackageLocale: en-US +Publisher: Unknown +PublisherUrl: https://artemchep.com/ +PublisherSupportUrl: https://github.com/AChep/keyguard-app/issues +Author: Artem Chepurnyi +PackageName: Keyguard +PackageUrl: https://github.com/AChep/keyguard-app +License: Freeware +LicenseUrl: https://github.com/AChep/keyguard-app/blob/HEAD/LICENSE +ShortDescription: An alternative client for the Bitwarden® platform +Description: |- + Keyguard is an alternative client for the Bitwarden® platform, created to provide the best user experience possible. + Highlights: + - a beautiful rich and responsive Material You user interface; + - a powerful and fast search; + - a support for creating & using passkeys - a modern alternative to passwords. + - a watchtower that finds items with Pwned passwords, Vulnerable accounts, Reused passwords, Inactive two factor authentication, Inactive passkeys, Unsecure Websites as well as Duplicate, Incomplete and Expiring items, and other; + - multi-account support 🌠 with secure login and two-factor authentication support; + - add items 🌠 and sends 🌠, modify 🌠, and view your vault offline; + - export individual or organization items, including the attachments; + - beautiful Light/Dark theme; + - a generator with SSH keys, Email forwarders, Custom wordlists support, and many other features; + - a support for placeholders and URL overrides; + - and much more! + 🌠 - on Android requires the Premium one-time or subscription license. +Tags: +- credential +- password +- protect +- protection +- security +ReleaseNotes: |- + - caeda73e - deps: Bump Compose version from 1.9.0-alpha02 to 1.9.0-alpha03 + - 36a3aa4a - chore: Bump app version to 1.13.0 + - a43eb482 - Merge pull request #1005 from AChep/localization_action + - d3280bc1 - Merge pull request #1004 from AChep/tfa_2factorauth_action + - acc003f7 - Merge pull request #1003 from AChep/passkeys_action + - 7482b192 - Merge pull request #1001 from AChep/justdeleteme_action + - 3a4595b4 - Merge pull request #1002 from AChep/tld_public_suffix_list_action + - ae9986cd - [AUTO]Update localization library + - fd5c3938 - [AUTO]Update two-factor auth library + - 3bc54836 - Merge pull request #1000 from AChep/gpmpasskeysprivapps_action + - 333b22a0 - [AUTO]Update passkeys library + - 201ae24c - [AUTO]Update Public suffix list + - 6e2aedcd - [AUTO]Update justdeleteme library + - c3cfbafd - [AUTO]Update GPM Credential Privileged Apps JSON + - 8ebcecbe - Merge pull request #980 from AChep/dependabot/gradle/landscapist-2.5.0 + - 295f058a - Merge pull request #993 from AChep/dependabot/gradle/androidxRoom-2.7.2 + - 2c2d474b - Merge pull request #994 from AChep/dependabot/gradle/androidxWork-2.10.2 + - ed5c5155 - Merge pull request #995 from AChep/dependabot/gradle/com.google.firebase-firebase-bom-33.16.0 + - 9094deb6 - chore: Add FileKit license + - 6ee78f51 - chore: Fix compatibility with Kotlin 2.2.0 + - 69c3756a - build(deps): Bump com.google.firebase:firebase-bom + - 23b791f5 - build(deps): Bump androidxWork from 2.10.1 to 2.10.2 + - 8e2d3ca1 - build(deps): Bump androidxRoom from 2.7.1 to 2.7.2 + - e92c0847 - deps: Change Kotlin datetime dependency to 0.7.0-0.6.x-compat + - a8f0cc76 - deps: Migrate from kotlinx.datetime to kotlin.time + - 31a0fe5e - Revert "Revert "deps: Bump Kotlin Datetime to 0.7.0"" + - d0b5807c - Merge pull request #982 from AChep/dependabot/gradle/media.kamel-kamel-image-default-1.0.6 + - 68865a11 - Merge pull request #978 from AChep/dependabot/gradle/ktor-3.2.0 + - e8c7947b - Revert "deps: Bump Kotlin Datetime to 0.7.0" + - 96be47ec - deps: Bump Gradle to 8.14.2 + - da0911b4 - deps: Bump Android Gradle Plugin to 8.11.0 + - 58f28d64 - deps: Bump Kotlin Serialization to 1.9.0 + - 25e06d67 - deps: Bump Kotlin Datetime to 0.7.0 + - db9e27de - deps: Bump Kotlin to 2.2.0 + - 67ff07a2 - build(deps): Bump org.jetbrains.compose from 1.8.1 to 1.8.2 + - 47dc0141 - build(deps): Bump media.kamel:kamel-image-default from 1.0.5 to 1.0.6 + - 56052994 - build(deps): Bump landscapist from 2.4.8 to 2.5.0 + - f854d4b3 - build(deps): Bump ktor from 3.1.3 to 3.2.0 + - 29c8a6d5 - feat: Conflict resolution + - bc813d86 - chore: Allow spotbugs - static analysis tool + - dfe8fbe2 - chore: Add opensource/mit to allowed licenses + - bb3d020f - build(deps): Bump androidPlugin from 8.10.0 to 8.10.1 + - a50ed9c2 - build(deps): Bump androidxAppCompat from 1.7.0 to 1.7.1 + - fc876769 - build(deps): Bump androidxAutofill from 1.3.0-rc01 to 1.3.0 + - fb03fb2f - build(deps): Bump androidxLifecycle from 2.9.0 to 2.9.1 + - 5444c609 - build(deps): Bump androidxSecurityCryptoKtx from 1.1.0-alpha07 to 1.1.0-beta01 + - 26e216bb - build(deps): Bump crashlyticsPlugin from 3.0.3 to 3.0.4 + - 42f02641 - build(deps): Bump ktlintPlugin from 12.2.0 to 12.3.0 + - 24c714db - build(deps): Bump signalr from 9.0.5 to 9.0.6 + - c0aad8fd - build(deps): Bump bouncycastle from 1.80 to 1.81 + - 032b1393 - build(deps): Bump sqlcipherAndroid from 4.8.0 to 4.9.0 + - 83dd1bbf - build(deps): Bump sqliteJdbcCrypt from 3.49.1.0 to 3.50.1.0 + - a311a0a5 - build(deps): Bump yubiKit from 2.8.0 to 2.8.1 + - a5c6ecef - Merge pull request #954 from AChep/dependabot/gradle/org.gradle.toolchains.foojay-resolver-convention-1.0.0 + - bd88550e - Merge pull request #973 from AChep/dependabot/gradle/com.google.firebase-firebase-bom-33.15.0 + - 39637bbd - build(deps): Bump com.google.firebase:firebase-bom + - 5b5350d9 - Merge pull request #950 from AChep/dependabot/gradle/arrow-2.1.2 + - 035e5009 - Merge pull request #966 from RokeJulianLockhart/patch-1 + - 7cae7540 - @RokeJulianLockhart has signed the CLA in AChep/keyguard-app#966 + - e974e6aa - Update README.md + - 703aa4cf - build(deps): Bump org.gradle.toolchains.foojay-resolver-convention + - ce87b32d - build(deps): Bump arrow from 2.1.1 to 2.1.2 +ReleaseNotesUrl: https://github.com/AChep/keyguard-app/releases/tag/r20250705 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/ArtemChepurnyi/Keyguard/1.13.0/ArtemChepurnyi.Keyguard.locale.zh-CN.yaml b/manifests/a/ArtemChepurnyi/Keyguard/1.13.0/ArtemChepurnyi.Keyguard.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2fbd9dfc4a3c8 --- /dev/null +++ b/manifests/a/ArtemChepurnyi/Keyguard/1.13.0/ArtemChepurnyi.Keyguard.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: ArtemChepurnyi.Keyguard +PackageVersion: 1.13.0 +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: Bitwarden® 平台的替代客户端 +Description: |- + Keyguard 是 Bitwarden® 平台的替代客户端,旨在提供最佳的用户体验。 + 亮点: + - 美观丰富、反应灵敏的 Material You 用户界面; + - 强大而快速的搜索功能; + - 支持创建和使用 passkey--现代密码替代品。 + - 可查找具有被破解密码、漏洞账户、重复使用的密码、不活动的双因素身份验证、不活动的 passkey、不安全的网站以及重复、不完整和过期等项目的哨兵; + - 多账户支持 🌠 支持安全登录和双因素身份验证; + - 添加项目 🌠 和发送 🌠、修改 🌠 并离线查看您的保险库; + - 导出个人或组织项目,包括附件; + - 漂亮的浅色/深色主题; + - 带有 SSH 密钥的生成器、电子邮件转发器、自定义词表支持等功能; + - 支持占位符和 URL 覆盖; + - 不仅于此! + 🌠 - 在 Android 上需要高级一次性许可证或订阅许可证。 +Tags: +- 保护 +- 凭据 +- 安全 +- 密码 +ReleaseNotesUrl: https://github.com/AChep/keyguard-app/releases/tag/r20250705 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/ArtemChepurnyi/Keyguard/1.13.0/ArtemChepurnyi.Keyguard.yaml b/manifests/a/ArtemChepurnyi/Keyguard/1.13.0/ArtemChepurnyi.Keyguard.yaml new file mode 100644 index 0000000000000..ac45da4a71a0c --- /dev/null +++ b/manifests/a/ArtemChepurnyi/Keyguard/1.13.0/ArtemChepurnyi.Keyguard.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: ArtemChepurnyi.Keyguard +PackageVersion: 1.13.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Artikash/Textractor/5.2.0/Artikash.Textractor.installer.yaml b/manifests/a/Artikash/Textractor/5.2.0/Artikash.Textractor.installer.yaml new file mode 100644 index 0000000000000..d948023afb118 --- /dev/null +++ b/manifests/a/Artikash/Textractor/5.2.0/Artikash.Textractor.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.9.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Artikash.Textractor +PackageVersion: 5.2.0 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Artikash/Textractor/releases/download/v5.2.0/Textractor-5.2.0-Setup.exe + InstallerSha256: FAB1FA588C972C703B2E0F981DF7D6AE9FB71683B099BF69547F8815F09F79B6 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2022-01-31 diff --git a/manifests/a/Artikash/Textractor/5.2.0/Artikash.Textractor.locale.en-US.yaml b/manifests/a/Artikash/Textractor/5.2.0/Artikash.Textractor.locale.en-US.yaml new file mode 100644 index 0000000000000..824ad08de9b96 --- /dev/null +++ b/manifests/a/Artikash/Textractor/5.2.0/Artikash.Textractor.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Artikash.Textractor +PackageVersion: 5.2.0 +PackageLocale: en-US +Publisher: Akash Mozumdar +PublisherUrl: https://github.com/Artikash +PublisherSupportUrl: https://github.com/Artikash/Textractor/issues +PackageName: Textractor +PackageUrl: https://github.com/Artikash/Textractor +License: GPL-3.0 +LicenseUrl: https://github.com/Artikash/Textractor/blob/master/LICENSE +ShortDescription: Textractor (a.k.a. NextHooker) is an open-source x86/x64 video game text hooker for Windows 7+ (and Wine) based off of ITHVNR. +Tags: +- visual-novel +ReleaseNotesUrl: https://github.com/Artikash/Textractor/releases/tag/v5.2.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/Artikash/Textractor/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/Artikash/Textractor/5.2.0/Artikash.Textractor.yaml b/manifests/a/Artikash/Textractor/5.2.0/Artikash.Textractor.yaml new file mode 100644 index 0000000000000..1b54461769489 --- /dev/null +++ b/manifests/a/Artikash/Textractor/5.2.0/Artikash.Textractor.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Artikash.Textractor +PackageVersion: 5.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/Astronet/Scholaread/1.1.48/Astronet.Scholaread.installer.yaml b/manifests/a/Astronet/Scholaread/1.1.48/Astronet.Scholaread.installer.yaml new file mode 100644 index 0000000000000..baf67a91eaa2c --- /dev/null +++ b/manifests/a/Astronet/Scholaread/1.1.48/Astronet.Scholaread.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: Astronet.Scholaread +PackageVersion: 1.1.48 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- scholaread +FileExtensions: +- caj +- pdf +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.scholaread.com/assets/pc-releases/1.1.48/com/Scholaread-win-x64-1.1.48.exe + InstallerSha256: D444AE5E567782BC51BE7031B97D5A39AEDE617377F2A7910F38E077F1E98EF7 + ProductCode: c9fcbc5f-d2c1-524e-9455-a0098593a16f +- InstallerLocale: zh-CN + Architecture: x64 + InstallerUrl: https://cdn.scholaread.cn/assets/pc-releases/1.1.48/cn/Scholaread-win-x64-1.1.48.exe + InstallerSha256: D916AC6FF5E19064846C0C94849971F6486A91957A18FEF3D79C927743D78706 + ProductCode: b171b469-051b-5b40-8791-79ac366d1e4b +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Astronet/Scholaread/1.1.48/Astronet.Scholaread.locale.en-US.yaml b/manifests/a/Astronet/Scholaread/1.1.48/Astronet.Scholaread.locale.en-US.yaml new file mode 100644 index 0000000000000..5e15918dc5b51 --- /dev/null +++ b/manifests/a/Astronet/Scholaread/1.1.48/Astronet.Scholaread.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: Astronet.Scholaread +PackageVersion: 1.1.48 +PackageLocale: en-US +Publisher: Astronet Technology PTE LTD +PublisherUrl: https://www.scholaread.com/ +PublisherSupportUrl: https://workspace.jianguoyun.com/inbox/collect/c2bf8ec4adc34609a1420825dfab9866/submitv2 +PrivacyUrl: https://www.scholaread.com/help/privacy +Author: Astronet Technology PTE LTD. +PackageName: Scholaread +PackageUrl: https://www.scholaread.com/download +License: Proprietary +LicenseUrl: https://www.scholaread.com/help/terms +Copyright: Copyright © Astronet Technology PTE LTD 2024. All rights reserved. +CopyrightUrl: https://www.scholaread.com/help/terms +ShortDescription: AI-powered Research, Insights at Your Fingertips +Description: |- + Scholaread is committed to creating a premier academic reading experience, helping every scholar enhance the value of their time. + Amidst the sea of knowledge, countless papers and scholarly works serve as lighthouses guiding our intellectual journey. We aim to reshape academic reading, enabling scholars to navigate more smoothly and sail towards a broader and more distant future. + By utilizing advanced PDF layout parsing algorithms, we convert complexly formatted literature into clean, screen-friendly formats, allowing reading to transcend device limitations, and ensuring text, graphics, formulas, and tables are displayed with clarity. Our paragraph-by-paragraph full-text translations not only make reading more fluid but also allow the transfer of knowledge to transcend language barriers. We firmly believe that every paper has its value, and every piece of research deserves recognition. We hope that scholars around the globe can overcome linguistic obstacles and collectively contribute to the advancement of the world. + In the future, Scholaread will also provide a more comprehensive literature management solution, ensuring an efficient linkage between reading and writing so that every ounce of effort in scientific research is preserved and reflected. + The path to scientific discovery, though rugged and lengthy, can be made broader and brighter with technological innovation. Scholaread aspires to be an indispensable tool for scholars worldwide, ensuring that every precious minute is spent productively. + We sincerely welcome you and your colleagues, peers, study groups, and anyone interested to share in the Scholaread experience! +Tags: +- academics +- article +- book +- citation +- cite +- journal +- literature +- paper +- pdf +- reader +- reading +- research +- thesis +- viewer +ReleaseNotes: |- + - Highlights can now be displayed in sequential order. (Beta) + - Translation cache is now shared across devices. + - Fixed known issues and improved user experience. +PurchaseUrl: https://www.scholaread.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Astronet/Scholaread/1.1.48/Astronet.Scholaread.locale.zh-CN.yaml b/manifests/a/Astronet/Scholaread/1.1.48/Astronet.Scholaread.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1dda686bbbe74 --- /dev/null +++ b/manifests/a/Astronet/Scholaread/1.1.48/Astronet.Scholaread.locale.zh-CN.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Astronet.Scholaread +PackageVersion: 1.1.48 +PackageLocale: zh-CN +Publisher: 上海亦答网络科技有限公司 +PublisherUrl: https://www.scholaread.cn/ +PublisherSupportUrl: https://workspace.jianguoyun.com/inbox/collect/308c02d2d43944d5a787b9c01735698f/submitv2 +PrivacyUrl: https://www.scholaread.cn/help/privacy +Author: 上海亦答网络科技有限公司 +PackageName: Scholaread +PackageUrl: https://www.scholaread.cn/download +License: 专有软件 +LicenseUrl: https://www.scholaread.cn/help/terms +Copyright: Copyright © 上海亦答网络科技有限公司 2024. All Rights Reserved. +CopyrightUrl: https://www.scholaread.cn/help/terms +ShortDescription: AI 助力,让科研变轻松 +Description: |- + 靠岸学术(Scholaread)致力于创造一流的学术阅读体验,帮助每一位学者提升时间价值。 + 在知识之海上,无数论文著作就像指引航途的灯塔。我们希望能重塑学术阅读,让学者们更顺利地探索航行,驶向更远更广阔的未来。 + 因此,通过先进的 PDF 排版解析算法,我们将复杂排版的文献转换成适合屏幕的简洁版式,让阅读不再受限于设备,图文、公式、数表都能清晰展现。而逐段对照全文翻译不仅能让阅读变得流畅,更让知识的传播不再受语言的限制。我们坚信,每一篇论文都有其价值,每一项研究都应被看见。我们希望全球的学者都能够跨越语言的障碍,共同促进世界的进步。 + 未来,靠岸学术(Scholaread)还将提供更完善的文献管理解决方案,实现阅读写作的高效衔接,让科研工作的每一分努力都能得到保存与体现。 + 科研的道路虽崎岖漫长,但技术创新能让这条道路变得更为宽广与明亮。靠岸学术(Scholaread)希望成为全球学者的必备工具,让宝贵的每一分钟都能用在刀刃上。 + 我们真诚欢迎您与您的同事、同行、学习小组以及任何对此感兴趣的人分享靠岸学术(Scholaread)! +Tags: +- pdf +- 书籍 +- 学术 +- 引文 +- 引用 +- 引用文献 +- 文献 +- 期刊 +- 查看器 +- 研究 +- 论文 +- 阅读 +- 阅读器 +- 靠岸学术 +ReleaseNotes: |- + - 重点高亮功能支持按顺序展示(功能内测中) + - 支持各端共享翻译缓存,节省翻译额度 + - 修复已知问题,提高用户体验 +PurchaseUrl: https://www.scholaread.cn/pricing +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Astronet/Scholaread/1.1.48/Astronet.Scholaread.yaml b/manifests/a/Astronet/Scholaread/1.1.48/Astronet.Scholaread.yaml new file mode 100644 index 0000000000000..f64fd76218604 --- /dev/null +++ b/manifests/a/Astronet/Scholaread/1.1.48/Astronet.Scholaread.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: Astronet.Scholaread +PackageVersion: 1.1.48 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Astronomer/Astro/1.32.0/Astronomer.Astro.installer.yaml b/manifests/a/Astronomer/Astro/1.32.0/Astronomer.Astro.installer.yaml index 89e16976669b2..21d8d298837ac 100644 --- a/manifests/a/Astronomer/Astro/1.32.0/Astronomer.Astro.installer.yaml +++ b/manifests/a/Astronomer/Astro/1.32.0/Astronomer.Astro.installer.yaml @@ -5,7 +5,7 @@ PackageIdentifier: Astronomer.Astro PackageVersion: 1.32.0 Dependencies: PackageDependencies: - - PackageIdentifier: Redhat.Podman + - PackageIdentifier: RedHat.Podman InstallerLocale: en-US InstallerType: portable UpgradeBehavior: install @@ -16,9 +16,6 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/astronomer/astro-cli/releases/download/v1.32.0/astro_1.32.0_windows_amd64.exe InstallerSha256: 0DCA843DF1B640E17F2C24CBBEFB145F029C03332779AF329E53D4825C2945EF - - Architecture: x86 - InstallerUrl: https://github.com/astronomer/astro-cli/releases/download/v1.32.0/astro_1.32.0_windows_386.exe - InstallerSha256: AB64A702843E3D5339887F7AB02EC77850AD91F5A55E6AB293C22505E4661F1F ManifestType: installer ManifestVersion: 1.6.0 diff --git a/manifests/a/Astronomer/Astro/1.32.1/Astronomer.Astro.installer.yaml b/manifests/a/Astronomer/Astro/1.32.1/Astronomer.Astro.installer.yaml index 5991f87c5d942..524d0a4eb0bc0 100644 --- a/manifests/a/Astronomer/Astro/1.32.1/Astronomer.Astro.installer.yaml +++ b/manifests/a/Astronomer/Astro/1.32.1/Astronomer.Astro.installer.yaml @@ -5,7 +5,7 @@ PackageIdentifier: Astronomer.Astro PackageVersion: 1.32.1 Dependencies: PackageDependencies: - - PackageIdentifier: Redhat.Podman + - PackageIdentifier: RedHat.Podman InstallerLocale: en-US InstallerType: portable UpgradeBehavior: install @@ -16,9 +16,6 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/astronomer/astro-cli/releases/download/v1.32.1/astro_1.32.1_windows_amd64.exe InstallerSha256: 75216B1B5FED5651D0E97E5EA4272023A9B143CFC54CCCC34C3101838F3FF9BA - - Architecture: x86 - InstallerUrl: https://github.com/astronomer/astro-cli/releases/download/v1.32.1/astro_1.32.1_windows_386.exe - InstallerSha256: 7F3A477650027F68E6A34AA0EDC3DC410E8E28923C3B07811253CC96FB55F0B7 ManifestType: installer ManifestVersion: 1.6.0 diff --git a/manifests/a/Astronomer/Astro/1.33.0/Astronomer.Astro.installer.yaml b/manifests/a/Astronomer/Astro/1.33.0/Astronomer.Astro.installer.yaml index a9781e057e62d..c2709827585d1 100644 --- a/manifests/a/Astronomer/Astro/1.33.0/Astronomer.Astro.installer.yaml +++ b/manifests/a/Astronomer/Astro/1.33.0/Astronomer.Astro.installer.yaml @@ -5,7 +5,7 @@ PackageIdentifier: Astronomer.Astro PackageVersion: 1.33.0 Dependencies: PackageDependencies: - - PackageIdentifier: Redhat.Podman + - PackageIdentifier: RedHat.Podman InstallerLocale: en-US InstallerType: portable UpgradeBehavior: install @@ -16,9 +16,6 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/astronomer/astro-cli/releases/download/v1.33.0/astro_1.33.0_windows_amd64.exe InstallerSha256: 7BF8F611B761C1DC0B84420661B4B9A2E36EA6BC5A1E2D118D59B26B37A7E8B5 - - Architecture: x86 - InstallerUrl: https://github.com/astronomer/astro-cli/releases/download/v1.33.0/astro_1.33.0_windows_386.exe - InstallerSha256: 0F0C936C22B1F97FD05710B4B87D19880F83910E5A23B9C3B3C1B8664AD13970 ManifestType: installer ManifestVersion: 1.6.0 diff --git a/manifests/a/Astronomer/Astro/1.33.1/Astronomer.Astro.installer.yaml b/manifests/a/Astronomer/Astro/1.33.1/Astronomer.Astro.installer.yaml index f01ebec1124a8..56061fd9e78bc 100644 --- a/manifests/a/Astronomer/Astro/1.33.1/Astronomer.Astro.installer.yaml +++ b/manifests/a/Astronomer/Astro/1.33.1/Astronomer.Astro.installer.yaml @@ -5,7 +5,7 @@ PackageIdentifier: Astronomer.Astro PackageVersion: 1.33.1 Dependencies: PackageDependencies: - - PackageIdentifier: Redhat.Podman + - PackageIdentifier: RedHat.Podman InstallerLocale: en-US InstallerType: portable UpgradeBehavior: install @@ -16,9 +16,6 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/astronomer/astro-cli/releases/download/v1.33.1/astro_1.33.1_windows_amd64.exe InstallerSha256: 0D7EEB3C3B6CB120A627ABB533BDC50147055B78F0DE3B3732DF71C4B97A6A55 - - Architecture: x86 - InstallerUrl: https://github.com/astronomer/astro-cli/releases/download/v1.33.1/astro_1.33.1_windows_386.exe - InstallerSha256: D77497A84C6F140132F81DFC26ACB60D8BAAD6DF28AF191CA146B37D5A374727 ManifestType: installer ManifestVersion: 1.6.0 diff --git a/manifests/a/Astronomer/Astro/1.33.2/Astronomer.Astro.installer.yaml b/manifests/a/Astronomer/Astro/1.33.2/Astronomer.Astro.installer.yaml index 48815ab7def4e..607d9f5474a15 100644 --- a/manifests/a/Astronomer/Astro/1.33.2/Astronomer.Astro.installer.yaml +++ b/manifests/a/Astronomer/Astro/1.33.2/Astronomer.Astro.installer.yaml @@ -5,7 +5,7 @@ PackageIdentifier: Astronomer.Astro PackageVersion: 1.33.2 Dependencies: PackageDependencies: - - PackageIdentifier: Redhat.Podman + - PackageIdentifier: RedHat.Podman InstallerLocale: en-US InstallerType: portable UpgradeBehavior: install @@ -16,9 +16,6 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/astronomer/astro-cli/releases/download/v1.33.2/astro_1.33.2_windows_amd64.exe InstallerSha256: 4F65C561F79AFE018FD33A379ECF196C8F4A53B30768D8D8057A83502510E4EC - - Architecture: x86 - InstallerUrl: https://github.com/astronomer/astro-cli/releases/download/v1.33.2/astro_1.33.2_windows_386.exe - InstallerSha256: C97112A6BA3B6E5C549BC8C286BF9ADA120BA9F784467F6B9084A477D5902443 ManifestType: installer ManifestVersion: 1.6.0 diff --git a/manifests/a/Astronomer/Astro/1.34.0/Astronomer.Astro.installer.yaml b/manifests/a/Astronomer/Astro/1.34.0/Astronomer.Astro.installer.yaml index 8366e530cba78..62451a32d6a5c 100644 --- a/manifests/a/Astronomer/Astro/1.34.0/Astronomer.Astro.installer.yaml +++ b/manifests/a/Astronomer/Astro/1.34.0/Astronomer.Astro.installer.yaml @@ -5,7 +5,7 @@ PackageIdentifier: Astronomer.Astro PackageVersion: 1.34.0 Dependencies: PackageDependencies: - - PackageIdentifier: Redhat.Podman + - PackageIdentifier: RedHat.Podman InstallerLocale: en-US InstallerType: portable UpgradeBehavior: install @@ -16,9 +16,6 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/astronomer/astro-cli/releases/download/v1.34.0/astro_1.34.0_windows_amd64.exe InstallerSha256: 3E798B8B2C8B4D02EF85847A2B6CBBF2A4786549888BE60DC4F73A821351BF73 - - Architecture: x86 - InstallerUrl: https://github.com/astronomer/astro-cli/releases/download/v1.34.0/astro_1.34.0_windows_386.exe - InstallerSha256: C6EDF581E58E03BB6589FBE33A3F898947653E4B956DDCAE8574E67A1BC4E5F5 ManifestType: installer ManifestVersion: 1.6.0 diff --git a/manifests/a/Astronomer/Astro/1.34.1/Astronomer.Astro.installer.yaml b/manifests/a/Astronomer/Astro/1.34.1/Astronomer.Astro.installer.yaml index 42762160aa739..c4b46cb1273e1 100644 --- a/manifests/a/Astronomer/Astro/1.34.1/Astronomer.Astro.installer.yaml +++ b/manifests/a/Astronomer/Astro/1.34.1/Astronomer.Astro.installer.yaml @@ -5,7 +5,7 @@ PackageIdentifier: Astronomer.Astro PackageVersion: 1.34.1 Dependencies: PackageDependencies: - - PackageIdentifier: Redhat.Podman + - PackageIdentifier: RedHat.Podman InstallerLocale: en-US InstallerType: portable UpgradeBehavior: install diff --git a/manifests/a/AtomicJar/Testcontainers/1.19.0/AtomicJar.Testcontainers.installer.yaml b/manifests/a/AtomicJar/Testcontainers/1.19.0/AtomicJar.Testcontainers.installer.yaml deleted file mode 100644 index 0bff573752ecb..0000000000000 --- a/manifests/a/AtomicJar/Testcontainers/1.19.0/AtomicJar.Testcontainers.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Automatically updated by the winget bot at 2025/Mar/06 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: AtomicJar.Testcontainers -PackageVersion: 1.19.0 -InstallerLocale: en-US -InstallerType: wix -Scope: user -InstallModes: -- silent -- interactive -- silentWithProgress -InstallerSwitches: - Silent: /quiet - SilentWithProgress: /passive -UpgradeBehavior: install -Installers: -- Architecture: x64 - InstallerUrl: https://app.testcontainers.cloud/download/testcontainers-desktop_windows_x86-64.msi - InstallerSha256: 2BF54A18E11A2191377BD7B1D085E6BF3E8E0FF339BAEBC75AC7A6613036FE9C - ProductCode: '{D40A3680-FAAC-4128-B7EA-BF786D479142}' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/a/AtomicJar/Testcontainers/1.19.0/AtomicJar.Testcontainers.yaml b/manifests/a/AtomicJar/Testcontainers/1.19.0/AtomicJar.Testcontainers.yaml deleted file mode 100644 index 4067445949dd3..0000000000000 --- a/manifests/a/AtomicJar/Testcontainers/1.19.0/AtomicJar.Testcontainers.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Mar/06 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: AtomicJar.Testcontainers -PackageVersion: 1.19.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/a/AtomicJar/Testcontainers/1.20.0/AtomicJar.Testcontainers.installer.yaml b/manifests/a/AtomicJar/Testcontainers/1.20.0/AtomicJar.Testcontainers.installer.yaml new file mode 100644 index 0000000000000..355165739b35c --- /dev/null +++ b/manifests/a/AtomicJar/Testcontainers/1.20.0/AtomicJar.Testcontainers.installer.yaml @@ -0,0 +1,23 @@ +# Automatically updated by the winget bot at 2025/Jul/04 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AtomicJar.Testcontainers +PackageVersion: 1.20.0 +InstallerLocale: en-US +InstallerType: wix +Scope: user +InstallModes: +- silent +- interactive +- silentWithProgress +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://app.testcontainers.cloud/download/testcontainers-desktop_windows_x86-64.msi + InstallerSha256: 2291EF6C10CFBE052552ADBD4D7DEE1726DCD6545C0A3C1EDD0C25122322702D + ProductCode: '{4F276AC1-A496-4153-9809-31F920B42B47}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AtomicJar/Testcontainers/1.19.0/AtomicJar.Testcontainers.locale.en-US.yaml b/manifests/a/AtomicJar/Testcontainers/1.20.0/AtomicJar.Testcontainers.locale.en-US.yaml similarity index 86% rename from manifests/a/AtomicJar/Testcontainers/1.19.0/AtomicJar.Testcontainers.locale.en-US.yaml rename to manifests/a/AtomicJar/Testcontainers/1.20.0/AtomicJar.Testcontainers.locale.en-US.yaml index eb4dc3d26ab64..a43b1603a7e3c 100644 --- a/manifests/a/AtomicJar/Testcontainers/1.19.0/AtomicJar.Testcontainers.locale.en-US.yaml +++ b/manifests/a/AtomicJar/Testcontainers/1.20.0/AtomicJar.Testcontainers.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Mar/06 +# Automatically updated by the winget bot at 2025/Jul/04 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: AtomicJar.Testcontainers -PackageVersion: 1.19.0 +PackageVersion: 1.20.0 PackageLocale: en-US Publisher: AtomicJar, Inc. PrivacyUrl: https://www.iubenda.com/privacy-policy/58807048 diff --git a/manifests/a/AtomicJar/Testcontainers/1.20.0/AtomicJar.Testcontainers.yaml b/manifests/a/AtomicJar/Testcontainers/1.20.0/AtomicJar.Testcontainers.yaml new file mode 100644 index 0000000000000..2d36e2ca48013 --- /dev/null +++ b/manifests/a/AtomicJar/Testcontainers/1.20.0/AtomicJar.Testcontainers.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/04 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: AtomicJar.Testcontainers +PackageVersion: 1.20.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Audient/EVO/4.3.18.0/Audient.EVO.locale.en-US.yaml b/manifests/a/Audient/EVO/4.3.18.0/Audient.EVO.locale.en-US.yaml index f071ded9e824e..d558af7ed6b2b 100644 --- a/manifests/a/Audient/EVO/4.3.18.0/Audient.EVO.locale.en-US.yaml +++ b/manifests/a/Audient/EVO/4.3.18.0/Audient.EVO.locale.en-US.yaml @@ -22,5 +22,7 @@ Tags: - driver - evo - loop-back-mixer +- audientusbaudio.inf +- audientusbaudioks.inf ManifestType: defaultLocale ManifestVersion: 1.5.0 diff --git a/manifests/a/AudioRangerIT/AudioRanger/3.4.9/AudioRangerIT.AudioRanger.installer.yaml b/manifests/a/AudioRangerIT/AudioRanger/3.4.9/AudioRangerIT.AudioRanger.installer.yaml deleted file mode 100644 index c24c983068c3a..0000000000000 --- a/manifests/a/AudioRangerIT/AudioRanger/3.4.9/AudioRangerIT.AudioRanger.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/12 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: AudioRangerIT.AudioRanger -PackageVersion: 3.4.9 -MinimumOSVersion: 10.0.0.0 -InstallModes: -- interactive -- silent -- silentWithProgress -Installers: -- InstallerLocale: en-US - Architecture: x86 - InstallerType: inno - Scope: machine - InstallerUrl: https://www.audioranger.com/bin/AudioRangerSetup.exe - InstallerSha256: A81020C4F2606D40E9AE1F206E090C018BF6D8B0F46F0A1B17DAC5B0523D210E - UpgradeBehavior: install -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/a/AudioRangerIT/AudioRanger/3.4.9/AudioRangerIT.AudioRanger.locale.en-US.yaml b/manifests/a/AudioRangerIT/AudioRanger/3.4.9/AudioRangerIT.AudioRanger.locale.en-US.yaml deleted file mode 100644 index b79e06ea5e4c9..0000000000000 --- a/manifests/a/AudioRangerIT/AudioRanger/3.4.9/AudioRangerIT.AudioRanger.locale.en-US.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/12 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: AudioRangerIT.AudioRanger -PackageVersion: 3.4.9 -PackageLocale: en-US -Publisher: AudioRanger IT -PublisherUrl: https://www.audioranger.com/ -PublisherSupportUrl: https://www.audioranger.com/contact.php -PrivacyUrl: https://www.audioranger.com/privacy-policy.php -PackageName: AudioRanger -PackageUrl: https://www.audioranger.com/ -License: Freeware -Copyright: Copyright © 2021 AudioRanger IT -ShortDescription: AudioRanger is a powerful and versatile music tagger designed to automatically identify and organize your digital music collection. -Moniker: audioranger -Tags: -- audio-tagger -- music-tagger -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/a/AudioRangerIT/AudioRanger/3.4.9/AudioRangerIT.AudioRanger.yaml b/manifests/a/AudioRangerIT/AudioRanger/3.4.9/AudioRangerIT.AudioRanger.yaml deleted file mode 100644 index a65f7c53a5f0a..0000000000000 --- a/manifests/a/AudioRangerIT/AudioRanger/3.4.9/AudioRangerIT.AudioRanger.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/12 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: AudioRangerIT.AudioRanger -PackageVersion: 3.4.9 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/a/AuthorMore/PenpotDesktop/0.16.0/AuthorMore.PenpotDesktop.installer.yaml b/manifests/a/AuthorMore/PenpotDesktop/0.16.0/AuthorMore.PenpotDesktop.installer.yaml new file mode 100644 index 0000000000000..3f4610cd2cc09 --- /dev/null +++ b/manifests/a/AuthorMore/PenpotDesktop/0.16.0/AuthorMore.PenpotDesktop.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: AuthorMore.PenpotDesktop +PackageVersion: 0.16.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: fce6a886-f595-5ead-8bc0-3232435b1b25 +ReleaseDate: 2025-06-25 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/author-more/penpot-desktop/releases/download/v0.16.0/Penpot-Desktop---Setup.exe + InstallerSha256: 57CA57C7D1A1660821AD3614AF61840ED02F9E769C717CE013512FF31E4A295D + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/author-more/penpot-desktop/releases/download/v0.16.0/Penpot-Desktop---Setup.exe + InstallerSha256: 57CA57C7D1A1660821AD3614AF61840ED02F9E769C717CE013512FF31E4A295D + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/author-more/penpot-desktop/releases/download/v0.16.0/Penpot-Desktop---Setup.exe + InstallerSha256: 57CA57C7D1A1660821AD3614AF61840ED02F9E769C717CE013512FF31E4A295D + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/author-more/penpot-desktop/releases/download/v0.16.0/Penpot-Desktop---Setup.exe + InstallerSha256: 57CA57C7D1A1660821AD3614AF61840ED02F9E769C717CE013512FF31E4A295D + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AuthorMore/PenpotDesktop/0.16.0/AuthorMore.PenpotDesktop.locale.en-US.yaml b/manifests/a/AuthorMore/PenpotDesktop/0.16.0/AuthorMore.PenpotDesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..5709653c143b6 --- /dev/null +++ b/manifests/a/AuthorMore/PenpotDesktop/0.16.0/AuthorMore.PenpotDesktop.locale.en-US.yaml @@ -0,0 +1,55 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AuthorMore.PenpotDesktop +PackageVersion: 0.16.0 +PackageLocale: en-US +Publisher: Author More +PublisherUrl: https://authormore.com/ +PublisherSupportUrl: https://github.com/author-more/penpot-desktop/issues +PrivacyUrl: https://penpot.app/privacy +PackageName: Penpot Desktop +PackageUrl: https://github.com/author-more/penpot-desktop +License: AGPL-3.0 +LicenseUrl: https://github.com/author-more/penpot-desktop/blob/HEAD/LICENSE +ShortDescription: A desktop application for Penpot, an open-source design tool. +Description: |- + Penpot Desktop is an unofficial desktop application for the open-source design tool, Penpot. + It provides you with access to the functionality of the browser version of Penpot with an experience of a desktop application. It comes with + - system-level application experience e.g. a dedicated window, file extension association, + - versatile dark-light mode setup, + - tab interface for easy navigation between projects, + - ability to connect to different instances e.g. officially hosted, local for offline work, + - and more are coming. +Tags: +- build +- design +- diagram +- flow +- flowchart +- interface +- mockup +- present +- prototype +- slides +- specification +- ui +- user-experience +- user-interface +- ux +- wireframe +ReleaseNotes: |- + Features + - Added batch download of projects. #172 + Added an option to download all Penpot projects as a zip archive. After selecting a download path, the files of all projects will be downloaded and placed inside a zip archive, organised within a directory corresponding to each project's name. + https://github.com/user-attachments/assets/4a5adacb-b106-4955-b0ee-fc1621ca6b0a + Fixes + - Fixed instance creator to show only the most relevant alert. #169 + Resolves the case when the missing Docker alert is shown together with the sandbox environment alert. A sandbox environment doesn’t have access to Docker, making the instruction to install it misleading. + Full Changelog: https://github.com/author-more/penpot-desktop/compare/v0.15.1...v0.16.0 +ReleaseNotesUrl: https://github.com/author-more/penpot-desktop/releases/tag/v0.16.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/author-more/penpot-desktop/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AuthorMore/PenpotDesktop/0.16.0/AuthorMore.PenpotDesktop.locale.zh-CN.yaml b/manifests/a/AuthorMore/PenpotDesktop/0.16.0/AuthorMore.PenpotDesktop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5a731f4558e2a --- /dev/null +++ b/manifests/a/AuthorMore/PenpotDesktop/0.16.0/AuthorMore.PenpotDesktop.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: AuthorMore.PenpotDesktop +PackageVersion: 0.16.0 +PackageLocale: zh-CN +ShortDescription: 开源设计工具 Penpot 的桌面应用程序 +Description: |- + Penpot Desktop 是开源设计工具 Penpot 的非官方桌面应用程序。 + 它可以让您访问 Penpot 浏览器版本的功能,并获得桌面应用程序的体验。它具有 + - 系统级应用体验,如专用窗口、文件扩展名关联; + - 多功能暗光模式设置; + - 标签界面,便于在项目间导航; + - 能够连接到不同的实例,如官方托管实例和本地离线工作实例; + - 以及更多即将推出的功能。 +Tags: +- 人机交互 +- 原型 +- 图表 +- 模型 +- 流程 +- 流程图 +- 用户界面 +- 界面 +- 线框图 +- 规格 +- 设计 +ReleaseNotesUrl: https://github.com/author-more/penpot-desktop/releases/tag/v0.16.0 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AuthorMore/PenpotDesktop/0.16.0/AuthorMore.PenpotDesktop.yaml b/manifests/a/AuthorMore/PenpotDesktop/0.16.0/AuthorMore.PenpotDesktop.yaml new file mode 100644 index 0000000000000..5693c59566688 --- /dev/null +++ b/manifests/a/AuthorMore/PenpotDesktop/0.16.0/AuthorMore.PenpotDesktop.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: AuthorMore.PenpotDesktop +PackageVersion: 0.16.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Autodesk/AutodeskAccess/2.15.0.514/Autodesk.AutodeskAccess.installer.yaml b/manifests/a/Autodesk/AutodeskAccess/2.15.0.514/Autodesk.AutodeskAccess.installer.yaml new file mode 100644 index 0000000000000..b7a898e037ed5 --- /dev/null +++ b/manifests/a/Autodesk/AutodeskAccess/2.15.0.514/Autodesk.AutodeskAccess.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: Autodesk.AutodeskAccess +PackageVersion: 2.15.0.514 +InstallerType: exe +Scope: machine +InstallerSwitches: + Silent: -q +ReleaseDate: 2025-07-01 +AppsAndFeaturesEntries: +- DisplayName: Autodesk Identity Manager + Publisher: Autodesk +Installers: +- Architecture: x64 + InstallerUrl: https://emsfs.autodesk.com/utility/access/1/installer/2_15_0_514/AdAccess-installer.exe + InstallerSha256: 59D5501240164765CAE00462C144ACA7F08BF67F85406E31A92552F4862F197E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Autodesk/AutodeskAccess/2.15.0.514/Autodesk.AutodeskAccess.locale.en-US.yaml b/manifests/a/Autodesk/AutodeskAccess/2.15.0.514/Autodesk.AutodeskAccess.locale.en-US.yaml new file mode 100644 index 0000000000000..fe28ab8961b14 --- /dev/null +++ b/manifests/a/Autodesk/AutodeskAccess/2.15.0.514/Autodesk.AutodeskAccess.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Autodesk.AutodeskAccess +PackageVersion: 2.15.0.514 +PackageLocale: en-US +Publisher: Autodesk +PackageName: Autodesk Access +License: © 2023 Autodesk Inc. All rights reserved +Copyright: Copyright 2022 Autodesk, Inc. All rights reserved. +ShortDescription: Autodesk Access simplifies the update experience. Quickly and easily install updates for your desktop products from the app. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Autodesk/AutodeskAccess/2.15.0.514/Autodesk.AutodeskAccess.yaml b/manifests/a/Autodesk/AutodeskAccess/2.15.0.514/Autodesk.AutodeskAccess.yaml new file mode 100644 index 0000000000000..e6ee0e25dea4d --- /dev/null +++ b/manifests/a/Autodesk/AutodeskAccess/2.15.0.514/Autodesk.AutodeskAccess.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: Autodesk.AutodeskAccess +PackageVersion: 2.15.0.514 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Automattic/harper-ls/0.45.0/Automattic.harper-ls.installer.yaml b/manifests/a/Automattic/harper-ls/0.45.0/Automattic.harper-ls.installer.yaml new file mode 100644 index 0000000000000..b4688b9e31d9b --- /dev/null +++ b/manifests/a/Automattic/harper-ls/0.45.0/Automattic.harper-ls.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Automattic.harper-ls +PackageVersion: 0.45.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: harper-ls.exe +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Automattic/harper/releases/download/v0.45.0/harper-ls-x86_64-pc-windows-msvc.zip + InstallerSha256: 3760D3F1AF2342DD7DDC1989F2F20743E09C31B589AF793FCC2215A50C671DAA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Automattic/harper-ls/0.45.0/Automattic.harper-ls.locale.en-US.yaml b/manifests/a/Automattic/harper-ls/0.45.0/Automattic.harper-ls.locale.en-US.yaml new file mode 100644 index 0000000000000..f1d69aa51634f --- /dev/null +++ b/manifests/a/Automattic/harper-ls/0.45.0/Automattic.harper-ls.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Automattic.harper-ls +PackageVersion: 0.45.0 +PackageLocale: en-US +Publisher: Automattic Inc. +PublisherUrl: https://automattic.com/ +PublisherSupportUrl: https://github.com/Automattic/harper/issues +Author: Automattic +PackageName: Harper Language Server +PackageUrl: https://github.com/Automattic/harper +License: Apache-2.0 +LicenseUrl: https://github.com/Automattic/harper/blob/HEAD/LICENSE +CopyrightUrl: https://github.com/Automattic/harper/blob/master/LICENSE +ShortDescription: Harper Grammar Checker Language Server Protocol +Moniker: harper +Tags: +- developer-tools +- english-language +- grammar-checker +- rust +- webassembly +ReleaseNotes: |- + What's Changed + - build(deps): bump tower-lsp-server from 0.21.1 to 0.22.0 by @dependabot in #1435 + - feat: make including bad forms optional by @hippietrail in #1424 + - test(core): remove duplicate tests by @86xsk in #1432 + - docs(POS): document UPOS variants by @86xsk in #1444 + - feat: don't pass unused dialect to Linters that don't use them by @hippietrail in #1453 + - feat: as it so happens→as it happens / on route→en route by @hippietrail in #1436 + - feat: add solidity support by @beeb in #1443 + - feat: improvements to pronoun metadata by @hippietrail in #1445 + - feat: somebody's else / else's by @hippietrail in #1448 + - feat: another thing coming vs another think coming by @hippietrail in #1438 + - feat: at/in the spur of the moment by @hippietrail in #1447 + - feat(core): add rule for pronouns followed by an inflection of be by @elijah-potter in #1442 + New Contributors + - @beeb made their first contribution in #1443 + Full Changelog: v0.44.0...v0.45.0 +ReleaseNotesUrl: https://github.com/Automattic/harper/releases/tag/v0.45.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Automattic/harper-ls/0.45.0/Automattic.harper-ls.yaml b/manifests/a/Automattic/harper-ls/0.45.0/Automattic.harper-ls.yaml new file mode 100644 index 0000000000000..4432e13b3e550 --- /dev/null +++ b/manifests/a/Automattic/harper-ls/0.45.0/Automattic.harper-ls.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: Automattic.harper-ls +PackageVersion: 0.45.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Automattic/harper-ls/0.46.0/Automattic.harper-ls.installer.yaml b/manifests/a/Automattic/harper-ls/0.46.0/Automattic.harper-ls.installer.yaml new file mode 100644 index 0000000000000..2b12d8b0f7f5a --- /dev/null +++ b/manifests/a/Automattic/harper-ls/0.46.0/Automattic.harper-ls.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Automattic.harper-ls +PackageVersion: 0.46.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: harper-ls.exe +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Automattic/harper/releases/download/v0.46.0/harper-ls-x86_64-pc-windows-msvc.zip + InstallerSha256: 4253A63BDB704A46D28EA8B32B23055B650198E0995C97BDDA7941475DF3DEEC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Automattic/harper-ls/0.46.0/Automattic.harper-ls.locale.en-US.yaml b/manifests/a/Automattic/harper-ls/0.46.0/Automattic.harper-ls.locale.en-US.yaml new file mode 100644 index 0000000000000..bb1d16ca61c58 --- /dev/null +++ b/manifests/a/Automattic/harper-ls/0.46.0/Automattic.harper-ls.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Automattic.harper-ls +PackageVersion: 0.46.0 +PackageLocale: en-US +Publisher: Automattic Inc. +PublisherUrl: https://automattic.com/ +PublisherSupportUrl: https://github.com/Automattic/harper/issues +Author: Automattic +PackageName: Harper Language Server +PackageUrl: https://github.com/Automattic/harper +License: Apache-2.0 +LicenseUrl: https://github.com/Automattic/harper/blob/HEAD/LICENSE +CopyrightUrl: https://github.com/Automattic/harper/blob/master/LICENSE +ShortDescription: Harper Grammar Checker Language Server Protocol +Moniker: harper +Tags: +- developer-tools +- english-language +- grammar-checker +- rust +- webassembly +ReleaseNotes: |- + What's Changed + - feat(chrome-ext): add configuration options by @elijah-potter in #1461 + - feat: linter for less worst, least worse, etc. by @hippietrail in #1457 + - feat:in the end of the day→at the end of the day by @hippietrail in #1456 + - fix: just printaffixes got broken by @hippietrail in #1460 + - fix(chrome-ext): ProseMirror problems in ChatGPT by @elijah-potter in #1459 + - feat(core): add to and tweak rule set by @elijah-potter in #1462 + - fix(core): auto detect dialect for snapshots by @86xsk in #1433 + - fix(core): we cannot respect spellcheck="off" by @elijah-potter in #1467 + - feat: in the cards ⇔ on the cards by @hippietrail in #1454 + Full Changelog: v0.45.0...v0.46.0 +ReleaseNotesUrl: https://github.com/Automattic/harper/releases/tag/v0.46.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Automattic/harper-ls/0.46.0/Automattic.harper-ls.yaml b/manifests/a/Automattic/harper-ls/0.46.0/Automattic.harper-ls.yaml new file mode 100644 index 0000000000000..24de400261b0d --- /dev/null +++ b/manifests/a/Automattic/harper-ls/0.46.0/Automattic.harper-ls.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: Automattic.harper-ls +PackageVersion: 0.46.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Automattic/harper-ls/0.47.0/Automattic.harper-ls.installer.yaml b/manifests/a/Automattic/harper-ls/0.47.0/Automattic.harper-ls.installer.yaml new file mode 100644 index 0000000000000..32563119af049 --- /dev/null +++ b/manifests/a/Automattic/harper-ls/0.47.0/Automattic.harper-ls.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Automattic.harper-ls +PackageVersion: 0.47.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: harper-ls.exe +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Automattic/harper/releases/download/v0.47.0/harper-ls-x86_64-pc-windows-msvc.zip + InstallerSha256: 776EE16263E12EDB58B4D1541412F0347AD57B3D89D23AC9BC592DCC649E2A7F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Automattic/harper-ls/0.47.0/Automattic.harper-ls.locale.en-US.yaml b/manifests/a/Automattic/harper-ls/0.47.0/Automattic.harper-ls.locale.en-US.yaml new file mode 100644 index 0000000000000..4e0c5a0be3250 --- /dev/null +++ b/manifests/a/Automattic/harper-ls/0.47.0/Automattic.harper-ls.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Automattic.harper-ls +PackageVersion: 0.47.0 +PackageLocale: en-US +Publisher: Automattic Inc. +PublisherUrl: https://automattic.com/ +PublisherSupportUrl: https://github.com/Automattic/harper/issues +Author: Automattic +PackageName: Harper Language Server +PackageUrl: https://github.com/Automattic/harper +License: Apache-2.0 +LicenseUrl: https://github.com/Automattic/harper/blob/HEAD/LICENSE +CopyrightUrl: https://github.com/Automattic/harper/blob/master/LICENSE +ShortDescription: Harper Grammar Checker Language Server Protocol +Moniker: harper +Tags: +- developer-tools +- english-language +- grammar-checker +- rust +- webassembly +ReleaseNotes: |- + What's Changed + - fix(core): support progressive/perfect forms after "its" + 1 by @kiding in #1469 + - build(deps): bump indexmap from 2.9.0 to 2.10.0 by @dependabot in #1479 + - build(deps): bump lru from 0.14.0 to 0.15.0 by @dependabot in #1480 + - feat: add LintKind colours to the Playwright HTML report by @hippietrail in #1481 + - feat: no match against/of/to → no match for by @hippietrail in #1458 + - feat(cli): allow direct text (non-file) input by @86xsk in #1476 + - feat: thing→think by @hippietrail in #1451 + - fix(chrome-ext): address scrolling problems by @elijah-potter in #1485 + Full Changelog: v0.46.0...v0.47.0 +ReleaseNotesUrl: https://github.com/Automattic/harper/releases/tag/v0.47.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Automattic/harper-ls/0.47.0/Automattic.harper-ls.yaml b/manifests/a/Automattic/harper-ls/0.47.0/Automattic.harper-ls.yaml new file mode 100644 index 0000000000000..e0e03ec6750e6 --- /dev/null +++ b/manifests/a/Automattic/harper-ls/0.47.0/Automattic.harper-ls.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: Automattic.harper-ls +PackageVersion: 0.47.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Automattic/harper-ls/0.48.0/Automattic.harper-ls.installer.yaml b/manifests/a/Automattic/harper-ls/0.48.0/Automattic.harper-ls.installer.yaml new file mode 100644 index 0000000000000..e8d4fa81203ee --- /dev/null +++ b/manifests/a/Automattic/harper-ls/0.48.0/Automattic.harper-ls.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Automattic.harper-ls +PackageVersion: 0.48.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: harper-ls.exe +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Automattic/harper/releases/download/v0.48.0/harper-ls-x86_64-pc-windows-msvc.zip + InstallerSha256: 59FD50070E6D8DAA77A5242E66AC6B0652973B9BE78DE42ED63E3B534571E238 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Automattic/harper-ls/0.48.0/Automattic.harper-ls.locale.en-US.yaml b/manifests/a/Automattic/harper-ls/0.48.0/Automattic.harper-ls.locale.en-US.yaml new file mode 100644 index 0000000000000..da433e1c54ecb --- /dev/null +++ b/manifests/a/Automattic/harper-ls/0.48.0/Automattic.harper-ls.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Automattic.harper-ls +PackageVersion: 0.48.0 +PackageLocale: en-US +Publisher: Automattic Inc. +PublisherUrl: https://automattic.com/ +PublisherSupportUrl: https://github.com/Automattic/harper/issues +Author: Automattic +PackageName: Harper Language Server +PackageUrl: https://github.com/Automattic/harper +License: Apache-2.0 +LicenseUrl: https://github.com/Automattic/harper/blob/HEAD/LICENSE +CopyrightUrl: https://github.com/Automattic/harper/blob/master/LICENSE +ShortDescription: Harper Grammar Checker Language Server Protocol +Moniker: harper +Tags: +- developer-tools +- english-language +- grammar-checker +- rust +- webassembly +ReleaseNotes: |- + What's Changed + - feat(core): create linter for discourse markers by @elijah-potter in #1470 + - refactor(core): rename insert_pattern_rule! by @86xsk in #1487 + - fix(ls): duplicate lints by @elijah-potter in #1490 + - chore: augment and refactor metadata by @hippietrail in #1488 + - fix(core): use tagger to improve certainty in HowTo lint by @elijah-potter in #1489 + - feat: replace terms from dialects with local synonyms by @hippietrail in #1475 + - feat(core): write linter to detect erroneous use of plurality by @elijah-potter in #1486 + - fix: fix issue 1495 by @hippietrail in #1502 + - chore: curate dictionary by @hippietrail in #1501 + - test(chrome-ext): on Firefox in Playwright by @elijah-potter in #1491 + Full Changelog: v0.47.0...v0.48.0 +ReleaseNotesUrl: https://github.com/Automattic/harper/releases/tag/v0.48.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Automattic/harper-ls/0.48.0/Automattic.harper-ls.yaml b/manifests/a/Automattic/harper-ls/0.48.0/Automattic.harper-ls.yaml new file mode 100644 index 0000000000000..84fd34fa7f664 --- /dev/null +++ b/manifests/a/Automattic/harper-ls/0.48.0/Automattic.harper-ls.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: Automattic.harper-ls +PackageVersion: 0.48.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AvaCC/AvaDesktop/2.1.9/AvaCC.AvaDesktop.installer.yaml b/manifests/a/AvaCC/AvaDesktop/2.1.9/AvaCC.AvaDesktop.installer.yaml new file mode 100644 index 0000000000000..162651d96bf3b --- /dev/null +++ b/manifests/a/AvaCC/AvaDesktop/2.1.9/AvaCC.AvaDesktop.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: AvaCC.AvaDesktop +PackageVersion: 2.1.9 +InstallerType: nullsoft +AppsAndFeaturesEntries: +- Publisher: ava + ProductCode: AvaCC +Installers: +- Architecture: x64 + InstallerUrl: https://ava-tauri-prod.s3.amazonaws.com/app-v2.1.9/AvaCC_2.1.9_x64-setup.exe + InstallerSha256: AE9CB44C20CF60D67BECFDA113F907F912F8E8645EFA6076C734A42C00BB54A2 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/a/AvaCC/AvaDesktop/2.1.9/AvaCC.AvaDesktop.locale.en-US.yaml b/manifests/a/AvaCC/AvaDesktop/2.1.9/AvaCC.AvaDesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..3db3efc006660 --- /dev/null +++ b/manifests/a/AvaCC/AvaDesktop/2.1.9/AvaCC.AvaDesktop.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: AvaCC.AvaDesktop +PackageVersion: 2.1.9 +PackageLocale: en-US +Publisher: Transcense, Inc. +PublisherUrl: https://www.ava.me/ +PublisherSupportUrl: https://help.ava.me/ +PrivacyUrl: https://www.ava.me/privacy +Author: Transcense, Inc. +PackageName: Ava Desktop +PackageUrl: https://www.ava.me/download +License: Proprietary +LicenseUrl: https://www.ava.me/terms +Copyright: © Ava 2024 +ShortDescription: Live captions for Deaf and hard-of-hearing people. +Description: |- + Live captions for Deaf and hard-of-hearing people.
 Download Ava on all your devices: smartphone, tablet and computer and enjoy subtitles for all situations. Available 24/7, any time, for any situation. +Moniker: ava +Tags: +- live-captions +- captions +- subtitles +- transcription +- transcriber +- speech-to-text +- deaf +- hard-of-hearing +- ADA +ReleaseNotesUrl: https://ava.canny.io/changelog?labels=desktop-app +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/AvaCC/AvaDesktop/2.1.9/AvaCC.AvaDesktop.yaml b/manifests/a/AvaCC/AvaDesktop/2.1.9/AvaCC.AvaDesktop.yaml new file mode 100644 index 0000000000000..905c2241be664 --- /dev/null +++ b/manifests/a/AvaCC/AvaDesktop/2.1.9/AvaCC.AvaDesktop.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: AvaCC.AvaDesktop +PackageVersion: 2.1.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/Avangelista/CowabungaLite/1.0.0/Avangelista.CowabungaLite.installer.yaml b/manifests/a/Avangelista/CowabungaLite/1.0.0/Avangelista.CowabungaLite.installer.yaml deleted file mode 100644 index 5e7076e2c7c02..0000000000000 --- a/manifests/a/Avangelista/CowabungaLite/1.0.0/Avangelista.CowabungaLite.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.2 $debug=NVS0.CRLF.5-1-22621-963.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: Avangelista.CowabungaLite -PackageVersion: "1.0.0" -InstallerLocale: en-US -InstallerType: zip -ReleaseDate: 2023-09-25 -Installers: -- Architecture: x64 - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: './CowabungaLite/CowabungaLite.exe' - PortableCommandAlias: cowabungalite - InstallerUrl: https://github.com/Avangelista/CowabungaLiteWindows/releases/download/1.0.0/CowabungaLite.zip - InstallerSha256: 7EB2BAB003604682E9D5A9748A29AEC5FAB138AC4E2267E159C988A34ADE9E24 -# This can be uncommented once we can use mixed sources -# Dependencies: -# PackageDependencies: -# - PackageIdentifier: 9PB2MZ1ZMB1S # Apple.iTunes doesn't have the required package installed -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/a/Avangelista/CowabungaLite/1.0.0/Avangelista.CowabungaLite.locale.en-US.yaml b/manifests/a/Avangelista/CowabungaLite/1.0.0/Avangelista.CowabungaLite.locale.en-US.yaml deleted file mode 100644 index 67551c7f50fd1..0000000000000 --- a/manifests/a/Avangelista/CowabungaLite/1.0.0/Avangelista.CowabungaLite.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.2 $debug=NVS0.CRLF.5-1-22621-963.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: Avangelista.CowabungaLite -PackageVersion: "1.0.0" -PackageLocale: en-US -Publisher: Avangelista -PublisherUrl: https://github.com/Avangelista/CowabungaLiteWindows -PublisherSupportUrl: https://discord.gg/Cowabunga -# PrivacyUrl: -Author: Rory Madden -PackageName: CowabungaLite -PackageUrl: https://openrgb.org/ -License: GPL-3.0 license -LicenseUrl: https://github.com/Avangelista/CowabungaLiteWindows/blob/main/LICENSE -#Copyright: -# CopyrightUrl: -ShortDescription: A jailed customization toolbox for iOS 15+ on all devices. -Moniker: cowabungalite -Tags: -- CowabungaLite -- Theming -- iOS -- iPadOS -- Portable -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/Avangelista/CowabungaLiteWindows/releases/tag/1.0.0 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/a/Avangelista/CowabungaLite/1.0.0/Avangelista.CowabungaLite.yaml b/manifests/a/Avangelista/CowabungaLite/1.0.0/Avangelista.CowabungaLite.yaml deleted file mode 100644 index bc746f7072ac6..0000000000000 --- a/manifests/a/Avangelista/CowabungaLite/1.0.0/Avangelista.CowabungaLite.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.2 $debug=NVS0.CRLF.5-1-22621-963.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: Avangelista.CowabungaLite -PackageVersion: "1.0.0" -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 \ No newline at end of file diff --git a/manifests/a/Avangelista/CowabungaLite/1.0.1/Avangelista.CowabungaLite.installer.yaml b/manifests/a/Avangelista/CowabungaLite/1.0.1/Avangelista.CowabungaLite.installer.yaml deleted file mode 100644 index d1ea2af70ef03..0000000000000 --- a/manifests/a/Avangelista/CowabungaLite/1.0.1/Avangelista.CowabungaLite.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.2 $debug=NVS0.CRLF.5-1-22621-963.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: Avangelista.CowabungaLite -PackageVersion: "1.0.1" -InstallerLocale: en-US -InstallerType: zip -ReleaseDate: 2023-09-26 -Installers: -- Architecture: x64 - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: './CowabungaLite-1.0.1/CowabungaLite.exe' - PortableCommandAlias: cowabungalite - InstallerUrl: https://github.com/Avangelista/CowabungaLiteWindows/releases/download/1.0.1/CowabungaLite.zip - InstallerSha256: D24FD785AE49A197801E02DE8CCEE19FF2C67EBAA12E7A21FC1466EFA7445D37 -# This can be uncommented once we can use mixed sources -# Dependencies: -# PackageDependencies: -# - PackageIdentifier: 9PB2MZ1ZMB1S # Apple.iTunes doesn't have the required package installed -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/a/Avangelista/CowabungaLite/1.0.1/Avangelista.CowabungaLite.locale.en-US.yaml b/manifests/a/Avangelista/CowabungaLite/1.0.1/Avangelista.CowabungaLite.locale.en-US.yaml deleted file mode 100644 index f64a51cd7384e..0000000000000 --- a/manifests/a/Avangelista/CowabungaLite/1.0.1/Avangelista.CowabungaLite.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.2 $debug=NVS0.CRLF.5-1-22621-963.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: Avangelista.CowabungaLite -PackageVersion: "1.0.1" -PackageLocale: en-US -Publisher: Avangelista -PublisherUrl: https://github.com/Avangelista/CowabungaLiteWindows -PublisherSupportUrl: https://discord.gg/Cowabunga -# PrivacyUrl: -Author: Rory Madden -PackageName: CowabungaLite -PackageUrl: https://openrgb.org/ -License: GPL-3.0 license -LicenseUrl: https://github.com/Avangelista/CowabungaLiteWindows/blob/main/LICENSE -#Copyright: -# CopyrightUrl: -ShortDescription: A jailed customization toolbox for iOS 15+ on all devices. -Moniker: cowabungalite -Tags: -- CowabungaLite -- Theming -- iOS -- iPadOS -- Portable -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/Avangelista/CowabungaLiteWindows/releases/tag/1.0.1 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 \ No newline at end of file diff --git a/manifests/a/Avangelista/CowabungaLite/1.0.1/Avangelista.CowabungaLite.yaml b/manifests/a/Avangelista/CowabungaLite/1.0.1/Avangelista.CowabungaLite.yaml deleted file mode 100644 index 8273f37f03376..0000000000000 --- a/manifests/a/Avangelista/CowabungaLite/1.0.1/Avangelista.CowabungaLite.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.2 $debug=NVS0.CRLF.5-1-22621-963.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: Avangelista.CowabungaLite -PackageVersion: "1.0.1" -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 \ No newline at end of file diff --git a/manifests/a/Avangelista/CowabungaLite/1.0.2/Avangelista.CowabungaLite.installer.yaml b/manifests/a/Avangelista/CowabungaLite/1.0.2/Avangelista.CowabungaLite.installer.yaml deleted file mode 100644 index b28f202b1426c..0000000000000 --- a/manifests/a/Avangelista/CowabungaLite/1.0.2/Avangelista.CowabungaLite.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with komac v2.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: Avangelista.CowabungaLite -PackageVersion: 1.0.2 -InstallerLocale: en-US -InstallerType: zip -NestedInstallerType: portable -NestedInstallerFiles: -- RelativeFilePath: CowabungaLite.exe - PortableCommandAlias: cowabungalite -ReleaseDate: 2024-07-03 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/Avangelista/CowabungaLiteWindows/releases/download/1.0.2/CowabungaLite.zip - InstallerSha256: 477FDAADA52493E42FA725BB7425264796B157ED7713D54BB6ACF72933242D92 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/a/Avangelista/CowabungaLite/1.0.2/Avangelista.CowabungaLite.locale.en-US.yaml b/manifests/a/Avangelista/CowabungaLite/1.0.2/Avangelista.CowabungaLite.locale.en-US.yaml deleted file mode 100644 index 2481f7b39e447..0000000000000 --- a/manifests/a/Avangelista/CowabungaLite/1.0.2/Avangelista.CowabungaLite.locale.en-US.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Created with komac v2.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: Avangelista.CowabungaLite -PackageVersion: 1.0.2 -PackageLocale: en-US -Publisher: Avangelista -PublisherUrl: https://github.com/Avangelista/CowabungaLiteWindows -PublisherSupportUrl: https://discord.gg/Cowabunga -Author: Rory Madden -PackageName: CowabungaLite -PackageUrl: https://openrgb.org/ -License: GPL-3.0 -LicenseUrl: https://github.com/Avangelista/CowabungaLiteWindows/blob/HEAD/LICENSE -ShortDescription: A jailed customization toolbox for iOS 15+ on all devices. -Moniker: cowabungalite -Tags: -- CowabungaLite -- Portable -- Theming -- iOS -- iPadOS -ReleaseNotes: |- - - Fix setup bypass - - Deprecate location spoofer - - Fix status setter on iOS 16.3+ -ReleaseNotesUrl: https://github.com/Avangelista/CowabungaLiteWindows/releases/tag/1.0.2 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/a/Avangelista/CowabungaLite/1.0.2/Avangelista.CowabungaLite.yaml b/manifests/a/Avangelista/CowabungaLite/1.0.2/Avangelista.CowabungaLite.yaml deleted file mode 100644 index 828f1e5c96ea5..0000000000000 --- a/manifests/a/Avangelista/CowabungaLite/1.0.2/Avangelista.CowabungaLite.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: Avangelista.CowabungaLite -PackageVersion: 1.0.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/a/Avanquestpdfforge/PDFCreator-Free/6.1.0/Avanquestpdfforge.PDFCreator-Free.installer.yaml b/manifests/a/Avanquestpdfforge/PDFCreator-Free/6.1.0/Avanquestpdfforge.PDFCreator-Free.installer.yaml new file mode 100644 index 0000000000000..8a4bdf822188f --- /dev/null +++ b/manifests/a/Avanquestpdfforge/PDFCreator-Free/6.1.0/Avanquestpdfforge.PDFCreator-Free.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Avanquestpdfforge.PDFCreator-Free +PackageVersion: 6.1.0 +InstallerType: burn +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /COMPONENTS="MAINPROGRAM,IMAGES2PDF,HOTFOLDER" /SILENT + SilentWithProgress: /COMPONENTS="MAINPROGRAM,IMAGES2PDF,HOTFOLDER" /SILENT +UpgradeBehavior: install +ReleaseDate: 2025-07-01 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://download.pdfforge.org/download/pdfcreator/6.1.0/PDFCreator-6_1_0-Setup.exe?file=PDFCreator-6_1_0-Setup.exe&download + InstallerSha256: 7195e1d064922f8ea8e1e1d1b5d3eb7238f6faff8732237cdd51777a77b3bf78 +- Architecture: arm64 + InstallerUrl: https://download.pdfforge.org/download/pdfcreator/6.1.0/PDFCreator-6_1_0-Setup.exe?file=PDFCreator-6_1_0-Setup.exe&download + InstallerSha256: 7195e1d064922f8ea8e1e1d1b5d3eb7238f6faff8732237cdd51777a77b3bf78 +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/a/Avanquestpdfforge/PDFCreator-Free/6.1.0/Avanquestpdfforge.PDFCreator-Free.locale.en-US.yaml b/manifests/a/Avanquestpdfforge/PDFCreator-Free/6.1.0/Avanquestpdfforge.PDFCreator-Free.locale.en-US.yaml new file mode 100644 index 0000000000000..26e2b33e753df --- /dev/null +++ b/manifests/a/Avanquestpdfforge/PDFCreator-Free/6.1.0/Avanquestpdfforge.PDFCreator-Free.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Avanquestpdfforge.PDFCreator-Free +PackageVersion: 6.1.0 +PackageLocale: en-US +Publisher: Avanquest pdfforge GmbH +PublisherSupportUrl: https://www.pdfforge.org/pdfcreator/support +PackageName: PDFCreator Free +PackageUrl: https://www.pdfforge.org/pdfcreator/editions +License: GNU AGPL (and others) +LicenseUrl: https://docs.pdfforge.org/pdfcreator/en/pdfcreator/license/ +Copyright: Copyright (c) {year} Avanquest pdfforge GmbH. All rights reserved. +CopyrightUrl: https://docs.pdfforge.org/pdfcreator/en/pdfcreator/license/ +ShortDescription: PDFCreator is the easy way of creating PDFs. +Moniker: PDFCreator-Free +Tags: +- automation +- file-compression +- file-conversion +- pdf +- pdfcreator +- tool +- utility +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/a/Avanquestpdfforge/PDFCreator-Free/6.1.0/Avanquestpdfforge.PDFCreator-Free.yaml b/manifests/a/Avanquestpdfforge/PDFCreator-Free/6.1.0/Avanquestpdfforge.PDFCreator-Free.yaml new file mode 100644 index 0000000000000..093c367dcf652 --- /dev/null +++ b/manifests/a/Avanquestpdfforge/PDFCreator-Free/6.1.0/Avanquestpdfforge.PDFCreator-Free.yaml @@ -0,0 +1,9 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Avanquestpdfforge.PDFCreator-Free +PackageVersion: 6.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/a/Avanquestpdfforge/PDFCreator-Professional/6.1.0/Avanquestpdfforge.PDFCreator-Professional.installer.yaml b/manifests/a/Avanquestpdfforge/PDFCreator-Professional/6.1.0/Avanquestpdfforge.PDFCreator-Professional.installer.yaml new file mode 100644 index 0000000000000..2e88a4b0d388c --- /dev/null +++ b/manifests/a/Avanquestpdfforge/PDFCreator-Professional/6.1.0/Avanquestpdfforge.PDFCreator-Professional.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Avanquestpdfforge.PDFCreator-Professional +PackageVersion: 6.1.0 +InstallerType: burn +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /COMPONENTS="MAINPROGRAM,IMAGES2PDF,HOTFOLDER" /SILENT /DEFERLICENSECHECK + SilentWithProgress: /COMPONENTS="MAINPROGRAM,IMAGES2PDF,HOTFOLDER" /SILENT /DEFERLICENSECHECK +UpgradeBehavior: install +ReleaseDate: 2025-07-01 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://download.pdfforge.org/download/pdfcreator-professional/6.1.0/PDFCreator-Professional-6_1_0-Setup.exe?file=PDFCreator-Professional-6_1_0-Setup.exe&download + InstallerSha256: 33532910e4552b16691aa0a215252f7414e0a7970322ba0f4fb539d05d1689ce +- Architecture: arm64 + InstallerUrl: https://download.pdfforge.org/download/pdfcreator-professional/6.1.0/PDFCreator-Professional-6_1_0-Setup.exe?file=PDFCreator-Professional-6_1_0-Setup.exe&download + InstallerSha256: 33532910e4552b16691aa0a215252f7414e0a7970322ba0f4fb539d05d1689ce +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/a/Avanquestpdfforge/PDFCreator-Professional/6.1.0/Avanquestpdfforge.PDFCreator-Professional.locale.en-US.yaml b/manifests/a/Avanquestpdfforge/PDFCreator-Professional/6.1.0/Avanquestpdfforge.PDFCreator-Professional.locale.en-US.yaml new file mode 100644 index 0000000000000..9f0cdce933220 --- /dev/null +++ b/manifests/a/Avanquestpdfforge/PDFCreator-Professional/6.1.0/Avanquestpdfforge.PDFCreator-Professional.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Avanquestpdfforge.PDFCreator-Professional +PackageVersion: 6.1.0 +PackageLocale: en-US +Publisher: Avanquest pdfforge GmbH +PublisherSupportUrl: https://www.pdfforge.org/pdfcreator/support +PackageName: PDFCreator Professional +PackageUrl: https://www.pdfforge.org/pdfcreator/editions +License: GNU AGPL (and others) +LicenseUrl: https://docs.pdfforge.org/pdfcreator/en/pdfcreator/license/ +Copyright: Copyright (c) 2025 Avanquest pdfforge GmbH. All rights reserved. +CopyrightUrl: https://docs.pdfforge.org/pdfcreator/en/pdfcreator/license/ +ShortDescription: PDFCreator is the easy way of creating PDFs. +Moniker: PDFCreator-Professional +Tags: +- automation +- file-compression +- file-conversion +- pdf +- pdfcreator +- tool +- utility +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/a/Avanquestpdfforge/PDFCreator-Professional/6.1.0/Avanquestpdfforge.PDFCreator-Professional.yaml b/manifests/a/Avanquestpdfforge/PDFCreator-Professional/6.1.0/Avanquestpdfforge.PDFCreator-Professional.yaml new file mode 100644 index 0000000000000..a4c43c61fa684 --- /dev/null +++ b/manifests/a/Avanquestpdfforge/PDFCreator-Professional/6.1.0/Avanquestpdfforge.PDFCreator-Professional.yaml @@ -0,0 +1,9 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Avanquestpdfforge.PDFCreator-Professional +PackageVersion: 6.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/a/Avanquestpdfforge/PDFCreator-Terminal-Server/6.1.0/Avanquestpdfforge.PDFCreator-Terminal-Server.installer.yaml b/manifests/a/Avanquestpdfforge/PDFCreator-Terminal-Server/6.1.0/Avanquestpdfforge.PDFCreator-Terminal-Server.installer.yaml new file mode 100644 index 0000000000000..836d75e7d0092 --- /dev/null +++ b/manifests/a/Avanquestpdfforge/PDFCreator-Terminal-Server/6.1.0/Avanquestpdfforge.PDFCreator-Terminal-Server.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Avanquestpdfforge.PDFCreator-Terminal-Server +PackageVersion: 6.1.0 +InstallerType: burn +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /COMPONENTS="MAINPROGRAM,IMAGES2PDF,HOTFOLDER" /SILENT /DEFERLICENSECHECK + SilentWithProgress: /COMPONENTS="MAINPROGRAM,IMAGES2PDF,HOTFOLDER" /SILENT /DEFERLICENSECHECK +UpgradeBehavior: install +ReleaseDate: 2025-07-01 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://download.pdfforge.org/download/pdfcreator-terminal-server/6.1.0/PDFCreator-Terminal-Server-6_1_0-Setup.exe?file=PDFCreator-Terminal-Server-6_1_0-Setup.exe&download + InstallerSha256: c61f44feafcfd4ba501e7a75bf99a34a77f5b20b030e24e84b76d0fbf2f87eab +- Architecture: arm64 + InstallerUrl: https://download.pdfforge.org/download/pdfcreator-terminal-server/6.1.0/PDFCreator-Terminal-Server-6_1_0-Setup.exe?file=PDFCreator-Terminal-Server-6_1_0-Setup.exe&download + InstallerSha256: c61f44feafcfd4ba501e7a75bf99a34a77f5b20b030e24e84b76d0fbf2f87eab +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/a/Avanquestpdfforge/PDFCreator-Terminal-Server/6.1.0/Avanquestpdfforge.PDFCreator-Terminal-Server.locale.en-US.yaml b/manifests/a/Avanquestpdfforge/PDFCreator-Terminal-Server/6.1.0/Avanquestpdfforge.PDFCreator-Terminal-Server.locale.en-US.yaml new file mode 100644 index 0000000000000..e0b03f03f5d6e --- /dev/null +++ b/manifests/a/Avanquestpdfforge/PDFCreator-Terminal-Server/6.1.0/Avanquestpdfforge.PDFCreator-Terminal-Server.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Avanquestpdfforge.PDFCreator-Terminal-Server +PackageVersion: 6.1.0 +PackageLocale: en-US +Publisher: Avanquest pdfforge GmbH +PublisherSupportUrl: https://www.pdfforge.org/pdfcreator/support +PackageName: PDFCreator Terminal Server +PackageUrl: https://www.pdfforge.org/pdfcreator/editions +License: GNU AGPL (and others) +LicenseUrl: https://docs.pdfforge.org/pdfcreator/en/pdfcreator/license/ +Copyright: Copyright (c) 2025 Avanquest pdfforge GmbH. All rights reserved. +CopyrightUrl: https://docs.pdfforge.org/pdfcreator/en/pdfcreator/license/ +ShortDescription: PDFCreator is the easy way of creating PDFs. +Moniker: PDFCreator-Terminal-Server +Tags: +- automation +- file-compression +- file-conversion +- pdf +- pdfcreator +- tool +- utility +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/a/Avanquestpdfforge/PDFCreator-Terminal-Server/6.1.0/Avanquestpdfforge.PDFCreator-Terminal-Server.yaml b/manifests/a/Avanquestpdfforge/PDFCreator-Terminal-Server/6.1.0/Avanquestpdfforge.PDFCreator-Terminal-Server.yaml new file mode 100644 index 0000000000000..775ebb06a41e4 --- /dev/null +++ b/manifests/a/Avanquestpdfforge/PDFCreator-Terminal-Server/6.1.0/Avanquestpdfforge.PDFCreator-Terminal-Server.yaml @@ -0,0 +1,9 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Avanquestpdfforge.PDFCreator-Terminal-Server +PackageVersion: 6.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/a/Avogadro/Avogadro/2/1.100.0/Avogadro.Avogadro.2.installer.yaml b/manifests/a/Avogadro/Avogadro/2/1.100.0/Avogadro.Avogadro.2.installer.yaml new file mode 100644 index 0000000000000..34163b1b3870b --- /dev/null +++ b/manifests/a/Avogadro/Avogadro/2/1.100.0/Avogadro.Avogadro.2.installer.yaml @@ -0,0 +1,15 @@ +# 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: Avogadro.Avogadro.2 +PackageVersion: 1.100.0 +InstallerType: nullsoft +Scope: machine +ProductCode: Avogadro2 +ReleaseDate: 2025-01-22 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/OpenChemistry/avogadrolibs/releases/download/1.100.0/Avogadro2-1.100.0-win64.exe + InstallerSha256: 388297B969B3CB832F37822B8A31F5EB32BF98047C505E49A02E63451287FA00 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Avogadro/Avogadro/2/1.100.0/Avogadro.Avogadro.2.locale.en-US.yaml b/manifests/a/Avogadro/Avogadro/2/1.100.0/Avogadro.Avogadro.2.locale.en-US.yaml new file mode 100644 index 0000000000000..7304dc60d4116 --- /dev/null +++ b/manifests/a/Avogadro/Avogadro/2/1.100.0/Avogadro.Avogadro.2.locale.en-US.yaml @@ -0,0 +1,151 @@ +# 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: Avogadro.Avogadro.2 +PackageVersion: 1.100.0 +PackageLocale: en-US +Publisher: https://avogadro.cc/ +PublisherUrl: https://avogadro.cc/ +PublisherSupportUrl: https://two.avogadro.cc/contrib/ +# PrivacyUrl: +# Author: +PackageName: Avogadro2 +PackageUrl: https://two.avogadro.cc/ +License: BSD-3-Clause +LicenseUrl: https://github.com/OpenChemistry/avogadrolibs/blob/HEAD/LICENSE +Copyright: Copyright (c) 2011-2025, Kitware, Inc. +# CopyrightUrl: +ShortDescription: A free and open source molecular editor and visualization tool. +Description: |- + Avogadro is an advanced free and open source molecular editor and visualization tool. + It is highly capable and designed for use in computational chemistry, molecular modeling, chemistry education, bioinformatics, materials science, and related areas. + It offers flexible high-quality rendering, a modern UI with native styling, and a powerful plugin architecture. + Avogadro is designed for cross-platform use and is fully supported on Windows, Linux, and macOS. +# Moniker: +Tags: +- chemistry +- molecular +ReleaseNotes: |- + 🌟 Highlights (tldr) + - New rendering options, including depth-of-field blur and fog from @perminder-17 + - Faster surface mesh generation using the flying edges algorithm @perminder-17 + - Brought back the "molecular orbitals" panel @ghutchis + - Support for translucent balls-and-sticks, van der Waals spheres, and licorice rendering including per-layer customization @ghutchis + - New, improved Flatpak package from @matterhorn103 including support for ARM + - New conformer properties window @ghutchis + - New improved molecular properties window, including charge and spin multiplicity, HOMO and LUMO energies, total energies and other properties (depending on file format) @ghutchis + - Many more properties parsed from ORCA output files including Hirshfeld, MBIS, and CHELPG charges @ghutchis + - Code signing on Windows to minimize Defender warnings @ghutchis thanks to SignPath + - Support for latest Qt6 on Linux @matterhorn103 + ✨ Features + - Improved spectra plots, including NMR, UV and CD spectra (#1874) + - Add support for reading and rendering DNA / RNA backbones (#1831) + - Improve python selection dialog (#1844) + - Calculate and render dipole moments + - Edit molecule name, charge, and spin in properties (#1810) + - Improve manipulate dialog - rotate around origin, molecule center, selection center (#1774) + - Update the template tool to place ligands or functional groups (#1777) + - Support for additional secondary structures (3-10 and pi helix) @TactfulDeity (#1746) + - Implement g orbitals (#1826) + - cp2kinput improvements @e-kwsm (#1702) + - Add support to render atomic partial charge labels (#1726) + - Add support to render bond lengths (#1871) + - Add HOMO and LUMO energies to molecular properties (#1803) + - Add Shortcut Keys to navigate/modify tools (Issue #1794) @Milziade (#1807) + - Add "change elements" dialog (#1863) + - Editing molecular charge / spin => input generators and plugins + 📄 File Format Improvements: + - Parse inputParameters if present in cjson (#1849) + - Read radicals from SDF / Molfile (#1848) + - Parse more MOPAC aux properties including coordinates (#1843) + - Parse CHELPG charges from ORCA output too (#1829) + - Export to XYZ format with 10 decimal precision as per forum debate (#1824) + - Read MBIS charges from ORCA output (#1823) + - Read multiple ORCA coordinate sets (#1808) + - Parse NMR spectra from ORCA (#1799) + - Parse ORCA electronic spectra (#1797) + - Add basic support for v3000 molfiles, including for large molecules (#1765) + - Small patch to parsing XYZ trajectories to handle ORCA 6 separators (#1705) + - Add support for reading and writing atom force vectors (#1674) + - Support reading files in UTF-16 format + 🐛 Bug Fixes + - Allow surface generation to be cancelled (#1894) + - Add progress bar for optimizations, including cancel (#1893) + - Switch text rendering to use interpolation (#1917) + - Fix code for haptic ligands. Pick the furthest dummy to attach (#1916) + - Only enable the PQR search command if the site is reachable (#1892) + - Tweak the centroid and center-of-mass commands (#1891) + - Fix manipulate and label tools to rotate by default (#1861) + - Fix right-click to delete a hydrogen and adjusting after deleting a bond (#1896) + - Copy bonds and bond orders when generating super cells (#1898) + - Fix parsing molecular orbital coefficients in some ORCA output files (#1899) + - Handle upper-case [ATOMS] line in Molden files from Cfour (#1785) + - Fix plugin downloader @matterhorn103 (#1767) + - Prevent a possible unhandled exception from parsing JSON (#1742) + - Fix crash when creating ligands from the clipboard -- off-by-one bug (#1739) + - Ensure BABEL_LIBDIR and BABEL_DATADIR are set properly on Mac (#1736) + - Fix XYZ trajectories - prevent final frame with 0,0,0 coords (#1720) + - Make sure the measure tool has a good contrast with background color (#1718) + - Switch import format for Open Babel to CJSON if supported (#1707) + - Fix perception of amide nitrogens - should be sp2-like (#1652) + - Default tool wasn't set properly, so rotations, etc. ignored (#1647) + - Add more error checking for Fetch PDB (#1646) + - Fix bug reported in #1637 with mis-parsing selenium atoms in PDB (#1643) + - Ask before re-perceiving a space group (#1639) + - Switch back to importing from PDB using PDB instead of MMTF format (#1642) + - Fix crash with short TER record (#1640) + - Fix crash when reading cjson with invalid layer data (#1636) + - Fixed Select bugs reported on forum (#1625) + - Fix crash from centroids with empty molecule (#1624) + - Fix crash at startup when opening a file from command-line (#1621) + - Fix drag-to-install for scripts, esp. energy calculators + - App crashes when clicking "Optimize Geometry" without any atom @perminder-17 (#1661) + - Clarify line width / size in spectra dialog (#1678) + - Add double-check for addEdge to prevent potential crash (#1704) + - Ensure "split" buttons don't create a transparent background + - Use QDesktopServices on Linux too with Qt 6, which fixes opening URLs @matterhorn103 + - Update desktop file name in QApplication code @matterhorn103 + - Update the newer compilation guide @nbehrnd + - Export icons according to XDG icon spec on unix @matterhorn103 + - Use name according to the XDG standard, harmonize metadata with flatpak @matterhorn103 + - Make sure to create directories for drag-and-drop install of Python scripts + - Tweak the text and tooltips in the rendering dialog + - Fix crash when no selection is made when saving files + 🚀 Performance Improvements + - Use flying edges for mesh generation @perminder-17 (#1741) + - When possible, load Python script names from cache (#1830) + - Turn off default depth blur, shadows, edge for speed (#1728) + 🧰 Maintenance & Build Improvements + - Updated tests to Qt6 @peach280 (#1941) + - Explicitly use signed char in meshgenerator to avoid narrowing error on ARM @matterhorn103 (#1842) + - Fix residue not initializing id in default constructor (#1786) + - ENH/BUG: Code Clean Up, Optimization, Documentation @TactfulDeity (#1779) + - Add flatpak workflow for GitHub Actions @matterhorn103 (#1772) + - Update to latest Qt patch version and install-qt-action @matterhorn103 (#1841) + - Set a project-wide variable for molecule data dir AvogadroLibs_SOURCE… (#1851) + - Unbundle all charge and forcefield scripts (#1832) + - Update comment headers to new format (missed some in prev effort) (#1828) + - Use release certificate signing on Windows (#1821) + - Bumping to Qt 6.8 (latest LTS) for Mac and Windows builds (#1751) + - Switch AppImage build to use the new linuxdeploy tool (#1775) + - Further fixes for Qt6 @matterhorn103 (#1713) + - Fix building Qt Plugins without spglib (USE_SPGLIB=OFF) @MehdiChinoune (#1671) + - Cmake: Remove custom Find.cmake modules @LecrisUT (#1585) + - Fix wrong variable name @antonio-rojas (#1612) + - Fix windows debug log + 📚 Translations + - Remove many incorrect "fuzzy" translations @e-kwsm + - Fix a few ellipsis inconsistencies @matterhorn103 (#1771) + - chore: put space after period @e-kwsm (#1697) + - Automated translation updates @github-actions + - Translations update from Hosted Weblate @weblate + Credits + Thanks to many contributors, including: @Cartrigger, @LecrisUT, @MehdiChinoune, @Milziade, @NorwayFun, @RickyLam11, @SantosSi, @TactfulDeity, @TamilNeram, @ZhangHMDS, @alexrsoares, @andibing, @antonio-rojas, @dependabot, @e-kwsm, @ghutchis, @github-actions, @matterhorn103, @milotype, @nbehrnd, @ostriz2, @ovari, @peach280, @perminder-17, @rezaalmanda, @secretkontributer, @simmon-nplob, @snowcliffx, @tacitcoast, @weblate, @ykertytsky, @zhangtengshuo, Eisuke Kawashima, KeysBits, LibreTranslate, Remus-Gabriel Chelu, Weblate Translation Memory, fox and gallegonovato +ReleaseNotesUrl: https://github.com/OpenChemistry/avogadrolibs/releases/tag/1.100.0 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Guide + DocumentUrl: https://two.avogadro.cc/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Avogadro/Avogadro/2/1.100.0/Avogadro.Avogadro.2.locale.zh-CN.yaml b/manifests/a/Avogadro/Avogadro/2/1.100.0/Avogadro.Avogadro.2.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a70577deb0a55 --- /dev/null +++ b/manifests/a/Avogadro/Avogadro/2/1.100.0/Avogadro.Avogadro.2.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# 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: Avogadro.Avogadro.2 +PackageVersion: 1.100.0 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +# License: +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 免费开源的分子编辑和可视化工具。 +Description: |- + Avogadro 是一款先进的免费开源分子编辑和可视化工具。 + 它功能强大,适用于计算化学、分子建模、化学教育、生物信息学、材料科学及相关领域。 + 它提供灵活的高质量渲染、具有本地样式的现代化用户界面,以及强大的插件架构。 + Avogadro 被设计为跨平台使用,并完全支持 Windows、Linux 和 macOS 系统。 +# Moniker: +Tags: +- 分子 +- 化学 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 指南 + DocumentUrl: https://two.avogadro.cc/docs/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Avogadro/Avogadro/2/1.100.0/Avogadro.Avogadro.2.yaml b/manifests/a/Avogadro/Avogadro/2/1.100.0/Avogadro.Avogadro.2.yaml new file mode 100644 index 0000000000000..b260c92f1bd18 --- /dev/null +++ b/manifests/a/Avogadro/Avogadro/2/1.100.0/Avogadro.Avogadro.2.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: Avogadro.Avogadro.2 +PackageVersion: 1.100.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Axosoft/GitKraken/11.2.0/Axosoft.GitKraken.installer.yaml b/manifests/a/Axosoft/GitKraken/11.2.0/Axosoft.GitKraken.installer.yaml index 56bc41827c684..48b15a49142f7 100644 --- a/manifests/a/Axosoft/GitKraken/11.2.0/Axosoft.GitKraken.installer.yaml +++ b/manifests/a/Axosoft/GitKraken/11.2.0/Axosoft.GitKraken.installer.yaml @@ -15,10 +15,10 @@ UpgradeBehavior: install Protocols: - gitkraken ProductCode: gitkraken -ReleaseDate: 2023-11-08 +ReleaseDate: 2025-06-17 Installers: -- Architecture: x86 - InstallerUrl: https://release.axocdn.com/win32/GitKrakenSetup.exe - InstallerSha256: 5328D2CAC7E2BA4B8436DF01F11D8A011FC009EA099DBACF5B3B2C062BD12D08 +- Architecture: x64 + InstallerUrl: https://release.gitkraken.dev/gkd/production/normal/windows/x64/11.2.0/2ydwvmoSWRa7yfAqLry27Lf8MO1/GitKrakenSetup.exe + InstallerSha256: 2D763D96FA3CA0FFA84952EB25CB18472BC97D90A796880F9D5C4CE0BD88074C ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/a/aSc/aScTimeTables/2020/aSc.aScTimeTables.installer.yaml b/manifests/a/aSc/aScTimeTables/2020/aSc.aScTimeTables.installer.yaml new file mode 100644 index 0000000000000..4f63ad947beee --- /dev/null +++ b/manifests/a/aSc/aScTimeTables/2020/aSc.aScTimeTables.installer.yaml @@ -0,0 +1,22 @@ +# 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: aSc.aScTimeTables +PackageVersion: "2020" +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S /R /T + SilentWithProgress: /R /T +ProductCode: aScTimeTables +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x86 + InstallerUrl: https://www.asctimetables.com/download/aScTimeTables_2026_7_1.exe + InstallerSha256: 7FA288204968845B8973264E7DDE50EC729BE845952017117D0E1DC824C57E52 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/aSc/aScTimeTables/2020/aSc.aScTimeTables.locale.en-US.yaml b/manifests/a/aSc/aScTimeTables/2020/aSc.aScTimeTables.locale.en-US.yaml new file mode 100644 index 0000000000000..a2e7e617bf155 --- /dev/null +++ b/manifests/a/aSc/aScTimeTables/2020/aSc.aScTimeTables.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: aSc.aScTimeTables +PackageVersion: "2020" +PackageLocale: en-US +Publisher: aSc Applied Software Consultants s.r.o +PublisherUrl: https://www.asctimetables.com/ +PublisherSupportUrl: https://www.asctimetables.com/contact/ +PrivacyUrl: https://www.asctimetables.com/privacy/ +Author: aSc Applied Software Consultants s.r.o +PackageName: aSc TimeTables +PackageUrl: https://www.asctimetables.com/ +License: Proprietary +LicenseUrl: https://www.asctimetables.com/text4/ +Copyright: Copyright (c) 1993-2025 aSc Applied Software Consultants +CopyrightUrl: https://www.asctimetables.com/text4/ +ShortDescription: School scheduling software +Description: |- + aSc TimeTables is a school scheduling software that helps you create a perfect timetable for your school. + Perfect scheduling + Simply enter your requirements, sit back and let our timetabling software evaluate over 5,000,000 possibilities to come up with a beautifully-balanced schedule that will not only meet your criteria but win the approval of your students and colleagues as well. + Powerful automatic generator + You can spend days doing manual work - or you can use aSc TimeTables that can do the same work in 5 minutes. And if a manic colleague or headmaster comes with new request - no problem. The work takes just 5 minutes again, instead of days. + Substitution + Manage your substitutions online. Once the timetable has been created, you just need to input the absentees. aSc Substitutions will advise the best cover teacher - but you are free to choose your own candidate. Besides being published on the website and mobile phones, all changes are automatically entered in class registers and calendars. + Share timetable and substitution + Make the school timetable available to teachers, students and parents. aSc Substitutions notifies them about daily substitution changes that are relevant to them personally. + Mobile application + aSc TimeTables mobile application allows you to effectively do things which were practically impossible to do without one. Input your information in the mobile app once. It will automatically be displayed to every person concerned. + Class register + Class register module reflects changes made in the timetable, substitutions and events. You just pick the lesson’s topic from your teaching plan and check the students’ attendance. The boring administration has changed into a useful function. The parents are better informed about what their children have learnt. They can help them with more difficult topics. + Calendar + Teachers or admin can add school events such as discussions, excursions, or school holidays in a common school calendar. It is linked to the class register. + Room or event booking + It is easy to book a room or teachers' meeting ad hoc. The system combines up-to-date information from timetables, absent teacher covers, and events. It finds the most suitable room for your meeting at a time convenient for all attendees. The booking is immediately displayed in the timetable and in the attendees’ class register. All attendees are instantly notified. A room can also be booked directly in the class register. The science labs and computer rooms will finally be put to good use. No two classes will ever collide in one classroom. + Future proof + We help the school to grow and help it to prepare for the future - whatever the future may look like. aSc TimeTables will safely lead you through novel practices in education systems. +# Moniker: +Tags: +- schedule +- timetable +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://www.asctimetables.com/a/prices +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/aSc/aScTimeTables/2020/aSc.aScTimeTables.locale.zh-CN.yaml b/manifests/a/aSc/aScTimeTables/2020/aSc.aScTimeTables.locale.zh-CN.yaml new file mode 100644 index 0000000000000..68f1852966c58 --- /dev/null +++ b/manifests/a/aSc/aScTimeTables/2020/aSc.aScTimeTables.locale.zh-CN.yaml @@ -0,0 +1,50 @@ +# 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: aSc.aScTimeTables +PackageVersion: "2020" +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 学校排课软件 +Description: |- + aSc TimeTables 是一款学校排课软件,助您打造完美课程表。 + 完美排课 + 只需输入需求,我们的排课系统将自动评估 500 万种可能性,生成既符合要求又令师生满意的均衡课表。 + 智能自动生成器 + 人工排课需耗时数日,而 aSc TimeTables 仅需 5 分钟。即使遇到突发修改需求,也能在 5 分钟内重新完成调整。 + 代课管理 + 在线处理代课安排。课表生成后,只需录入缺席教师信息,系统将智能推荐最佳代课人选(也可手动指定)。所有变更将同步更新至网站、手机端、班级日志和校历。 + 课表共享 + 向教师、学生和家长开放课表查询。aSc 代课系统会推送与个人相关的每日代课变更通知。 + 移动应用 + 通过移动端实现革命性功能:一次录入信息,即可自动同步至所有相关人员。 + 班级日志 + 自动整合课表、代课和活动变更。教师只需选择教案主题并记录考勤,枯燥的行政工作转化为实用功能。家长能清晰掌握孩子学习内容,针对性辅导难点知识。 + 校历系统 + 教师或管理员可添加教研活动、校外实践或假期等全校事件,所有安排均与班级日志联动。 + 场地预约 + 临时会议室/教师会议一键预约。系统综合课表、代课和活动数据,智能推荐最佳时段与场地。预约信息实时显示在课表和参会者日志中,并自动通知相关人员。实验室和机房将得到高效利用,彻底杜绝教室冲突。 + 面向未来 + 我们助力学校成长,从容应对教育变革。无论未来如何发展,aSc TimeTables 都将为您保驾护航。 +# Moniker: +Tags: +- 排课 +- 课程表 +- 课表 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/aSc/aScTimeTables/2020/aSc.aScTimeTables.yaml b/manifests/a/aSc/aScTimeTables/2020/aSc.aScTimeTables.yaml new file mode 100644 index 0000000000000..e1556423414d5 --- /dev/null +++ b/manifests/a/aSc/aScTimeTables/2020/aSc.aScTimeTables.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: aSc.aScTimeTables +PackageVersion: "2020" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/abelhadigital/HostsMan/4.7.105/abelhadigital.HostsMan.installer.yaml b/manifests/a/abelhadigital/HostsMan/4.7.105/abelhadigital.HostsMan.installer.yaml new file mode 100644 index 0000000000000..4d3a16faf6d40 --- /dev/null +++ b/manifests/a/abelhadigital/HostsMan/4.7.105/abelhadigital.HostsMan.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: abelhadigital.HostsMan +PackageVersion: 4.7.105 +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: HostsMan_Setup.exe +Installers: +- Architecture: x86 + InstallerUrl: https://softpedia-secure-download.com/dl/8742021e52b6c4d3799cf12fa6dddc89/686a99d4/100021113/software/network/HostsMan_4.8.106_installer.zip + InstallerSha256: 48FF5EA9EEB7FBAB764D00DCD03A10B69ADC199BAAF08B7DE024603A7E018604 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/a/abelhadigital/HostsMan/4.7.105/abelhadigital.HostsMan.locale.en-US.yaml b/manifests/a/abelhadigital/HostsMan/4.7.105/abelhadigital.HostsMan.locale.en-US.yaml new file mode 100644 index 0000000000000..d7f5dbd1587c5 --- /dev/null +++ b/manifests/a/abelhadigital/HostsMan/4.7.105/abelhadigital.HostsMan.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: abelhadigital.HostsMan +PackageVersion: 4.7.105 +PackageLocale: en-US +Publisher: abelhadigital +PackageName: HostsMan +PackageUrl: https://www.abelhadigital.com/hostsman/ +License: Freeware +ShortDescription: A freeware application that lets you manage your hosts file with ease. +Tags: +- adblock +- hostsfile +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/abelhadigital/HostsMan/4.7.105/abelhadigital.HostsMan.yaml b/manifests/a/abelhadigital/HostsMan/4.7.105/abelhadigital.HostsMan.yaml new file mode 100644 index 0000000000000..0d3fb53164a65 --- /dev/null +++ b/manifests/a/abelhadigital/HostsMan/4.7.105/abelhadigital.HostsMan.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: abelhadigital.HostsMan +PackageVersion: 4.7.105 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/a/abgox/InputTip/1.10.2/abgox.InputTip.installer.yaml b/manifests/a/abgox/InputTip/1.10.2/abgox.InputTip.installer.yaml deleted file mode 100644 index cf1b1d43f8018..0000000000000 --- a/manifests/a/abgox/InputTip/1.10.2/abgox.InputTip.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with komac v2.9.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: abgox.InputTip -PackageVersion: 1.10.2 -UpgradeBehavior: install -ReleaseDate: 2025-01-12 -InstallerType: portable -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/abgox/InputTip/releases/download/latest-v1/InputTip.exe - InstallerSha256: DAEEB87B2E74120F5A9D4FC3542C3E2869BCE944231837D409A29D93AACE131D -- InstallerLocale: zh-CN - Architecture: x64 - InstallerUrl: https://gitee.com/abgox/InputTip/releases/download/latest-v1/InputTip.exe - InstallerSha256: DAEEB87B2E74120F5A9D4FC3542C3E2869BCE944231837D409A29D93AACE131D -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/a/abgox/InputTip/1.10.2/abgox.InputTip.locale.en-US.yaml b/manifests/a/abgox/InputTip/1.10.2/abgox.InputTip.locale.en-US.yaml deleted file mode 100644 index f3c36b086d76b..0000000000000 --- a/manifests/a/abgox/InputTip/1.10.2/abgox.InputTip.locale.en-US.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Created with komac v2.9.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json - -PackageIdentifier: abgox.InputTip -PackageVersion: 1.10.2 -PackageLocale: en-US -Publisher: abgox -PublisherUrl: https://github.com/abgox -PublisherSupportUrl: https://github.com/abgox/InputTip/issues -Author: abgox -PackageName: InputTip -PackageUrl: https://inputtip.pages.dev/ -License: MIT License -LicenseUrl: https://github.com/abgox/InputTip/blob/main/LICENSE -Copyright: Copyright (c) 2023-present abgox -CopyrightUrl: https://github.com/abgox/InputTip/blob/main/LICENSE -ShortDescription: An input method status tip tool. -Tags: -- autohotkey -- cursor -- ime -- input -- inputmethod -- tip -# No ReleaseNotes for this version. -ReleaseNotesUrl: https://github.com/abgox/InputTip/releases/tag/latest-v1 -Documentations: -- DocumentLabel: README (GitHub) - DocumentUrl: https://github.com/abgox/InputTip/blob/main/README.md -- DocumentLabel: README (Gitee) - DocumentUrl: https://gitee.com/abgox/InputTip/blob/main/README.md -- DocumentLabel: README (v1) - DocumentUrl: https://inputtip.pages.dev/v1/ -- DocumentLabel: README (v2) - DocumentUrl: https://inputtip.pages.dev/v2/ -- DocumentLabel: Some Frequently Asked Questions & Tips (FAQ) - DocumentUrl: https://inputtip.pages.dev/FAQ/ -ManifestType: locale -ManifestVersion: 1.9.0 diff --git a/manifests/a/abgox/InputTip/1.10.2/abgox.InputTip.locale.zh-CN.yaml b/manifests/a/abgox/InputTip/1.10.2/abgox.InputTip.locale.zh-CN.yaml deleted file mode 100644 index 90cb5eacda513..0000000000000 --- a/manifests/a/abgox/InputTip/1.10.2/abgox.InputTip.locale.zh-CN.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# Created with komac v2.9.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: abgox.InputTip -PackageVersion: 1.10.2 -PackageLocale: zh-CN -Publisher: abgox -PublisherUrl: https://github.com/abgox -PublisherSupportUrl: https://github.com/abgox/InputTip/issues -Author: abgox -PackageName: InputTip -PackageUrl: https://inputtip.pages.dev/ -License: MIT -LicenseUrl: https://github.com/abgox/InputTip/blob/main/LICENSE -Copyright: Copyright (c) 2023-present abgox -CopyrightUrl: https://github.com/abgox/InputTip/blob/main/LICENSE -ShortDescription: 一个输入法状态实时提示工具。 -Tags: -- autohotkey -- 光标 -- 实时 -- 工具 -- 提示 -- 状态 -- 输入 -- 输入法 -- 鼠标 -- 鼠标指针 -# No ReleaseNotes for this version -ReleaseNotesUrl: https://github.com/abgox/InputTip/releases/tag/latest-v1 -Documentations: -- DocumentLabel: README (GitHub) - DocumentUrl: https://github.com/abgox/InputTip/blob/main/README.md -- DocumentLabel: README (Gitee) - DocumentUrl: https://gitee.com/abgox/InputTip/blob/main/README.md -- DocumentLabel: README (v1) - DocumentUrl: https://inputtip.pages.dev/v1/ -- DocumentLabel: README (v2) - DocumentUrl: https://inputtip.pages.dev/v2/ -- DocumentLabel: 一些常见问题及使用技巧 (FAQ) - DocumentUrl: https://inputtip.pages.dev/FAQ/ -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/a/abgox/InputTip/1.10.2/abgox.InputTip.yaml b/manifests/a/abgox/InputTip/1.10.2/abgox.InputTip.yaml deleted file mode 100644 index eeb229924e04e..0000000000000 --- a/manifests/a/abgox/InputTip/1.10.2/abgox.InputTip.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.9.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: abgox.InputTip -PackageVersion: 1.10.2 -DefaultLocale: zh-CN -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/a/abgox/InputTip/2.40.4/abgox.InputTip.installer.yaml b/manifests/a/abgox/InputTip/2.40.4/abgox.InputTip.installer.yaml new file mode 100644 index 0000000000000..1717571877c2c --- /dev/null +++ b/manifests/a/abgox/InputTip/2.40.4/abgox.InputTip.installer.yaml @@ -0,0 +1,20 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 2.40.4 +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-06-25 +InstallerType: portable +Installers: + # From GitHub repository + - Architecture: x64 + InstallerUrl: https://github.com/abgox/InputTip/releases/download/v2.40.4/InputTip.exe + InstallerSha256: 59CEFDCBD87BDD16C83A6DE9088F113A7CAE691B7260898C2D622820E52FA32C + # From Gitee repository + - Architecture: x64 + InstallerUrl: https://gitee.com/abgox/InputTip/releases/download/v2.40.4/InputTip.exe + InstallerSha256: 59CEFDCBD87BDD16C83A6DE9088F113A7CAE691B7260898C2D622820E52FA32C + InstallerLocale: zh-CN +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/a/abgox/InputTip/2.40.4/abgox.InputTip.locale.en-US.yaml b/manifests/a/abgox/InputTip/2.40.4/abgox.InputTip.locale.en-US.yaml new file mode 100644 index 0000000000000..a772426c5e5de --- /dev/null +++ b/manifests/a/abgox/InputTip/2.40.4/abgox.InputTip.locale.en-US.yaml @@ -0,0 +1,41 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 2.40.4 +PackageLocale: en-US +Publisher: abgox +PublisherUrl: https://github.com/abgox +PublisherSupportUrl: https://github.com/abgox/InputTip/issues +Author: abgox +PackageName: InputTip +PackageUrl: https://inputtip.abgox.com/ +License: MIT License +LicenseUrl: https://github.com/abgox/InputTip/blob/main/LICENSE +Copyright: Copyright (c) 2023-present abgox +CopyrightUrl: https://github.com/abgox/InputTip/blob/main/LICENSE +ShortDescription: "An input method state manager tool: real-time tips(cursor style, symbol display) + auto-switch state per window + hotkey to switch state." +Tags: + - autohotkey + - cursor + - mouse + - mouse pointer + - ime + - inputmethod + - input + - tip + - state + - switch + - hotkey +ReleaseNotesUrl: https://github.com/abgox/InputTip/releases/tag/v2.40.4 +Documentations: + - DocumentLabel: README (GitHub) + DocumentUrl: https://github.com/abgox/InputTip/blob/main/README.md + - DocumentLabel: README (Gitee) + DocumentUrl: https://gitee.com/abgox/InputTip/blob/main/README.md + - DocumentLabel: Some Frequently Asked Questions & Tips (FAQ) + DocumentUrl: https://inputtip.abgox.com/FAQ/ + - DocumentLabel: README + DocumentUrl: https://inputtip.abgox.com/v2/ +ManifestType: locale +ManifestVersion: 1.9.0 + diff --git a/manifests/a/abgox/InputTip/2.40.4/abgox.InputTip.locale.zh-CN.yaml b/manifests/a/abgox/InputTip/2.40.4/abgox.InputTip.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c8a4a60b63ae9 --- /dev/null +++ b/manifests/a/abgox/InputTip/2.40.4/abgox.InputTip.locale.zh-CN.yaml @@ -0,0 +1,42 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 2.40.4 +PackageLocale: zh-CN +Publisher: abgox +PublisherUrl: https://gitee.com/abgox +PublisherSupportUrl: https://pd.qq.com/s/gyers18g6?businessType=5 +Author: abgox +PackageName: InputTip +PackageUrl: https://inputtip.abgox.com/ +License: MIT License +LicenseUrl: https://gitee.com/abgox/InputTip/blob/main/LICENSE +Copyright: Copyright (c) 2023-present abgox +CopyrightUrl: https://gitee.com/abgox/InputTip/blob/main/LICENSE +ShortDescription: "一个输入法状态管理工具: 实时提示(鼠标样式、符号显示) + 窗口自动切换状态 + 快捷键切换状态。" +Tags: + - autohotkey + - 光标 + - 鼠标 + - 鼠标指针 + - 输入 + - 输入法 + - 状态 + - 提示 + - 状态切换 + - 快捷键 + - 实时 + - 工具 +ReleaseNotesUrl: https://gitee.com/abgox/InputTip/releases/tag/v2.40.4 +Documentations: + - DocumentLabel: README (GitHub) + DocumentUrl: https://github.com/abgox/InputTip/blob/main/README.md + - DocumentLabel: README (Gitee) + DocumentUrl: https://gitee.com/abgox/InputTip/blob/main/README.md + - DocumentLabel: 一些常见问题及使用技巧 (FAQ) + DocumentUrl: https://inputtip.abgox.com/FAQ/ + - DocumentLabel: README + DocumentUrl: https://inputtip.abgox.com/v2/ +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/a/abgox/InputTip/2.40.4/abgox.InputTip.yaml b/manifests/a/abgox/InputTip/2.40.4/abgox.InputTip.yaml new file mode 100644 index 0000000000000..e2c8d6749a36d --- /dev/null +++ b/manifests/a/abgox/InputTip/2.40.4/abgox.InputTip.yaml @@ -0,0 +1,8 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 2.40.4 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/a/abgox/InputTip/2.40.5/abgox.InputTip.installer.yaml b/manifests/a/abgox/InputTip/2.40.5/abgox.InputTip.installer.yaml new file mode 100644 index 0000000000000..e01bbda400f4c --- /dev/null +++ b/manifests/a/abgox/InputTip/2.40.5/abgox.InputTip.installer.yaml @@ -0,0 +1,20 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 2.40.5 +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-06-25 +InstallerType: portable +Installers: + # From GitHub repository + - Architecture: x64 + InstallerUrl: https://github.com/abgox/InputTip/releases/download/v2.40.5/InputTip.exe + InstallerSha256: EAE5C4FEE30FA2048F864A77C4A42EDECC0396C0D858B45CF0EF12452DAF451A + # From Gitee repository + - Architecture: x64 + InstallerUrl: https://gitee.com/abgox/InputTip/releases/download/v2.40.5/InputTip.exe + InstallerSha256: EAE5C4FEE30FA2048F864A77C4A42EDECC0396C0D858B45CF0EF12452DAF451A + InstallerLocale: zh-CN +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/a/abgox/InputTip/2.40.5/abgox.InputTip.locale.en-US.yaml b/manifests/a/abgox/InputTip/2.40.5/abgox.InputTip.locale.en-US.yaml new file mode 100644 index 0000000000000..1a669c4d1f4f9 --- /dev/null +++ b/manifests/a/abgox/InputTip/2.40.5/abgox.InputTip.locale.en-US.yaml @@ -0,0 +1,41 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 2.40.5 +PackageLocale: en-US +Publisher: abgox +PublisherUrl: https://github.com/abgox +PublisherSupportUrl: https://github.com/abgox/InputTip/issues +Author: abgox +PackageName: InputTip +PackageUrl: https://inputtip.abgox.com/ +License: MIT License +LicenseUrl: https://github.com/abgox/InputTip/blob/main/LICENSE +Copyright: Copyright (c) 2023-present abgox +CopyrightUrl: https://github.com/abgox/InputTip/blob/main/LICENSE +ShortDescription: "An input method state manager tool: real-time tips(cursor style, symbol display) + auto-switch state per window + hotkey to switch state." +Tags: + - autohotkey + - cursor + - mouse + - mouse pointer + - ime + - inputmethod + - input + - tip + - state + - switch + - hotkey +ReleaseNotesUrl: https://github.com/abgox/InputTip/releases/tag/v2.40.5 +Documentations: + - DocumentLabel: README (GitHub) + DocumentUrl: https://github.com/abgox/InputTip/blob/main/README.md + - DocumentLabel: README (Gitee) + DocumentUrl: https://gitee.com/abgox/InputTip/blob/main/README.md + - DocumentLabel: Some Frequently Asked Questions & Tips (FAQ) + DocumentUrl: https://inputtip.abgox.com/FAQ/ + - DocumentLabel: README + DocumentUrl: https://inputtip.abgox.com/v2/ +ManifestType: locale +ManifestVersion: 1.9.0 + diff --git a/manifests/a/abgox/InputTip/2.40.5/abgox.InputTip.locale.zh-CN.yaml b/manifests/a/abgox/InputTip/2.40.5/abgox.InputTip.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4c89801f92eff --- /dev/null +++ b/manifests/a/abgox/InputTip/2.40.5/abgox.InputTip.locale.zh-CN.yaml @@ -0,0 +1,42 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 2.40.5 +PackageLocale: zh-CN +Publisher: abgox +PublisherUrl: https://gitee.com/abgox +PublisherSupportUrl: https://pd.qq.com/s/gyers18g6?businessType=5 +Author: abgox +PackageName: InputTip +PackageUrl: https://inputtip.abgox.com/ +License: MIT License +LicenseUrl: https://gitee.com/abgox/InputTip/blob/main/LICENSE +Copyright: Copyright (c) 2023-present abgox +CopyrightUrl: https://gitee.com/abgox/InputTip/blob/main/LICENSE +ShortDescription: "一个输入法状态管理工具: 实时提示(鼠标样式、符号显示) + 窗口自动切换状态 + 快捷键切换状态。" +Tags: + - autohotkey + - 光标 + - 鼠标 + - 鼠标指针 + - 输入 + - 输入法 + - 状态 + - 提示 + - 状态切换 + - 快捷键 + - 实时 + - 工具 +ReleaseNotesUrl: https://gitee.com/abgox/InputTip/releases/tag/v2.40.5 +Documentations: + - DocumentLabel: README (GitHub) + DocumentUrl: https://github.com/abgox/InputTip/blob/main/README.md + - DocumentLabel: README (Gitee) + DocumentUrl: https://gitee.com/abgox/InputTip/blob/main/README.md + - DocumentLabel: 一些常见问题及使用技巧 (FAQ) + DocumentUrl: https://inputtip.abgox.com/FAQ/ + - DocumentLabel: README + DocumentUrl: https://inputtip.abgox.com/v2/ +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/a/abgox/InputTip/2.40.5/abgox.InputTip.yaml b/manifests/a/abgox/InputTip/2.40.5/abgox.InputTip.yaml new file mode 100644 index 0000000000000..f476123e5eccc --- /dev/null +++ b/manifests/a/abgox/InputTip/2.40.5/abgox.InputTip.yaml @@ -0,0 +1,8 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 2.40.5 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/a/abgox/InputTip/2.40.6/abgox.InputTip.installer.yaml b/manifests/a/abgox/InputTip/2.40.6/abgox.InputTip.installer.yaml new file mode 100644 index 0000000000000..e1cf9fde12e04 --- /dev/null +++ b/manifests/a/abgox/InputTip/2.40.6/abgox.InputTip.installer.yaml @@ -0,0 +1,20 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 2.40.6 +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-07-01 +InstallerType: portable +Installers: + # From GitHub repository + - Architecture: x64 + InstallerUrl: https://github.com/abgox/InputTip/releases/download/v2.40.6/InputTip.exe + InstallerSha256: 194283439C9D65A20A9C4C6C3F80426FFD600AE2C6951968E6ADD0B12D3965D2 + # From Gitee repository + - Architecture: x64 + InstallerUrl: https://gitee.com/abgox/InputTip/releases/download/v2.40.6/InputTip.exe + InstallerSha256: 194283439C9D65A20A9C4C6C3F80426FFD600AE2C6951968E6ADD0B12D3965D2 + InstallerLocale: zh-CN +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/a/abgox/InputTip/2.40.6/abgox.InputTip.locale.en-US.yaml b/manifests/a/abgox/InputTip/2.40.6/abgox.InputTip.locale.en-US.yaml new file mode 100644 index 0000000000000..3836bf917a918 --- /dev/null +++ b/manifests/a/abgox/InputTip/2.40.6/abgox.InputTip.locale.en-US.yaml @@ -0,0 +1,41 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 2.40.6 +PackageLocale: en-US +Publisher: abgox +PublisherUrl: https://github.com/abgox +PublisherSupportUrl: https://github.com/abgox/InputTip/issues +Author: abgox +PackageName: InputTip +PackageUrl: https://inputtip.abgox.com/ +License: AGPL-3.0-only +LicenseUrl: https://github.com/abgox/InputTip/blob/main/LICENSE +Copyright: Copyright (c) 2023-present abgox +CopyrightUrl: https://github.com/abgox/InputTip/blob/main/LICENSE +ShortDescription: "An input method state manager tool: real-time tips(cursor style, symbol display) + auto-switch state per window + hotkey to switch state." +Tags: + - autohotkey + - cursor + - mouse + - mouse pointer + - ime + - inputmethod + - input + - tip + - state + - switch + - hotkey +ReleaseNotesUrl: https://github.com/abgox/InputTip/releases/tag/v2.40.6 +Documentations: + - DocumentLabel: README (GitHub) + DocumentUrl: https://github.com/abgox/InputTip/blob/main/README.md + - DocumentLabel: README (Gitee) + DocumentUrl: https://gitee.com/abgox/InputTip/blob/main/README.md + - DocumentLabel: Some Frequently Asked Questions & Tips (FAQ) + DocumentUrl: https://inputtip.abgox.com/FAQ/ + - DocumentLabel: README + DocumentUrl: https://inputtip.abgox.com/v2/ +ManifestType: locale +ManifestVersion: 1.9.0 + diff --git a/manifests/a/abgox/InputTip/2.40.6/abgox.InputTip.locale.zh-CN.yaml b/manifests/a/abgox/InputTip/2.40.6/abgox.InputTip.locale.zh-CN.yaml new file mode 100644 index 0000000000000..185d2d3687b7a --- /dev/null +++ b/manifests/a/abgox/InputTip/2.40.6/abgox.InputTip.locale.zh-CN.yaml @@ -0,0 +1,42 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 2.40.6 +PackageLocale: zh-CN +Publisher: abgox +PublisherUrl: https://gitee.com/abgox +PublisherSupportUrl: https://pd.qq.com/s/gyers18g6?businessType=5 +Author: abgox +PackageName: InputTip +PackageUrl: https://inputtip.abgox.com/ +License: AGPL-3.0-only +LicenseUrl: https://gitee.com/abgox/InputTip/blob/main/LICENSE +Copyright: Copyright (c) 2023-present abgox +CopyrightUrl: https://gitee.com/abgox/InputTip/blob/main/LICENSE +ShortDescription: "一个输入法状态管理工具: 实时提示(鼠标样式、符号显示) + 窗口自动切换状态 + 快捷键切换状态。" +Tags: + - autohotkey + - 光标 + - 鼠标 + - 鼠标指针 + - 输入 + - 输入法 + - 状态 + - 提示 + - 状态切换 + - 快捷键 + - 实时 + - 工具 +ReleaseNotesUrl: https://gitee.com/abgox/InputTip/releases/tag/v2.40.6 +Documentations: + - DocumentLabel: README (GitHub) + DocumentUrl: https://github.com/abgox/InputTip/blob/main/README.md + - DocumentLabel: README (Gitee) + DocumentUrl: https://gitee.com/abgox/InputTip/blob/main/README.md + - DocumentLabel: 一些常见问题及使用技巧 (FAQ) + DocumentUrl: https://inputtip.abgox.com/FAQ/ + - DocumentLabel: README + DocumentUrl: https://inputtip.abgox.com/v2/ +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/a/abgox/InputTip/2.40.6/abgox.InputTip.yaml b/manifests/a/abgox/InputTip/2.40.6/abgox.InputTip.yaml new file mode 100644 index 0000000000000..3945396210eaa --- /dev/null +++ b/manifests/a/abgox/InputTip/2.40.6/abgox.InputTip.yaml @@ -0,0 +1,8 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 2.40.6 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/a/aiko-chan-ai/DiscordBotClient/3.7.4/aiko-chan-ai.DiscordBotClient.installer.yaml b/manifests/a/aiko-chan-ai/DiscordBotClient/3.7.4/aiko-chan-ai.DiscordBotClient.installer.yaml new file mode 100644 index 0000000000000..557a38491aea9 --- /dev/null +++ b/manifests/a/aiko-chan-ai/DiscordBotClient/3.7.4/aiko-chan-ai.DiscordBotClient.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: aiko-chan-ai.DiscordBotClient +PackageVersion: 3.7.4 +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: 760f5afc-fded-5554-b14c-1a3bd05a770d +ReleaseDate: 2025-07-07 +AppsAndFeaturesEntries: +- DisplayName: DiscordBotClient 3.7.4 + ProductCode: 760f5afc-fded-5554-b14c-1a3bd05a770d +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aiko-chan-ai/DiscordBotClient/releases/download/v3.7.4/DiscordBotClient-win-x64.exe + InstallerSha256: D78E81C2DE5E8C74BA7F92C9BA97098B0F1B9242DFED942DE3DCFF7F25C8CE10 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/aiko-chan-ai/DiscordBotClient/3.7.4/aiko-chan-ai.DiscordBotClient.locale.en-US.yaml b/manifests/a/aiko-chan-ai/DiscordBotClient/3.7.4/aiko-chan-ai.DiscordBotClient.locale.en-US.yaml new file mode 100644 index 0000000000000..577351714f307 --- /dev/null +++ b/manifests/a/aiko-chan-ai/DiscordBotClient/3.7.4/aiko-chan-ai.DiscordBotClient.locale.en-US.yaml @@ -0,0 +1,46 @@ +# 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: aiko-chan-ai.DiscordBotClient +PackageVersion: 3.7.4 +PackageLocale: en-US +Publisher: aiko-chan-ai +PublisherUrl: https://aiko-chan-ai.github.io/ +PublisherSupportUrl: https://github.com/aiko-chan-ai/DiscordBotClient/issues +PackageName: DiscordBotClient +PackageUrl: https://github.com/aiko-chan-ai/DiscordBotClient +License: GPL-3.0 +LicenseUrl: https://github.com/aiko-chan-ai/DiscordBotClient/blob/HEAD/LICENSE +Copyright: Copyright © 2024 @elysia.dev +ShortDescription: A patched version of Discord, with bot login support (and Vencord) +Moniker: discord-bot-client +Tags: +- css +- discord +- discord-api +- discord-bot +- discord-bot-client +- discord-client +- html +- javascript +- nodejs +ReleaseNotes: |- + 🛠️ Chores + - Discord Core: Updated to the latest version + - User & Guild Experiments: Updated configuration settings + - Dependencies: Updated discord-protos + - Docs: Updated documentation links + - File Structure: Renamed discord-protos folder to DiscordProtos for consistent casing + ✨ Features & Improvements + - Application Flags: Added support for new ApplicationFlags + - New API Route: Introduced additional API endpoint + - App Settings: Added in-app configuration editor (Config Editor) + 🐛 Fixes + - Renderer: Disabled backgrounding to prevent the app from unloading when sent to background + 📝 Notes + - Bugs fixed 🐛 + - Probably added more bugs to fix later 🎉 + Full Changelog: v3.7.2...v3.7.4 +ReleaseNotesUrl: https://github.com/aiko-chan-ai/DiscordBotClient/releases/tag/v3.7.4 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/aiko-chan-ai/DiscordBotClient/3.7.4/aiko-chan-ai.DiscordBotClient.yaml b/manifests/a/aiko-chan-ai/DiscordBotClient/3.7.4/aiko-chan-ai.DiscordBotClient.yaml new file mode 100644 index 0000000000000..ffc51fdd7a741 --- /dev/null +++ b/manifests/a/aiko-chan-ai/DiscordBotClient/3.7.4/aiko-chan-ai.DiscordBotClient.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: aiko-chan-ai.DiscordBotClient +PackageVersion: 3.7.4 +DefaultLocale: en-US +ManifestType: version +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/a/alexpasmantier/television/0.12.0/alexpasmantier.television.yaml b/manifests/a/alexpasmantier/television/0.12.0/alexpasmantier.television.yaml new file mode 100644 index 0000000000000..750855362e2c4 --- /dev/null +++ b/manifests/a/alexpasmantier/television/0.12.0/alexpasmantier.television.yaml @@ -0,0 +1,8 @@ +# 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: alexpasmantier.television +PackageVersion: 0.12.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/alfaview/alfaview/9.22.6/alfaview.alfaview.installer.yaml b/manifests/a/alfaview/alfaview/9.22.6/alfaview.alfaview.installer.yaml new file mode 100644 index 0000000000000..c4234e5cd82d7 --- /dev/null +++ b/manifests/a/alfaview/alfaview/9.22.6/alfaview.alfaview.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: alfaview.alfaview +PackageVersion: 9.22.6 +UpgradeBehavior: install +Protocols: +- alfatraining +- alfaview +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerType: inno + Scope: user + InstallerUrl: https://assets.alfaview.com/stable/win/alfaview-setup-win-production-9.22.6.exe + InstallerSha256: EF7C5F260FA781284F28313D1E4CB2583F3BE29E2D2DF6954BD05EAF1FB40E34 + ProductCode: alfaview-production_64_is1 +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://assets.alfaview.com/stable/win/alfaview-setup-win-production-9.22.6.msi + InstallerSha256: 006FC12040EF8168782210134AF7CCFC5EC6563098398CE17040821E9D5CE95B + InstallerSwitches: + InstallLocation: INSTALLFOLDER="" + ProductCode: '{758E81B3-EE58-49F7-9CD9-818D4405A1EE}' + AppsAndFeaturesEntries: + - DisplayName: alfaview msi version 9.22.6 + ProductCode: '{758E81B3-EE58-49F7-9CD9-818D4405A1EE}' + UpgradeCode: '{1E605AA3-430C-42F3-A86D-5B67F4C3A37F}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/alfaview/alfaview/9.22.6/alfaview.alfaview.locale.en-US.yaml b/manifests/a/alfaview/alfaview/9.22.6/alfaview.alfaview.locale.en-US.yaml new file mode 100644 index 0000000000000..bec713244c5ab --- /dev/null +++ b/manifests/a/alfaview/alfaview/9.22.6/alfaview.alfaview.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: alfaview.alfaview +PackageVersion: 9.22.6 +PackageLocale: en-US +Publisher: alfaview Video Conferencing Systems GmbH & Co. KG +PublisherUrl: https://alfaview.com/ +PublisherSupportUrl: https://support.alfaview.com/ +PrivacyUrl: https://alfaview.com/privacy +Author: alfaview GmbH +PackageName: alfaview +PackageUrl: https://alfaview.com/download +License: Proprietary +LicenseUrl: https://alfaview.com/terms +Copyright: Copyright 2025 alfaview Video Conferencing Systems GmbH & Co. KG +CopyrightUrl: https://alfaview.com/legal-notice +ShortDescription: Performant and 100 % GDPR compliant videoconferencing +Tags: +- chat +- collaborate +- collaboration +- conference +- conferencing +- meeting +- video-conferencing +- voice-conferencing +- webinar +ReleaseNotes: |- + [Resolved + Issue] All platforms + Improved performance, usability, and stability of the application. +ReleaseNotesUrl: https://support.alfaview.com/release-notes/#alfaview-client-version-9-22-6-30-06-2025 +PurchaseUrl: https://alfaview.com/pricing +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://alfaview.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/alfaview/alfaview/9.22.6/alfaview.alfaview.locale.zh-CN.yaml b/manifests/a/alfaview/alfaview/9.22.6/alfaview.alfaview.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c1a4a2a10a068 --- /dev/null +++ b/manifests/a/alfaview/alfaview/9.22.6/alfaview.alfaview.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: alfaview.alfaview +PackageVersion: 9.22.6 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 高性能且 100% 遵守 GDPR 的视频会议 +Tags: +- 会议 +- 协作 +- 协同 +- 开会 +- 研讨会 +- 视频会议 +- 聊天 +- 语音会议 +ReleaseNotesUrl: https://support.alfaview.com/release-notes/#alfaview-client-version-9-22-6-30-06-2025 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://alfaview.com/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/alfaview/alfaview/9.22.6/alfaview.alfaview.yaml b/manifests/a/alfaview/alfaview/9.22.6/alfaview.alfaview.yaml new file mode 100644 index 0000000000000..edbb8b4e93974 --- /dev/null +++ b/manifests/a/alfaview/alfaview/9.22.6/alfaview.alfaview.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: alfaview.alfaview +PackageVersion: 9.22.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/alfaview/alfaview/9.22.7/alfaview.alfaview.installer.yaml b/manifests/a/alfaview/alfaview/9.22.7/alfaview.alfaview.installer.yaml new file mode 100644 index 0000000000000..30f853bd83aac --- /dev/null +++ b/manifests/a/alfaview/alfaview/9.22.7/alfaview.alfaview.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: alfaview.alfaview +PackageVersion: 9.22.7 +UpgradeBehavior: install +Protocols: +- alfatraining +- alfaview +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x64 + InstallerType: inno + Scope: user + InstallerUrl: https://assets.alfaview.com/stable/win/alfaview-setup-win-production-9.22.7.exe + InstallerSha256: A23E1DB2CE52F56490B1523F4E820DF53DC4C3A1B6CFD588DF657FA463372A56 + ProductCode: alfaview-production_64_is1 +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://assets.alfaview.com/stable/win/alfaview-setup-win-production-9.22.7.msi + InstallerSha256: 607456D8D250DEB9A61010540817288FB465C49995F5D71FAB9D24D2E7D8C4A0 + InstallerSwitches: + InstallLocation: INSTALLFOLDER="" + ProductCode: '{0C8FF9D8-C08C-49E7-8F59-0A1A9CD29EBE}' + AppsAndFeaturesEntries: + - DisplayName: alfaview msi version 9.22.7 + ProductCode: '{0C8FF9D8-C08C-49E7-8F59-0A1A9CD29EBE}' + UpgradeCode: '{1E605AA3-430C-42F3-A86D-5B67F4C3A37F}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/alfaview/alfaview/9.22.7/alfaview.alfaview.locale.en-US.yaml b/manifests/a/alfaview/alfaview/9.22.7/alfaview.alfaview.locale.en-US.yaml new file mode 100644 index 0000000000000..572903d7e34f1 --- /dev/null +++ b/manifests/a/alfaview/alfaview/9.22.7/alfaview.alfaview.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: alfaview.alfaview +PackageVersion: 9.22.7 +PackageLocale: en-US +Publisher: alfaview Video Conferencing Systems GmbH & Co. KG +PublisherUrl: https://alfaview.com/ +PublisherSupportUrl: https://support.alfaview.com/ +PrivacyUrl: https://alfaview.com/privacy +Author: alfaview GmbH +PackageName: alfaview +PackageUrl: https://alfaview.com/download +License: Proprietary +LicenseUrl: https://alfaview.com/terms +Copyright: Copyright 2025 alfaview Video Conferencing Systems GmbH & Co. KG +CopyrightUrl: https://alfaview.com/legal-notice +ShortDescription: Performant and 100 % GDPR compliant videoconferencing +Tags: +- chat +- collaborate +- collaboration +- conference +- conferencing +- meeting +- video-conferencing +- voice-conferencing +- webinar +ReleaseNotesUrl: https://support.alfaview.com/release-notes/#alfaview-client-version-9-22-6-30-06-2025 +PurchaseUrl: https://alfaview.com/pricing +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://alfaview.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/alfaview/alfaview/9.22.7/alfaview.alfaview.locale.zh-CN.yaml b/manifests/a/alfaview/alfaview/9.22.7/alfaview.alfaview.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f6037f14fe569 --- /dev/null +++ b/manifests/a/alfaview/alfaview/9.22.7/alfaview.alfaview.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: alfaview.alfaview +PackageVersion: 9.22.7 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 高性能且 100% 遵守 GDPR 的视频会议 +Tags: +- 会议 +- 协作 +- 协同 +- 开会 +- 研讨会 +- 视频会议 +- 聊天 +- 语音会议 +ReleaseNotesUrl: https://support.alfaview.com/release-notes/#alfaview-client-version-9-22-6-30-06-2025 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://alfaview.com/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/alfaview/alfaview/9.22.7/alfaview.alfaview.yaml b/manifests/a/alfaview/alfaview/9.22.7/alfaview.alfaview.yaml new file mode 100644 index 0000000000000..a9350dfdae149 --- /dev/null +++ b/manifests/a/alfaview/alfaview/9.22.7/alfaview.alfaview.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: alfaview.alfaview +PackageVersion: 9.22.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/amir1376/ABDownloadManager/1.6.5/amir1376.ABDownloadManager.installer.yaml b/manifests/a/amir1376/ABDownloadManager/1.6.5/amir1376.ABDownloadManager.installer.yaml new file mode 100644 index 0000000000000..c15a6e4a4fec2 --- /dev/null +++ b/manifests/a/amir1376/ABDownloadManager/1.6.5/amir1376.ABDownloadManager.installer.yaml @@ -0,0 +1,25 @@ +# 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: amir1376.ABDownloadManager +PackageVersion: 1.6.5 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +ProductCode: ABDownloadManager +ReleaseDate: 2025-07-05 +AppsAndFeaturesEntries: +- DisplayName: AB Download Manager + ProductCode: ABDownloadManager +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\ABDownloadManager' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/amir1376/ab-download-manager/releases/download/v1.6.5/ABDownloadManager_1.6.5_windows_x64.exe + InstallerSha256: 4B0E8DC435CDED2C1CDDE0DB7C1926CADA65967178EA4F44BA80FDD56D25256F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/amir1376/ABDownloadManager/1.6.5/amir1376.ABDownloadManager.locale.en-US.yaml b/manifests/a/amir1376/ABDownloadManager/1.6.5/amir1376.ABDownloadManager.locale.en-US.yaml new file mode 100644 index 0000000000000..8154154e29d2d --- /dev/null +++ b/manifests/a/amir1376/ABDownloadManager/1.6.5/amir1376.ABDownloadManager.locale.en-US.yaml @@ -0,0 +1,53 @@ +# 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: amir1376.ABDownloadManager +PackageVersion: 1.6.5 +PackageLocale: en-US +Publisher: abdownloadmanager.com +PublisherUrl: https://github.com/amir1376 +PublisherSupportUrl: https://github.com/amir1376/ab-download-manager/issues +Author: AmirHossein Abdolmotallebi +PackageName: ABDownloadManager +PackageUrl: https://abdownloadmanager.com/ +License: Apache-2.0 +LicenseUrl: https://github.com/amir1376/ab-download-manager/blob/HEAD/LICENSE +ShortDescription: A Download Manager that speeds up your downloads. +Description: AB Download Manager is a desktop app which lets you manage and organize your download files better than before. +Tags: +- chrome +- compose +- compose-multiplatform +- desktop +- desktop-app +- download +- download-manager +- downloader +- downloadmanager +- firefox +- kotlin +- linux +- windows +ReleaseNotes: |- + 1.6.5 + Added + - New themes (Deep Ocean, new Dark, new Light) + - Category accepted file types are now optional (#690) + - Option to change the app font (#692) + - Option to switch between relative and absolute date/time formats (#694) + - Option to clear all items in the queue at once + Changed + - Renamed the previous Dark theme to Obsidian + - Renamed the previous Light theme to Light Gray + Fixed + - Issue where the app wouldn’t start for some Windows users (#695) + Improved + - Updated translations + - General UI Improvements + - Automatically scroll to new downloads on the main page (#672) + - Improved path validation for new downloads (#693) + New Contributors + - @prem-k-r made their first contribution in #666 +ReleaseNotesUrl: https://github.com/amir1376/ab-download-manager/releases/tag/v1.6.5 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/amir1376/ABDownloadManager/1.6.5/amir1376.ABDownloadManager.yaml b/manifests/a/amir1376/ABDownloadManager/1.6.5/amir1376.ABDownloadManager.yaml new file mode 100644 index 0000000000000..165a23fd5e174 --- /dev/null +++ b/manifests/a/amir1376/ABDownloadManager/1.6.5/amir1376.ABDownloadManager.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: amir1376.ABDownloadManager +PackageVersion: 1.6.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/amir1376/ABDownloadManager/1.6.6/amir1376.ABDownloadManager.installer.yaml b/manifests/a/amir1376/ABDownloadManager/1.6.6/amir1376.ABDownloadManager.installer.yaml new file mode 100644 index 0000000000000..c85c4a013b701 --- /dev/null +++ b/manifests/a/amir1376/ABDownloadManager/1.6.6/amir1376.ABDownloadManager.installer.yaml @@ -0,0 +1,25 @@ +# 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: amir1376.ABDownloadManager +PackageVersion: 1.6.6 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +ProductCode: ABDownloadManager +ReleaseDate: 2025-07-06 +AppsAndFeaturesEntries: +- DisplayName: AB Download Manager + ProductCode: ABDownloadManager +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\ABDownloadManager' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/amir1376/ab-download-manager/releases/download/v1.6.6/ABDownloadManager_1.6.6_windows_x64.exe + InstallerSha256: D288E0B0382706215E8D16D477106BA89930E211D5F50C3BE78599CA83EBAFA3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/amir1376/ABDownloadManager/1.6.6/amir1376.ABDownloadManager.locale.en-US.yaml b/manifests/a/amir1376/ABDownloadManager/1.6.6/amir1376.ABDownloadManager.locale.en-US.yaml new file mode 100644 index 0000000000000..02d88663dba5d --- /dev/null +++ b/manifests/a/amir1376/ABDownloadManager/1.6.6/amir1376.ABDownloadManager.locale.en-US.yaml @@ -0,0 +1,48 @@ +# 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: amir1376.ABDownloadManager +PackageVersion: 1.6.6 +PackageLocale: en-US +Publisher: abdownloadmanager.com +PublisherUrl: https://github.com/amir1376 +PublisherSupportUrl: https://github.com/amir1376/ab-download-manager/issues +Author: AmirHossein Abdolmotallebi +PackageName: ABDownloadManager +PackageUrl: https://abdownloadmanager.com/ +License: Apache-2.0 +LicenseUrl: https://github.com/amir1376/ab-download-manager/blob/HEAD/LICENSE +ShortDescription: A Download Manager that speeds up your downloads. +Description: AB Download Manager is a desktop app which lets you manage and organize your download files better than before. +Tags: +- chrome +- compose +- compose-multiplatform +- desktop +- desktop-app +- download +- download-manager +- downloader +- downloadmanager +- firefox +- kotlin +- linux +- windows +ReleaseNotes: |- + 1.6.6 + Added + - Option to create desktop entry on Linux (#698) + Changed + - Renamed Linux desktop and autostart files for better compatibility (#699) + Fixed + - Removed duplicate UI Scale option in the Settings (#697) + Improved + - Updated translations + - Pressing "Stop All" now closes all active download windows (#700) + Note + Dear Linux users: If you see duplicate desktop entries on Linux, delete both of these files to fix the issue: + rm ~/.config/autostart/'AB Download Manager.desktop' ~/.local/share/applications/abdownloadmanager.desktop + They were renamed to "com.abdownloadmanager.desktop" for better compatibility. +ReleaseNotesUrl: https://github.com/amir1376/ab-download-manager/releases/tag/v1.6.6 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/amir1376/ABDownloadManager/1.6.6/amir1376.ABDownloadManager.yaml b/manifests/a/amir1376/ABDownloadManager/1.6.6/amir1376.ABDownloadManager.yaml new file mode 100644 index 0000000000000..5bf642a0ec269 --- /dev/null +++ b/manifests/a/amir1376/ABDownloadManager/1.6.6/amir1376.ABDownloadManager.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: amir1376.ABDownloadManager +PackageVersion: 1.6.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/aome510/spotify-player/0.20.6/aome510.spotify-player.installer.yaml b/manifests/a/aome510/spotify-player/0.20.6/aome510.spotify-player.installer.yaml new file mode 100644 index 0000000000000..79839e73934bb --- /dev/null +++ b/manifests/a/aome510/spotify-player/0.20.6/aome510.spotify-player.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: aome510.spotify-player +PackageVersion: 0.20.6 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: spotify_player.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-22 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aome510/spotify-player/releases/download/v0.20.6/spotify_player-x86_64-pc-windows-msvc.zip + InstallerSha256: 30F3328DC95FA8C87D67498531D345398221C3DCC7B4D16F7461FEAC8EC56A93 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/aome510/spotify-player/0.20.6/aome510.spotify-player.locale.en-US.yaml b/manifests/a/aome510/spotify-player/0.20.6/aome510.spotify-player.locale.en-US.yaml new file mode 100644 index 0000000000000..d500dcaa97780 --- /dev/null +++ b/manifests/a/aome510/spotify-player/0.20.6/aome510.spotify-player.locale.en-US.yaml @@ -0,0 +1,53 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: aome510.spotify-player +PackageVersion: 0.20.6 +PackageLocale: en-US +Publisher: aome510 +PublisherUrl: https://github.com/aome510 +PublisherSupportUrl: https://github.com/aome510/spotify-player/issues +Author: Thang Pham +PackageName: spotify_player +PackageUrl: https://github.com/aome510/spotify-player +License: MIT +LicenseUrl: https://github.com/aome510/spotify-player/blob/HEAD/LICENSE +Copyright: 2021 Thang Pham +CopyrightUrl: https://github.com/aome510/spotify-player/blob/v0.18.1/LICENSE +ShortDescription: A Spotify player in the terminal with full feature parity +Description: spotify_player is a fast, easy to use, and configurable terminal music player. +Moniker: spotify-player +Tags: +- cli +- music +- music-player +- player +- rust +- spotify +- spotify-tui +- terminal-based +- tui +- vim +ReleaseNotes: |- + What's Changed + - fix playlist folders sorting by @aNNiMON in #719 + - feat: add currently playing lyric highlight by @JamesManningR in #733 + - recommend official Arch package instead of AUR by @ThomasFrans in #722 + - fix: add reqwest missing feature to run lyric finder example by @gumaath in #730 + - docs: add rhel/fedora systems dependencies documentation by @gumaath in #731 + - Add Support for RTL text in lyrics by @devceline in #749 + - feat: add {liked} option to playback_format by @Domerpig in #728 + - Added description to show if a playlist is favorited/followed by @nbrowner in #745 + - Add support for vim like motions, i.e. 5j 8k, etc. by @markgandolfo in #742 + New Contributors + - @JamesManningR made their first contribution in #733 + - @ThomasFrans made their first contribution in #722 + - @gumaath made their first contribution in #730 + - @devceline made their first contribution in #749 + - @Domerpig made their first contribution in #728 + - @nbrowner made their first contribution in #745 + - @markgandolfo made their first contribution in #742 + Full Changelog: v0.20.5...v0.20.6 +ReleaseNotesUrl: https://github.com/aome510/spotify-player/releases/tag/v0.20.6 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/aome510/spotify-player/0.20.6/aome510.spotify-player.yaml b/manifests/a/aome510/spotify-player/0.20.6/aome510.spotify-player.yaml new file mode 100644 index 0000000000000..821f186c4669b --- /dev/null +++ b/manifests/a/aome510/spotify-player/0.20.6/aome510.spotify-player.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: aome510.spotify-player +PackageVersion: 0.20.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/app/vleer/0.1.1/app.vleer.installer.yaml b/manifests/a/app/vleer/0.1.1/app.vleer.installer.yaml deleted file mode 100644 index 1b3f054d2327f..0000000000000 --- a/manifests/a/app/vleer/0.1.1/app.vleer.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: app.vleer -PackageVersion: 0.1.1 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -ProductCode: '{C2A1640B-3B22-48BD-BB71-F91C794961E5}' -ReleaseDate: 2024-08-09 -AppsAndFeaturesEntries: -- Publisher: vleer - ProductCode: '{C2A1640B-3B22-48BD-BB71-F91C794961E5}' - UpgradeCode: '{70061045-7FD9-5A39-85CA-DB5AABFD806A}' -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Vleer' -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/vleerapp/Vleer/releases/download/v0.1.1/Vleer-0.1.1.msi - InstallerSha256: 78893378AD526AADA51B21032794F0ED65A7934027C706C37B4F30609FE678CF -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/a/app/vleer/0.1.1/app.vleer.locale.en-US.yaml b/manifests/a/app/vleer/0.1.1/app.vleer.locale.en-US.yaml deleted file mode 100644 index c600f7a535cc7..0000000000000 --- a/manifests/a/app/vleer/0.1.1/app.vleer.locale.en-US.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: app.vleer -PackageVersion: 0.1.1 -PackageLocale: en-US -Publisher: vleerapp -PublisherUrl: https://github.com/vleerapp -PublisherSupportUrl: https://github.com/vleerapp/Vleer/issues -PackageName: Vleer -PackageUrl: https://github.com/vleerapp/Vleer -License: AGPL-3.0 -LicenseUrl: https://github.com/vleerapp/Vleer/blob/HEAD/LICENSE -ShortDescription: Explore high-quality music with Vleer a fast, simple, and reliable app, tailored to your preferences. -Tags: -- free -- gplv3 -- music -- music-player -- nuxt -- opensource -- rust -- tauri -- tauri-app -- tauri-apps -- typescript -- vue -ReleaseNotes: |- - This project is not yet stable! - 🎵 Custom Backend. Anyone? - With this release we are officially announcing a new backend in typescript which you can self-host as docker container. It's still WIP, but in the future the idea is a decentralized network of backend instances from which you can choose one in the client Vleer itself. The new backend will enable live-streaming of music to the client without the need of downloading. - ♻️ Changes - - New audio library Howler.js - - Queue now saves across sessions - - Recently played live updates now - - Right-click "Add to library" - - Disabled unnecessary shortcuts - - [UI] Smaller sidebar - - [UI] Search page redesign - 🐞 Fixes - - Fixed playlist title not loading - - Fixed Media Previous hotkey not working - ⬇️ Downloads - Windows - 78893378ad526aada51b21032794f0ed65a7934027c706c37b4f30609fe678cf - macOS (Silicon) - 6835113e73e773a49589ac07d2093e4c31077f595c8f84ad0ea46578349620c4 - macOS (Intel) - edcba508c54d8a4f22c0640d6ab2da920edde0c863bf9a98303f8c540c3f97a8 - Debian - 2125d19faa2fad78a54d6ab22187df4f0825660f354ce008eb1cc6c45fe9e846 - AppImage - 9877f9fc9a93f104bbd12a1e1fbce8a18cd41969ba592ea05160e124ed0a9386 - Red Hat - 6a7e9ff043951799c5021344b5ac85b22e68edc22cac11b4e345c32d5042d69c -ReleaseNotesUrl: https://github.com/vleerapp/Vleer/releases/tag/v0.1.1 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/a/app/vleer/0.1.1/app.vleer.yaml b/manifests/a/app/vleer/0.1.1/app.vleer.yaml deleted file mode 100644 index fd519b0dba5df..0000000000000 --- a/manifests/a/app/vleer/0.1.1/app.vleer.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: app.vleer -PackageVersion: 0.1.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/a/app/vleer/1.0.0-beta.3/app.vleer.installer.yaml b/manifests/a/app/vleer/1.0.0-beta.3/app.vleer.installer.yaml deleted file mode 100644 index b3b2f02e4d18d..0000000000000 --- a/manifests/a/app/vleer/1.0.0-beta.3/app.vleer.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created using wingetcreate 1.6.1.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: app.vleer -PackageVersion: 1.0.0-beta.3 -InstallerLocale: en-US -InstallerType: wix -ProductCode: '{8905B882-D647-4593-946E-5537499CCFBA}' -AppsAndFeaturesEntries: -- DisplayVersion: 1.0.0 -Installers: -- InstallerUrl: https://github.com/Vleerapp/Vleer/releases/download/v1.0.0-beta.3/Vleer_1.0.0-beta.3_x64-setup.msi - Architecture: x64 - InstallerSha256: A6B046FA6BEE0D421F182ED2320D796B5675FE01F97750C922054022B689B491 -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/a/app/vleer/1.0.0-beta.3/app.vleer.locale.en-US.yaml b/manifests/a/app/vleer/1.0.0-beta.3/app.vleer.locale.en-US.yaml deleted file mode 100644 index b6a02c21239c3..0000000000000 --- a/manifests/a/app/vleer/1.0.0-beta.3/app.vleer.locale.en-US.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Created using wingetcreate 1.6.1.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: app.vleer -PackageVersion: 1.0.0-beta.3 -PackageLocale: en-US -Publisher: vleerapp -PackageName: Vleer -License: Creative Commons Attribution-NonCommercial-ShareAlike (CC BY-NC-SA) -ShortDescription: Explore high-quality music with Vleer a fast, simple, and reliable app, tailored to your preferences. -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/a/app/vleer/1.0.0-beta.3/app.vleer.yaml b/manifests/a/app/vleer/1.0.0-beta.3/app.vleer.yaml deleted file mode 100644 index 598678ca3ef78..0000000000000 --- a/manifests/a/app/vleer/1.0.0-beta.3/app.vleer.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.6.1.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: app.vleer -PackageVersion: 1.0.0-beta.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 diff --git a/manifests/a/ast-grep/ast-grep/0.38.6/ast-grep.ast-grep.installer.yaml b/manifests/a/ast-grep/ast-grep/0.38.6/ast-grep.ast-grep.installer.yaml new file mode 100644 index 0000000000000..b7d61be9cd399 --- /dev/null +++ b/manifests/a/ast-grep/ast-grep/0.38.6/ast-grep.ast-grep.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: ast-grep.ast-grep +PackageVersion: 0.38.6 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: sg.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-24 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ast-grep/ast-grep/releases/download/0.38.6/app-x86_64-pc-windows-msvc.zip + InstallerSha256: FA8AD6D70E746D86B46E6440B201130425EDDDEDB758986DD8A21F082087580C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/ast-grep/ast-grep/0.38.6/ast-grep.ast-grep.locale.en-US.yaml b/manifests/a/ast-grep/ast-grep/0.38.6/ast-grep.ast-grep.locale.en-US.yaml new file mode 100644 index 0000000000000..d3b1f0d3332d3 --- /dev/null +++ b/manifests/a/ast-grep/ast-grep/0.38.6/ast-grep.ast-grep.locale.en-US.yaml @@ -0,0 +1,40 @@ +# 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: ast-grep.ast-grep +PackageVersion: 0.38.6 +PackageLocale: en-US +Publisher: ast-grep +PublisherUrl: https://github.com/ast-grep +PublisherSupportUrl: https://github.com/ast-grep/ast-grep/issues +PackageName: ast-grep +PackageUrl: https://ast-grep.github.io/ +License: MIT +LicenseUrl: https://github.com/ast-grep/ast-grep/blob/HEAD/LICENSE +ShortDescription: A fast and polyglot tool for code searching, linting, rewriting at large scale. +Tags: +- ast +- babel +- codemod +- codereview +- command-line +- command-line-tool +- grep +- linter +- refactoring +- rust +- search +- static-analysis +- structural-search +- tree-sitter +- typescript +ReleaseNotes: |- + - fix(deps): update rust crate tower-lsp-server to 0.22.0 #2056 + - feat: allow sgconfig.yml to not have required ruleDirs field #2059 + - fix: ast-grep -h should not fail if sgconfig is wrong #2054 + - chore(deps): update dependency @ast-grep/napi to v0.38.5 c7a41d6 + - Revert "fix(deps): update rust crate tower-lsp-server to 0.22.0 (#2056)" a5a011b + - fix(deps): update rust crate toml_edit to v0.22.27 84cff96 +ReleaseNotesUrl: https://github.com/ast-grep/ast-grep/releases/tag/0.38.6 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/ast-grep/ast-grep/0.38.6/ast-grep.ast-grep.yaml b/manifests/a/ast-grep/ast-grep/0.38.6/ast-grep.ast-grep.yaml new file mode 100644 index 0000000000000..be03b855dbc17 --- /dev/null +++ b/manifests/a/ast-grep/ast-grep/0.38.6/ast-grep.ast-grep.yaml @@ -0,0 +1,8 @@ +# 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: ast-grep.ast-grep +PackageVersion: 0.38.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ruff/0.12.0/astral-sh.ruff.installer.yaml b/manifests/a/astral-sh/ruff/0.12.0/astral-sh.ruff.installer.yaml new file mode 100644 index 0000000000000..554a04c2b37cf --- /dev/null +++ b/manifests/a/astral-sh/ruff/0.12.0/astral-sh.ruff.installer.yaml @@ -0,0 +1,30 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: astral-sh.ruff +PackageVersion: 0.12.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ruff.exe +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/ruff/releases/download/0.12.0/ruff-i686-pc-windows-msvc.zip + InstallerSha256: D371F72753B7A4A8FF1CB8596A65C794BB864BE3A7654C399E8FB73826F5D8D2 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/ruff/releases/download/0.12.0/ruff-x86_64-pc-windows-msvc.zip + InstallerSha256: B2206E1DA2F08CDB46E1E5CDAFDB6B1D307BB568CC299111742173843D340DB3 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/ruff/releases/download/0.12.0/ruff-aarch64-pc-windows-msvc.zip + InstallerSha256: 366EF0D9CC20C2D9F396F81FF3365D18A1EBDF1C7D2CBCBBB10C6FE82987F2B1 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-06-17 diff --git a/manifests/a/astral-sh/ruff/0.12.0/astral-sh.ruff.locale.en-US.yaml b/manifests/a/astral-sh/ruff/0.12.0/astral-sh.ruff.locale.en-US.yaml new file mode 100644 index 0000000000000..a30398c624fe9 --- /dev/null +++ b/manifests/a/astral-sh/ruff/0.12.0/astral-sh.ruff.locale.en-US.yaml @@ -0,0 +1,166 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: astral-sh.ruff +PackageVersion: 0.12.0 +PackageLocale: en-US +Publisher: Astral +PublisherUrl: https://github.com/astral-sh +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +PackageName: Ruff +# PackageUrl: +License: MIT +LicenseUrl: https://github.com/astral-sh/ruff/blob/HEAD/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: An extremely fast Python linter, written in Rust. +# Description: +# Moniker: +Tags: +- linter +- pep8 +- python +- python3 +- ruff +- rust +- rustpython +- static-analysis +- static-code-analysis +- styleguide +- style-guide +ReleaseNotes: |- + Check out the blog post for a migration + guide and overview of the changes! + + Breaking changes + - Detection of more syntax errors + + Ruff now detects version-related syntax errors, such as the use of the `match` + statement on Python versions before 3.10, and syntax errors emitted by + CPython's compiler, such as irrefutable `match` patterns before the final + `case` arm. + + - New default Python version handling for syntax errors + + Ruff will default to the _latest_ supported Python version (3.13) when + checking for the version-related syntax errors mentioned above to prevent + false positives in projects without a Python version configured. The default + in all other cases, like applying lint rules, is unchanged and remains at the + minimum supported Python version (3.9). + + - Updated f-string formatting + + Ruff now formats multi-line f-strings with format specifiers to avoid adding a + line break after the format specifier. This addresses a change to the Python + grammar in version 3.13.4 that made such a line break a syntax error. + + - **`rust-toolchain.toml` is no longer included in source distributions** + + The `rust-toolchain.toml` is used to specify a higher Rust version than Ruff's + minimum supported Rust version (MSRV) for development and building release + artifacts. However, when present in source distributions, it would also cause + downstream package maintainers to pull in the same Rust toolchain, even if + their available toolchain was MSRV-compatible. + + Removed Rules + The following rules have been removed: + + - `suspicious-xmle-tree-usage` + (S320) + + Deprecated Rules + The following rules have been deprecated: + + - `pandas-df-variable-name` + + Stabilization + The following rules have been stabilized and are no longer in preview: + + - `for-loop-writes` (FURB122) + - `check-and-remove-from-set` (FURB132) + - `verbose-decimal-constructor` (FURB157) + - `fromisoformat-replace-z` (FURB162) + - `int-on-sliced-str` (FURB166) + - `exc-info-outside-except-handler` (LOG014) + - `import-outside-top-level` (PLC0415) + - `unnecessary-dict-index-lookup` (PLR1733) + - `nan-comparison` (PLW0177) + - `eq-without-hash` (PLW1641) + - `pytest-parameter-with-default-argument` (PT028) + - `pytest-warns-too-broad` (PT030) + - `pytest-warns-with-multiple-statements` (PT031) + - `invalid-formatter-suppression-comment` (RUF028) + - `dataclass-enum` (RUF049) + - `class-with-mixed-type-vars` (RUF053) + - `unnecessary-round` (RUF057) + - `starmap-zip` (RUF058) + - `non-pep604-annotation-optional` (UP045) + - `non-pep695-generic-class` (UP046) + - `non-pep695-generic-function` (UP047) + - `private-type-parameter` (UP049) + + The following behaviors have been stabilized: + + - [`collection-literal-concatenation`] (RUF005) now recognizes slices, in + addition to list literals and variables. + - The fix for [`readlines-in-for`] (FURB129) is now marked as always safe. + - [`if-else-block-instead-of-if-exp`] (SIM108) will now further simplify + expressions to use `or` instead of an `if` expression, where possible. + - [`unused-noqa`] (RUF100) now checks for file-level `noqa` comments as well + as inline comments. + - [`subprocess-without-shell-equals-true`] (S603) now accepts literal strings, + as well as lists and tuples of literal strings, as trusted input. + - [`boolean-type-hint-positional-argument`] (FBT001) now applies to types that + include `bool`, like `bool | int` or `typing.Optional[bool]`, in addition to + plain `bool` annotations. + - [`non-pep604-annotation-union`] (UP007) has now been split into two rules. + UP007 now applies only to `typing.Union`, while + [`non-pep604-annotation-optional`] (UP045) checks for use of + `typing.Optional`. UP045 has also been stabilized in this release, but you + may need to update existing `include`, `ignore`, or `noqa` settings to + accommodate this change. + + Preview features + - [ruff] Check for non-context-manager use of `pytest.raises`, `pytest.warns`, and `pytest.deprecated_call` (RUF061) (#17368) + - [syntax-errors] Raise unsupported syntax error for template strings prior to Python 3.14 (#18664) + + Bug fixes + - Add syntax error when conversion flag does not immediately follow exclamation mark (#18706) + - Add trailing space around `readlines` (#18542) + - Fix `\r` and `\r\n` handling in t- and f-string debug texts (#18673) + - Hug closing `}` when f-string expression has a format specifier (#18704) + - [flake8-pyi] Avoid syntax error in the case of starred and keyword arguments (PYI059) (#18611) + - [flake8-return] Fix RET504 autofix generating a syntax error (#18428) + - [pep8-naming] Suppress fix for N804 and N805 if the recommended name is already used (#18472) + - [pycodestyle] Avoid causing a syntax error in expressions spanning multiple lines (E731) (#18479) + - [pyupgrade] Suppress UP008 if `super` is shadowed (#18688) + - [refurb] Parenthesize lambda and ternary expressions (FURB122, FURB142) (#18592) + - [ruff] Handle extra arguments to `deque` (RUF037) (#18614) + - [ruff] Preserve parentheses around `deque` in fix for `unnecessary-empty-iterable-within-deque-call` (RUF037) (#18598) + - [ruff] Validate arguments before offering a fix (RUF056) (#18631) + - [ruff] Skip fix for RUF059 if dummy name is already bound (#18509) + - [pylint] Fix PLW0128 to check assignment targets in square brackets and after asterisks (#18665) + + Rule changes + - Fix false positive on mutations in `return` statements (B909) (#18408) + - Treat `ty:` comments as pragma comments (#18532) + - [flake8-pyi] Apply `custom-typevar-for-self` to string annotations (PYI019) (#18311) + - [pyupgrade] Don't offer a fix for `Optional[None]` (UP007, `UP045)` (#18545) + - [pyupgrade] Fix `super(__class__, self)` detection (UP008) (#18478) + - [refurb] Make the fix for FURB163 unsafe for `log2`, `log10`, `*args`, and deleted comments (#18645) + + Server + - Support cancellation requests (#18627) + + Documentation + - Drop confusing second `*` from glob pattern example for `per-file-target-version` (#18709) + - Update Neovim configuration examples (#18491) + - [pylint] De-emphasize `__hash__ = Parent.__hash__` (PLW1641) (#18613) + - [refurb] Add a note about float literal handling (FURB157) (#18615) +ReleaseNotesUrl: https://github.com/astral-sh/ruff/releases/tag/0.12.0 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ruff/0.12.0/astral-sh.ruff.yaml b/manifests/a/astral-sh/ruff/0.12.0/astral-sh.ruff.yaml new file mode 100644 index 0000000000000..1a21c7ec7f83f --- /dev/null +++ b/manifests/a/astral-sh/ruff/0.12.0/astral-sh.ruff.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: astral-sh.ruff +PackageVersion: 0.12.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ruff/0.12.1/astral-sh.ruff.installer.yaml b/manifests/a/astral-sh/ruff/0.12.1/astral-sh.ruff.installer.yaml new file mode 100644 index 0000000000000..164a23b29bce6 --- /dev/null +++ b/manifests/a/astral-sh/ruff/0.12.1/astral-sh.ruff.installer.yaml @@ -0,0 +1,30 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: astral-sh.ruff +PackageVersion: 0.12.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ruff.exe +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/ruff/releases/download/0.12.1/ruff-i686-pc-windows-msvc.zip + InstallerSha256: 6CE28E584A294F843DC278BCD7FC88DB02C56068FAEBDAFAD0BD552F2E355AF9 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/ruff/releases/download/0.12.1/ruff-x86_64-pc-windows-msvc.zip + InstallerSha256: ED16AE044866378C27855F44400C1EB0DB8ECEC26EF07582DAE1D550B968D9FE + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/ruff/releases/download/0.12.1/ruff-aarch64-pc-windows-msvc.zip + InstallerSha256: A63061136085E15915514205297E432BB178CA2F4CE5294B12F98BE9C60470E9 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-06-26 diff --git a/manifests/a/astral-sh/ruff/0.12.1/astral-sh.ruff.locale.en-US.yaml b/manifests/a/astral-sh/ruff/0.12.1/astral-sh.ruff.locale.en-US.yaml new file mode 100644 index 0000000000000..718f768d8f41c --- /dev/null +++ b/manifests/a/astral-sh/ruff/0.12.1/astral-sh.ruff.locale.en-US.yaml @@ -0,0 +1,105 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: astral-sh.ruff +PackageVersion: 0.12.1 +PackageLocale: en-US +Publisher: Astral +PublisherUrl: https://github.com/astral-sh +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +PackageName: Ruff +# PackageUrl: +License: MIT +LicenseUrl: https://github.com/astral-sh/ruff/blob/HEAD/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: An extremely fast Python linter, written in Rust. +# Description: +# Moniker: +Tags: +- linter +- pep8 +- python +- python3 +- ruff +- rust +- rustpython +- static-analysis +- static-code-analysis +- styleguide +- style-guide +ReleaseNotes: |- + Preview features + - [flake8-errmsg] Extend EM101 to support byte strings (#18867) + - [flake8-use-pathlib] Add autofix for PTH202 (#18763) + - [pygrep-hooks] Add `AsyncMock` methods to `invalid-mock-access` (PGH005) (#18547) + - [pylint] Ignore `__init__.py` files in (PLC0414) (#18400) + - [ruff] Trigger RUF037 for empty string and byte strings (#18862) + - [formatter] Fix missing blank lines before decorated classes in `.pyi` files (#18888) + + Bug fixes + - Avoid generating diagnostics with per-file ignores (#18801) + - Handle parenthesized arguments in `remove_argument` (#18805) + - [flake8-logging] Avoid false positive for `exc_info=True` outside `logger.exception` (LOG014) (#18737) + - [flake8-pytest-style] Enforce `pytest` import for decorators (#18779) + - [flake8-pytest-style] Mark autofix for PT001 and PT023 as unsafe if there's comments in the decorator (#18792) + - [flake8-pytest-style] PT001/PT023 fix makes syntax error on parenthesized decorator (#18782) + - [flake8-raise] Make fix unsafe if it deletes comments (RSE102) (#18788) + - [flake8-simplify] Fix SIM911 autofix creating a syntax error (#18793) + - [flake8-simplify] Fix false negatives for shadowed bindings (SIM910, SIM911) (#18794) + - [flake8-simplify] Preserve original behavior for `except ()` and bare `except` (SIM105) (#18213) + - [flake8-pyi] Fix PYI041's fix causing `TypeError` with `None | None | ...` (#18637) + - [perflint] Fix PERF101 autofix creating a syntax error and mark autofix as unsafe if there are comments in the `list` call expr (#18803) + - [perflint] Fix false negative in PERF401 (#18866) + - [pylint] Avoid flattening nested `min`/`max` when outer call has single argument (PLW3301) (#16885) + - [pylint] Fix PLC2801 autofix creating a syntax error (#18857) + - [pylint] Mark PLE0241 autofix as unsafe if there's comments in the base classes (#18832) + - [pylint] Suppress PLE2510/PLE2512/PLE2513/PLE2514/PLE2515 autofix if the text contains an odd number of backslashes (#18856) + - [refurb] Detect more exotic float literals in FURB164 (#18925) + - [refurb] Fix FURB163 autofix creating a syntax error for `yield` expressions (#18756) + - [refurb] Mark FURB129 autofix as unsafe if there's comments in the `readlines` call (#18858) + - [ruff] Fix false positives and negatives in RUF010 (#18690) + - Fix casing of `analyze.direction` variant names (#18892) + + Rule changes + - Fix f-string interpolation escaping in generated fixes (#18882) + - [flake8-return] Mark RET501 fix unsafe if comments are inside (#18780) + - [flake8-async] Fix detection for large integer sleep durations in ASYNC116 rule (#18767) + - [flake8-async] Mark autofix for ASYNC115 as unsafe if the call expression contains comments (#18753) + - [flake8-bugbear] Mark autofix for B004 as unsafe if the `hasattr` call expr contains comments (#18755) + - [flake8-comprehension] Mark autofix for C420 as unsafe if there's comments inside the dict comprehension (#18768) + - [flake8-comprehensions] Handle template strings for comprehension fixes (#18710) + - [flake8-future-annotations] Add autofix (FA100) (#18903) + - [pyflakes] Mark F504/F522/F523 autofix as unsafe if there's a call with side effect (#18839) + - [pylint] Allow fix with comments and document performance implications (PLW3301) (#18936) + - [pylint] Detect more exotic `NaN` literals in PLW0177 (#18630) + - [pylint] Fix PLC1802 autofix creating a syntax error and mark autofix as unsafe if there's comments in the `len` call (#18836) + - [pyupgrade] Extend version detection to include `sys.version_info.major` (UP036) (#18633) + - [ruff] Add lint rule RUF064 for calling `chmod` with non-octal integers (#18541) + - [ruff] Added `cls.__dict__.get('__annotations__')` check (RUF063) (#18233) + - [ruff] Frozen `dataclass` default should be valid (RUF009) (#18735) + + Server + - Consider virtual path for various server actions (#18910) + + Documentation + - Add fix safety sections (#18940,#18841,#18802,#18837,#18800,#18415,#18853,#18842) + - Use updated pre-commit id (#18718) + - [perflint] Small docs improvement to PERF401 (#18786) + - [pyupgrade]: Use `super()`, not `__super__` in error messages (UP008) (#18743) + - [flake8-pie] Small docs fix to PIE794 (#18829) + - [flake8-pyi] Correct `collections-named-tuple` example to use PascalCase assignment (#16884) + - [flake8-pie] Add note on type checking benefits to `unnecessary-dict-kwargs` (PIE804) (#18666) + - [pycodestyle] Clarify PEP 8 relationship to `whitespace-around-operator` rules (#18870) + + Other changes + - Disallow newlines in format specifiers of single quoted f- or t-strings (#18708) + - [flake8-logging] Add fix safety section to LOG002 (#18840) + - [pyupgrade] Add fix safety section to UP010 (#18838) +ReleaseNotesUrl: https://github.com/astral-sh/ruff/releases/tag/0.12.1 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ruff/0.12.1/astral-sh.ruff.yaml b/manifests/a/astral-sh/ruff/0.12.1/astral-sh.ruff.yaml new file mode 100644 index 0000000000000..699f30b7ea3c5 --- /dev/null +++ b/manifests/a/astral-sh/ruff/0.12.1/astral-sh.ruff.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: astral-sh.ruff +PackageVersion: 0.12.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ruff/0.12.2/astral-sh.ruff.installer.yaml b/manifests/a/astral-sh/ruff/0.12.2/astral-sh.ruff.installer.yaml new file mode 100644 index 0000000000000..87d8d225f1fa4 --- /dev/null +++ b/manifests/a/astral-sh/ruff/0.12.2/astral-sh.ruff.installer.yaml @@ -0,0 +1,30 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: astral-sh.ruff +PackageVersion: 0.12.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ruff.exe +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/ruff/releases/download/0.12.2/ruff-i686-pc-windows-msvc.zip + InstallerSha256: 568195CFFB23E9E650E55CF8BC7BE4268CF5A6906CBD6343EA8DEF5C70FAB8A2 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/ruff/releases/download/0.12.2/ruff-x86_64-pc-windows-msvc.zip + InstallerSha256: 7562B9383E9C195E17B6F524165DC6DA6435A76BF549A5132977DBCF598C890D + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/ruff/releases/download/0.12.2/ruff-aarch64-pc-windows-msvc.zip + InstallerSha256: 36513F0A1AB3B88060E62857E3DB0EB53422FBC824EBB0BA65938A292D01939F + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-07-03 diff --git a/manifests/a/astral-sh/ruff/0.12.2/astral-sh.ruff.locale.en-US.yaml b/manifests/a/astral-sh/ruff/0.12.2/astral-sh.ruff.locale.en-US.yaml new file mode 100644 index 0000000000000..b11d54f792db6 --- /dev/null +++ b/manifests/a/astral-sh/ruff/0.12.2/astral-sh.ruff.locale.en-US.yaml @@ -0,0 +1,87 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: astral-sh.ruff +PackageVersion: 0.12.2 +PackageLocale: en-US +Publisher: Astral +PublisherUrl: https://github.com/astral-sh +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +PackageName: Ruff +# PackageUrl: +License: MIT +LicenseUrl: https://github.com/astral-sh/ruff/blob/HEAD/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: An extremely fast Python linter, written in Rust. +# Description: +# Moniker: +Tags: +- linter +- pep8 +- python +- python3 +- ruff +- rust +- rustpython +- static-analysis +- static-code-analysis +- styleguide +- style-guide +ReleaseNotes: |- + Preview features + - [flake8-pyi] Expand `Optional[A]` to `A | None` (PYI016) (#18572) + - [pyupgrade] Mark UP008 fix safe if no comments are in range (#18683) + + Bug fixes + - [flake8-comprehensions] Fix C420 to prepend whitespace when needed (#18616) + - [perflint] Fix PERF403 panic on attribute or subscription loop variable (#19042) + - [pydocstyle] Fix D413 infinite loop for parenthesized docstring (#18930) + - [pylint] Fix PLW0108 autofix introducing a syntax error when the lambda's body contains an assignment expression (#18678) + - [refurb] Fix false positive on empty tuples (FURB168) (#19058) + - [ruff] Allow more `field` calls from `attrs` (RUF009) (#19021) + - [ruff] Fix syntax error introduced for an empty string followed by a u-prefixed string (UP025) (#18899) + + Rule changes + - [flake8-executable] Allow `uvx` in shebang line (EXE003) (#18967) + - [pandas] Avoid flagging PD002 if `pandas` is not imported (#18963) + - [pyupgrade] Avoid PEP-604 unions with `typing.NamedTuple` (UP007, UP045) (#18682) + + Documentation + - Document link between `import-outside-top-level (PLC0415)` and `lint.flake8-tidy-imports.banned-module-level-imports` (#18733) + - Fix description of the `format.skip-magic-trailing-comma` example (#19095) + - [airflow] Make AIR302 example error out-of-the-box (#18988) + - [airflow] Make AIR312 example error out-of-the-box (#18989) + - [flake8-annotations] Make ANN401 example error out-of-the-box (#18974) + - [flake8-async] Make ASYNC100 example error out-of-the-box (#18993) + - [flake8-async] Make ASYNC105 example error out-of-the-box (#19002) + - [flake8-async] Make ASYNC110 example error out-of-the-box (#18975) + - [flake8-async] Make ASYNC210 example error out-of-the-box (#18977) + - [flake8-async] Make ASYNC220, ASYNC221, and ASYNC222 examples error out-of-the-box (#18978) + - [flake8-async] Make ASYNC251 example error out-of-the-box (#18990) + - [flake8-bandit] Make S201 example error out-of-the-box (#19017) + - [flake8-bandit] Make S604 and S609 examples error out-of-the-box (#19049) + - [flake8-bugbear] Make B028 example error out-of-the-box (#19054) + - [flake8-bugbear] Make B911 example error out-of-the-box (#19051) + - [flake8-datetimez] Make DTZ011 example error out-of-the-box (#19055) + - [flake8-datetimez] Make DTZ901 example error out-of-the-box (#19056) + - [flake8-pyi] Make PYI032 example error out-of-the-box (#19061) + - [flake8-pyi] Make example error out-of-the-box (PYI014, PYI015) (#19097) + - [flake8-pyi] Make example error out-of-the-box (PYI042) (#19101) + - [flake8-pyi] Make example error out-of-the-box (PYI059) (#19080) + - [flake8-pyi] Make example error out-of-the-box (PYI062) (#19079) + - [flake8-pytest-style] Make example error out-of-the-box (PT023) (#19104) + - [flake8-pytest-style] Make example error out-of-the-box (PT030) (#19105) + - [flake8-quotes] Make example error out-of-the-box (Q003) (#19106) + - [flake8-simplify] Make example error out-of-the-box (SIM110) (#19113) + - [flake8-simplify] Make example error out-of-the-box (SIM113) (#19109) + - [flake8-simplify] Make example error out-of-the-box (SIM401) (#19110) + - [pyflakes] Fix backslash in docs (F621) (#19098) + - [pylint] Fix PLC0415 example (#18970) +ReleaseNotesUrl: https://github.com/astral-sh/ruff/releases/tag/0.12.2 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ruff/0.12.2/astral-sh.ruff.yaml b/manifests/a/astral-sh/ruff/0.12.2/astral-sh.ruff.yaml new file mode 100644 index 0000000000000..571fcd47e96fe --- /dev/null +++ b/manifests/a/astral-sh/ruff/0.12.2/astral-sh.ruff.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: astral-sh.ruff +PackageVersion: 0.12.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ty/0.0.1-alpha.12/astral-sh.ty.installer.yaml b/manifests/a/astral-sh/ty/0.0.1-alpha.12/astral-sh.ty.installer.yaml new file mode 100644 index 0000000000000..6f04e360ff5d6 --- /dev/null +++ b/manifests/a/astral-sh/ty/0.0.1-alpha.12/astral-sh.ty.installer.yaml @@ -0,0 +1,36 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: astral-sh.ty +PackageVersion: 0.0.1-alpha.12 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ty.exe +InstallModes: +- silent +UpgradeBehavior: install +Commands: +- ty +ReleaseDate: 2025-06-25 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/ty/releases/download/0.0.1-alpha.12/ty-i686-pc-windows-msvc.zip + InstallerSha256: 7A292EADB209BFB8DE5E6395F9ACDF63A320D27C23588F09ABDAAF1E22292336 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/ty/releases/download/0.0.1-alpha.12/ty-x86_64-pc-windows-msvc.zip + InstallerSha256: E3A80597B330EE651CBCE24CD13732410B0C59CDCAB07723C597714E935D123B + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/ty/releases/download/0.0.1-alpha.12/ty-aarch64-pc-windows-msvc.zip + InstallerSha256: 71D0AC2E61D96C5172FF8A713E275F57C0FDA5F2874DB824F909113502E8361F + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ty/0.0.1-alpha.12/astral-sh.ty.locale.en-US.yaml b/manifests/a/astral-sh/ty/0.0.1-alpha.12/astral-sh.ty.locale.en-US.yaml new file mode 100644 index 0000000000000..e2216c78a6b1b --- /dev/null +++ b/manifests/a/astral-sh/ty/0.0.1-alpha.12/astral-sh.ty.locale.en-US.yaml @@ -0,0 +1,107 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: astral-sh.ty +PackageVersion: 0.0.1-alpha.12 +PackageLocale: en-US +Publisher: Astral Software Inc. +PublisherUrl: https://astral.sh/ +PublisherSupportUrl: https://github.com/astral-sh/ty/issues +Author: Astral Software Inc. +PackageName: ty +PackageUrl: https://github.com/astral-sh/ty +License: MIT +LicenseUrl: https://github.com/astral-sh/ty/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Astral Software Inc. +CopyrightUrl: https://github.com/astral-sh/ty/blob/HEAD/LICENSE +ShortDescription: An extremely fast Python type checker and language server, written in Rust. +Moniker: ty +Tags: +- python +ReleaseNotes: |- + Release Notes + Bug fixes + - Avoid duplicate diagnostic when reporting errors in unpacked assignments (#18897) + - Fix panics when "pulling types" for ClassVar or Final parameterized with >1 argument (#18824). These could cause issues when hovering over symbols in an IDE. + Improved modeling of Python runtime semantics + - Add support for @staticmethods (#18809) + - Discover implicit class attribute assignments in @classmethod-decorated methods. Recognize that assignments in the body of a @staticmethod-decorated method are never instance attributes (#18587) + - Report when a dataclass contains more than one KW_ONLY field (#18731) + Type narrowing improvements + - Ty will now perform isinstance() and issubclass() narrowing when the second argument is a union type, intersection type or TypeVar type (#18900) + - Ty now narrows types in comprehensions and generator expressions (#18934) + - Understand two NominalInstanceTypes as disjoint types if attempting to use multiple inheritance with their underlying classes would result in an instance memory layout conflict (#18864) + Other typing semantics features + - Support "mixed" tuples such as tuple[int, *tuple[str, ...]] (#18600, #18901) + - Support type inference for subscript expressions on union types (#18846) + - Introduce a new subtyping framework in which gradual types can participate, allowing for more advanced union type simplification (#18799) + - Surface the matched overload directly when reporting a diagnostic for an invalid call to an overloaded function (#18452) + Improvements to server autocompletions + - Add completions for from module import (#18830) + - Enforce sort order of completions (#18917) + - Include imported sub-modules as attributes on modules for completions (#18898) + Configuration + - Anchor all src.exclude patterns, for consistency with src.include patterns (#18685) + - Change environment.root to accept multiple paths (#18913) + - Rename src.root setting to environment.root (#18760) + - Support --python= (#18827) + Contributors + - @BurntSushi + - @InSyncWithFoo + - @suneettipirneni + - @AlexWaygood + - @dhruvmanila + - @sharkdp + - @MichaReiser + - @med1844 + - @dcreager + - @carljm + Install ty 0.0.1-alpha.12 + Install prebuilt binaries via shell script + curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/ty/releases/download/0.0.1-alpha.12/ty-installer.sh | sh + Install prebuilt binaries via powershell script + powershell -ExecutionPolicy Bypass -c "irm https://github.com/astral-sh/ty/releases/download/0.0.1-alpha.12/ty-installer.ps1 | iex" + Download ty 0.0.1-alpha.12 + ─────────────────────────────────────────────┬────────────────────────────┬───────────── + File │Platform │Checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-aarch64-apple-darwin.tar.gz │Apple Silicon macOS │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-x86_64-apple-darwin.tar.gz │Intel macOS │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-aarch64-pc-windows-msvc.zip │ARM64 Windows │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-i686-pc-windows-msvc.zip │x86 Windows │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-x86_64-pc-windows-msvc.zip │x64 Windows │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-aarch64-unknown-linux-gnu.tar.gz │ARM64 Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-i686-unknown-linux-gnu.tar.gz │x86 Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-powerpc64-unknown-linux-gnu.tar.gz │PPC64 Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-powerpc64le-unknown-linux-gnu.tar.gz │PPC64LE Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-s390x-unknown-linux-gnu.tar.gz │S390x Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-x86_64-unknown-linux-gnu.tar.gz │x64 Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-armv7-unknown-linux-gnueabihf.tar.gz │ARMv7 Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-aarch64-unknown-linux-musl.tar.gz │ARM64 MUSL Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-i686-unknown-linux-musl.tar.gz │x86 MUSL Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-x86_64-unknown-linux-musl.tar.gz │x64 MUSL Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-arm-unknown-linux-musleabihf.tar.gz │ARMv6 MUSL Linux (Hardfloat)│checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-armv7-unknown-linux-musleabihf.tar.gz │ARMv7 MUSL Linux │checksum + ─────────────────────────────────────────────┴────────────────────────────┴───────────── +ReleaseNotesUrl: https://github.com/astral-sh/ty/releases/tag/0.0.1-alpha.12 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://github.com/astral-sh/ty/blob/HEAD/docs/README.md +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ty/0.0.1-alpha.12/astral-sh.ty.yaml b/manifests/a/astral-sh/ty/0.0.1-alpha.12/astral-sh.ty.yaml new file mode 100644 index 0000000000000..cfd80996075b7 --- /dev/null +++ b/manifests/a/astral-sh/ty/0.0.1-alpha.12/astral-sh.ty.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: astral-sh.ty +PackageVersion: 0.0.1-alpha.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ty/0.0.1-alpha.13/astral-sh.ty.installer.yaml b/manifests/a/astral-sh/ty/0.0.1-alpha.13/astral-sh.ty.installer.yaml new file mode 100644 index 0000000000000..000c6a66b617c --- /dev/null +++ b/manifests/a/astral-sh/ty/0.0.1-alpha.13/astral-sh.ty.installer.yaml @@ -0,0 +1,36 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: astral-sh.ty +PackageVersion: 0.0.1-alpha.13 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ty.exe +InstallModes: +- silent +UpgradeBehavior: install +Commands: +- ty +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/ty/releases/download/0.0.1-alpha.13/ty-i686-pc-windows-msvc.zip + InstallerSha256: 4DEBBBB3BFAE67A19EF08A76E1512E5B884303B3DE5F656E01239B1CCB44F501 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/ty/releases/download/0.0.1-alpha.13/ty-x86_64-pc-windows-msvc.zip + InstallerSha256: 1A4FE01F5F7ADFC55F96892881EBED7BB4738B60C0D0F1F06ECE779028076AD0 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/ty/releases/download/0.0.1-alpha.13/ty-aarch64-pc-windows-msvc.zip + InstallerSha256: 9BC1CC42A218CF8504270DA598F41AE6D50FC0C236079FA2FA6999D13D0FFAB6 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ty/0.0.1-alpha.13/astral-sh.ty.locale.en-US.yaml b/manifests/a/astral-sh/ty/0.0.1-alpha.13/astral-sh.ty.locale.en-US.yaml new file mode 100644 index 0000000000000..87662b741bbec --- /dev/null +++ b/manifests/a/astral-sh/ty/0.0.1-alpha.13/astral-sh.ty.locale.en-US.yaml @@ -0,0 +1,64 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: astral-sh.ty +PackageVersion: 0.0.1-alpha.13 +PackageLocale: en-US +Publisher: Astral Software Inc. +PublisherUrl: https://astral.sh/ +PublisherSupportUrl: https://github.com/astral-sh/ty/issues +Author: Astral Software Inc. +PackageName: ty +PackageUrl: https://github.com/astral-sh/ty +License: MIT +LicenseUrl: https://github.com/astral-sh/ty/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Astral Software Inc. +CopyrightUrl: https://github.com/astral-sh/ty/blob/HEAD/LICENSE +ShortDescription: An extremely fast Python type checker and language server, written in Rust. +Moniker: ty +Tags: +- python +ReleaseNotes: |- + Bug fixes + - Fix stack overflows related to mutually recursive protocols (#19003) + - Don't add incorrect subdiagnostic for unresolved-reference in staticmethods and classmethods (#18487) + - Fix rendering of long lines in diagnostic messages that are indented with tabs (#18962) + - Fix reachability of star import definitions for nonlocal lookups (#19066) + Typing semantics and features + - Support variable-length tuples in unpacking assignments (#18948) + - Allow declared-only class-level attributes to be accessed on the class (#19071) + - Infer nonlocal types as unions of all reachable bindings (#18750) + - Use all reachable bindings for instance attributes and deferred lookups (#18955) + - Improve protocol member type checking and relation handling (#18847) + - Rework disjointness of protocol instances vs types with possibly unbound attributes, preventing some false instances of Never in hasattr narrowing (#19043) + - Make tuple instantiations sound (#18987) + - Add subdiagnostic about empty bodies in more cases (#18942) + - Improve type-inference for __import__(name) and importlib.import_module(name) (#19008) + - Eagerly evaluate certain constraints when analyzing control flow (#18998, #19044, #19068) + - Update typeshed stubs (#19060): typeshed diff + Server + - Add builtins to completions (#18982) + - Support LSP go-to with vendored typeshed stubs (#19057) + Documentation + - The ty documentation is now available at docs.astral.sh/ty (#744) + Performance + - Remove ScopedExpressionId (#19019) + Contributors + - @InSyncWithFoo + - @MatthewMckee4 + - @dcreager + - @mtshiba + - @BurntSushi + - @sharkdp + - @ibraheemdev + - @github-actions + - @carljm + - @AlexWaygood + - @MichaReiser + - @zanieb +ReleaseNotesUrl: https://github.com/astral-sh/ty/releases/tag/0.0.1-alpha.13 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.astral.sh/ty/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ty/0.0.1-alpha.13/astral-sh.ty.yaml b/manifests/a/astral-sh/ty/0.0.1-alpha.13/astral-sh.ty.yaml new file mode 100644 index 0000000000000..5ee1d223402e6 --- /dev/null +++ b/manifests/a/astral-sh/ty/0.0.1-alpha.13/astral-sh.ty.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: astral-sh.ty +PackageVersion: 0.0.1-alpha.13 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ty/0.0.1-alpha.14/astral-sh.ty.installer.yaml b/manifests/a/astral-sh/ty/0.0.1-alpha.14/astral-sh.ty.installer.yaml new file mode 100644 index 0000000000000..70054c3d3bcfb --- /dev/null +++ b/manifests/a/astral-sh/ty/0.0.1-alpha.14/astral-sh.ty.installer.yaml @@ -0,0 +1,36 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: astral-sh.ty +PackageVersion: 0.0.1-alpha.14 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ty.exe +InstallModes: +- silent +UpgradeBehavior: install +Commands: +- ty +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/ty/releases/download/0.0.1-alpha.14/ty-i686-pc-windows-msvc.zip + InstallerSha256: 4CF93A4517F38CE1EE39EC6800B8123CBB9030DA1F377144939F5634AE926835 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/ty/releases/download/0.0.1-alpha.14/ty-x86_64-pc-windows-msvc.zip + InstallerSha256: 0CBB8BA972FABE27C531DA20E0780E25E9F3503FE4FD8CC13B80DC2B97607247 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/ty/releases/download/0.0.1-alpha.14/ty-aarch64-pc-windows-msvc.zip + InstallerSha256: AD5D0CC1222B25BAF59B484AD1E9C7B9ABF263C4E30233D57994631904B77F8F + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ty/0.0.1-alpha.14/astral-sh.ty.locale.en-US.yaml b/manifests/a/astral-sh/ty/0.0.1-alpha.14/astral-sh.ty.locale.en-US.yaml new file mode 100644 index 0000000000000..31228bd728761 --- /dev/null +++ b/manifests/a/astral-sh/ty/0.0.1-alpha.14/astral-sh.ty.locale.en-US.yaml @@ -0,0 +1,105 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: astral-sh.ty +PackageVersion: 0.0.1-alpha.14 +PackageLocale: en-US +Publisher: Astral Software Inc. +PublisherUrl: https://astral.sh/ +PublisherSupportUrl: https://github.com/astral-sh/ty/issues +Author: Astral Software Inc. +PackageName: ty +PackageUrl: https://github.com/astral-sh/ty +License: MIT +LicenseUrl: https://github.com/astral-sh/ty/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Astral Software Inc. +CopyrightUrl: https://github.com/astral-sh/ty/blob/HEAD/LICENSE +ShortDescription: An extremely fast Python type checker and language server, written in Rust. +Moniker: ty +Tags: +- python +ReleaseNotes: |- + Release Notes + Bug fixes + - Add cycle detection to ty's implementation of disjointness between types, fixing a possible source of stack overflows when analysing recursive types (#19139) + - Don't allow first-party code to shadow the stdlib types module (#19128). + This fixes another possible source of stack overflows. + - Fix descriptor lookups for most types that overlap with None (#19120). + This means that e.g. object().__str__() now correctly binds the self argument of the __str__ + method, as the object type overlaps with None. + Server + - Filter a symbol from a stub file in autocomplete suggestions if it is an implementation detail of the stub (#19121) + - Add initial support for semantic tokens (#19108). + This feature allows editors to apply more advanced syntax highlighting. Currently, the supported tokens are: Namespace, Class, Parameter, SelfParameter,ClsParameter, Variable, Property, Function, Method, Keyword, String, Number, Decorator, BuiltinConstant and TypeParameter. + - Initial support for workspace diagnostics (#18939). + Enable this feature by setting the ty.diagnosticMode configuration setting to "workspace". + - Use Python syntax highlighting in on-hover content (#19082) + Typing semantics and features + - Understand that calls to functions returning Never / NoReturn are terminal with respect to control flow (#18333) + - Add subtyping between type[] types and Callable types (#19026) + - Support bare ClassVar annotations (#15768) + - Understand that two protocols with equivalent method members are equivalent (#18659) + - Support declared-only instance attributes such as self.x: int (#19048) + - Sync vendored typeshed stubs (#19174): typeshed diff + - Use the inferred type as the declared type for bare Final symbols (#19142) + Contributors + - @iyakushev + - @MatthewMckee4 + - @zanieb + - @sharkdp + - @UnboundVariable + - @abhijeetbodas2001 + - @github-actions + - @dhruvmanila + - @AlexWaygood + - @carljm + - @CodeMan62 + Install ty 0.0.1-alpha.14 + Install prebuilt binaries via shell script + curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/ty/releases/download/0.0.1-alpha.14/ty-installer.sh | sh + Install prebuilt binaries via powershell script + powershell -ExecutionPolicy Bypass -c "irm https://github.com/astral-sh/ty/releases/download/0.0.1-alpha.14/ty-installer.ps1 | iex" + Download ty 0.0.1-alpha.14 + ─────────────────────────────────────────────┬────────────────────────────┬───────────── + File │Platform │Checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-aarch64-apple-darwin.tar.gz │Apple Silicon macOS │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-x86_64-apple-darwin.tar.gz │Intel macOS │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-aarch64-pc-windows-msvc.zip │ARM64 Windows │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-i686-pc-windows-msvc.zip │x86 Windows │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-x86_64-pc-windows-msvc.zip │x64 Windows │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-aarch64-unknown-linux-gnu.tar.gz │ARM64 Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-i686-unknown-linux-gnu.tar.gz │x86 Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-powerpc64-unknown-linux-gnu.tar.gz │PPC64 Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-powerpc64le-unknown-linux-gnu.tar.gz │PPC64LE Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-s390x-unknown-linux-gnu.tar.gz │S390x Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-x86_64-unknown-linux-gnu.tar.gz │x64 Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-armv7-unknown-linux-gnueabihf.tar.gz │ARMv7 Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-aarch64-unknown-linux-musl.tar.gz │ARM64 MUSL Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-i686-unknown-linux-musl.tar.gz │x86 MUSL Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-x86_64-unknown-linux-musl.tar.gz │x64 MUSL Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-arm-unknown-linux-musleabihf.tar.gz │ARMv6 MUSL Linux (Hardfloat)│checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-armv7-unknown-linux-musleabihf.tar.gz │ARMv7 MUSL Linux │checksum + ─────────────────────────────────────────────┴────────────────────────────┴───────────── +ReleaseNotesUrl: https://github.com/astral-sh/ty/releases/tag/0.0.1-alpha.14 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.astral.sh/ty/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ty/0.0.1-alpha.14/astral-sh.ty.yaml b/manifests/a/astral-sh/ty/0.0.1-alpha.14/astral-sh.ty.yaml new file mode 100644 index 0000000000000..35fe655c04967 --- /dev/null +++ b/manifests/a/astral-sh/ty/0.0.1-alpha.14/astral-sh.ty.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: astral-sh.ty +PackageVersion: 0.0.1-alpha.14 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.15/astral-sh.uv.installer.yaml b/manifests/a/astral-sh/uv/0.7.15/astral-sh.uv.installer.yaml new file mode 100644 index 0000000000000..662fd97dbc687 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.15/astral-sh.uv.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.7.15 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: uvx.exe + PortableCommandAlias: uvx +- RelativeFilePath: uv.exe + PortableCommandAlias: uv +- RelativeFilePath: uvw.exe + PortableCommandAlias: uvw +Commands: +- uv +- uvw +- uvx +ReleaseDate: 2025-06-25 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.7.15/uv-i686-pc-windows-msvc.zip + InstallerSha256: 831AC11382C9AE014F6F5D27506C8977BFBA5AA6B104E278D3A87FF4D1E311D3 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.7.15/uv-x86_64-pc-windows-msvc.zip + InstallerSha256: B78C2D265E74B21B1C04B5B4FFD61C5C7B8110F9188E24949EE9F6FD5FBAF0A8 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.7.15/uv-aarch64-pc-windows-msvc.zip + InstallerSha256: D15770BE109FDDE45C60A522FCC97BF19E0D9D9DE8A0D2F0DADC772786110123 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.15/astral-sh.uv.locale.en-US.yaml b/manifests/a/astral-sh/uv/0.7.15/astral-sh.uv.locale.en-US.yaml new file mode 100644 index 0000000000000..5c99dac5a96ad --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.15/astral-sh.uv.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: astral-sh.uv +PackageVersion: 0.7.15 +PackageLocale: en-US +Publisher: Astral Software Inc. +PublisherUrl: https://astral.sh/ +PublisherSupportUrl: https://github.com/astral-sh/uv/issues +Author: Astral Software Inc. +PackageName: uv +PackageUrl: https://github.com/astral-sh/uv +License: Apache-2.0 or MIT +LicenseUrl: https://github.com/astral-sh/uv/blob/HEAD/README.md#license +Copyright: Copyright (c) 2024 Astral Software Inc. +ShortDescription: An extremely fast Python package and project manager, written in Rust. +Description: An extremely fast Python package and project manager, written in Rust. Designed as a single tool to replace pip, pip-tools, pipx, poetry, pyenv, twine, virtualenv workflows, and more. +Moniker: uv +Tags: +- python +ReleaseNotes: |- + Enhancements + - Consistently use Ordering::Relaxed for standalone atomic use cases (#14190) + - Warn on ambiguous relative paths for --index (#14152) + - Skip GitHub fast path when rate-limited (#13033) + - Preserve newlines in schema.json descriptions (#13693) + Bug fixes + - Add check for using minor version link when creating a venv on Windows (#14252) + - Strip query parameters when parsing source URL (#14224) + Documentation + - Add a link to PyPI FAQ to clarify what per-project token is (#14242) + Preview features + - Allow symlinks in the build backend (#14212) +ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.7.15 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.astral.sh/uv/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.15/astral-sh.uv.locale.zh-CN.yaml b/manifests/a/astral-sh/uv/0.7.15/astral-sh.uv.locale.zh-CN.yaml new file mode 100644 index 0000000000000..821d7a9e59958 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.15/astral-sh.uv.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.7.15 +PackageLocale: zh-CN +License: Apache-2.0 或 MIT +ShortDescription: 用 Rust 编写的极速 Python 软件包和项目管理器 +Description: 用 Rust 编写的极速 Python 软件包和项目管理器。可作为单一工具替代 pip、pip-tools、pipx、poles、pyenv、twine、virtualenv 工作流等。 +ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.7.15 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.astral.sh/uv/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.15/astral-sh.uv.yaml b/manifests/a/astral-sh/uv/0.7.15/astral-sh.uv.yaml new file mode 100644 index 0000000000000..2e531f0d81fc4 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.15/astral-sh.uv.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: astral-sh.uv +PackageVersion: 0.7.15 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.16/astral-sh.uv.installer.yaml b/manifests/a/astral-sh/uv/0.7.16/astral-sh.uv.installer.yaml new file mode 100644 index 0000000000000..6805d3dc7fc68 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.16/astral-sh.uv.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.7.16 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: uvx.exe + PortableCommandAlias: uvx +- RelativeFilePath: uv.exe + PortableCommandAlias: uv +- RelativeFilePath: uvw.exe + PortableCommandAlias: uvw +Commands: +- uv +- uvw +- uvx +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.7.16/uv-i686-pc-windows-msvc.zip + InstallerSha256: 6D4C4DE0CC8C88FB7D94138C05091DAC6746A7BC9D94B3743E804A485546154B + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.7.16/uv-x86_64-pc-windows-msvc.zip + InstallerSha256: 409D19C14A9B1CE83BF7331DBDA89984802EFB3A2FBF9FFDF149B22AB9CF2826 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.7.16/uv-aarch64-pc-windows-msvc.zip + InstallerSha256: A832DD02C44CD8D373B226CA34128982ACA5303DD3B477C90C5A1F83EFA874B0 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.16/astral-sh.uv.locale.en-US.yaml b/manifests/a/astral-sh/uv/0.7.16/astral-sh.uv.locale.en-US.yaml new file mode 100644 index 0000000000000..2c81f32858396 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.16/astral-sh.uv.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.7.16 +PackageLocale: en-US +Publisher: Astral Software Inc. +PublisherUrl: https://astral.sh/ +PublisherSupportUrl: https://github.com/astral-sh/uv/issues +Author: Astral Software Inc. +PackageName: uv +PackageUrl: https://github.com/astral-sh/uv +License: Apache-2.0 or MIT +LicenseUrl: https://github.com/astral-sh/uv/blob/HEAD/README.md#license +Copyright: Copyright (c) 2024 Astral Software Inc. +ShortDescription: An extremely fast Python package and project manager, written in Rust. +Description: An extremely fast Python package and project manager, written in Rust. Designed as a single tool to replace pip, pip-tools, pipx, poetry, pyenv, twine, virtualenv workflows, and more. +Moniker: uv +Tags: +- python +ReleaseNotes: |- + Python + - Add Python 3.14.0b3 + See the python-build-standalone release notes for more details. + Enhancements + - Include path or URL when failing to convert in lockfile (#14292) + - Warn when ~= is used as a Python version specifier without a patch version (#14008) + Preview features + - Ensure preview default Python installs are upgradeable (#14261) + Performance + - Share workspace cache between lock and sync operations (#14321) + Bug fixes + - Allow local indexes to reference remote files (#14294) + - Avoid rendering desugared prefix matches in error messages (#14195) + - Avoid using path URL for workspace Git dependencies in requirements.txt (#14288) + - Normalize index URLs to remove trailing slash (#14245) + - Respect URL-encoded credentials in redirect location (#14315) + - Lock the source tree when running setuptools, to protect concurrent builds (#14174) + Documentation + - Note that GCP Artifact Registry download URLs must have /simple component (#14251) +ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.7.16 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.astral.sh/uv/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.16/astral-sh.uv.locale.zh-CN.yaml b/manifests/a/astral-sh/uv/0.7.16/astral-sh.uv.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fff967989a444 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.16/astral-sh.uv.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.7.16 +PackageLocale: zh-CN +License: Apache-2.0 或 MIT +ShortDescription: 用 Rust 编写的极速 Python 软件包和项目管理器 +Description: 用 Rust 编写的极速 Python 软件包和项目管理器。可作为单一工具替代 pip、pip-tools、pipx、poles、pyenv、twine、virtualenv 工作流等。 +ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.7.16 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.astral.sh/uv/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.16/astral-sh.uv.yaml b/manifests/a/astral-sh/uv/0.7.16/astral-sh.uv.yaml new file mode 100644 index 0000000000000..ccaf287b41c8c --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.16/astral-sh.uv.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: astral-sh.uv +PackageVersion: 0.7.16 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.17/astral-sh.uv.installer.yaml b/manifests/a/astral-sh/uv/0.7.17/astral-sh.uv.installer.yaml new file mode 100644 index 0000000000000..6c92025adff5b --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.17/astral-sh.uv.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.7.17 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: uvx.exe + PortableCommandAlias: uvx +- RelativeFilePath: uv.exe + PortableCommandAlias: uv +- RelativeFilePath: uvw.exe + PortableCommandAlias: uvw +Commands: +- uv +- uvw +- uvx +ReleaseDate: 2025-06-29 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.7.17/uv-i686-pc-windows-msvc.zip + InstallerSha256: 45FFA8CD52E6A0764C2BDE7C97BE840B6C7606F976E6AE51BAB394A891653F52 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.7.17/uv-x86_64-pc-windows-msvc.zip + InstallerSha256: B49D1A02662AC4A490C886FFF8A340A4ADC32DA8D0634FC653A69459D2B5F863 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.7.17/uv-aarch64-pc-windows-msvc.zip + InstallerSha256: BE0E7263E4106CA73AC72B4F84AE1C203DB446D42D764B2B6459BF1D84AA1859 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.17/astral-sh.uv.locale.en-US.yaml b/manifests/a/astral-sh/uv/0.7.17/astral-sh.uv.locale.en-US.yaml new file mode 100644 index 0000000000000..50047dea6a9b2 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.17/astral-sh.uv.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: astral-sh.uv +PackageVersion: 0.7.17 +PackageLocale: en-US +Publisher: Astral Software Inc. +PublisherUrl: https://astral.sh/ +PublisherSupportUrl: https://github.com/astral-sh/uv/issues +Author: Astral Software Inc. +PackageName: uv +PackageUrl: https://github.com/astral-sh/uv +License: Apache-2.0 or MIT +LicenseUrl: https://github.com/astral-sh/uv/blob/HEAD/README.md#license +Copyright: Copyright (c) 2024 Astral Software Inc. +ShortDescription: An extremely fast Python package and project manager, written in Rust. +Description: An extremely fast Python package and project manager, written in Rust. Designed as a single tool to replace pip, pip-tools, pipx, poetry, pyenv, twine, virtualenv workflows, and more. +Moniker: uv +Tags: +- python +ReleaseNotes: |- + Bug fixes + - Apply build constraints when resolving --with dependencies (#14340) + - Drop trailing slashes when converting index URL from URL (#14346) + - Ignore UV_PYTHON_CACHE_DIR when empty (#14336) + - Fix error message ordering for pyvenv.cfg version conflict (#14329) +ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.7.17 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.astral.sh/uv/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.17/astral-sh.uv.locale.zh-CN.yaml b/manifests/a/astral-sh/uv/0.7.17/astral-sh.uv.locale.zh-CN.yaml new file mode 100644 index 0000000000000..48f7a4bd395a5 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.17/astral-sh.uv.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.7.17 +PackageLocale: zh-CN +License: Apache-2.0 或 MIT +ShortDescription: 用 Rust 编写的极速 Python 软件包和项目管理器 +Description: 用 Rust 编写的极速 Python 软件包和项目管理器。可作为单一工具替代 pip、pip-tools、pipx、poles、pyenv、twine、virtualenv 工作流等。 +ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.7.17 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.astral.sh/uv/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.17/astral-sh.uv.yaml b/manifests/a/astral-sh/uv/0.7.17/astral-sh.uv.yaml new file mode 100644 index 0000000000000..c87cdc9a238ee --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.17/astral-sh.uv.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: astral-sh.uv +PackageVersion: 0.7.17 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.18/astral-sh.uv.installer.yaml b/manifests/a/astral-sh/uv/0.7.18/astral-sh.uv.installer.yaml new file mode 100644 index 0000000000000..72295311e2172 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.18/astral-sh.uv.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.7.18 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: uvx.exe + PortableCommandAlias: uvx +- RelativeFilePath: uv.exe + PortableCommandAlias: uv +- RelativeFilePath: uvw.exe + PortableCommandAlias: uvw +Commands: +- uv +- uvw +- uvx +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.7.18/uv-i686-pc-windows-msvc.zip + InstallerSha256: 4293C65F1FCE52BD5396EC4419CE1C76412E276E0F292EC2464C319B7F8D59BE + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.7.18/uv-x86_64-pc-windows-msvc.zip + InstallerSha256: 5A5B3EF7C6AEE0BB1101EF047F35A0FC7CC82E34EEF3286E54C5BADD261CB599 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.7.18/uv-aarch64-pc-windows-msvc.zip + InstallerSha256: C9C78DE380E459F8424F648D107D4AB5286273AB19622A5D17796DC6689DE453 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.18/astral-sh.uv.locale.en-US.yaml b/manifests/a/astral-sh/uv/0.7.18/astral-sh.uv.locale.en-US.yaml new file mode 100644 index 0000000000000..7dd8d90b6aae9 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.18/astral-sh.uv.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: astral-sh.uv +PackageVersion: 0.7.18 +PackageLocale: en-US +Publisher: Astral Software Inc. +PublisherUrl: https://astral.sh/ +PublisherSupportUrl: https://github.com/astral-sh/uv/issues +Author: Astral Software Inc. +PackageName: uv +PackageUrl: https://github.com/astral-sh/uv +License: Apache-2.0 or MIT +LicenseUrl: https://github.com/astral-sh/uv/blob/HEAD/README.md#license +Copyright: Copyright (c) 2024 Astral Software Inc. +ShortDescription: An extremely fast Python package and project manager, written in Rust. +Description: An extremely fast Python package and project manager, written in Rust. Designed as a single tool to replace pip, pip-tools, pipx, poetry, pyenv, twine, virtualenv workflows, and more. +Moniker: uv +Tags: +- python +ReleaseNotes: |- + Python + - Added arm64 Windows Python 3.11, 3.12, 3.13, and 3.14 + These are not downloaded by default, since x86-64 Python has broader ecosystem support on Windows. + However, they can be requested with cpython--windows-aarch64. + Enhancements + - Keep track of retries in ManagedPythonDownload::fetch_with_retry (#14378) + - Reuse build (virtual) environments across resolution and installation (#14338) + - Improve trace message for cached Python interpreter query (#14328) + - Use parsed URLs for conflicting URL error message (#14380) + Preview features + - Ignore invalid build backend settings when not building (#14372) + Bug fixes + - Fix equals-star and tilde-equals with python_version and python_full_version (#14271) + - Include the canonical path in the interpreter query cache key (#14331) + - Only drop build directories on program exit (#14304) + - Error instead of panic on conflict between global and subcommand flags (#14368) + - Consistently normalize trailing slashes on URLs with no path segments (#14349) + Documentation + - Add instructions for publishing to JFrog's Artifactory (#14253) + - Edits to the build backend documentation (#14376) +ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.7.18 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.astral.sh/uv/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.18/astral-sh.uv.locale.zh-CN.yaml b/manifests/a/astral-sh/uv/0.7.18/astral-sh.uv.locale.zh-CN.yaml new file mode 100644 index 0000000000000..56625abe663bd --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.18/astral-sh.uv.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.7.18 +PackageLocale: zh-CN +License: Apache-2.0 或 MIT +ShortDescription: 用 Rust 编写的极速 Python 软件包和项目管理器 +Description: 用 Rust 编写的极速 Python 软件包和项目管理器。可作为单一工具替代 pip、pip-tools、pipx、poles、pyenv、twine、virtualenv 工作流等。 +ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.7.18 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.astral.sh/uv/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.18/astral-sh.uv.yaml b/manifests/a/astral-sh/uv/0.7.18/astral-sh.uv.yaml new file mode 100644 index 0000000000000..c0b865bfd1b5b --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.18/astral-sh.uv.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: astral-sh.uv +PackageVersion: 0.7.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.19/astral-sh.uv.installer.yaml b/manifests/a/astral-sh/uv/0.7.19/astral-sh.uv.installer.yaml new file mode 100644 index 0000000000000..e29a0d42b9930 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.19/astral-sh.uv.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.7.19 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: uvx.exe + PortableCommandAlias: uvx +- RelativeFilePath: uv.exe + PortableCommandAlias: uv +- RelativeFilePath: uvw.exe + PortableCommandAlias: uvw +Commands: +- uv +- uvw +- uvx +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.7.19/uv-i686-pc-windows-msvc.zip + InstallerSha256: 063829D117C2E42322B0E3A59EE91020DCB1D95522889B903FFAD392DF197A11 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.7.19/uv-x86_64-pc-windows-msvc.zip + InstallerSha256: 3098B38638B271D8B14B81247D6D69BB105807EC9FC5EB85F8CC8B6DE5867C86 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.7.19/uv-aarch64-pc-windows-msvc.zip + InstallerSha256: C843B95D9BAD3E364EAD2AF00B793D42156CB4F8AC0C2E33BFD2B3E50A0EFC86 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.19/astral-sh.uv.locale.en-US.yaml b/manifests/a/astral-sh/uv/0.7.19/astral-sh.uv.locale.en-US.yaml new file mode 100644 index 0000000000000..3ad14fd8272c3 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.19/astral-sh.uv.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.7.19 +PackageLocale: en-US +Publisher: Astral Software Inc. +PublisherUrl: https://astral.sh/ +PublisherSupportUrl: https://github.com/astral-sh/uv/issues +Author: Astral Software Inc. +PackageName: uv +PackageUrl: https://github.com/astral-sh/uv +License: Apache-2.0 or MIT +LicenseUrl: https://github.com/astral-sh/uv/blob/HEAD/README.md#license +Copyright: Copyright (c) 2024 Astral Software Inc. +ShortDescription: An extremely fast Python package and project manager, written in Rust. +Description: An extremely fast Python package and project manager, written in Rust. Designed as a single tool to replace pip, pip-tools, pipx, poetry, pyenv, twine, virtualenv workflows, and more. +Moniker: uv +Tags: +- python +ReleaseNotes: |- + The uv build backend is now stable, and considered ready for production use. + The uv build backend is a great choice for pure Python projects. It has reasonable defaults, with the goal of requiring zero configuration for most users, but provides flexible configuration to accommodate most Python project structures. It integrates tightly with uv, to improve messaging and user experience. It validates project metadata and structures, preventing common mistakes. And, finally, it's very fast — uv sync on a new project (from uv init) is 10-30x faster than with other build backends. + To use uv as a build backend in an existing project, add uv_build to the [build-system] section in your pyproject.toml: + [build-system] + requires = ["uv_build>=0.7.19,<0.8.0"] + build-backend = "uv_build" + In a future release, it will replace hatchling as the default in uv init. As before, uv will remain compatible with all standards-compliant build backends. + Python + - Add PGO distributions of Python for aarch64 Linux, which are more optimized for better performance + See the python-build-standalone release for more details. + Enhancements + - Ignore Python patch version for --universal pip compile (#14405) + - Update the tilde version specifier warning to include more context (#14335) + - Clarify behavior and hint on tool install when no executables are available (#14423) + Bug fixes + - Make project and interpreter lock acquisition non-fatal (#14404) + - Includes sys.prefix in cached environment keys to avoid --with collisions across projects (#14403) + Documentation + - Add a migration guide from pip to uv projects (#12382) +ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.7.19 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.astral.sh/uv/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.19/astral-sh.uv.locale.zh-CN.yaml b/manifests/a/astral-sh/uv/0.7.19/astral-sh.uv.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8f0a9e52f18e6 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.19/astral-sh.uv.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.7.19 +PackageLocale: zh-CN +License: Apache-2.0 或 MIT +ShortDescription: 用 Rust 编写的极速 Python 软件包和项目管理器 +Description: 用 Rust 编写的极速 Python 软件包和项目管理器。可作为单一工具替代 pip、pip-tools、pipx、poles、pyenv、twine、virtualenv 工作流等。 +ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.7.19 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.astral.sh/uv/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/uv/0.7.19/astral-sh.uv.yaml b/manifests/a/astral-sh/uv/0.7.19/astral-sh.uv.yaml new file mode 100644 index 0000000000000..a38140e4f0d07 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.7.19/astral-sh.uv.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: astral-sh.uv +PackageVersion: 0.7.19 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/ayangweb/BongoCat/0.6.1/ayangweb.BongoCat.installer.yaml b/manifests/a/ayangweb/BongoCat/0.6.1/ayangweb.BongoCat.installer.yaml new file mode 100644 index 0000000000000..74cf1b5570e29 --- /dev/null +++ b/manifests/a/ayangweb/BongoCat/0.6.1/ayangweb.BongoCat.installer.yaml @@ -0,0 +1,47 @@ +# 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: ayangweb.BongoCat +PackageVersion: 0.6.1 +InstallerType: nullsoft +ProductCode: BongoCat +ReleaseDate: 2025-06-19 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/ayangweb/BongoCat/releases/download/v0.6.1/BongoCat_0.6.1_x86-setup.exe + InstallerSha256: 8D908A93D5390917836C03191CEBE61E030A6B7745B26CED783877C39DDBAC53 + InstallerSwitches: + Custom: /CurrentUser +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/ayangweb/BongoCat/releases/download/v0.6.1/BongoCat_0.6.1_x86-setup.exe + InstallerSha256: 8D908A93D5390917836C03191CEBE61E030A6B7745B26CED783877C39DDBAC53 + InstallerSwitches: + Custom: /AllUsers +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/ayangweb/BongoCat/releases/download/v0.6.1/BongoCat_0.6.1_x64-setup.exe + InstallerSha256: 4C4DFDA75EA77EA6B9533324D9295151C858E70149597F46DF889DFF9DE21CCE + InstallerSwitches: + Custom: /CurrentUser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/ayangweb/BongoCat/releases/download/v0.6.1/BongoCat_0.6.1_x64-setup.exe + InstallerSha256: 4C4DFDA75EA77EA6B9533324D9295151C858E70149597F46DF889DFF9DE21CCE + InstallerSwitches: + Custom: /AllUsers +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/ayangweb/BongoCat/releases/download/v0.6.1/BongoCat_0.6.1_arm64-setup.exe + InstallerSha256: 62A580F322F8E57B690C9C4226361233E2754D791A406CB0166E9CF877607176 + InstallerSwitches: + Custom: /CurrentUser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/ayangweb/BongoCat/releases/download/v0.6.1/BongoCat_0.6.1_arm64-setup.exe + InstallerSha256: 62A580F322F8E57B690C9C4226361233E2754D791A406CB0166E9CF877607176 + InstallerSwitches: + Custom: /AllUsers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/ayangweb/BongoCat/0.6.1/ayangweb.BongoCat.locale.en-US.yaml b/manifests/a/ayangweb/BongoCat/0.6.1/ayangweb.BongoCat.locale.en-US.yaml new file mode 100644 index 0000000000000..d05860a685479 --- /dev/null +++ b/manifests/a/ayangweb/BongoCat/0.6.1/ayangweb.BongoCat.locale.en-US.yaml @@ -0,0 +1,35 @@ +# 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: ayangweb.BongoCat +PackageVersion: 0.6.1 +PackageLocale: en-US +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +# License: +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 🐱 Cross-platform desktop pet BongoCat, adding fun to your desktop! +Description: |- + 🐱 Cross-platform desktop pet BongoCat, adding fun to your desktop! + Features: + - Compatible with macOS, Windows, and Linux (x11). + - Synchronizes mouse movements or keyboard taps based on your keyboard or mouse actions. + - Supports importing custom models to freely create your unique cat avatar. + - Fully open-source with transparent code—absolutely no user data collection. + - Works offline—no internet required, ensuring user privacy. +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/ayangweb/BongoCat/0.6.1/ayangweb.BongoCat.locale.zh-CN.yaml b/manifests/a/ayangweb/BongoCat/0.6.1/ayangweb.BongoCat.locale.zh-CN.yaml new file mode 100644 index 0000000000000..efe7c78fa866e --- /dev/null +++ b/manifests/a/ayangweb/BongoCat/0.6.1/ayangweb.BongoCat.locale.zh-CN.yaml @@ -0,0 +1,40 @@ +# 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: ayangweb.BongoCat +PackageVersion: 0.6.1 +PackageLocale: zh-CN +Publisher: ayangweb +PublisherUrl: https://github.com/ayangweb +PublisherSupportUrl: https://github.com/ayangweb/BongoCat/issues +# PrivacyUrl: +# Author: +PackageName: BongoCat +PackageUrl: https://github.com/ayangweb/BongoCat +License: MIT +LicenseUrl: https://github.com/ayangweb/BongoCat/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 ayangweb +# CopyrightUrl: +ShortDescription: 🐱 跨平台桌宠 BongoCat,为桌面增添乐趣! +Description: |- + 🐱 跨平台桌宠 BongoCat,为桌面增添乐趣! + 功能介绍 + - 适配 macOS、Windows 和 Linux (x11)。 + - 根据据键盘或鼠标操作,同步移动鼠标或敲击键盘。 + - 支持导入自定义模型,自由打造专属猫咪形象。 + - 完全开源,代码公开透明,绝不收集任何用户数据。 + - 支持离线运行,无需联网,保护用户隐私。 +# Moniker: +# Tags: +ReleaseNotes: |- + 🚀 Features + - 导入模型区域高度与首个模型卡片保持一致 - by @zhengsixsix in #508 (7df7a) + 🐞 Bug Fixes + - 修复模型删除按钮缺失的问题 - by @ayangweb in #504 (7f3c1) + - 修复找不到内置模型路径的问题 - by @ayangweb in #511 (beeec) +ReleaseNotesUrl: https://github.com/ayangweb/BongoCat/releases/tag/v0.6.1 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/ayangweb/BongoCat/0.6.1/ayangweb.BongoCat.yaml b/manifests/a/ayangweb/BongoCat/0.6.1/ayangweb.BongoCat.yaml new file mode 100644 index 0000000000000..f86f809b3b87d --- /dev/null +++ b/manifests/a/ayangweb/BongoCat/0.6.1/ayangweb.BongoCat.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: ayangweb.BongoCat +PackageVersion: 0.6.1 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/aziontech/azion/3.5.0/aziontech.azion.installer.yaml b/manifests/a/aziontech/azion/3.5.0/aziontech.azion.installer.yaml new file mode 100644 index 0000000000000..c5491103919fe --- /dev/null +++ b/manifests/a/aziontech/azion/3.5.0/aziontech.azion.installer.yaml @@ -0,0 +1,22 @@ +# 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: aziontech.azion +PackageVersion: 3.5.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: azion.exe +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/aziontech/azion/releases/download/3.5.0/azion_3.5.0_windows_386.zip + InstallerSha256: C41A543B17644FFD415909B66D70FBD1908B7EA3BC92D6CDBA4127C6651938A9 +- Architecture: x64 + InstallerUrl: https://github.com/aziontech/azion/releases/download/3.5.0/azion_3.5.0_windows_amd64.zip + InstallerSha256: ED8A0A40FF6034FFEDB564DCC6FC4B2B7ED9CE5E68D8AB354C992E0BF8D40E75 +- Architecture: arm64 + InstallerUrl: https://github.com/aziontech/azion/releases/download/3.5.0/azion_3.5.0_windows_arm64.zip + InstallerSha256: CC3A4935EE748A9E783BEC1AE14A6F2B06E6AFA16F841E7A0C6682697E6B793D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/aziontech/azion/3.5.0/aziontech.azion.locale.en-US.yaml b/manifests/a/aziontech/azion/3.5.0/aziontech.azion.locale.en-US.yaml new file mode 100644 index 0000000000000..9f5e35e947047 --- /dev/null +++ b/manifests/a/aziontech/azion/3.5.0/aziontech.azion.locale.en-US.yaml @@ -0,0 +1,54 @@ +# 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: aziontech.azion +PackageVersion: 3.5.0 +PackageLocale: en-US +Publisher: Azion Technologies +PublisherUrl: https://www.azion.com/ +PublisherSupportUrl: https://github.com/aziontech/azion/issues +PrivacyUrl: https://www.azion.com/en/documentation/agreements/privacy-policy/ +PackageName: Azion CLI +PackageUrl: https://www.azion.com/en/documentation/products/azion-cli/overview/ +License: MIT +LicenseUrl: https://github.com/aziontech/azion/blob/HEAD/LICENSE +Copyright: Copyright (c) 2022 Azion Technologies +CopyrightUrl: https://github.com/aziontech/azion#MIT-1-ov-file +ShortDescription: Azion CLI is used for managing Azion services via command-line +Description: |- + Azion CLI is an open source command-line interface (CLI) that lets you interact with Azion Edge Platform using a terminal. You can use Azion CLI to: + * Initialize, build, and deploy edge applications. + * Create Jamstack applications. + * Manage the edge applications on the platform. + * Have a local development server running. + * Link an existing project to an Azion edge application. + + Azion disposes of a set of options to interact with the Azion products, such as: + * Azion Terraform Provider + * Azion API + * Azion SDK for Go + + The Azion CLI is built in Go and interacts with Azion products through the Azion Go SDK. +Moniker: azioncli +Tags: +- cli +- go +- golang +- linearb-test +- swe-prod +- team-devtools +ReleaseNotes: |- + Changelog + New Features + - 825004b feat: add option to create writable bucket on deploy + Improvements + - 06be697 chore: inject vars into worker + - 24e2b79 chore: remove store init from init + - 994e4b9 chore: remove store init from link + - 89fff9d chore: update current major + Tests + - 534850c tests: update bundler tests + - daf0892 tests: update tests +ReleaseNotesUrl: https://github.com/aziontech/azion/releases/tag/3.5.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/aziontech/azion/3.5.0/aziontech.azion.yaml b/manifests/a/aziontech/azion/3.5.0/aziontech.azion.yaml new file mode 100644 index 0000000000000..9e03555e1612e --- /dev/null +++ b/manifests/a/aziontech/azion/3.5.0/aziontech.azion.yaml @@ -0,0 +1,8 @@ +# 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: aziontech.azion +PackageVersion: 3.5.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/B3log/SiYuan/3.2.0/B3log.SiYuan.installer.yaml b/manifests/b/B3log/SiYuan/3.2.0/B3log.SiYuan.installer.yaml new file mode 100644 index 0000000000000..94e1a85d9a942 --- /dev/null +++ b/manifests/b/B3log/SiYuan/3.2.0/B3log.SiYuan.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: B3log.SiYuan +PackageVersion: 3.2.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- siyuan +ProductCode: c1e77cb7-68e1-5adb-ab29-ecf7379a9944 +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/siyuan-note/siyuan/releases/download/v3.2.0/siyuan-3.2.0-win.exe + InstallerSha256: 92CB6E2B7240C6C0B7041120A77211C86A0686D3BB573622153E117477CC816F + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/siyuan-note/siyuan/releases/download/v3.2.0/siyuan-3.2.0-win.exe + InstallerSha256: 92CB6E2B7240C6C0B7041120A77211C86A0686D3BB573622153E117477CC816F + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/siyuan-note/siyuan/releases/download/v3.2.0/siyuan-3.2.0-win-arm64.exe + InstallerSha256: 573B584A93609AC56A8A380940F8AD2D35745CD2B53DDC6C0067AEF2DA28737B + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/siyuan-note/siyuan/releases/download/v3.2.0/siyuan-3.2.0-win-arm64.exe + InstallerSha256: 573B584A93609AC56A8A380940F8AD2D35745CD2B53DDC6C0067AEF2DA28737B + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/B3log/SiYuan/3.2.0/B3log.SiYuan.locale.en-US.yaml b/manifests/b/B3log/SiYuan/3.2.0/B3log.SiYuan.locale.en-US.yaml new file mode 100644 index 0000000000000..6011bb9350f94 --- /dev/null +++ b/manifests/b/B3log/SiYuan/3.2.0/B3log.SiYuan.locale.en-US.yaml @@ -0,0 +1,93 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: B3log.SiYuan +PackageVersion: 3.2.0 +PackageLocale: en-US +Publisher: Yunnan Liandi Technology Co., Ltd. +PublisherUrl: https://b3log.org/ +PublisherSupportUrl: https://b3log.org/siyuan/en/community.html +PrivacyUrl: https://b3log.org/siyuan/en/privacy.html +Author: Yunnan Liandi Technology Co., Ltd. +PackageName: SiYuan +PackageUrl: https://b3log.org/siyuan/en +License: AGPL-3.0 +LicenseUrl: https://github.com/siyuan-note/siyuan/blob/HEAD/LICENSE +Copyright: Copyright (c) 2020-present, ld246.com +ShortDescription: The next generation PKM system, your digital garden +Description: SiYuan is a local-first personal knowledge management system, support fine-grained block-level reference and Markdown WYSIWYG. +Tags: +- backlink +- bi-directional-link +- block +- docs +- document +- editor +- graph +- knowledge +- knowledge-base +- markdown +- mind-map +- mindmap +- notes +- outliner +- pkm +- reference +ReleaseNotes: |- + Overview + Database gallery view now available! + Changelogs + Below are the detailed changes in this version. + Feature + - Database gallery view + Enhancement + - Improve multi-select block + - Swiping left or right in a formula on mobile devices no longer opens the sidebar + - Improve block icons display + - Cannot drag the dots of the list item while holding down Shift + - The block ref pop-up window on mobile devices will be blocked by the keyboard + - Add a 'Remember me' checkbox when logging in to save a session + - Paste /^\s*>|\*|-|\+|\d*.|\[ \]|[x] in a non-empty block without conversion + - Close the keyboard after clicking the toolbar + on Android + - Hide the "Closed notebooks" element if no notebooks exist + - Improve the proportion of lists, code blocks, and headings after customizing the font size of blocks + - Improve the alignment in table exports + - Unable to start selection from the .protyle-action element + - Improve export of empty documents with subdocuments + - Remove title attribute when converting the doc to a heading + - Improve hyperlink/image title escaping + - Ignore the last empty paragraph block when exporting merged sub-documents + - Add Portuguese Brazilian language support + - Add "Copy database ID" to the database block menu + - Support opening document after clipping a web page + - Database supports setting display field icons + - Improve HTML formula clipping + - Improve database loading performance + - Improve HTML table clipping + - Improve pasting to WeChat media platform + - Dynamic icons no longer display network image corner marks + - Android check WebView version 95+ + - Export preview cannot copy images + - When access authentication fails, refresh the page to jump to the authentication page + - Improve search settings + - Database supports setting fields wrap + - Database different layouts of the same view use the same filtering, sorting, paging and custom sorting rules + - Database index content/markdown values no longer contain zero-width spaces + Abolishment + - Completely remove Google Analytics + Bugfix + - Embed blocks generate extra HTML + - Loses text after inline codes when exporting Word/HTML + - The toolbar content cannot be slid on Android + - XSS through emoji name + Refactor + - Upgrade abcjs 6.2.2 to 6.5.0 + - Upgrade to Electron v37.2.0 + - Upgrade visjs 9.1.2 to 9.1.13 + Development + - Add kernel API /api/block/getBlockDOMs + - Add fillCSSVar parameter for kernel API /api/export/exportMdContent +ReleaseNotesUrl: https://github.com/siyuan-note/siyuan/releases/tag/v3.2.0 +PurchaseUrl: https://b3log.org/siyuan/en/pricing.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/B3log/SiYuan/3.2.0/B3log.SiYuan.locale.zh-CN.yaml b/manifests/b/B3log/SiYuan/3.2.0/B3log.SiYuan.locale.zh-CN.yaml new file mode 100644 index 0000000000000..317466645d6c4 --- /dev/null +++ b/manifests/b/B3log/SiYuan/3.2.0/B3log.SiYuan.locale.zh-CN.yaml @@ -0,0 +1,93 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: B3log.SiYuan +PackageVersion: 3.2.0 +PackageLocale: zh-CN +Publisher: Yunnan Liandi Technology Co., Ltd. +PublisherUrl: https://b3log.org/ +PublisherSupportUrl: https://b3log.org/siyuan/community.html +PrivacyUrl: https://b3log.org/siyuan/privacy.html +Author: 云南链滴科技有限公司 +PackageName: SiYuan +PackageUrl: https://b3log.org/siyuan +License: AGPL-3.0 +LicenseUrl: https://b3log.org/siyuan/eula.html +Copyright: Copyright (c) 2020-present, ld246.com +ShortDescription: 下一代的个人知识管理系统,你的数字花园 +Description: 思源笔记是一款本地优先的个人知识管理系统,支持细粒度块级引用和 Markdown 所见即所得。 +Tags: +- markdown +- 个人知识管理 +- 内容块 +- 双向链接 +- 反向链接 +- 图谱 +- 大纲 +- 引用 +- 思源笔记 +- 思维导图 +- 文档 +- 知识 +- 知识库 +- 笔记 +- 编辑器 +- 脑图 +ReleaseNotes: |- + 概述 + 数据库画廊视图现已发布! + 变更记录 + 以下是此版本中的详细变更。 + 引入特性 + - 数据库画廊视图 + 改进功能 + - 改进多选块 + - 在移动设备上公式左右滑动不再打开侧边栏 + - 改进块图标显示 + - 按住 Shift 时无法拖动列表项的点 + - 移动设备上的块引用弹窗会被键盘遮挡 + - 登录时添加“记住我”复选框以保存会话 + - 在非空块中粘贴 /^\s*>|\*|-|\+|\d*.|\[ \]|[x] 不进行转换 + - 在 Android 上点击工具栏 + 后关闭键盘 + - 如果不存在笔记本,隐藏“已关闭笔记本”元素 + - 改进自定义块字体大小后列表、代码块和标题的比例 + - 改进表格导出的对齐方式 + - 无法从 .protyle-action 元素开始选择 + - 改进带子文档的空文档导出 + - 将文档转换为标题时移除 title 属性 + - 改进超链接/图片标题的转义 + - 导出合并子文档时忽略最后一个空段落块 + - 添加葡萄牙语巴西语支持 + - 在数据库块菜单中添加“复制数据库 ID” + - 支持剪藏网页后打开文档 + - 数据库支持设置显示字段图标 + - 改进 HTML 公式剪藏 + - 改进数据库加载性能 + - 改进 HTML 表格剪藏 + - 改进粘贴到微信公众号 + - 动态图标不再显示网络图片角标 + - Android 检查 WebView 版本 95+ + - 导出预览无法复制图片 + - 访问认证失败时刷新页面跳转到认证页面 + - 改进搜索设置 + - 数据库支持设置字段换行 + - 数据库同一视图的不同布局使用相同的过滤、排序、分页和自定义排序规则 + - 数据库索引内容/Markdown 值不再包含零宽空格 + 移除功能 + - 完全移除 Google Analytics + 修复缺陷 + - 嵌入块生成多余的 HTML + - 导出 Word/HTML 时内联代码后的文本丢失 + - Android 上工具栏内容无法滑动 + - 自定义 Emoji 文件导致的 XSS 漏洞 + 开发重构 + - 升级 abcjs 6.2.2 至 6.5.0 + - 升级至 Electron v37.2.0 + - 升级 visjs 9.1.2 至 9.1.13 + 开发者 + - 添加内核 API /api/block/getBlockDOMs + - 为内核 API /api/export/exportMdContent 添加 fillCSSVar 参数 +ReleaseNotesUrl: https://github.com/siyuan-note/siyuan/releases/tag/v3.2.0 +PurchaseUrl: https://b3log.org/siyuan/pricing.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/B3log/SiYuan/3.2.0/B3log.SiYuan.yaml b/manifests/b/B3log/SiYuan/3.2.0/B3log.SiYuan.yaml new file mode 100644 index 0000000000000..f014b0ba97e93 --- /dev/null +++ b/manifests/b/B3log/SiYuan/3.2.0/B3log.SiYuan.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: B3log.SiYuan +PackageVersion: 3.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/BaiduNetdisk/7.58.0/Baidu.BaiduNetdisk.installer.yaml b/manifests/b/Baidu/BaiduNetdisk/7.58.0/Baidu.BaiduNetdisk.installer.yaml new file mode 100644 index 0000000000000..2054730956b57 --- /dev/null +++ b/manifests/b/Baidu/BaiduNetdisk/7.58.0/Baidu.BaiduNetdisk.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: Baidu.BaiduNetdisk +PackageVersion: 7.58.0 +InstallerType: nullsoft +Scope: machine +InstallerSuccessCodes: +- 2 +UpgradeBehavior: install +Protocols: +- baiduyunguanjia +ProductCode: 百度云管家 +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x86 + InstallerUrl: https://issuepcdn.baidupcs.com/issue/netdisk/yunguanjia/BaiduNetdisk_7.58.0.110.exe + InstallerSha256: 1196FD30FF3218D406C68E56FF07F008016EE25CA3597DC42D9645B7553AE8C9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/BaiduNetdisk/7.58.0/Baidu.BaiduNetdisk.locale.en-US.yaml b/manifests/b/Baidu/BaiduNetdisk/7.58.0/Baidu.BaiduNetdisk.locale.en-US.yaml new file mode 100644 index 0000000000000..f58c2452595e1 --- /dev/null +++ b/manifests/b/Baidu/BaiduNetdisk/7.58.0/Baidu.BaiduNetdisk.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Baidu.BaiduNetdisk +PackageVersion: 7.58.0 +PackageLocale: en-US +Author: Beijing Duyou Technology Co., Ltd. +License: Proprietary +ShortDescription: Personal cloud service product by Baidu +Description: Baidu Netdisk is a convenient and easy-to-use cloud storage product that is serving more than 700 million users, which has mass storage and several self-hosted data centers, supports backup, sharing, viewing and processing multiple types of files, and protects users' data security under two top international security certifications ISO27001 and ISO27018. It would be your best choice if you want to back up your data, free up your phone's space, share files with others or operate files online. +Tags: +- backup +- cloud +- cloud-drive +- download +- drive +- file +- netdisk +- share +- sync +- upload +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/BaiduNetdisk/7.58.0/Baidu.BaiduNetdisk.locale.zh-CN.yaml b/manifests/b/Baidu/BaiduNetdisk/7.58.0/Baidu.BaiduNetdisk.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c771c8962a19f --- /dev/null +++ b/manifests/b/Baidu/BaiduNetdisk/7.58.0/Baidu.BaiduNetdisk.locale.zh-CN.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Baidu.BaiduNetdisk +PackageVersion: 7.58.0 +PackageLocale: zh-CN +Publisher: 北京度友科技有限公司 +PublisherUrl: https://www.baidu.com/ +PublisherSupportUrl: https://pan.baidu.com/disk/help +PrivacyUrl: https://privacy.baidu.com/policy +Author: 北京度友科技有限公司 +PackageName: 百度网盘 +PackageUrl: https://pan.baidu.com/ +License: 专有软件 +LicenseUrl: https://pan.baidu.com/disk/main#/protocol/duty_mobi +Copyright: Copyright © 2024 Baidu, Inc. All rights reserved. +CopyrightUrl: https://www.baidu.com/duty/copyright.html +ShortDescription: 百度公司出品的个人云服务产品 +Description: 百度网盘是一款省心、好用的超级云存储产品,已为超过 7 亿用户提供云服务,空间超大,支持多类型文件的备份、分享、查看和处理,自建多个数据存储中心,更有两项国际顶尖安全认证 ISO27001&ISO27018 为用户数据安全提供护航。如果你想备份文件数据,释放手机空间,给别人分享文件或是对文件进行在线操作,选百度网盘就对了! +Tags: +- 上传 +- 下载 +- 云 +- 云盘 +- 共享 +- 分享 +- 同步 +- 备份 +- 文件 +- 百度云 +- 百度云管家 +- 网盘 +ReleaseNotes: |- + 1. 链接保存路径前置展示并记录最近选择路径,助您提升保存效率 + 2. 搜索结果页支持文件操作,高效管理一步到位 + 3. 优化知识问答对话效果及核心流程产品体验 + 4. 新增「智能看图」功能:提升本地图片浏览体验 +ReleaseNotesUrl: https://pan.baidu.com/disk/version +PurchaseUrl: https://pan.baidu.com/buy/center +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/BaiduNetdisk/7.58.0/Baidu.BaiduNetdisk.yaml b/manifests/b/Baidu/BaiduNetdisk/7.58.0/Baidu.BaiduNetdisk.yaml new file mode 100644 index 0000000000000..302e6b686bc18 --- /dev/null +++ b/manifests/b/Baidu/BaiduNetdisk/7.58.0/Baidu.BaiduNetdisk.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: Baidu.BaiduNetdisk +PackageVersion: 7.58.0 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.2/Baidu.Comate.installer.yaml b/manifests/b/Baidu/Comate/0.1.2/Baidu.Comate.installer.yaml new file mode 100644 index 0000000000000..4c9ed3dd8f765 --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.2/Baidu.Comate.installer.yaml @@ -0,0 +1,154 @@ +# 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: Baidu.Comate +PackageVersion: 0.1.2 +InstallerType: inno +InstallerSwitches: + Custom: /mergetasks=!runcode +Scope: user +UpgradeBehavior: install +Protocols: +- comate +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- psgi +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- t +- tex +- toml +- ts +- tsx +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ProductCode: '{E1BCCBB0-0C31-40C1-AB8D-2AE2E6C3C2F2}}_is1' +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://comate-ide.cdn.bcebos.com/download/stable/f633d6aec2cd7ec12d36987a15b8e22e72c73f57/Comate-win32-x64-user-setup.exe + InstallerSha256: 12E6BE19D24EB13D71121E3E95CEE66A3E16269D1A453909D235D600D96E1386 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.2/Baidu.Comate.locale.en-US.yaml b/manifests/b/Baidu/Comate/0.1.2/Baidu.Comate.locale.en-US.yaml new file mode 100644 index 0000000000000..69cba8b87e469 --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.2/Baidu.Comate.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.locale.1.10.0.schema.json + +PackageIdentifier: Baidu.Comate +PackageVersion: 0.1.2 +PackageLocale: en-US +# Publisher: +PublisherUrl: https://comate.baidu.com/en +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +PackageUrl: https://comate.baidu.com/en/download +License: Proprietary +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: Intelligent coding capabilities throughout the entire development process along with enhanced multimodal abilities. Install now to start a seamless and natural intelligent development experience. +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://comate.baidu.com/en/pricing +# InstallationNotes: +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/9lnvs245z +- DocumentLabel: Tutorials + DocumentUrl: https://comate.baidu.com/zh/curriculums/1 +- DocumentLabel: FAQ + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/Dlnvqzquu +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.2/Baidu.Comate.locale.zh-CN.yaml b/manifests/b/Baidu/Comate/0.1.2/Baidu.Comate.locale.zh-CN.yaml new file mode 100644 index 0000000000000..913995c505525 --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.2/Baidu.Comate.locale.zh-CN.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.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Baidu.Comate +PackageVersion: 0.1.2 +PackageLocale: zh-CN +Publisher: Microsoft Corporation +PublisherUrl: https://comate.baidu.com/ +PublisherSupportUrl: https://developer.baidu.com/singleTagPage.html?tagId=326 +PrivacyUrl: https://cloud.baidu.com/doc/COMATE/s/2lxiygl2z +Author: 北京百度网讯科技有限公司 +PackageName: Comate +PackageUrl: https://comate.baidu.com/download +License: 专有软件 +LicenseUrl: https://cloud.baidu.com/doc/COMATE/s/glxiygwdx +Copyright: © 2025 Baidu +CopyrightUrl: https://cloud.baidu.com/doc/COMATE/s/glxiygwdx +ShortDescription: 智能编码能力深度融入开发全流程,多模态能力全面增强,一键安装、畅享自然流畅的智能开发体验。 +# Description: +# Moniker: +Tags: +- 代码 +- 开发 +- 编程 +- 编辑 +- 编辑器 +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://comate.baidu.com/pricing +# InstallationNotes: +Documentations: +- DocumentLabel: 使用手册 + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/9lnvs245z +- DocumentLabel: 教学课程 + DocumentUrl: https://comate.baidu.com/zh/curriculums/1 +- DocumentLabel: 常见问题 + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/Dlnvqzquu +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.2/Baidu.Comate.yaml b/manifests/b/Baidu/Comate/0.1.2/Baidu.Comate.yaml new file mode 100644 index 0000000000000..ff90baf708c5f --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.2/Baidu.Comate.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: Baidu.Comate +PackageVersion: 0.1.2 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.3/Baidu.Comate.installer.yaml b/manifests/b/Baidu/Comate/0.1.3/Baidu.Comate.installer.yaml new file mode 100644 index 0000000000000..f3a8540e562c8 --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.3/Baidu.Comate.installer.yaml @@ -0,0 +1,154 @@ +# Automatically updated by the winget bot at 2025/Jul/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Baidu.Comate +PackageVersion: 0.1.3 +InstallerType: inno +Scope: user +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- comate +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- psgi +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- t +- tex +- toml +- ts +- tsx +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ProductCode: '{E1BCCBB0-0C31-40C1-AB8D-2AE2E6C3C2F2}}_is1' +ReleaseDate: 2025-06-28 +Installers: +- Architecture: x64 + InstallerUrl: https://comate-ide.cdn.bcebos.com/download/stable/53191b95939074033e0898f511d825b01f8e0941/Comate-win32-x64-user-setup.exe + InstallerSha256: CF46C2EDBA912F5216C77ECA3CF2C0825BC5EC7ECAEFC375C8C5F4B835472407 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.3/Baidu.Comate.locale.en-US.yaml b/manifests/b/Baidu/Comate/0.1.3/Baidu.Comate.locale.en-US.yaml new file mode 100644 index 0000000000000..064d8295402a6 --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.3/Baidu.Comate.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Automatically updated by the winget bot at 2025/Jul/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Baidu.Comate +PackageVersion: 0.1.3 +PackageLocale: en-US +PublisherUrl: https://comate.baidu.com/en +PackageUrl: https://comate.baidu.com/en/download +License: Proprietary +ShortDescription: Intelligent coding capabilities throughout the entire development process along with enhanced multimodal abilities. Install now to start a seamless and natural intelligent development experience. +PurchaseUrl: https://comate.baidu.com/en/pricing +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/9lnvs245z +- DocumentLabel: Tutorials + DocumentUrl: https://comate.baidu.com/zh/curriculums/1 +- DocumentLabel: FAQ + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/Dlnvqzquu +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.3/Baidu.Comate.locale.zh-CN.yaml b/manifests/b/Baidu/Comate/0.1.3/Baidu.Comate.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8310cac52540c --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.3/Baidu.Comate.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Automatically updated by the winget bot at 2025/Jul/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Baidu.Comate +PackageVersion: 0.1.3 +PackageLocale: zh-CN +Publisher: Microsoft Corporation +PublisherUrl: https://comate.baidu.com/ +PublisherSupportUrl: https://developer.baidu.com/singleTagPage.html?tagId=326 +PrivacyUrl: https://cloud.baidu.com/doc/COMATE/s/2lxiygl2z +Author: 北京百度网讯科技有限公司 +PackageName: Comate +PackageUrl: https://comate.baidu.com/download +License: 专有软件 +LicenseUrl: https://cloud.baidu.com/doc/COMATE/s/glxiygwdx +Copyright: © 2025 Baidu +CopyrightUrl: https://cloud.baidu.com/doc/COMATE/s/glxiygwdx +ShortDescription: 智能编码能力深度融入开发全流程,多模态能力全面增强,一键安装、畅享自然流畅的智能开发体验。 +Tags: +- 代码 +- 开发 +- 编程 +- 编辑 +- 编辑器 +PurchaseUrl: https://comate.baidu.com/pricing +Documentations: +- DocumentLabel: 使用手册 + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/9lnvs245z +- DocumentLabel: 教学课程 + DocumentUrl: https://comate.baidu.com/zh/curriculums/1 +- DocumentLabel: 常见问题 + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/Dlnvqzquu +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.3/Baidu.Comate.yaml b/manifests/b/Baidu/Comate/0.1.3/Baidu.Comate.yaml new file mode 100644 index 0000000000000..065f98802606f --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.3/Baidu.Comate.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Baidu.Comate +PackageVersion: 0.1.3 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.4/Baidu.Comate.installer.yaml b/manifests/b/Baidu/Comate/0.1.4/Baidu.Comate.installer.yaml new file mode 100644 index 0000000000000..975d614687320 --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.4/Baidu.Comate.installer.yaml @@ -0,0 +1,154 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Baidu.Comate +PackageVersion: 0.1.4 +InstallerType: inno +Scope: user +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- comate +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- psgi +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- t +- tex +- toml +- ts +- tsx +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ProductCode: '{E1BCCBB0-0C31-40C1-AB8D-2AE2E6C3C2F2}}_is1' +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://comate-ide.cdn.bcebos.com/download/stable/214b8662ba5534139c7fac4dd81c4034d84b6cc0/Comate-win32-x64-user-setup.exe + InstallerSha256: 11C45709178F43DBD7BDB76B392D11127BF2D5555C8552BCFC057D9CBDE5C760 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.4/Baidu.Comate.locale.en-US.yaml b/manifests/b/Baidu/Comate/0.1.4/Baidu.Comate.locale.en-US.yaml new file mode 100644 index 0000000000000..cb283b91d93b1 --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.4/Baidu.Comate.locale.en-US.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: Baidu.Comate +PackageVersion: 0.1.4 +PackageLocale: en-US +PublisherUrl: https://comate.baidu.com/en +PackageUrl: https://comate.baidu.com/en/download +License: Proprietary +ShortDescription: Intelligent coding capabilities throughout the entire development process along with enhanced multimodal abilities. Install now to start a seamless and natural intelligent development experience. +PurchaseUrl: https://comate.baidu.com/en/pricing +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/9lnvs245z +- DocumentLabel: Tutorials + DocumentUrl: https://comate.baidu.com/zh/curriculums/1 +- DocumentLabel: FAQ + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/Dlnvqzquu +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.4/Baidu.Comate.locale.zh-CN.yaml b/manifests/b/Baidu/Comate/0.1.4/Baidu.Comate.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d5c55174f42c6 --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.4/Baidu.Comate.locale.zh-CN.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: Baidu.Comate +PackageVersion: 0.1.4 +PackageLocale: zh-CN +Publisher: Microsoft Corporation +PublisherUrl: https://comate.baidu.com/ +PublisherSupportUrl: https://developer.baidu.com/singleTagPage.html?tagId=326 +PrivacyUrl: https://cloud.baidu.com/doc/COMATE/s/2lxiygl2z +Author: 北京百度网讯科技有限公司 +PackageName: Comate +PackageUrl: https://comate.baidu.com/download +License: 专有软件 +LicenseUrl: https://cloud.baidu.com/doc/COMATE/s/glxiygwdx +Copyright: © 2025 Baidu +CopyrightUrl: https://cloud.baidu.com/doc/COMATE/s/glxiygwdx +ShortDescription: 智能编码能力深度融入开发全流程,多模态能力全面增强,一键安装、畅享自然流畅的智能开发体验。 +Tags: +- 代码 +- 开发 +- 编程 +- 编辑 +- 编辑器 +PurchaseUrl: https://comate.baidu.com/pricing +Documentations: +- DocumentLabel: 使用手册 + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/9lnvs245z +- DocumentLabel: 教学课程 + DocumentUrl: https://comate.baidu.com/zh/curriculums/1 +- DocumentLabel: 常见问题 + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/Dlnvqzquu +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.4/Baidu.Comate.yaml b/manifests/b/Baidu/Comate/0.1.4/Baidu.Comate.yaml new file mode 100644 index 0000000000000..34b80f98d85d8 --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.4/Baidu.Comate.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: Baidu.Comate +PackageVersion: 0.1.4 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.5/Baidu.Comate.installer.yaml b/manifests/b/Baidu/Comate/0.1.5/Baidu.Comate.installer.yaml new file mode 100644 index 0000000000000..2c6d17b9a217d --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.5/Baidu.Comate.installer.yaml @@ -0,0 +1,154 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Baidu.Comate +PackageVersion: 0.1.5 +InstallerType: inno +Scope: user +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- comate +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- psgi +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- t +- tex +- toml +- ts +- tsx +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ProductCode: '{E1BCCBB0-0C31-40C1-AB8D-2AE2E6C3C2F2}}_is1' +ReleaseDate: 2025-07-09 +Installers: +- Architecture: x64 + InstallerUrl: https://comate-ide.cdn.bcebos.com/download/stable/061175c7dcb96b30737e1b29af40646d947fb137/Comate-win32-x64-user-setup.exe + InstallerSha256: 857062BED68C24B05F2EDE17A058F439B80DD500BFF0A1DE13D1952427F1BD87 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.5/Baidu.Comate.locale.en-US.yaml b/manifests/b/Baidu/Comate/0.1.5/Baidu.Comate.locale.en-US.yaml new file mode 100644 index 0000000000000..c45d2aa9bebe7 --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.5/Baidu.Comate.locale.en-US.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: Baidu.Comate +PackageVersion: 0.1.5 +PackageLocale: en-US +PublisherUrl: https://comate.baidu.com/en +PackageUrl: https://comate.baidu.com/en/download +License: Proprietary +ShortDescription: Intelligent coding capabilities throughout the entire development process along with enhanced multimodal abilities. Install now to start a seamless and natural intelligent development experience. +PurchaseUrl: https://comate.baidu.com/en/pricing +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/9lnvs245z +- DocumentLabel: Tutorials + DocumentUrl: https://comate.baidu.com/zh/curriculums/1 +- DocumentLabel: FAQ + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/Dlnvqzquu +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.5/Baidu.Comate.locale.zh-CN.yaml b/manifests/b/Baidu/Comate/0.1.5/Baidu.Comate.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2ecdc272c2a62 --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.5/Baidu.Comate.locale.zh-CN.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: Baidu.Comate +PackageVersion: 0.1.5 +PackageLocale: zh-CN +Publisher: Microsoft Corporation +PublisherUrl: https://comate.baidu.com/ +PublisherSupportUrl: https://developer.baidu.com/singleTagPage.html?tagId=326 +PrivacyUrl: https://cloud.baidu.com/doc/COMATE/s/2lxiygl2z +Author: 北京百度网讯科技有限公司 +PackageName: Comate +PackageUrl: https://comate.baidu.com/download +License: 专有软件 +LicenseUrl: https://cloud.baidu.com/doc/COMATE/s/glxiygwdx +Copyright: © 2025 Baidu +CopyrightUrl: https://cloud.baidu.com/doc/COMATE/s/glxiygwdx +ShortDescription: 智能编码能力深度融入开发全流程,多模态能力全面增强,一键安装、畅享自然流畅的智能开发体验。 +Tags: +- 代码 +- 开发 +- 编程 +- 编辑 +- 编辑器 +PurchaseUrl: https://comate.baidu.com/pricing +Documentations: +- DocumentLabel: 使用手册 + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/9lnvs245z +- DocumentLabel: 教学课程 + DocumentUrl: https://comate.baidu.com/zh/curriculums/1 +- DocumentLabel: 常见问题 + DocumentUrl: https://cloud.baidu.com/doc/COMATE/s/Dlnvqzquu +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/Comate/0.1.5/Baidu.Comate.yaml b/manifests/b/Baidu/Comate/0.1.5/Baidu.Comate.yaml new file mode 100644 index 0000000000000..1b224585c352e --- /dev/null +++ b/manifests/b/Baidu/Comate/0.1.5/Baidu.Comate.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: Baidu.Comate +PackageVersion: 0.1.5 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/TeraBox/1.41.1/Baidu.TeraBox.installer.yaml b/manifests/b/Baidu/TeraBox/1.41.1/Baidu.TeraBox.installer.yaml new file mode 100644 index 0000000000000..5220cd72bb42c --- /dev/null +++ b/manifests/b/Baidu/TeraBox/1.41.1/Baidu.TeraBox.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: Baidu.TeraBox +PackageVersion: 1.41.1 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Protocols: +- terabox +ProductCode: TeraBox +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x86 + InstallerUrl: https://data.nephobox.com/issue/terabox/PCTeraBox/TeraBox_1.41.1.135.exe + InstallerSha256: 190B389826A555579C9B0D4C47812F988E9D80814E255D664BE37512628E2974 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/TeraBox/1.41.1/Baidu.TeraBox.locale.en-US.yaml b/manifests/b/Baidu/TeraBox/1.41.1/Baidu.TeraBox.locale.en-US.yaml new file mode 100644 index 0000000000000..e84ae279ede71 --- /dev/null +++ b/manifests/b/Baidu/TeraBox/1.41.1/Baidu.TeraBox.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: Baidu.TeraBox +PackageVersion: 1.41.1 +PackageLocale: en-US +Publisher: Flextech Inc. +PublisherUrl: https://www.terabox.com/ +PublisherSupportUrl: https://www.terabox.com/help-center +PrivacyUrl: https://www.terabox.com/fe-opera-static/box-static/disk-system/html/wap_privacy.html +Author: Flextech Inc. +PackageName: TeraBox +PackageUrl: https://www.terabox.com/terabox-cloud-storage-for-pc-free-download +License: Proprietary +LicenseUrl: https://www.terabox.com/box-static/disk-system/html/wap_duty.html +Copyright: Copyright © 2024 Flextech Inc. All rights reserved. +ShortDescription: Free Cloud Storage Up To 1TB +Description: TeraBox is a FREE cloud storage tool for documents backup, files sharing and video storage. Get 1TB (1024 GB) of secure cloud storage, transfer files across your all devices, share it with family and friends. +Tags: +- backup +- cloud +- cloud-drive +- download +- drive +- file +- netdisk +- share +- sync +- upload +ReleaseNotes: |- + 1. Bug fixes + 2. Optimized for a better experience +PurchaseUrl: https://www.terabox.com/cloud-storage-pricing-plans +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/TeraBox/1.41.1/Baidu.TeraBox.locale.zh-CN.yaml b/manifests/b/Baidu/TeraBox/1.41.1/Baidu.TeraBox.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5e096f3606a8f --- /dev/null +++ b/manifests/b/Baidu/TeraBox/1.41.1/Baidu.TeraBox.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Baidu.TeraBox +PackageVersion: 1.41.1 +PackageLocale: zh-CN +Publisher: Flextech Inc. +PublisherUrl: https://www.terabox.com/ +PublisherSupportUrl: https://www.terabox.com/help-center +PrivacyUrl: https://www.terabox.com/fe-opera-static/box-static/disk-system/html/wap_privacy.html +Author: Flextech Inc. +PackageName: TeraBox +PackageUrl: https://www.terabox.com/terabox-cloud-storage-for-pc-free-download +License: 专有软件 +LicenseUrl: https://www.terabox.com/box-static/disk-system/html/wap_duty.html +Copyright: Copyright © 2024 Flextech Inc. All rights reserved. +ShortDescription: 高达 1TB 的免费云存储 +Description: TeraBox 是一个免费的云存储工具,用于文件备份、文件共享和视频存储。获得 1TB(1024GB)安全云存储空间,在您的所有设备间传输文件,并与家人和朋友共享。 +Tags: +- 上传 +- 下载 +- 云 +- 云盘 +- 共享 +- 分享 +- 同步 +- 备份 +- 文件 +- 网盘 +PurchaseUrl: https://www.terabox.com/cloud-storage-pricing-plans +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/TeraBox/1.41.1/Baidu.TeraBox.yaml b/manifests/b/Baidu/TeraBox/1.41.1/Baidu.TeraBox.yaml new file mode 100644 index 0000000000000..769dbce904446 --- /dev/null +++ b/manifests/b/Baidu/TeraBox/1.41.1/Baidu.TeraBox.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: Baidu.TeraBox +PackageVersion: 1.41.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/TeraBox/1.41.2/Baidu.TeraBox.installer.yaml b/manifests/b/Baidu/TeraBox/1.41.2/Baidu.TeraBox.installer.yaml new file mode 100644 index 0000000000000..10ea73c4282fe --- /dev/null +++ b/manifests/b/Baidu/TeraBox/1.41.2/Baidu.TeraBox.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: Baidu.TeraBox +PackageVersion: 1.41.2 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Protocols: +- terabox +ProductCode: TeraBox +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://data.nephobox.com/issue/terabox/PCTeraBox/TeraBox_1.41.2.137.exe + InstallerSha256: F2D1FF5D0F69131098219937EAB41BC542D46FF0BFD191358F4AAF8BEDF860D5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/TeraBox/1.41.2/Baidu.TeraBox.locale.en-US.yaml b/manifests/b/Baidu/TeraBox/1.41.2/Baidu.TeraBox.locale.en-US.yaml new file mode 100644 index 0000000000000..5c09433350d96 --- /dev/null +++ b/manifests/b/Baidu/TeraBox/1.41.2/Baidu.TeraBox.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: Baidu.TeraBox +PackageVersion: 1.41.2 +PackageLocale: en-US +Publisher: Flextech Inc. +PublisherUrl: https://www.terabox.com/ +PublisherSupportUrl: https://www.terabox.com/help-center +PrivacyUrl: https://www.terabox.com/fe-opera-static/box-static/disk-system/html/wap_privacy.html +Author: Flextech Inc. +PackageName: TeraBox +PackageUrl: https://www.terabox.com/terabox-cloud-storage-for-pc-free-download +License: Proprietary +LicenseUrl: https://www.terabox.com/box-static/disk-system/html/wap_duty.html +Copyright: Copyright © 2024 Flextech Inc. All rights reserved. +ShortDescription: Free Cloud Storage Up To 1TB +Description: TeraBox is a FREE cloud storage tool for documents backup, files sharing and video storage. Get 1TB (1024 GB) of secure cloud storage, transfer files across your all devices, share it with family and friends. +Tags: +- backup +- cloud +- cloud-drive +- download +- drive +- file +- netdisk +- share +- sync +- upload +ReleaseNotes: |- + 1. Bug fixes + 2. Optimized for a better experience +PurchaseUrl: https://www.terabox.com/cloud-storage-pricing-plans +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/TeraBox/1.41.2/Baidu.TeraBox.locale.zh-CN.yaml b/manifests/b/Baidu/TeraBox/1.41.2/Baidu.TeraBox.locale.zh-CN.yaml new file mode 100644 index 0000000000000..295095d85f6c3 --- /dev/null +++ b/manifests/b/Baidu/TeraBox/1.41.2/Baidu.TeraBox.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Baidu.TeraBox +PackageVersion: 1.41.2 +PackageLocale: zh-CN +Publisher: Flextech Inc. +PublisherUrl: https://www.terabox.com/ +PublisherSupportUrl: https://www.terabox.com/help-center +PrivacyUrl: https://www.terabox.com/fe-opera-static/box-static/disk-system/html/wap_privacy.html +Author: Flextech Inc. +PackageName: TeraBox +PackageUrl: https://www.terabox.com/terabox-cloud-storage-for-pc-free-download +License: 专有软件 +LicenseUrl: https://www.terabox.com/box-static/disk-system/html/wap_duty.html +Copyright: Copyright © 2024 Flextech Inc. All rights reserved. +ShortDescription: 高达 1TB 的免费云存储 +Description: TeraBox 是一个免费的云存储工具,用于文件备份、文件共享和视频存储。获得 1TB(1024GB)安全云存储空间,在您的所有设备间传输文件,并与家人和朋友共享。 +Tags: +- 上传 +- 下载 +- 云 +- 云盘 +- 共享 +- 分享 +- 同步 +- 备份 +- 文件 +- 网盘 +PurchaseUrl: https://www.terabox.com/cloud-storage-pricing-plans +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/TeraBox/1.41.2/Baidu.TeraBox.yaml b/manifests/b/Baidu/TeraBox/1.41.2/Baidu.TeraBox.yaml new file mode 100644 index 0000000000000..b2f994ea59683 --- /dev/null +++ b/manifests/b/Baidu/TeraBox/1.41.2/Baidu.TeraBox.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: Baidu.TeraBox +PackageVersion: 1.41.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BaldurKarlsson/RenderDoc/1.39.0/BaldurKarlsson.RenderDoc.installer.yaml b/manifests/b/BaldurKarlsson/RenderDoc/1.39.0/BaldurKarlsson.RenderDoc.installer.yaml new file mode 100644 index 0000000000000..9a0b543d0e581 --- /dev/null +++ b/manifests/b/BaldurKarlsson/RenderDoc/1.39.0/BaldurKarlsson.RenderDoc.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: BaldurKarlsson.RenderDoc +PackageVersion: 1.39.0 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +FileExtensions: +- dds +- exr +- hdr +- psd +- rdc +- tga +ReleaseDate: 2025-06-27 +AppsAndFeaturesEntries: +- UpgradeCode: '{D320753C-4B18-4905-A752-E68959943E7D}' +Installers: +- Architecture: x86 + InstallerUrl: https://renderdoc.org/stable/1.39/RenderDoc_1.39_32.msi + InstallerSha256: 6B58643E8F46470E98C439A22B8A12BCC014D4100D77BED437B01397F0E527B8 + ProductCode: '{BB4D83A3-76D0-4008-A5DA-00E65077C49A}' +- Architecture: x64 + InstallerUrl: https://renderdoc.org/stable/1.39/RenderDoc_1.39_64.msi + InstallerSha256: 8283379C7186AE1248330D5244BBA894C0A66300DA828844E66B705C27128CAE + ProductCode: '{7A663B18-3A76-412D-A051-BA4C4656CF1A}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BaldurKarlsson/RenderDoc/1.39.0/BaldurKarlsson.RenderDoc.locale.en-US.yaml b/manifests/b/BaldurKarlsson/RenderDoc/1.39.0/BaldurKarlsson.RenderDoc.locale.en-US.yaml new file mode 100644 index 0000000000000..83c9886e27913 --- /dev/null +++ b/manifests/b/BaldurKarlsson/RenderDoc/1.39.0/BaldurKarlsson.RenderDoc.locale.en-US.yaml @@ -0,0 +1,68 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BaldurKarlsson.RenderDoc +PackageVersion: 1.39.0 +PackageLocale: en-US +Publisher: Baldur Karlsson +PublisherUrl: https://renderdoc.org/ +PublisherSupportUrl: https://github.com/baldurk/renderdoc/issues +Author: Baldur Karlsson +PackageName: RenderDoc +PackageUrl: https://renderdoc.org/ +License: MIT +LicenseUrl: https://github.com/baldurk/renderdoc/blob/HEAD/LICENSE.md +Copyright: Copyright © Baldur Karlsson 2025 +ShortDescription: A stand-alone graphics debugging tool +Description: RenderDoc is a free MIT licensed stand-alone graphics debugger that allows quick and easy single-frame capture and detailed introspection of any application using Vulkan, D3D11, OpenGL & OpenGL ES or D3D12 across Windows, Linux, Android, or Nintendo Switch™. +Moniker: renderdoc +Tags: +- debug +- debugger +- debugging +- debugging-tool +- graphics +- rendering +ReleaseNotes: |- + This version contains a number of bugfixes as work continues on the foundations for future functionality. + As always binary builds with installers, zips and tarballs are available on renderdoc.org. + Python API changes + - No breaking changes to the Python API. + Features/Improvements + - UI: Adjust shader debugger colours when using the dark theme. + - D3D12: Match variable names to disassembly for resource access SSA names. + - D3D12: Ensure SSA variables are displayed until the end of their use. + - D3D12: Add support for variable length strings in PIX strings, as well as V2 PIX strings. + - D3D12: Improve DXIL disassembly for global pointers. + - Vulkan: Improve SPIR-V disassembly when basic block order is unconventional. + - Vulkan: Add support for extensions: + - VK_KHR_robustness2 + - VK_EXT_dynamic_rendering_unused_attachments + Bugfixes + - Windows: Fix problems caused by windows 11 hotpatch DLLs. + - UI: Show an error if a working directory is specified but does not exist. + - UI: Detect if an application with a reserved filename such as explorer.exe is launched and show an error. + - UI: Fix interpreting pointers to basic non-structure types. + - UI: Fix a crash that could happen when making edits to shader debug locations. + - Vulkan: Fix handling of acceleration structures in push descriptors. + - Vulkan: Fix incorrect callstack being generated for inlined function calls. + - Vulkan: Fix reading from BDA pointers to basic types in push constants not correctly respecting declared array strides. + - Vulkan: Fix reads and writes from storage texel buffers in shader debugging. + - Vulkan: Fix display of texel buffers when VK_WHOLE_SIZE is specified as the size. + - D3D: Fix a potential crash debugging shaders that use groupshared memory. + - D3D: Fix a crash if a programmatic capture is triggered after presenting to and then deleting a swapchain. + - D3D11: Handle unusual arrangement of mapping and unmapping buffers across frame boundaries. + - D3D11: Fix state tracking for D3D11.1 offsetted constant buffer bindings. + - D3D12: Fix reflection of 16-bit types in external shader interfaces. + - D3D12: Fix pixel history over ExecuteIndirects that contain multiple draws. + - D3D12: Fix internal command allocator not being reset leading to a leak or potentially a crash when shader debugging. + - OpenGL: Fix separable patching in some cases where individual gl_PerVertex members are redeclared as individual globals. + - OpenGL ES: Fix an error generated during context creation. +ReleaseNotesUrl: https://github.com/baldurk/renderdoc/releases/tag/v1.39 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://renderdoc.org/docs/index.html +- DocumentLabel: Wiki + DocumentUrl: https://github.com/baldurk/renderdoc/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BaldurKarlsson/RenderDoc/1.39.0/BaldurKarlsson.RenderDoc.locale.zh-CN.yaml b/manifests/b/BaldurKarlsson/RenderDoc/1.39.0/BaldurKarlsson.RenderDoc.locale.zh-CN.yaml new file mode 100644 index 0000000000000..80f672d86724b --- /dev/null +++ b/manifests/b/BaldurKarlsson/RenderDoc/1.39.0/BaldurKarlsson.RenderDoc.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: BaldurKarlsson.RenderDoc +PackageVersion: 1.39.0 +PackageLocale: zh-CN +ShortDescription: 独立图形调试工具 +Description: RenderDoc 是一款 MIT 许可证下的免费独立图形调试器,可在 Windows、Linux、Android 或 Nintendo Switch™ 上对任何使用 Vulkan、D3D11、OpenGL & OpenGL ES 或 D3D12 的应用程序快速轻松进行单帧捕获和详细检查。 +Tags: +- 图形 +- 渲染 +- 调试 +- 调试器 +- 调试工具 +ReleaseNotesUrl: https://github.com/baldurk/renderdoc/releases/tag/v1.39 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://renderdoc.org/docs/index.html +- DocumentLabel: Wiki + DocumentUrl: https://github.com/baldurk/renderdoc/wiki +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BaldurKarlsson/RenderDoc/1.39.0/BaldurKarlsson.RenderDoc.yaml b/manifests/b/BaldurKarlsson/RenderDoc/1.39.0/BaldurKarlsson.RenderDoc.yaml new file mode 100644 index 0000000000000..8ef3c20c8a223 --- /dev/null +++ b/manifests/b/BaldurKarlsson/RenderDoc/1.39.0/BaldurKarlsson.RenderDoc.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: BaldurKarlsson.RenderDoc +PackageVersion: 1.39.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BandicamCompany/Bandicut/4.1.0.2527/BandicamCompany.Bandicut.installer.yaml b/manifests/b/BandicamCompany/Bandicut/4.1.0.2527/BandicamCompany.Bandicut.installer.yaml index 4477ce9d18e34..3e1858c3b76e5 100644 --- a/manifests/b/BandicamCompany/Bandicut/4.1.0.2527/BandicamCompany.Bandicut.installer.yaml +++ b/manifests/b/BandicamCompany/Bandicut/4.1.0.2527/BandicamCompany.Bandicut.installer.yaml @@ -1,27 +1,21 @@ -# Created using wingetcreate 1.9.4.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: BandicamCompany.Bandicut PackageVersion: 4.1.0.2527 -InstallerLocale: en-US -MinimumOSVersion: 10.0.0.0 InstallerType: nullsoft Scope: machine -InstallModes: -- interactive -- silent UpgradeBehavior: install FileExtensions: +- bdp - bcpf ProductCode: Bandicut -AppsAndFeaturesEntries: -- ProductCode: Bandicut +ReleaseDate: 2025-05-28 InstallationMetadata: DefaultInstallLocation: '%ProgramFiles%\Bandicut' Installers: - Architecture: x64 - InstallerUrl: https://dl.bandicam.com/bandicut/bandicut-setup.exe + InstallerUrl: https://dl.bandicam.com/bandicut/old/bandicut-setup-4.1.0.2527.exe InstallerSha256: 575EE35695ECD40065A98D3FF159E061C1743D85F5E0F5EAED020754CCDB14E5 ManifestType: installer -ManifestVersion: 1.9.0 -ReleaseDate: 2025-05-28 +ManifestVersion: 1.10.0 diff --git a/manifests/b/BandicamCompany/Bandicut/4.1.0.2527/BandicamCompany.Bandicut.locale.en-US.yaml b/manifests/b/BandicamCompany/Bandicut/4.1.0.2527/BandicamCompany.Bandicut.locale.en-US.yaml index f04a1cff6678f..9e34a47b781cb 100644 --- a/manifests/b/BandicamCompany/Bandicut/4.1.0.2527/BandicamCompany.Bandicut.locale.en-US.yaml +++ b/manifests/b/BandicamCompany/Bandicut/4.1.0.2527/BandicamCompany.Bandicut.locale.en-US.yaml @@ -1,26 +1,62 @@ -# Created using wingetcreate 1.9.4.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: BandicamCompany.Bandicut PackageVersion: 4.1.0.2527 PackageLocale: en-US Publisher: Bandicam.com PublisherUrl: https://www.bandicam.com/ -PublisherSupportUrl: https://www.bandicam.com/faqs/ +PublisherSupportUrl: https://www.bandicam.com/bandicut-video-cutter/support/ PrivacyUrl: https://www.bandicam.com/company/privacy/ -Author: Bandicam Company +Author: Bandicam Company Corp. PackageName: Bandicut PackageUrl: https://www.bandicam.com/bandicut-video-cutter/ -License: Shareware +License: Proprietary LicenseUrl: https://www.bandicam.com/company/tos/ -Copyright: Copyright (c) 2008-2025 Bandicam Company. All rights reserved. +Copyright: Copyright (c) 2013-2025 Bandicam.com CopyrightUrl: https://www.bandicam.com/company/tos/ -ShortDescription: Bandicut is super fast video-cutting and joining software with an easy-to-use interface. +ShortDescription: Bandicut is a super fast video-cutting and joining software with an easy-to-use interface. +Description: |- + Bandicut is a video editor that can cut specific parts of a video or join multiple videos together. Because it cuts videos without the need to re-encode, you can clip a part of a video quickly while maintaining the quality of the original video. + + Features + - You can cut parts from the original copy without re-encoding. + - [High-Speed Mode] does not decrease the quality. + - You can precisely cut videos by frame. + - You can quickly join more than 2 different video files. + - You can change the playback speed. + - Various compression codecs (H264, Xvid, MPEG-1, Motion JPEG, VP8, VP9, etc.) are supported + - High-speed video cutting is supported. + - Easy to use. + + Supported Video Formats + - Input video formats (extension): *.avi, *.mp4, *.mov, *.m4v, *.mkv, *.webm, *.mpeg, *.mpg, *.dat, *.vob, *.flv, *.asf, *.wmv, *.ts, *.tp, *.trp, *.mpe, *.mpv2, *.mp2v, *.m2t, *.m2ts, *.k3g, *.divx, *.wm, *.wmx, *.wvx, *.rm, *.rmvb, *.ram, *.ivf, *.ogm, *.vp6, *.xvd + - Output video formats (extension): MP4, AVI, MKV, WebM, MP3 Moniker: bandicut Tags: -- cut +- clip +- creative +- creativity +- edit +- editor +- film +- movie - video - video-editing +- video-editor +ReleaseNotes: |- + - Added the ability to edit multiple files simultaneously in the Cut mode. + - Added the option to use the hardware video renderer for playback + - Added the "Keep Source File Name" option in the Output settings + - Added the "Copy segment" feature with Ctrl+V + - Improved translations for multiple languages + - Bugs fixed + - Vimeo uploads were not working properly + - Encoding mode: The "Keep original audio frequency" option didn’t work correctly in Bandicut 4.0.1 + - Other minor bugs have been fixed. ReleaseNotesUrl: https://www.bandicam.com/bandicut-video-cutter/history/ +PurchaseUrl: https://www.bandicam.com/bandicut-video-cutter/buy/ +# InstallationNotes: +# Documentations: ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/b/BandicamCompany/Bandicut/4.1.0.2527/BandicamCompany.Bandicut.locale.zh-CN.yaml b/manifests/b/BandicamCompany/Bandicut/4.1.0.2527/BandicamCompany.Bandicut.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f4e949e894a93 --- /dev/null +++ b/manifests/b/BandicamCompany/Bandicut/4.1.0.2527/BandicamCompany.Bandicut.locale.zh-CN.yaml @@ -0,0 +1,64 @@ +# 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: BandicamCompany.Bandicut +PackageVersion: 4.1.0.2527 +PackageLocale: zh-CN +# Publisher: +PublisherUrl: https://www.bandicam.cn/ +PublisherSupportUrl: https://www.bandicam.cn/bandicut-video-cutter/support/ +PrivacyUrl: https://www.bandicam.cn/company/privacy/ +# Author: +# PackageName: +PackageUrl: https://www.bandicam.cn/bandicut-video-cutter/ +License: 专有软件 +LicenseUrl: https://www.bandicam.cn/company/tos/ +# Copyright: +CopyrightUrl: https://www.bandicam.cn/company/tos/ +ShortDescription: Bandicut 是一款极速的视频剪辑和合并软件,具有简单易用的界面。 +Description: |- + Bandicut 是一款视频编辑器,可以剪辑视频的特定部分或将多个视频合并在一起。由于它在剪辑视频时无需重新编码,您可以快速剪辑视频的一部分,同时保持原视频的质量。 + + 功能特点 + - 无需重新编码即可从原始视频中剪辑部分内容。 + - [高速模式] 不会降低视频质量。 + - 可以按帧精确剪辑视频。 + - 能够快速合并两个或多个不同的视频文件。 + - 可以调整视频播放速度。 + - 支持多种压缩编解码器(H264、Xvid、MPEG-1、Motion JPEG、VP8、VP9 等)。 + - 支持高速视频剪辑。 + - 操作简单易用。 + + 支持的视频格式 + - 输入视频格式(扩展名):*.avi, *.mp4, *.mov, *.m4v, *.mkv, *.webm, *.mpeg, *.mpg, *.dat, *.vob, *.flv, *.asf, *.wmv, *.ts, *.tp, *.trp, *.mpe, *.mpv2, *.mp2v, *.m2t, *.m2ts, *.k3g, *.divx, *.wm, *.wmx, *.wvx, *.rm, *.rmvb, *.ram, *.ivf, *.ogm, *.vp6, *.xvd + - 输出视频格式(扩展名):MP4, AVI, MKV, WebM, MP3 +# Moniker: +Tags: +- 创意 +- 剪辑 +- 影片 +- 电影 +- 视频 +- 视频编辑 +- 视频编辑器 +- 编辑 +- 编辑器 +ReleaseNotes: |- + - 新增功能 + - 支持在剪切时同时编辑不同文件 + - 添加使用硬件渲染器播放功能 + - 在输出设置中增加 “以原文件名保存” 选项 + - 支持通过 Ctrl+V 快速复制相同片段(文件) + - 问题修复 + - 修复 Vimeo 上传不稳定的问题 + - 修复 “保存到原文件夹” 选项无法禁用的问题 + - 解决 Bandicut 4.0.1 版本使用编码模式时 “保持原采样率” 选项无效的问题 + - 试用版 + - 解决了截取不同文件且不拼接片段时转换失败的问题 + - 其他 +ReleaseNotesUrl: https://www.bandicam.cn/bandicut-video-cutter/history/ +PurchaseUrl: https://www.bandicam.cn/bandicut-video-cutter/buy/ +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BandicamCompany/Bandicut/4.1.0.2527/BandicamCompany.Bandicut.yaml b/manifests/b/BandicamCompany/Bandicut/4.1.0.2527/BandicamCompany.Bandicut.yaml index 9f587978cd139..ce95354523286 100644 --- a/manifests/b/BandicamCompany/Bandicut/4.1.0.2527/BandicamCompany.Bandicut.yaml +++ b/manifests/b/BandicamCompany/Bandicut/4.1.0.2527/BandicamCompany.Bandicut.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 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: BandicamCompany.Bandicut PackageVersion: 4.1.0.2527 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/BandiView/7.16/Bandisoft.BandiView.installer.yaml b/manifests/b/Bandisoft/BandiView/7.16/Bandisoft.BandiView.installer.yaml deleted file mode 100644 index ee468f98ffc6b..0000000000000 --- a/manifests/b/Bandisoft/BandiView/7.16/Bandisoft.BandiView.installer.yaml +++ /dev/null @@ -1,94 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Bandisoft.BandiView -PackageVersion: "7.16" -InstallerType: exe -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /S - SilentWithProgress: /auto - InstallLocation: /D:"" -UpgradeBehavior: install -FileExtensions: -- 3fr -- apng -- arw -- avif -- avifs -- bmp -- bpg -- cb7 -- cbr -- cbt -- cbz -- clip -- cr2 -- cr3 -- crw -- dds -- dng -- erf -- exr -- gif -- hdp -- heic -- heif -- hif -- ico -- j2c -- j2k -- jfif -- jp2 -- jpc -- jpe -- jpeg -- jpf -- jpg -- jpm -- jpx -- jxl -- jxr -- kdc -- mef -- mos -- mrw -- nef -- nrw -- orf -- pbm -- pcx -- pef -- pgm -- png -- pnm -- ppm -- psb -- psd -- qoi -- raf -- rw2 -- sr2 -- srw -- svg -- tga -- tif -- tiff -- ugoira -- wdp -- webp -- x3f -ProductCode: BandiView -Installers: -- Architecture: x64 - InstallerUrl: https://bandisoft.app/bandiview/BANDIVIEW-SETUP-X64.EXE?20250504173940 - InstallerSha256: 757B25B831A16F8CE4A274B4FC1BCCD88D179CD7449D8FEB3AD7BB48D21F65C3 -- Architecture: arm64 - InstallerUrl: https://bandisoft.app/bandiview/BANDIVIEW-SETUP-ALL.EXE?20250504173940 - InstallerSha256: B1001F14E97436B3E2A1F2193E95D25F70683B1DA64353D671EF7E9F91354B6E -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/BandiView/7.16/Bandisoft.BandiView.locale.en-US.yaml b/manifests/b/Bandisoft/BandiView/7.16/Bandisoft.BandiView.locale.en-US.yaml deleted file mode 100644 index dde73bb694876..0000000000000 --- a/manifests/b/Bandisoft/BandiView/7.16/Bandisoft.BandiView.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Bandisoft.BandiView -PackageVersion: "7.16" -PackageLocale: en-US -Publisher: Bandisoft.com -PublisherUrl: https://www.bandisoft.com/ -PublisherSupportUrl: https://www.bandisoft.com/bandiview/help/ -PrivacyUrl: https://www.bandisoft.com/about/privacy/ -Author: Bandisoft International Inc. -PackageName: BandiView -PackageUrl: https://www.bandisoft.com/bandiview/ -License: Proprietary -LicenseUrl: https://www.bandisoft.com/bandiview/eula/eula.en.pdf -Copyright: Copyright(C) 2024-2024 Bandisoft International Inc. All rights reserved. -ShortDescription: A New Standard for Image Viewers -Description: BandiView is the succeeding image viewer to Honeyview, that inherits everything cool of its predecessor and also gets improved even further. Fast and easy to view images in a variety of formats, from the most common ones to the most professional ones. -Tags: -- comic -- image -- photo -- picture -- reader -- viewer -- webtoon -ReleaseNotesUrl: https://www.bandisoft.com/bandiview/history/ -PurchaseUrl: https://www.bandisoft.com/bandiview/buy/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/BandiView/7.16/Bandisoft.BandiView.locale.zh-CN.yaml b/manifests/b/Bandisoft/BandiView/7.16/Bandisoft.BandiView.locale.zh-CN.yaml deleted file mode 100644 index 0972923ceb991..0000000000000 --- a/manifests/b/Bandisoft/BandiView/7.16/Bandisoft.BandiView.locale.zh-CN.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Bandisoft.BandiView -PackageVersion: "7.16" -PackageLocale: zh-CN -Publisher: Bandisoft.com -PublisherUrl: https://cn.bandisoft.com/ -PublisherSupportUrl: https://cn.bandisoft.com/bandiview/help/ -PrivacyUrl: https://cn.bandisoft.com/about/privacy/ -Author: Bandisoft International Inc. -PackageName: BandiView -PackageUrl: https://cn.bandisoft.com/bandiview/ -License: 专有软件 -LicenseUrl: https://cn.bandisoft.com/bandiview/eula/eula.en.pdf -Copyright: Copyright(C) 2024-2024 Bandisoft International Inc. All rights reserved. -ShortDescription: 图像查看器新标准 -Description: BandiView 是 Honeyview 图像查看器的继任者,继承了后者所有的酷炫功能,并得到了进一步改进。快速轻松地查看各种格式的图像,覆盖最常见的格式到最专业的格式。 -Tags: -- 图像 -- 图片 -- 条漫 -- 查看器 -- 漫画 -- 照片 -- 阅读器 -ReleaseNotesUrl: https://cn.bandisoft.com/bandiview/history/ -PurchaseUrl: https://cn.bandisoft.com/bandiview/buy/ -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/BandiView/7.16/Bandisoft.BandiView.yaml b/manifests/b/Bandisoft/BandiView/7.16/Bandisoft.BandiView.yaml deleted file mode 100644 index f308288c33901..0000000000000 --- a/manifests/b/Bandisoft/BandiView/7.16/Bandisoft.BandiView.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Bandisoft.BandiView -PackageVersion: "7.16" -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/BandiView/7.17/Bandisoft.BandiView.installer.yaml b/manifests/b/Bandisoft/BandiView/7.17/Bandisoft.BandiView.installer.yaml deleted file mode 100644 index 1aa643c8db399..0000000000000 --- a/manifests/b/Bandisoft/BandiView/7.17/Bandisoft.BandiView.installer.yaml +++ /dev/null @@ -1,94 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Bandisoft.BandiView -PackageVersion: "7.17" -InstallerType: exe -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /S - SilentWithProgress: /auto - InstallLocation: /D:"" -UpgradeBehavior: install -FileExtensions: -- 3fr -- apng -- arw -- avif -- avifs -- bmp -- bpg -- cb7 -- cbr -- cbt -- cbz -- clip -- cr2 -- cr3 -- crw -- dds -- dng -- erf -- exr -- gif -- hdp -- heic -- heif -- hif -- ico -- j2c -- j2k -- jfif -- jp2 -- jpc -- jpe -- jpeg -- jpf -- jpg -- jpm -- jpx -- jxl -- jxr -- kdc -- mef -- mos -- mrw -- nef -- nrw -- orf -- pbm -- pcx -- pef -- pgm -- png -- pnm -- ppm -- psb -- psd -- qoi -- raf -- rw2 -- sr2 -- srw -- svg -- tga -- tif -- tiff -- ugoira -- wdp -- webp -- x3f -ProductCode: BandiView -Installers: -- Architecture: x64 - InstallerUrl: https://bandisoft.app/bandiview/BANDIVIEW-SETUP-X64.EXE?20250528103311 - InstallerSha256: 0CEA2A0D119500B6AECF33F7557B604999F89EA7EA5147F5369BB22283D5445A -- Architecture: arm64 - InstallerUrl: https://bandisoft.app/bandiview/BANDIVIEW-SETUP-ALL.EXE?20250528103311 - InstallerSha256: A55C0E63BCD3DA18797B09AD94B25D592D4B17131B9AD31B726C27AD41E01624 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/BandiView/7.17/Bandisoft.BandiView.locale.en-US.yaml b/manifests/b/Bandisoft/BandiView/7.17/Bandisoft.BandiView.locale.en-US.yaml deleted file mode 100644 index df51995a4dfb5..0000000000000 --- a/manifests/b/Bandisoft/BandiView/7.17/Bandisoft.BandiView.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Bandisoft.BandiView -PackageVersion: "7.17" -PackageLocale: en-US -Publisher: Bandisoft.com -PublisherUrl: https://www.bandisoft.com/ -PublisherSupportUrl: https://www.bandisoft.com/bandiview/help/ -PrivacyUrl: https://www.bandisoft.com/about/privacy/ -Author: Bandisoft International Inc. -PackageName: BandiView -PackageUrl: https://www.bandisoft.com/bandiview/ -License: Proprietary -LicenseUrl: https://www.bandisoft.com/bandiview/eula/eula.en.pdf -Copyright: Copyright(C) 2024-2024 Bandisoft International Inc. All rights reserved. -ShortDescription: A New Standard for Image Viewers -Description: BandiView is the succeeding image viewer to Honeyview, that inherits everything cool of its predecessor and also gets improved even further. Fast and easy to view images in a variety of formats, from the most common ones to the most professional ones. -Tags: -- comic -- image -- photo -- picture -- reader -- viewer -- webtoon -ReleaseNotesUrl: https://www.bandisoft.com/bandiview/history/ -PurchaseUrl: https://www.bandisoft.com/bandiview/buy/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/BandiView/7.17/Bandisoft.BandiView.locale.zh-CN.yaml b/manifests/b/Bandisoft/BandiView/7.17/Bandisoft.BandiView.locale.zh-CN.yaml deleted file mode 100644 index 436cfd36c4030..0000000000000 --- a/manifests/b/Bandisoft/BandiView/7.17/Bandisoft.BandiView.locale.zh-CN.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Bandisoft.BandiView -PackageVersion: "7.17" -PackageLocale: zh-CN -Publisher: Bandisoft.com -PublisherUrl: https://cn.bandisoft.com/ -PublisherSupportUrl: https://cn.bandisoft.com/bandiview/help/ -PrivacyUrl: https://cn.bandisoft.com/about/privacy/ -Author: Bandisoft International Inc. -PackageName: BandiView -PackageUrl: https://cn.bandisoft.com/bandiview/ -License: 专有软件 -LicenseUrl: https://cn.bandisoft.com/bandiview/eula/eula.en.pdf -Copyright: Copyright(C) 2024-2024 Bandisoft International Inc. All rights reserved. -ShortDescription: 图像查看器新标准 -Description: BandiView 是 Honeyview 图像查看器的继任者,继承了后者所有的酷炫功能,并得到了进一步改进。快速轻松地查看各种格式的图像,覆盖最常见的格式到最专业的格式。 -Tags: -- 图像 -- 图片 -- 条漫 -- 查看器 -- 漫画 -- 照片 -- 阅读器 -ReleaseNotesUrl: https://cn.bandisoft.com/bandiview/history/ -PurchaseUrl: https://cn.bandisoft.com/bandiview/buy/ -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/BandiView/7.17/Bandisoft.BandiView.yaml b/manifests/b/Bandisoft/BandiView/7.17/Bandisoft.BandiView.yaml deleted file mode 100644 index c2c151f9c6b28..0000000000000 --- a/manifests/b/Bandisoft/BandiView/7.17/Bandisoft.BandiView.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Bandisoft.BandiView -PackageVersion: "7.17" -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/BandiView/7.20/Bandisoft.BandiView.installer.yaml b/manifests/b/Bandisoft/BandiView/7.20/Bandisoft.BandiView.installer.yaml new file mode 100644 index 0000000000000..0b0824d9b2e0b --- /dev/null +++ b/manifests/b/Bandisoft/BandiView/7.20/Bandisoft.BandiView.installer.yaml @@ -0,0 +1,95 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Bandisoft.BandiView +PackageVersion: "7.20" +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S + SilentWithProgress: /auto + InstallLocation: /D:"" +UpgradeBehavior: install +FileExtensions: +- 3fr +- apng +- arw +- avif +- avifs +- bmp +- bpg +- cb7 +- cbr +- cbt +- cbz +- clip +- cr2 +- cr3 +- crw +- dds +- dng +- erf +- exr +- gif +- hdp +- heic +- heif +- hif +- ico +- j2c +- j2k +- jfif +- jp2 +- jpc +- jpe +- jpeg +- jpf +- jpg +- jpm +- jpx +- jxl +- jxr +- kdc +- mef +- mos +- mrw +- nef +- nrw +- orf +- pbm +- pcx +- pef +- pgm +- png +- pnm +- ppm +- psb +- psd +- qoi +- raf +- rw2 +- sr2 +- srw +- svg +- tga +- tif +- tiff +- ugoira +- wdp +- webp +- x3f +ProductCode: BandiView +ReleaseDate: 2025-07-09 +Installers: +- Architecture: x64 + InstallerUrl: https://bandisoft.app/bandiview/BANDIVIEW-SETUP-X64.EXE + InstallerSha256: F80959B6AA3B4C69165ADEFE8C455C046751E713CDA6E531E0A5EDFB157816FF +- Architecture: arm64 + InstallerUrl: https://bandisoft.app/bandiview/BANDIVIEW-SETUP-ALL.EXE + InstallerSha256: 9355BD3AA1B9314B69459269BC375740E3EAEFA23AD5703947BD72A0457C3043 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/BandiView/7.20/Bandisoft.BandiView.locale.en-US.yaml b/manifests/b/Bandisoft/BandiView/7.20/Bandisoft.BandiView.locale.en-US.yaml new file mode 100644 index 0000000000000..6200a9230bd4f --- /dev/null +++ b/manifests/b/Bandisoft/BandiView/7.20/Bandisoft.BandiView.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: Bandisoft.BandiView +PackageVersion: "7.20" +PackageLocale: en-US +Publisher: Bandisoft.com +PublisherUrl: https://www.bandisoft.com/ +PublisherSupportUrl: https://www.bandisoft.com/bandiview/help/ +PrivacyUrl: https://www.bandisoft.com/about/privacy/ +Author: Bandisoft International Inc. +PackageName: BandiView +PackageUrl: https://www.bandisoft.com/bandiview/ +License: Proprietary +LicenseUrl: https://www.bandisoft.com/bandiview/eula/eula.en.pdf +Copyright: Copyright(C) 2024-2024 Bandisoft International Inc. All rights reserved. +ShortDescription: A New Standard for Image Viewers +Description: BandiView is the succeeding image viewer to Honeyview, that inherits everything cool of its predecessor and also gets improved even further. Fast and easy to view images in a variety of formats, from the most common ones to the most professional ones. +Tags: +- comic +- image +- photo +- picture +- reader +- viewer +- webtoon +ReleaseNotes: |- + - Improved the app to allow its window to be moved by dragging while an image is loading + - Fixed a bug that the app occasionally crashes when processing a CLIP file + - Other modifications +ReleaseNotesUrl: https://www.bandisoft.com/bandiview/history/ +PurchaseUrl: https://www.bandisoft.com/bandiview/buy/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/BandiView/7.20/Bandisoft.BandiView.locale.zh-CN.yaml b/manifests/b/Bandisoft/BandiView/7.20/Bandisoft.BandiView.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a9e586a7eb9ba --- /dev/null +++ b/manifests/b/Bandisoft/BandiView/7.20/Bandisoft.BandiView.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: Bandisoft.BandiView +PackageVersion: "7.20" +PackageLocale: zh-CN +Publisher: Bandisoft.com +PublisherUrl: https://cn.bandisoft.com/ +PublisherSupportUrl: https://cn.bandisoft.com/bandiview/help/ +PrivacyUrl: https://cn.bandisoft.com/about/privacy/ +Author: Bandisoft International Inc. +PackageName: BandiView +PackageUrl: https://cn.bandisoft.com/bandiview/ +License: 专有软件 +LicenseUrl: https://cn.bandisoft.com/bandiview/eula/eula.en.pdf +Copyright: Copyright(C) 2024-2024 Bandisoft International Inc. All rights reserved. +ShortDescription: 图像查看器新标准 +Description: BandiView 是 Honeyview 图像查看器的继任者,继承了后者所有的酷炫功能,并得到了进一步改进。快速轻松地查看各种格式的图像,覆盖最常见的格式到最专业的格式。 +Tags: +- 图像 +- 图片 +- 条漫 +- 查看器 +- 漫画 +- 照片 +- 阅读器 +ReleaseNotesUrl: https://cn.bandisoft.com/bandiview/history/ +PurchaseUrl: https://cn.bandisoft.com/bandiview/buy/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/BandiView/7.20/Bandisoft.BandiView.yaml b/manifests/b/Bandisoft/BandiView/7.20/Bandisoft.BandiView.yaml new file mode 100644 index 0000000000000..5e50a8690d114 --- /dev/null +++ b/manifests/b/Bandisoft/BandiView/7.20/Bandisoft.BandiView.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: Bandisoft.BandiView +PackageVersion: "7.20" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/Bandizip/7.37/Bandisoft.Bandizip.installer.yaml b/manifests/b/Bandisoft/Bandizip/7.37/Bandisoft.Bandizip.installer.yaml deleted file mode 100644 index 79585645cce11..0000000000000 --- a/manifests/b/Bandisoft/Bandizip/7.37/Bandisoft.Bandizip.installer.yaml +++ /dev/null @@ -1,82 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Bandisoft.Bandizip -PackageVersion: "7.37" -InstallerType: exe -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /S - SilentWithProgress: /auto - InstallLocation: /D:"" -UpgradeBehavior: install -FileExtensions: -- "001" -- 7z -- ace -- aes -- alz -- apk -- arc -- arj -- asar -- bh -- bin -- br -- bz -- bz2 -- cab -- deb -- egg -- gz -- i00 -- iconpack -- img -- ipa -- iso -- isz -- jar -- lha -- lz -- lzh -- lzma -- pea -- pma -- rar -- tar -- tbz -- tbz2 -- tgz -- tlz -- txz -- udf -- uu -- uue -- war -- wim -- xpi -- xxe -- xz -- z -- zip -- zipx -- zpaq -- zst -- zstd -ProductCode: Bandizip -Installers: -- Architecture: x86 - InstallerUrl: https://bandisoft.app/bandizip/BANDIZIP-SETUP-STD-ALL.EXE?2025 - InstallerSha256: 391768ACA0E962D0A717B0C8EE63037AF0A8DCB7F13FA9BE8C380CFF0436E4DD -- Architecture: x64 - InstallerUrl: https://bandisoft.app/bandizip/BANDIZIP-SETUP-STD-X64.EXE?2025 - InstallerSha256: 73EDF7411B00E2531DAA9D8B97B511969E6BCFE00FC501C12AE8EDD06EAABB74 -- Architecture: arm64 - InstallerUrl: https://bandisoft.app/bandizip/BANDIZIP-SETUP-STD-ALL.EXE?2025 - InstallerSha256: 391768ACA0E962D0A717B0C8EE63037AF0A8DCB7F13FA9BE8C380CFF0436E4DD -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/Bandizip/7.37/Bandisoft.Bandizip.locale.en-US.yaml b/manifests/b/Bandisoft/Bandizip/7.37/Bandisoft.Bandizip.locale.en-US.yaml deleted file mode 100644 index 8f3130e5280af..0000000000000 --- a/manifests/b/Bandisoft/Bandizip/7.37/Bandisoft.Bandizip.locale.en-US.yaml +++ /dev/null @@ -1,46 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Bandisoft.Bandizip -PackageVersion: "7.37" -PackageLocale: en-US -Publisher: Bandisoft.com -PublisherUrl: https://www.bandisoft.com/ -PublisherSupportUrl: https://www.bandisoft.com/bandizip/help/ -PrivacyUrl: https://www.bandisoft.com/about/privacy/ -Author: Bandisoft International Inc. -PackageName: Bandizip -PackageUrl: https://www.bandisoft.com/bandizip/ -License: Proprietary -LicenseUrl: https://www.bandisoft.com/bandizip/eula/eula.en.pdf -Copyright: Copyright(C) 2024 Bandisoft International Inc. -ShortDescription: Bandizip is a powerful archiver that provides an ultrafast processing speed and convenient features. -Description: |- - Bandizip is a powerful archiver which provides an ultrafast processing speed and convenient features. Available free of charge, and its paid editions support a variety of advanced features. - - Supported OS: Windows 10/11 (x64/ARM64) - - All-inclusive compression/decompression/browsing/editing Archiver - - Extraction for 30+ formats, including RAR/RAR5/7Z/ZIP/ALZ/EGG - - Compressing an archive with password and multi-volume - - Fast compression with multi-core - - Windows 10/11 Context Menu support -Moniker: bandizip -Tags: -- archive -- archiver -- compress -- compression -- decompress -- decompression -- extract -- extractor -- unachive -- unachiver -- unzip -- zip -ReleaseNotesUrl: https://www.bandisoft.com/bandizip/history/ -PurchaseUrl: https://www.bandisoft.com/bandizip/buy/ -Documentations: -- DocumentLabel: How-to - DocumentUrl: https://www.bandisoft.com/bandizip/howto/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/Bandizip/7.37/Bandisoft.Bandizip.locale.zh-CN.yaml b/manifests/b/Bandisoft/Bandizip/7.37/Bandisoft.Bandizip.locale.zh-CN.yaml deleted file mode 100644 index 0e5982cdd33b7..0000000000000 --- a/manifests/b/Bandisoft/Bandizip/7.37/Bandisoft.Bandizip.locale.zh-CN.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Bandisoft.Bandizip -PackageVersion: "7.37" -PackageLocale: zh-CN -Publisher: Bandisoft.com -PublisherUrl: https://cn.bandisoft.com/ -PublisherSupportUrl: https://cn.bandisoft.com/bandizip/help/ -PrivacyUrl: https://cn.bandisoft.com/about/privacy/ -Author: Bandisoft International Inc. -PackageName: Bandizip -PackageUrl: https://cn.bandisoft.com/bandizip/ -License: 专有软件 -LicenseUrl: https://cn.bandisoft.com/bandizip/eula/eula.en.pdf -Copyright: Copyright(C) 2024 Bandisoft International Inc. -ShortDescription: Bandizip 是一个强大的多功能压缩文件管理工具,可提供很快的解压缩速度和其他各种实用功能。 -Description: |- - Bandizip 是一个强大的多功能压缩文件管理工具,可提供很快的解压缩速度和其他各种实用功能。这是一个免费的软件,其付费版本更是可以使用更多的实用功能。 - - 支持的操作系统:Windows 10/11(64bit/ARM64) - - 集压缩/解压/浏览/编辑为一体的压缩包管理器 - - 可以提取包括 RAR/ISO/7Z/ZIP 在内的 30 多种格式 - - 可以创建拥有密码和压缩分卷的压缩包 - - 支持多个的处理器核心进行高速的解压缩操作 -Tags: -- 压缩 -- 归档 -- 打包 -- 提取 -- 解包 -- 解压 -ReleaseNotesUrl: https://cn.bandisoft.com/bandizip/history/ -PurchaseUrl: https://cn.bandisoft.com/bandizip/buy/ -Documentations: -- DocumentLabel: 使用方法 - DocumentUrl: https://cn.bandisoft.com/bandizip/howto/ -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/Bandizip/7.37/Bandisoft.Bandizip.yaml b/manifests/b/Bandisoft/Bandizip/7.37/Bandisoft.Bandizip.yaml deleted file mode 100644 index 9f675ce45fe61..0000000000000 --- a/manifests/b/Bandisoft/Bandizip/7.37/Bandisoft.Bandizip.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Bandisoft.Bandizip -PackageVersion: "7.37" -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/Bandizip/7.38/Bandisoft.Bandizip.installer.yaml b/manifests/b/Bandisoft/Bandizip/7.38/Bandisoft.Bandizip.installer.yaml deleted file mode 100644 index 68974ed20a172..0000000000000 --- a/manifests/b/Bandisoft/Bandizip/7.38/Bandisoft.Bandizip.installer.yaml +++ /dev/null @@ -1,82 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Bandisoft.Bandizip -PackageVersion: "7.38" -InstallerType: exe -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /S - SilentWithProgress: /auto - InstallLocation: /D:"" -UpgradeBehavior: install -FileExtensions: -- "001" -- 7z -- ace -- aes -- alz -- apk -- arc -- arj -- asar -- bh -- bin -- br -- bz -- bz2 -- cab -- deb -- egg -- gz -- i00 -- iconpack -- img -- ipa -- iso -- isz -- jar -- lha -- lz -- lzh -- lzma -- pea -- pma -- rar -- tar -- tbz -- tbz2 -- tgz -- tlz -- txz -- udf -- uu -- uue -- war -- wim -- xpi -- xxe -- xz -- z -- zip -- zipx -- zpaq -- zst -- zstd -ProductCode: Bandizip -Installers: -- Architecture: x86 - InstallerUrl: https://bandisoft.app/bandizip/BANDIZIP-SETUP-STD-ALL.EXE?20250528122919 - InstallerSha256: E2BD606F44E559F56DF2654B7A4788B35559A2C043C63667A8848678435DF815 -- Architecture: x64 - InstallerUrl: https://bandisoft.app/bandizip/BANDIZIP-SETUP-STD-X64.EXE?20250528122919 - InstallerSha256: F70F6E37E236EAE766F97E465F71494361354FC2B0F3B289846F003AF39499E0 -- Architecture: arm64 - InstallerUrl: https://bandisoft.app/bandizip/BANDIZIP-SETUP-STD-ALL.EXE?20250528122919 - InstallerSha256: E2BD606F44E559F56DF2654B7A4788B35559A2C043C63667A8848678435DF815 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/Bandizip/7.38/Bandisoft.Bandizip.locale.en-US.yaml b/manifests/b/Bandisoft/Bandizip/7.38/Bandisoft.Bandizip.locale.en-US.yaml deleted file mode 100644 index efe114d974542..0000000000000 --- a/manifests/b/Bandisoft/Bandizip/7.38/Bandisoft.Bandizip.locale.en-US.yaml +++ /dev/null @@ -1,46 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Bandisoft.Bandizip -PackageVersion: "7.38" -PackageLocale: en-US -Publisher: Bandisoft.com -PublisherUrl: https://www.bandisoft.com/ -PublisherSupportUrl: https://www.bandisoft.com/bandizip/help/ -PrivacyUrl: https://www.bandisoft.com/about/privacy/ -Author: Bandisoft International Inc. -PackageName: Bandizip -PackageUrl: https://www.bandisoft.com/bandizip/ -License: Proprietary -LicenseUrl: https://www.bandisoft.com/bandizip/eula/eula.en.pdf -Copyright: Copyright(C) 2024 Bandisoft International Inc. -ShortDescription: Bandizip is a powerful archiver that provides an ultrafast processing speed and convenient features. -Description: |- - Bandizip is a powerful archiver which provides an ultrafast processing speed and convenient features. Available free of charge, and its paid editions support a variety of advanced features. - - Supported OS: Windows 10/11 (x64/ARM64) - - All-inclusive compression/decompression/browsing/editing Archiver - - Extraction for 30+ formats, including RAR/RAR5/7Z/ZIP/ALZ/EGG - - Compressing an archive with password and multi-volume - - Fast compression with multi-core - - Windows 10/11 Context Menu support -Moniker: bandizip -Tags: -- archive -- archiver -- compress -- compression -- decompress -- decompression -- extract -- extractor -- unachive -- unachiver -- unzip -- zip -ReleaseNotesUrl: https://www.bandisoft.com/bandizip/history/ -PurchaseUrl: https://www.bandisoft.com/bandizip/buy/ -Documentations: -- DocumentLabel: How-to - DocumentUrl: https://www.bandisoft.com/bandizip/howto/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/Bandizip/7.38/Bandisoft.Bandizip.locale.zh-CN.yaml b/manifests/b/Bandisoft/Bandizip/7.38/Bandisoft.Bandizip.locale.zh-CN.yaml deleted file mode 100644 index 466ae015061c8..0000000000000 --- a/manifests/b/Bandisoft/Bandizip/7.38/Bandisoft.Bandizip.locale.zh-CN.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Bandisoft.Bandizip -PackageVersion: "7.38" -PackageLocale: zh-CN -Publisher: Bandisoft.com -PublisherUrl: https://cn.bandisoft.com/ -PublisherSupportUrl: https://cn.bandisoft.com/bandizip/help/ -PrivacyUrl: https://cn.bandisoft.com/about/privacy/ -Author: Bandisoft International Inc. -PackageName: Bandizip -PackageUrl: https://cn.bandisoft.com/bandizip/ -License: 专有软件 -LicenseUrl: https://cn.bandisoft.com/bandizip/eula/eula.en.pdf -Copyright: Copyright(C) 2024 Bandisoft International Inc. -ShortDescription: Bandizip 是一个强大的多功能压缩文件管理工具,可提供很快的解压缩速度和其他各种实用功能。 -Description: |- - Bandizip 是一个强大的多功能压缩文件管理工具,可提供很快的解压缩速度和其他各种实用功能。这是一个免费的软件,其付费版本更是可以使用更多的实用功能。 - - 支持的操作系统:Windows 10/11(64bit/ARM64) - - 集压缩/解压/浏览/编辑为一体的压缩包管理器 - - 可以提取包括 RAR/ISO/7Z/ZIP 在内的 30 多种格式 - - 可以创建拥有密码和压缩分卷的压缩包 - - 支持多个的处理器核心进行高速的解压缩操作 -Tags: -- 压缩 -- 归档 -- 打包 -- 提取 -- 解包 -- 解压 -ReleaseNotesUrl: https://cn.bandisoft.com/bandizip/history/ -PurchaseUrl: https://cn.bandisoft.com/bandizip/buy/ -Documentations: -- DocumentLabel: 使用方法 - DocumentUrl: https://cn.bandisoft.com/bandizip/howto/ -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/Bandizip/7.38/Bandisoft.Bandizip.yaml b/manifests/b/Bandisoft/Bandizip/7.38/Bandisoft.Bandizip.yaml deleted file mode 100644 index e4abd37c4c688..0000000000000 --- a/manifests/b/Bandisoft/Bandizip/7.38/Bandisoft.Bandizip.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Bandisoft.Bandizip -PackageVersion: "7.38" -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/Bandizip/7.39/Bandisoft.Bandizip.installer.yaml b/manifests/b/Bandisoft/Bandizip/7.39/Bandisoft.Bandizip.installer.yaml new file mode 100644 index 0000000000000..17d7a9f78d1a1 --- /dev/null +++ b/manifests/b/Bandisoft/Bandizip/7.39/Bandisoft.Bandizip.installer.yaml @@ -0,0 +1,82 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Bandisoft.Bandizip +PackageVersion: "7.39" +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S + SilentWithProgress: /auto + InstallLocation: /D:"" +UpgradeBehavior: install +FileExtensions: +- "001" +- 7z +- ace +- aes +- alz +- apk +- arc +- arj +- asar +- bh +- bin +- br +- bz +- bz2 +- cab +- deb +- egg +- gz +- i00 +- iconpack +- img +- ipa +- iso +- isz +- jar +- lha +- lz +- lzh +- lzma +- pea +- pma +- rar +- tar +- tbz +- tbz2 +- tgz +- tlz +- txz +- udf +- uu +- uue +- war +- wim +- xpi +- xxe +- xz +- z +- zip +- zipx +- zpaq +- zst +- zstd +ProductCode: Bandizip +Installers: +- Architecture: x86 + InstallerUrl: https://bandisoft.app/bandizip/BANDIZIP-SETUP-STD-ALL.EXE + InstallerSha256: 4E8BDB2D0AB52726E2C5C11AEC606A23331572DBA5D479EC7AA02918C88A8385 +- Architecture: x64 + InstallerUrl: https://bandisoft.app/bandizip/BANDIZIP-SETUP-STD-X64.EXE + InstallerSha256: C63C319908DE8691D16627183333A877EC1EDC2B481119E682981C5B7C1560B9 +- Architecture: arm64 + InstallerUrl: https://bandisoft.app/bandizip/BANDIZIP-SETUP-STD-ALL.EXE + InstallerSha256: 4E8BDB2D0AB52726E2C5C11AEC606A23331572DBA5D479EC7AA02918C88A8385 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/Bandizip/7.39/Bandisoft.Bandizip.locale.en-US.yaml b/manifests/b/Bandisoft/Bandizip/7.39/Bandisoft.Bandizip.locale.en-US.yaml new file mode 100644 index 0000000000000..cbac1dc14c368 --- /dev/null +++ b/manifests/b/Bandisoft/Bandizip/7.39/Bandisoft.Bandizip.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Bandisoft.Bandizip +PackageVersion: "7.39" +PackageLocale: en-US +Publisher: Bandisoft.com +PublisherUrl: https://www.bandisoft.com/ +PublisherSupportUrl: https://www.bandisoft.com/bandizip/help/ +PrivacyUrl: https://www.bandisoft.com/about/privacy/ +Author: Bandisoft International Inc. +PackageName: Bandizip +PackageUrl: https://www.bandisoft.com/bandizip/ +License: Proprietary +LicenseUrl: https://www.bandisoft.com/bandizip/eula/eula.en.pdf +Copyright: Copyright(C) 2024 Bandisoft International Inc. +ShortDescription: Bandizip is a powerful archiver that provides an ultrafast processing speed and convenient features. +Description: |- + Bandizip is a powerful archiver which provides an ultrafast processing speed and convenient features. Available free of charge, and its paid editions support a variety of advanced features. + - Supported OS: Windows 10/11 (x64/ARM64) + - All-inclusive compression/decompression/browsing/editing Archiver + - Extraction for 30+ formats, including RAR/RAR5/7Z/ZIP/ALZ/EGG + - Compressing an archive with password and multi-volume + - Fast compression with multi-core + - Windows 10/11 Context Menu support +Moniker: bandizip +Tags: +- archive +- archiver +- compress +- compression +- decompress +- decompression +- extract +- extractor +- unachive +- unachiver +- unzip +- zip +ReleaseNotesUrl: https://www.bandisoft.com/bandizip/history/ +PurchaseUrl: https://www.bandisoft.com/bandizip/buy/ +Documentations: +- DocumentLabel: How-to + DocumentUrl: https://www.bandisoft.com/bandizip/howto/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/Bandizip/7.39/Bandisoft.Bandizip.locale.zh-CN.yaml b/manifests/b/Bandisoft/Bandizip/7.39/Bandisoft.Bandizip.locale.zh-CN.yaml new file mode 100644 index 0000000000000..706ef8aa216ac --- /dev/null +++ b/manifests/b/Bandisoft/Bandizip/7.39/Bandisoft.Bandizip.locale.zh-CN.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Bandisoft.Bandizip +PackageVersion: "7.39" +PackageLocale: zh-CN +Publisher: Bandisoft.com +PublisherUrl: https://cn.bandisoft.com/ +PublisherSupportUrl: https://cn.bandisoft.com/bandizip/help/ +PrivacyUrl: https://cn.bandisoft.com/about/privacy/ +Author: Bandisoft International Inc. +PackageName: Bandizip +PackageUrl: https://cn.bandisoft.com/bandizip/ +License: 专有软件 +LicenseUrl: https://cn.bandisoft.com/bandizip/eula/eula.en.pdf +Copyright: Copyright(C) 2024 Bandisoft International Inc. +ShortDescription: Bandizip 是一个强大的多功能压缩文件管理工具,可提供很快的解压缩速度和其他各种实用功能。 +Description: |- + Bandizip 是一个强大的多功能压缩文件管理工具,可提供很快的解压缩速度和其他各种实用功能。这是一个免费的软件,其付费版本更是可以使用更多的实用功能。 + - 支持的操作系统:Windows 10/11(64bit/ARM64) + - 集压缩/解压/浏览/编辑为一体的压缩包管理器 + - 可以提取包括 RAR/ISO/7Z/ZIP 在内的 30 多种格式 + - 可以创建拥有密码和压缩分卷的压缩包 + - 支持多个的处理器核心进行高速的解压缩操作 +Tags: +- 压缩 +- 归档 +- 打包 +- 提取 +- 解包 +- 解压 +ReleaseNotesUrl: https://cn.bandisoft.com/bandizip/history/ +PurchaseUrl: https://cn.bandisoft.com/bandizip/buy/ +Documentations: +- DocumentLabel: 使用方法 + DocumentUrl: https://cn.bandisoft.com/bandizip/howto/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bandisoft/Bandizip/7.39/Bandisoft.Bandizip.yaml b/manifests/b/Bandisoft/Bandizip/7.39/Bandisoft.Bandizip.yaml new file mode 100644 index 0000000000000..677bb05e283cb --- /dev/null +++ b/manifests/b/Bandisoft/Bandizip/7.39/Bandisoft.Bandizip.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: Bandisoft.Bandizip +PackageVersion: "7.39" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BartelsMedia/PhraseExpress/17.0.128/BartelsMedia.PhraseExpress.installer.yaml b/manifests/b/BartelsMedia/PhraseExpress/17.0.128/BartelsMedia.PhraseExpress.installer.yaml deleted file mode 100644 index 910dd8b6ee223..0000000000000 --- a/manifests/b/BartelsMedia/PhraseExpress/17.0.128/BartelsMedia.PhraseExpress.installer.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: BartelsMedia.PhraseExpress -PackageVersion: 17.0.128 -InstallerType: inno -UpgradeBehavior: install -FileExtensions: -- pcf -- pexdb -- pexmigration -ProductCode: PhraseExpress_is1 -Installers: -- Architecture: x86 - Scope: user - InstallerUrl: https://www.phraseexpress.com/PhraseExpressSetup.exe - InstallerSha256: CA743C51B826D787C24C8D02697F8688C097E5AB073456654EDEEA64A6FF2F9A - InstallerSwitches: - Custom: /CURRENTUSER -- Architecture: x86 - Scope: machine - InstallerUrl: https://www.phraseexpress.com/PhraseExpressSetup.exe - InstallerSha256: CA743C51B826D787C24C8D02697F8688C097E5AB073456654EDEEA64A6FF2F9A - InstallerSwitches: - Custom: /ALLUSERS -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/b/BartelsMedia/PhraseExpress/17.0.129/BartelsMedia.PhraseExpress.installer.yaml b/manifests/b/BartelsMedia/PhraseExpress/17.0.129/BartelsMedia.PhraseExpress.installer.yaml new file mode 100644 index 0000000000000..625ea7ea3da48 --- /dev/null +++ b/manifests/b/BartelsMedia/PhraseExpress/17.0.129/BartelsMedia.PhraseExpress.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: BartelsMedia.PhraseExpress +PackageVersion: 17.0.129 +InstallerType: inno +UpgradeBehavior: install +FileExtensions: +- pcf +- pexdb +- pexmigration +ProductCode: PhraseExpress_is1 +ReleaseDate: 2025-06-23 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://www.phraseexpress.com/PhraseExpressSetup.exe + InstallerSha256: D11604C550B838134BFB48024017CA1973CCF94A9AA0B9782EBCAD9715B1B742 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x86 + Scope: machine + InstallerUrl: https://www.phraseexpress.com/PhraseExpressSetup.exe + InstallerSha256: D11604C550B838134BFB48024017CA1973CCF94A9AA0B9782EBCAD9715B1B742 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BartelsMedia/PhraseExpress/17.0.128/BartelsMedia.PhraseExpress.locale.en-US.yaml b/manifests/b/BartelsMedia/PhraseExpress/17.0.129/BartelsMedia.PhraseExpress.locale.en-US.yaml similarity index 87% rename from manifests/b/BartelsMedia/PhraseExpress/17.0.128/BartelsMedia.PhraseExpress.locale.en-US.yaml rename to manifests/b/BartelsMedia/PhraseExpress/17.0.129/BartelsMedia.PhraseExpress.locale.en-US.yaml index 284ee56890488..aedee5269cf68 100644 --- a/manifests/b/BartelsMedia/PhraseExpress/17.0.128/BartelsMedia.PhraseExpress.locale.en-US.yaml +++ b/manifests/b/BartelsMedia/PhraseExpress/17.0.129/BartelsMedia.PhraseExpress.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: BartelsMedia.PhraseExpress -PackageVersion: 17.0.128 +PackageVersion: 17.0.129 PackageLocale: en-US Publisher: Bartels Media GmbH PublisherUrl: https://www.bartelsmedia.com/ @@ -34,6 +34,13 @@ Tags: - text - text-expander - text-snippets +ReleaseNotes: |- + - Improved large import into a local phrase database. + - Search with special characters + - Large CSV file import + - TAB-key form navigation + - Form output storage in variables + - Text color in dark mode (Thanks, "Under the Milky Way") ReleaseNotesUrl: https://www.phraseexpress.com/download/changelog/ PurchaseUrl: https://www.phraseexpress.com/shop/ Documentations: diff --git a/manifests/b/BartelsMedia/PhraseExpress/17.0.128/BartelsMedia.PhraseExpress.locale.zh-CN.yaml b/manifests/b/BartelsMedia/PhraseExpress/17.0.129/BartelsMedia.PhraseExpress.locale.zh-CN.yaml similarity index 96% rename from manifests/b/BartelsMedia/PhraseExpress/17.0.128/BartelsMedia.PhraseExpress.locale.zh-CN.yaml rename to manifests/b/BartelsMedia/PhraseExpress/17.0.129/BartelsMedia.PhraseExpress.locale.zh-CN.yaml index 8df6840f1e75e..0566b6aee30b2 100644 --- a/manifests/b/BartelsMedia/PhraseExpress/17.0.128/BartelsMedia.PhraseExpress.locale.zh-CN.yaml +++ b/manifests/b/BartelsMedia/PhraseExpress/17.0.129/BartelsMedia.PhraseExpress.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: BartelsMedia.PhraseExpress -PackageVersion: 17.0.128 +PackageVersion: 17.0.129 PackageLocale: zh-CN License: 专有软件 ShortDescription: 文本扩展器和自动文本软件 diff --git a/manifests/b/BartelsMedia/PhraseExpress/17.0.128/BartelsMedia.PhraseExpress.yaml b/manifests/b/BartelsMedia/PhraseExpress/17.0.129/BartelsMedia.PhraseExpress.yaml similarity index 88% rename from manifests/b/BartelsMedia/PhraseExpress/17.0.128/BartelsMedia.PhraseExpress.yaml rename to manifests/b/BartelsMedia/PhraseExpress/17.0.129/BartelsMedia.PhraseExpress.yaml index 0c4942ea25add..263b07597a6d8 100644 --- a/manifests/b/BartelsMedia/PhraseExpress/17.0.128/BartelsMedia.PhraseExpress.yaml +++ b/manifests/b/BartelsMedia/PhraseExpress/17.0.129/BartelsMedia.PhraseExpress.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: BartelsMedia.PhraseExpress -PackageVersion: 17.0.128 +PackageVersion: 17.0.129 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/b/Basilisk/Basilisk/52.9.2025.07.04/Basilisk.Basilisk.installer.yaml b/manifests/b/Basilisk/Basilisk/52.9.2025.07.04/Basilisk.Basilisk.installer.yaml new file mode 100644 index 0000000000000..250844ddedbee --- /dev/null +++ b/manifests/b/Basilisk/Basilisk/52.9.2025.07.04/Basilisk.Basilisk.installer.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Basilisk.Basilisk +PackageVersion: 52.9.2025.07.04 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- basiliskurl +- ftp +- http +- https +FileExtensions: +- htm +- html +- shtml +- xht +- xhtml +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x86 + InstallerUrl: https://dl.basilisk-browser.org/basilisk-20250703133412.win32.installer.exe + InstallerSha256: 95B9615C78DC626729353768ECBDD684DC9B1DFE9DB15FA36D296C8A1455ECA9 + ProductCode: Basilisk 52.9.2025.07.04 (x86 en-US) +- Architecture: x64 + InstallerUrl: https://dl.basilisk-browser.org/basilisk-20250703133404.win64.installer.exe + InstallerSha256: 0BE9F04F23063FAC86239D1F436E4BC9822710FB7F9B397F76B9AFE5B51AF245 + ProductCode: Basilisk 52.9.2025.07.04 (x64 en-US) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Basilisk/Basilisk/52.9.2025.07.04/Basilisk.Basilisk.locale.en-US.yaml b/manifests/b/Basilisk/Basilisk/52.9.2025.07.04/Basilisk.Basilisk.locale.en-US.yaml new file mode 100644 index 0000000000000..2a2b5d9ec3205 --- /dev/null +++ b/manifests/b/Basilisk/Basilisk/52.9.2025.07.04/Basilisk.Basilisk.locale.en-US.yaml @@ -0,0 +1,68 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Basilisk.Basilisk +PackageVersion: 52.9.2025.07.04 +PackageLocale: en-US +Publisher: Basilisk Development Team +PublisherUrl: https://www.basilisk-browser.org/ +PublisherSupportUrl: https://www.basilisk-browser.org/contact.html +PrivacyUrl: https://www.basilisk-browser.org/privacy.html +PackageName: Basilisk +PackageUrl: https://www.basilisk-browser.org/download.html +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: Copyright ©2022-Present The Basilisk Development Team. All rights reserved. +ShortDescription: A XUL-based web-browser built on top of the Unified XUL Platform (UXP). This browser is a close twin to pre-Servo Firefox in how it operates. +Description: Basilisk is a free and Open Source XUL-based web browser, featuring the well-known Firefox-style interface and operation. It is based on the Goanna layout and rendering engine (a fork of Gecko) and builds on the Unified XUL Platform (UXP), which in turn is a fork of the Mozilla code base without Servo or Rust. +Tags: +- browser +- internet +- web +- web-browser +- webpage +- xul +ReleaseNotes: |- + This is a major development, bugfix and security release. + - Basilisk now includes all non-ubiquitous image and media types in the navigation Accept: header, as discussed in the relevant whatwg fetch spec issue. + - Implemented .toJSON() for DOMRect, DOMPoint and DOMMatrix. + - Added a base implementation of the SVGGeometryElement API. This is currently limited to .pathLength, getTotalLength() and getPointAtLength(distance)for SVG paths. + - Added a base-64/character validity grammar check for CSP nonces. + - Enabled JPEG-XL support unconditionally. + - Improved desktop ARM media capabilities. + - Improved our handling of CSP checks (multiple improvements surrounding loading principal checks). + - Added several Mac-specific file types to be treated as executables. + - Updated the emoji font to Unicode 16.0.0. + - Updated SQLite library to 3.50.1. + - Updated NSS to 3.90.7.1 to fix some issues with some sites due to prior root certificate updates. + - Updated code dealing with internal URL rewrites for Youtube. + - Changed the Firefox compatibility mode version to 128. + - Changed how .click() on elements is handled. See implementation notes. + - Changed DOMMatrix's rotate() and rotateSelf() functions to accept 3D rotation instead of 2D, per spec. + - Changed CSS parameter animation to round values instead of truncating them, per spec. + This affects all integer properties (e.g. z-order) and font-stretching. + - Changed HTML element attribute parsing to additionally escape < and > characters, per spec. + - Fixed a regression in XUL elements where column selection would omit the first-defined column. + - Fixed a minor issue in DOMSVGPoint finity checks. + - Fixed some minor platform issues and updated Mac SDK checks. + - Fixed an issue when device contrast values would be unset in Mac or Windows+DirectWrite. + - Fixed an issue in the "Copy as curl" feature which could potentially mangle URLs. + - Fixed an issue with FontFaceSet loading. + - Removed support for very old libavcodec versions (before v58). + - Removed the CSP referrer directive as it's no longer in the spec. + - Removed preloading of a number of media libraries on Windows. See implementation notes. + - Removed the allowance of in image maps. Only is now supported. + - Removed several obsolete and unused preferences from about:config. + - Removed obsolete NPN preferences and calls. NPN has long since been replaced by ALPN. + - Removed obsolete SVGZoomEvent interface and handlers. + - Built on UXP commit: e52eaa961c + - Security issues addressed: CVE-2025-6429, CVE-2025-6424 (DiD) and CVE-2025-6426. + Implementation notes + - Normally, when a script issues a simulated click on an element, that click is issued on the document the element is in. Unfortunately there has been a perceived bug in mainstream browsers where this didn't happen on anchors (, hyperlinks) and the browser would navigate even if that anchor was not actually in a web page document (i.e. just created as a reference in scripting). This was eventually made an accepted behaviour in the specification as an exception, describing this bug as expected behavior. Basilisk has now changed how it handles .click() events on anchors to follow this behavior. This primarily impacts some select "download button" behavior on the web where this behavior quirk for anchors is relied on. + - Previously, Basilisk would preload a number of media .dll files into the browser, causing resource use even if there was no media to be decoded or played back in the browsing session yet. This was primarily done in inherited Mozilla code for EME to work. Since we don't support in-browser DRM, this preloading is wholly unnecessary and has been removed. +ReleaseNotesUrl: https://www.basilisk-browser.org/releasenotes.html +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://www.basilisk-browser.org/faq.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Basilisk/Basilisk/52.9.2025.07.04/Basilisk.Basilisk.locale.zh-CN.yaml b/manifests/b/Basilisk/Basilisk/52.9.2025.07.04/Basilisk.Basilisk.locale.zh-CN.yaml new file mode 100644 index 0000000000000..aa2e8215a073c --- /dev/null +++ b/manifests/b/Basilisk/Basilisk/52.9.2025.07.04/Basilisk.Basilisk.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: Basilisk.Basilisk +PackageVersion: 52.9.2025.07.04 +PackageLocale: zh-CN +ShortDescription: 建立在统一 XUL 平台(UXP)之上的基于 XUL 的网络浏览器。该浏览器的运行方式与 Servo 前一世代的火狐浏览器十分相似。 +Description: Basilisk 是一款基于 XUL 的免费开源网络浏览器,具有著名的 Firefox 风格界面和操作方式。它基于 Goanna 布局和渲染引擎(Gecko 的分叉),建立在统一 XUL 平台 (UXP) 上,而 UXP 又是 Mozilla 代码库的分叉,没有 Servo 或 Rust。 +Tags: +- xul +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://www.basilisk-browser.org/faq.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Basilisk/Basilisk/52.9.2025.07.04/Basilisk.Basilisk.yaml b/manifests/b/Basilisk/Basilisk/52.9.2025.07.04/Basilisk.Basilisk.yaml new file mode 100644 index 0000000000000..f146df82f1dfb --- /dev/null +++ b/manifests/b/Basilisk/Basilisk/52.9.2025.07.04/Basilisk.Basilisk.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: Basilisk.Basilisk +PackageVersion: 52.9.2025.07.04 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bauerapps/RightNote/6.6.1.0/Bauerapps.RightNote.installer.yaml b/manifests/b/Bauerapps/RightNote/6.6.1.0/Bauerapps.RightNote.installer.yaml deleted file mode 100644 index 5d15464ee38ee..0000000000000 --- a/manifests/b/Bauerapps/RightNote/6.6.1.0/Bauerapps.RightNote.installer.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Bauerapps.RightNote -PackageVersion: 6.6.1.0 -InstallerLocale: en-US -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -ProductCode: RightNote_is1 -ReleaseDate: 2025-05-25 -AppsAndFeaturesEntries: -- Publisher: BauerApps - ProductCode: RightNote_is1 -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\RightNote' -Installers: -- Architecture: x86 - InstallerUrl: https://bauerapps.com/files/RightNoteSetup.exe - InstallerSha256: BC70077FBC6A70CA40DB603F1C4417724362A1DB71A02A26DE99147F8B3E26C8 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bauerapps/RightNote/6.6.1.0/Bauerapps.RightNote.locale.en-US.yaml b/manifests/b/Bauerapps/RightNote/6.6.1.0/Bauerapps.RightNote.locale.en-US.yaml deleted file mode 100644 index 2c7c579292139..0000000000000 --- a/manifests/b/Bauerapps/RightNote/6.6.1.0/Bauerapps.RightNote.locale.en-US.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Bauerapps.RightNote -PackageVersion: 6.6.1.0 -PackageLocale: en-US -Publisher: Bauerapps -PublisherUrl: https://www.bauerapps.com/ -PublisherSupportUrl: https://www.bauerapps.com/contact/ -PackageName: RightNote Installer -PackageUrl: https://www.bauerapps.com/downloads/ -License: Proprietary -Copyright: © 2008-2023 Copyright by Bauerapps | www.bauerapps.com. All rights reserved. -CopyrightUrl: https://www.bauerapps.com/downloads/#:~:text=Copyright -ShortDescription: Become more organized -Description: > - RightNote will help you get a grip on information overload. It allows you store all bits and pieces of information in a single place and then search through all your data to find what you're looking for almost instantly! With RightNote you'll know where to store all those little bits of information and find them too. Includes lots of useful features. -ReleaseNotesUrl: https://www.bauerapps.com/rightnote-release-history/#:~:text=6.6.0 -PurchaseUrl: https://bauerapps.com/rightnote-pricing/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bauerapps/RightNote/6.6.1.0/Bauerapps.RightNote.yaml b/manifests/b/Bauerapps/RightNote/6.6.1.0/Bauerapps.RightNote.yaml deleted file mode 100644 index 340ad5889a4b7..0000000000000 --- a/manifests/b/Bauerapps/RightNote/6.6.1.0/Bauerapps.RightNote.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Bauerapps.RightNote -PackageVersion: 6.6.1.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/b/Bazel/Bazel/8.3.1/Bazel.Bazel.installer.yaml b/manifests/b/Bazel/Bazel/8.3.1/Bazel.Bazel.installer.yaml new file mode 100644 index 0000000000000..c40a8d3f9e14a --- /dev/null +++ b/manifests/b/Bazel/Bazel/8.3.1/Bazel.Bazel.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Bazel.Bazel +PackageVersion: 8.3.1 +InstallerType: portable +Commands: +- bazel +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bazelbuild/bazel/releases/download/8.3.1/bazel-8.3.1-windows-x86_64.exe + InstallerSha256: A3349D1D9E2327E03344C47244D4832AB14FC78142D050AA5599D85EE26B5F79 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/bazelbuild/bazel/releases/download/8.3.1/bazel-8.3.1-windows-arm64.exe + InstallerSha256: 2667E1839206E113407930D60603DA1C83FB354F3214D22148CE6F122F5BA26E + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bazel/Bazel/8.3.1/Bazel.Bazel.locale.en-US.yaml b/manifests/b/Bazel/Bazel/8.3.1/Bazel.Bazel.locale.en-US.yaml new file mode 100644 index 0000000000000..c843ed5b343dd --- /dev/null +++ b/manifests/b/Bazel/Bazel/8.3.1/Bazel.Bazel.locale.en-US.yaml @@ -0,0 +1,53 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Bazel.Bazel +PackageVersion: 8.3.1 +PackageLocale: en-US +Publisher: Bazel +PublisherUrl: https://github.com/bazelbuild +PublisherSupportUrl: https://github.com/bazelbuild/bazel/issues +PackageName: Bazel +PackageUrl: https://github.com/bazelbuild/bazel +License: Apache-2.0 +LicenseUrl: https://github.com/bazelbuild/bazel/blob/HEAD/LICENSE +ShortDescription: a fast, scalable, multi-language and extensible build system +Tags: +- bazel +- build +- build-system +- correct +- fast +- multi-language +- scalable +- test +ReleaseNotes: |- + Release 8.3.1 (2025-06-30) + Release Notes: + Configurability: + - Remove the "overwrote runfiles" warning (#26374) + ExternalDeps: + - Fix hang with force fetching + repo contents cache (#26412) + General: + - Release 8.3.0 (2025-06-23) + - Release 8.3.1 (2025-06-30) + OSS: + - Attempt to fix Bazel CI failure on Ubuntu (#26375) + - Revert "Move Bash runfiles libraries out of Bazel (#26304)" (#26372) + - Update MODULE.bazel and .bazelversion after creating the new branch, release-8.3.1 (#26373) + Acknowledgements: + This release contains contributions from many people at Google, as well as bazel.build machine account, Xdng Yng, Xùdōng Yáng. + Notice: Bazel installers contain binaries licensed under the GPLv2 with + Classpath exception. Those installers should always be redistributed along with + the source code. + Some versions of Bazel contain a bundled version of OpenJDK. The license of the + bundled OpenJDK and other open-source components can be displayed by running + the command bazel license. The vendor and version information of the bundled + OpenJDK can be displayed by running the command bazel info java-runtime. + The binaries and source-code of the bundled OpenJDK can be + downloaded from our mirror server. + Security: All our binaries are signed with our + public key 3D5919B448457EE0. +ReleaseNotesUrl: https://github.com/bazelbuild/bazel/releases/tag/8.3.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bazel/Bazel/8.3.1/Bazel.Bazel.yaml b/manifests/b/Bazel/Bazel/8.3.1/Bazel.Bazel.yaml new file mode 100644 index 0000000000000..0063c91cb97bc --- /dev/null +++ b/manifests/b/Bazel/Bazel/8.3.1/Bazel.Bazel.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: Bazel.Bazel +PackageVersion: 8.3.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Beeper/Beeper/4.0.821/Beeper.Beeper.installer.yaml b/manifests/b/Beeper/Beeper/4.0.821/Beeper.Beeper.installer.yaml new file mode 100644 index 0000000000000..b4921533fb370 --- /dev/null +++ b/manifests/b/Beeper/Beeper/4.0.821/Beeper.Beeper.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: Beeper.Beeper +PackageVersion: 4.0.821 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- beeper +ProductCode: 4005ec12-b235-5981-b49e-4005d478a398 +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x64 + InstallerUrl: https://beeper-desktop.download.beeper.com/builds/Beeper%20Setup%204.0.821.exe + InstallerSha256: 6635C45A2E1F038B0FDDB893C22F5BC48D8B4AADA96416B62E2746E5E90DF4DB +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Beeper/Beeper/4.0.821/Beeper.Beeper.locale.en-US.yaml b/manifests/b/Beeper/Beeper/4.0.821/Beeper.Beeper.locale.en-US.yaml new file mode 100644 index 0000000000000..ab6a65e6e9195 --- /dev/null +++ b/manifests/b/Beeper/Beeper/4.0.821/Beeper.Beeper.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Beeper.Beeper +PackageVersion: 4.0.821 +PackageLocale: en-US +Publisher: Beeper Inc. +PublisherUrl: https://www.beeper.com/ +PublisherSupportUrl: https://help.beeper.com/ +PrivacyUrl: https://www.beeper.com/privacy +Author: Beeper Inc. +PackageName: Beeper +PackageUrl: https://www.beeper.com/download +License: Proprietary +LicenseUrl: https://www.beeper.com/terms +Copyright: © 2024 Beeper Inc. +ShortDescription: All your chats in one app. Yes, really. +Description: A single app to chat on iMessage, WhatsApp, and 13 other chat networks. You can search, snooze, or archive messages. And with a unified inbox, you’ll never miss a message again. +Moniker: beeper +Tags: +- chat +- discord +- google-chat +- im +- imessage +- instagram +- instant-messaging +- matrix +- message +- messenger +- signal +- slack +- talk +- telegram +- twitter +- whatsapp +ReleaseNotes: |- + New + + Added “Show Window” to tray icon when minimized for OSes that don’t auto-restore the app + + Pinned chats can be manually sorted by dragging them + + Fixed & Improved + + Fixed a bug that prevented creating new Google Messages chat + + Opening a chat from search should be much quicker + + Improved fallback emojis when the OS doesn’t support newer ones + + Prevent app from opening at a small size + + Lots of small UI and UX improvements +ReleaseNotesUrl: https://beeper.notion.site +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://www.beeper.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Beeper/Beeper/4.0.821/Beeper.Beeper.locale.zh-CN.yaml b/manifests/b/Beeper/Beeper/4.0.821/Beeper.Beeper.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ebf7d4c217e27 --- /dev/null +++ b/manifests/b/Beeper/Beeper/4.0.821/Beeper.Beeper.locale.zh-CN.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Beeper.Beeper +PackageVersion: 4.0.821 +PackageLocale: zh-CN +Publisher: Beeper Inc. +PublisherUrl: https://www.beeper.com/ +PublisherSupportUrl: https://help.beeper.com/ +PrivacyUrl: https://www.beeper.com/privacy +Author: Beeper Inc. +PackageName: Beeper +PackageUrl: https://www.beeper.com/download +License: 专有软件 +LicenseUrl: https://www.beeper.com/terms +Copyright: © 2024 Beeper Inc. +ShortDescription: 在一个应用程序中完成所有聊天。没错,这是真的。 +Description: 只需一个 app,就能在 iMessage、WhatsApp 和其它 13 个聊天网络上聊天。你可以搜索、暂停或存档信息。有了统一的收件箱,你再也不会错过任何信息。 +Tags: +- discord +- google-chat +- im +- imessage +- instagram +- matrix +- messenger +- signal +- slack +- telegram +- twitter +- whatsapp +- 信息 +- 发送 +- 消息 +- 聊天 +ReleaseNotesUrl: https://beeper.notion.site +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://www.beeper.com/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Beeper/Beeper/4.0.821/Beeper.Beeper.yaml b/manifests/b/Beeper/Beeper/4.0.821/Beeper.Beeper.yaml new file mode 100644 index 0000000000000..daf8e4b2a9e7b --- /dev/null +++ b/manifests/b/Beeper/Beeper/4.0.821/Beeper.Beeper.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: Beeper.Beeper +PackageVersion: 4.0.821 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/11/11.0.27+9/BellSoft.LibericaJRE.11.installer.yaml b/manifests/b/BellSoft/LibericaJRE/11/11.0.27+9/BellSoft.LibericaJRE.11.installer.yaml new file mode 100644 index 0000000000000..498be735f6f55 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/11/11.0.27+9/BellSoft.LibericaJRE.11.installer.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.11 +PackageVersion: 11.0.27+9 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-04-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download.bell-sw.com/java/11.0.27+9/bellsoft-jre11.0.27+9-windows-i586.msi + InstallerSha256: 0549030A2E125982E0344857830FF02E7A264913E97D45F44DF9664DF990C085 + ProductCode: '{331205D1-7136-40B8-BF2B-070DF7D47B33}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 11 (32-bit) + DisplayVersion: 11.0.27.9 +- Architecture: x64 + InstallerUrl: https://download.bell-sw.com/java/11.0.27+9/bellsoft-jre11.0.27+9-windows-amd64.msi + InstallerSha256: C5E23D16C4DF9B156A36D61EE9199F45634B019800C3BA39B40B305AF69AAB23 + ProductCode: '{A4DC7335-21DE-428C-99E5-9372044F6505}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 11 (64-bit) + DisplayVersion: 11.0.27.9 +- Architecture: arm64 + InstallerUrl: https://download.bell-sw.com/java/11.0.27+9/bellsoft-jre11.0.27+9-windows-aarch64.msi + InstallerSha256: 0D20065E0654E4908E02AB3EAD78AD324D65FFB6FC847491FBF36EEAFB92D5F4 + ProductCode: '{BB69481D-3765-440A-A9D0-FDEF0D867350}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 11 (AArch64) + DisplayVersion: 11.0.27.9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/11/11.0.27+9/BellSoft.LibericaJRE.11.locale.en-US.yaml b/manifests/b/BellSoft/LibericaJRE/11/11.0.27+9/BellSoft.LibericaJRE.11.locale.en-US.yaml new file mode 100644 index 0000000000000..12a8166ce143e --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/11/11.0.27+9/BellSoft.LibericaJRE.11.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.11 +PackageVersion: 11.0.27+9 +PackageLocale: en-US +Publisher: BellSoft +PublisherUrl: https://bell-sw.com/ +PublisherSupportUrl: https://bell-sw.com/pricing +PrivacyUrl: https://bell-sw.com/privacy-policy +Author: BellSoft +PackageName: Liberica JRE 11 +PackageUrl: https://bell-sw.com/pages/downloads +License: GPL-2.0 +Copyright: Copyright © BellSoft Corporation 2017-2023 +ShortDescription: Liberica JDK is a free and open source Java Development Kit produced by BellSoft. +Description: |- + Liberica JDK is a free and open source Java Development Kit produced by BellSoft. + It has been verified by TCK for Java SE specs and supports most Linux distributions (including Alpine Linux), Windows, macOS, Solaris. + The Liberica OpenJDK package with the HotSpot Virtual Machine viably replaces Java 8 (LTS), 9, 10, 11 (LTS), 12, 13, 14, 15, 16, 17 (LTS), 18, 19. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/11/11.0.27+9/BellSoft.LibericaJRE.11.yaml b/manifests/b/BellSoft/LibericaJRE/11/11.0.27+9/BellSoft.LibericaJRE.11.yaml new file mode 100644 index 0000000000000..48200648c62e8 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/11/11.0.27+9/BellSoft.LibericaJRE.11.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: BellSoft.LibericaJRE.11 +PackageVersion: 11.0.27+9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/11/Full/11.0.27+9/BellSoft.LibericaJRE.11.Full.installer.yaml b/manifests/b/BellSoft/LibericaJRE/11/Full/11.0.27+9/BellSoft.LibericaJRE.11.Full.installer.yaml new file mode 100644 index 0000000000000..a38f4a066ea0c --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/11/Full/11.0.27+9/BellSoft.LibericaJRE.11.Full.installer.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.11.Full +PackageVersion: 11.0.27+9 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-04-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download.bell-sw.com/java/11.0.27+9/bellsoft-jre11.0.27+9-windows-i586-full.msi + InstallerSha256: DDDB55F7A7D687C354B0FED355A47835E25869DA730A0C201D5BC218E06DD971 + ProductCode: '{8E8D4F7C-5900-4833-8BDB-F6C6B5C5788E}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 11 Full (32-bit) + DisplayVersion: 11.0.27.9 +- Architecture: x64 + InstallerUrl: https://download.bell-sw.com/java/11.0.27+9/bellsoft-jre11.0.27+9-windows-amd64-full.msi + InstallerSha256: E5B32A6E4B8EA186E7FE60B2921006AAA987FE47E3B9F9F19D771350320F9D2D + ProductCode: '{5F7237DC-5AF0-4DB4-AA46-25032FD078E7}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 11 Full (64-bit) + DisplayVersion: 11.0.27.9 +- Architecture: arm64 + InstallerUrl: https://download.bell-sw.com/java/11.0.27+9/bellsoft-jre11.0.27+9-windows-aarch64-full.msi + InstallerSha256: 01FC9A2582CEC37D93E7C212FBBDB6723B99AA7B6CD152E2BCB53BF6864F1314 + ProductCode: '{84AD622B-AB68-49E7-B41B-BE782E406448}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 11 Full (AArch64) + DisplayVersion: 11.0.27.9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/11/Full/11.0.27+9/BellSoft.LibericaJRE.11.Full.locale.en-US.yaml b/manifests/b/BellSoft/LibericaJRE/11/Full/11.0.27+9/BellSoft.LibericaJRE.11.Full.locale.en-US.yaml new file mode 100644 index 0000000000000..cbca164c5d80e --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/11/Full/11.0.27+9/BellSoft.LibericaJRE.11.Full.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.11.Full +PackageVersion: 11.0.27+9 +PackageLocale: en-US +Publisher: BellSoft +PublisherUrl: https://bell-sw.com/ +PublisherSupportUrl: https://bell-sw.com/pricing +PrivacyUrl: https://bell-sw.com/privacy-policy +Author: BellSoft +PackageName: Liberica JRE 11 Full +PackageUrl: https://bell-sw.com/pages/downloads +License: GPL 2 with Classpath Exception +LicenseUrl: https://bell-sw.com/liberica_eula +Copyright: Copyright © BellSoft Corporation 2017-2023 +ShortDescription: Liberica JDK is a free and open source Java Development Kit produced by BellSoft. +Description: |- + Liberica JDK is a free and open source Java Development Kit produced by BellSoft. + It has been verified by TCK for Java SE specs and supports most Linux distributions (including Alpine Linux), Windows, macOS, Solaris. + The Liberica OpenJDK package with the HotSpot Virtual Machine viably replaces Java 8 (LTS), 9, 10, 11 (LTS), 12, 13, 14, 15, 16, 17 (LTS), 18, 19. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/11/Full/11.0.27+9/BellSoft.LibericaJRE.11.Full.yaml b/manifests/b/BellSoft/LibericaJRE/11/Full/11.0.27+9/BellSoft.LibericaJRE.11.Full.yaml new file mode 100644 index 0000000000000..5edd6df4e7c33 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/11/Full/11.0.27+9/BellSoft.LibericaJRE.11.Full.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: BellSoft.LibericaJRE.11.Full +PackageVersion: 11.0.27+9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/17/17.0.15+10/BellSoft.LibericaJRE.17.installer.yaml b/manifests/b/BellSoft/LibericaJRE/17/17.0.15+10/BellSoft.LibericaJRE.17.installer.yaml new file mode 100644 index 0000000000000..af70c2c3bced1 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/17/17.0.15+10/BellSoft.LibericaJRE.17.installer.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.17 +PackageVersion: 17.0.15+10 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-04-11 +Installers: +- Architecture: x86 + InstallerUrl: https://download.bell-sw.com/java/17.0.15+10/bellsoft-jre17.0.15+10-windows-i586.msi + InstallerSha256: A1C8CFA81320A122D094D8D5FA8E43DBB55E21F2E9E2B9FA7923F5A8C556777E + ProductCode: '{4AE96F18-C77A-4168-BB4F-A92BBABBA553}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 17 (32-bit) + DisplayVersion: 17.0.15.10 +- Architecture: x64 + InstallerUrl: https://download.bell-sw.com/java/17.0.15+10/bellsoft-jre17.0.15+10-windows-amd64.msi + InstallerSha256: 77FF4BF48E55D12EF532A0E09713E19A003A3A6A266BE9E6DDB1C04D1ED6EE0B + ProductCode: '{74338D7F-28FE-4B1E-9FBC-A4B69C3BC255}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 17 (64-bit) + DisplayVersion: 17.0.15.10 +- Architecture: arm64 + InstallerUrl: https://download.bell-sw.com/java/17.0.15+10/bellsoft-jre17.0.15+10-windows-aarch64.msi + InstallerSha256: BB108193D1FE02F94AE2B151CE683DE4B2167109D261373C5BB1245F44CDFE43 + ProductCode: '{D33E92E3-C5D5-4B4B-9505-A18F2DF7D9B2}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 17 (AArch64) + DisplayVersion: 17.0.15.10 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/17/17.0.15+10/BellSoft.LibericaJRE.17.locale.en-US.yaml b/manifests/b/BellSoft/LibericaJRE/17/17.0.15+10/BellSoft.LibericaJRE.17.locale.en-US.yaml new file mode 100644 index 0000000000000..8dcb406b00ebd --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/17/17.0.15+10/BellSoft.LibericaJRE.17.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.17 +PackageVersion: 17.0.15+10 +PackageLocale: en-US +Publisher: BellSoft +PublisherUrl: https://bell-sw.com/ +PublisherSupportUrl: https://bell-sw.com/pricing +PrivacyUrl: https://bell-sw.com/privacy-policy +Author: BellSoft +PackageName: Liberica JRE 17 +PackageUrl: https://bell-sw.com/pages/downloads +License: GPL-2.0 +Copyright: Copyright © BellSoft Corporation 2017-2023 +ShortDescription: Liberica JDK is a free and open source Java Development Kit produced by BellSoft. +Description: |- + Liberica JDK is a free and open source Java Development Kit produced by BellSoft. + It has been verified by TCK for Java SE specs and supports most Linux distributions (including Alpine Linux), Windows, macOS, Solaris. + The Liberica OpenJDK package with the HotSpot Virtual Machine viably replaces Java 8 (LTS), 9, 10, 11 (LTS), 12, 13, 14, 15, 16, 17 (LTS), 18, 19. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/17/17.0.15+10/BellSoft.LibericaJRE.17.yaml b/manifests/b/BellSoft/LibericaJRE/17/17.0.15+10/BellSoft.LibericaJRE.17.yaml new file mode 100644 index 0000000000000..cc8e844877113 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/17/17.0.15+10/BellSoft.LibericaJRE.17.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: BellSoft.LibericaJRE.17 +PackageVersion: 17.0.15+10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/17/Full/17.0.15+10/BellSoft.LibericaJRE.17.Full.installer.yaml b/manifests/b/BellSoft/LibericaJRE/17/Full/17.0.15+10/BellSoft.LibericaJRE.17.Full.installer.yaml new file mode 100644 index 0000000000000..a12239723cbfb --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/17/Full/17.0.15+10/BellSoft.LibericaJRE.17.Full.installer.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.17.Full +PackageVersion: 17.0.15+10 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-04-11 +Installers: +- Architecture: x86 + InstallerUrl: https://download.bell-sw.com/java/17.0.15+10/bellsoft-jre17.0.15+10-windows-i586-full.msi + InstallerSha256: E8ADF5809225B35FC8986E7BC8E01C21499ACE987F78C0A2A51FA3EF0F3613C8 + ProductCode: '{B8A30B6C-4B0F-45A6-B62D-6145678EAFF8}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 17 Full (32-bit) + DisplayVersion: 17.0.15.10 +- Architecture: x64 + InstallerUrl: https://download.bell-sw.com/java/17.0.15+10/bellsoft-jre17.0.15+10-windows-amd64-full.msi + InstallerSha256: 2D2D92000D004064992A48EE9B4A9544AA8EF01A3578DFD0CCD9066778913D33 + ProductCode: '{D0AA5F47-3CE7-437B-B30F-92468740872D}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 17 Full (64-bit) + DisplayVersion: 17.0.15.10 +- Architecture: arm64 + InstallerUrl: https://download.bell-sw.com/java/17.0.15+10/bellsoft-jre17.0.15+10-windows-aarch64-full.msi + InstallerSha256: 81D5E267F48A20E3248333AA5F690F9580955AA14932D51CA900D1504FED73DA + ProductCode: '{21CCEF08-7B9F-47AC-AFD7-F01480A6F5A6}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 17 Full (AArch64) + DisplayVersion: 17.0.15.10 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/17/Full/17.0.15+10/BellSoft.LibericaJRE.17.Full.locale.en-US.yaml b/manifests/b/BellSoft/LibericaJRE/17/Full/17.0.15+10/BellSoft.LibericaJRE.17.Full.locale.en-US.yaml new file mode 100644 index 0000000000000..b856a768d51e3 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/17/Full/17.0.15+10/BellSoft.LibericaJRE.17.Full.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.17.Full +PackageVersion: 17.0.15+10 +PackageLocale: en-US +Publisher: BellSoft +PublisherUrl: https://bell-sw.com/ +PublisherSupportUrl: https://bell-sw.com/pricing +PrivacyUrl: https://bell-sw.com/privacy-policy +Author: BellSoft +PackageName: Liberica JRE 17 Full +PackageUrl: https://bell-sw.com/pages/downloads +License: GPL 2 with Classpath Exception +LicenseUrl: https://bell-sw.com/liberica_eula +Copyright: Copyright © BellSoft Corporation 2017-2023 +ShortDescription: Liberica JDK is a free and open source Java Development Kit produced by BellSoft. +Description: |- + Liberica JDK is a free and open source Java Development Kit produced by BellSoft. + It has been verified by TCK for Java SE specs and supports most Linux distributions (including Alpine Linux), Windows, macOS, Solaris. + The Liberica OpenJDK package with the HotSpot Virtual Machine viably replaces Java 8 (LTS), 9, 10, 11 (LTS), 12, 13, 14, 15, 16, 17 (LTS), 18, 19. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/17/Full/17.0.15+10/BellSoft.LibericaJRE.17.Full.yaml b/manifests/b/BellSoft/LibericaJRE/17/Full/17.0.15+10/BellSoft.LibericaJRE.17.Full.yaml new file mode 100644 index 0000000000000..68170d31dae80 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/17/Full/17.0.15+10/BellSoft.LibericaJRE.17.Full.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: BellSoft.LibericaJRE.17.Full +PackageVersion: 17.0.15+10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/21/21.0.7+9/BellSoft.LibericaJRE.21.installer.yaml b/manifests/b/BellSoft/LibericaJRE/21/21.0.7+9/BellSoft.LibericaJRE.21.installer.yaml new file mode 100644 index 0000000000000..45a4c2798f501 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/21/21.0.7+9/BellSoft.LibericaJRE.21.installer.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.21 +PackageVersion: 21.0.7+9 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-04-11 +Installers: +- Architecture: x86 + InstallerUrl: https://download.bell-sw.com/java/21.0.7+9/bellsoft-jre21.0.7+9-windows-i586.msi + InstallerSha256: 1240B41C9DFE58E0B289E9BC2262DCC0FB880C84A21507966AB652061AEE97BF + ProductCode: '{0A06DE59-F540-4475-B7D2-3C986D79711E}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 21 (32-bit) + DisplayVersion: 21.0.7.9 +- Architecture: x64 + InstallerUrl: https://download.bell-sw.com/java/21.0.7+9/bellsoft-jre21.0.7+9-windows-amd64.msi + InstallerSha256: 970E1E5574F7DBBB17EE0C4AE4315569D03817A361228B5982100115050641D2 + ProductCode: '{56C7FD51-4DE6-4F6D-BBB5-B13A5C51B58E}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 21 (64-bit) + DisplayVersion: 21.0.7.9 +- Architecture: arm64 + InstallerUrl: https://download.bell-sw.com/java/21.0.7+9/bellsoft-jre21.0.7+9-windows-aarch64.msi + InstallerSha256: C8F3CFE90E875C40341E5EE456087AC04DAFF89ACBC72CAC97B56BB8F4D03C98 + ProductCode: '{A428D701-D7DC-44E6-AF13-B1E028A514FE}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 21 (AArch64) + DisplayVersion: 21.0.7.9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/21/21.0.7+9/BellSoft.LibericaJRE.21.locale.en-US.yaml b/manifests/b/BellSoft/LibericaJRE/21/21.0.7+9/BellSoft.LibericaJRE.21.locale.en-US.yaml new file mode 100644 index 0000000000000..868b5aef11ed0 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/21/21.0.7+9/BellSoft.LibericaJRE.21.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.21 +PackageVersion: 21.0.7+9 +PackageLocale: en-US +Publisher: BellSoft +PublisherUrl: https://bell-sw.com/ +PublisherSupportUrl: https://bell-sw.com/pricing +PrivacyUrl: https://bell-sw.com/privacy-policy +Author: Bellsoft +PackageName: Liberica JRE 21 +PackageUrl: https://bell-sw.com/pages/downloads +License: GPL-2.0 +Copyright: Copyright © BellSoft Corporation 2017-2023 +ShortDescription: Liberica JDK is a free and open source Java Development Kit produced by BellSoft. +Description: |- + Liberica JDK is a free and open source Java Development Kit produced by BellSoft. + It has been verified by TCK for Java SE specs and supports most Linux distributions (including Alpine Linux), Windows, macOS, Solaris. + The Liberica OpenJDK package with the HotSpot Virtual Machine viably replaces Java 8 (LTS), 9, 10, 11 (LTS), 12, 13, 14, 15, 16, 17 (LTS), 18, 19. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/21/21.0.7+9/BellSoft.LibericaJRE.21.yaml b/manifests/b/BellSoft/LibericaJRE/21/21.0.7+9/BellSoft.LibericaJRE.21.yaml new file mode 100644 index 0000000000000..b097da42361b2 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/21/21.0.7+9/BellSoft.LibericaJRE.21.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: BellSoft.LibericaJRE.21 +PackageVersion: 21.0.7+9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/21/Full/21.0.7+9/BellSoft.LibericaJRE.21.Full.installer.yaml b/manifests/b/BellSoft/LibericaJRE/21/Full/21.0.7+9/BellSoft.LibericaJRE.21.Full.installer.yaml new file mode 100644 index 0000000000000..16c033890dc9a --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/21/Full/21.0.7+9/BellSoft.LibericaJRE.21.Full.installer.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.21.Full +PackageVersion: 21.0.7+9 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-04-11 +Installers: +- Architecture: x86 + InstallerUrl: https://download.bell-sw.com/java/21.0.7+9/bellsoft-jre21.0.7+9-windows-i586-full.msi + InstallerSha256: EB0B3884AE4AE4CD1EE52291E351B86C2C475A51655270C9AB19792BB9DB37A8 + ProductCode: '{B69991A7-0781-4071-9274-23DC41B40D90}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 21 Full (32-bit) + DisplayVersion: 21.0.7.9 +- Architecture: x64 + InstallerUrl: https://download.bell-sw.com/java/21.0.7+9/bellsoft-jre21.0.7+9-windows-amd64-full.msi + InstallerSha256: 0B301E8E1CB8A5FB994D035ED7039AE773B800B20B5D00833B3A1091C1FD6BAF + ProductCode: '{D64443BF-9408-480C-A580-B3CF4A94991E}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 21 Full (64-bit) + DisplayVersion: 21.0.7.9 +- Architecture: arm64 + InstallerUrl: https://download.bell-sw.com/java/21.0.7+9/bellsoft-jre21.0.7+9-windows-aarch64-full.msi + InstallerSha256: 1839DBCDAB859A91834EB1A941EDBA21DF02D8357E807552F77C34C9EB776CE1 + ProductCode: '{F67584E0-E175-4519-9EF7-6B10D5E58719}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 21 Full (AArch64) + DisplayVersion: 21.0.7.9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/21/Full/21.0.7+9/BellSoft.LibericaJRE.21.Full.locale.en-US.yaml b/manifests/b/BellSoft/LibericaJRE/21/Full/21.0.7+9/BellSoft.LibericaJRE.21.Full.locale.en-US.yaml new file mode 100644 index 0000000000000..500a15146a88a --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/21/Full/21.0.7+9/BellSoft.LibericaJRE.21.Full.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.21.Full +PackageVersion: 21.0.7+9 +PackageLocale: en-US +Publisher: BellSoft +PublisherUrl: https://bell-sw.com/ +PublisherSupportUrl: https://bell-sw.com/pricing +PrivacyUrl: https://bell-sw.com/privacy-policy +Author: BellSoft +PackageName: Liberica JRE 21 Full +PackageUrl: https://bell-sw.com/pages/downloads +License: GPL 2 with Classpath Exception +LicenseUrl: https://bell-sw.com/liberica_eula +Copyright: Copyright © BellSoft Corporation 2017-2023 +ShortDescription: Liberica JDK is a free and open source Java Development Kit produced by BellSoft. +Description: |- + Liberica JDK is a free and open source Java Development Kit produced by BellSoft. + It has been verified by TCK for Java SE specs and supports most Linux distributions (including Alpine Linux), Windows, macOS, Solaris. + The Liberica OpenJDK package with the HotSpot Virtual Machine viably replaces Java 8 (LTS), 9, 10, 11 (LTS), 12, 13, 14, 15, 16, 17 (LTS), 18, 19. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/21/Full/21.0.7+9/BellSoft.LibericaJRE.21.Full.yaml b/manifests/b/BellSoft/LibericaJRE/21/Full/21.0.7+9/BellSoft.LibericaJRE.21.Full.yaml new file mode 100644 index 0000000000000..880f9a13d7c60 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/21/Full/21.0.7+9/BellSoft.LibericaJRE.21.Full.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: BellSoft.LibericaJRE.21.Full +PackageVersion: 21.0.7+9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/22/22.0.2+11/BellSoft.LibericaJRE.22.installer.yaml b/manifests/b/BellSoft/LibericaJRE/22/22.0.2+11/BellSoft.LibericaJRE.22.installer.yaml new file mode 100644 index 0000000000000..9aa241f6f88bf --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/22/22.0.2+11/BellSoft.LibericaJRE.22.installer.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.22 +PackageVersion: 22.0.2+11 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2024-07-16 +Installers: +- Architecture: x64 + InstallerUrl: https://download.bell-sw.com/java/22.0.2+11/bellsoft-jre22.0.2+11-windows-amd64.msi + InstallerSha256: D950E72780A7957BB284CADCA7CF09D91E188B06BCF78580CDF5C2990043201A + ProductCode: '{BC633478-8897-4A14-89BF-016D759921F3}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 22 (64-bit) + DisplayVersion: 22.0.2.11 + UpgradeCode: '{80D73CB8-1C0F-4B88-9CFE-E5EE110503A1}' +- Architecture: arm64 + InstallerUrl: https://download.bell-sw.com/java/22.0.2+11/bellsoft-jre22.0.2+11-windows-aarch64.msi + InstallerSha256: D3FD25750C6870E4E125846030BFC01EA1DD2A21A1858167FA6BCDB0A47D8A9F + ProductCode: '{2AE463B7-CA35-4491-BDFC-1F8DF482DEF3}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 22 (AArch64) + DisplayVersion: 22.0.2.11 + UpgradeCode: '{C103B608-1F3B-40D2-85E3-3BF548C82203}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/22/22.0.2+11/BellSoft.LibericaJRE.22.locale.en-US.yaml b/manifests/b/BellSoft/LibericaJRE/22/22.0.2+11/BellSoft.LibericaJRE.22.locale.en-US.yaml new file mode 100644 index 0000000000000..b7351fbf22886 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/22/22.0.2+11/BellSoft.LibericaJRE.22.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.22 +PackageVersion: 22.0.2+11 +PackageLocale: en-US +Publisher: BellSoft +PackageName: Liberica JRE 22 +PackageUrl: https://bell-sw.com/pages/downloads +License: GPL-2.0 +LicenseUrl: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +Copyright: Copyright © BellSoft Corporation 2017-2024 +ShortDescription: Liberica JDK is a free and open source Java Development Kit produced by BellSoft. +Description: |- + Liberica JDK is a free and open source Java Development Kit produced by BellSoft. + It has been verified by TCK for Java SE specs and supports most Linux distributions (including Alpine Linux), Windows, macOS, Solaris. + The Liberica OpenJDK package with the HotSpot Virtual Machine viably replaces Java 8 (LTS), 9, 10, 11 (LTS), 12, 13, 14, 15, 16, 17 (LTS), 18, 19. +Tags: +- java +- jre +- runtime +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/22/22.0.2+11/BellSoft.LibericaJRE.22.yaml b/manifests/b/BellSoft/LibericaJRE/22/22.0.2+11/BellSoft.LibericaJRE.22.yaml new file mode 100644 index 0000000000000..a1627d33e0a48 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/22/22.0.2+11/BellSoft.LibericaJRE.22.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: BellSoft.LibericaJRE.22 +PackageVersion: 22.0.2+11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/22/Full/22.0.2+11/BellSoft.LibericaJRE.22.Full.installer.yaml b/manifests/b/BellSoft/LibericaJRE/22/Full/22.0.2+11/BellSoft.LibericaJRE.22.Full.installer.yaml new file mode 100644 index 0000000000000..99c7f7d937390 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/22/Full/22.0.2+11/BellSoft.LibericaJRE.22.Full.installer.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.22.Full +PackageVersion: 22.0.2+11 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2024-07-16 +Installers: +- Architecture: x64 + InstallerUrl: https://download.bell-sw.com/java/22.0.2+11/bellsoft-jre22.0.2+11-windows-amd64-full.msi + InstallerSha256: E76B2165A024EEFC934D35564E851657A16AF53D35012BFBE139C1DCF62922BF + ProductCode: '{0B28C5F6-DF41-4A24-A492-E3F6EAC38A11}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 22 Full (64-bit) + DisplayVersion: 22.0.2.11 + UpgradeCode: '{F91F276D-5396-4F4A-95A9-689CC0270E80}' +- Architecture: arm64 + InstallerUrl: https://download.bell-sw.com/java/22.0.2+11/bellsoft-jre22.0.2+11-windows-aarch64-full.msi + InstallerSha256: 8F0BECFEA5C21F855E12D4FDC59F6C0488307018ACEA9FA2452E0BB95DF6357E + ProductCode: '{A8461A5D-D043-4C31-9AF2-6189B66BA4B5}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 22 Full (AArch64) + DisplayVersion: 22.0.2.11 + UpgradeCode: '{B924B490-395E-4697-A1EE-C99A7DA55DBA}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/22/Full/22.0.2+11/BellSoft.LibericaJRE.22.Full.locale.en-US.yaml b/manifests/b/BellSoft/LibericaJRE/22/Full/22.0.2+11/BellSoft.LibericaJRE.22.Full.locale.en-US.yaml new file mode 100644 index 0000000000000..2cd72f58ff00e --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/22/Full/22.0.2+11/BellSoft.LibericaJRE.22.Full.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.22.Full +PackageVersion: 22.0.2+11 +PackageLocale: en-US +Publisher: BellSoft +PublisherUrl: https://bell-sw.com/ +PackageName: Liberica JRE 22 Full +PackageUrl: https://bell-sw.com/pages/downloads +License: GPL-2.0 +LicenseUrl: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +Copyright: Copyright (c) BellSoft Corporation 2017-2024 +ShortDescription: Liberica JDK is a free and open source Java Development Kit produced by BellSoft. +Description: |- + Liberica JDK is a free and open source Java Development Kit produced by BellSoft. + It has been verified by TCK for Java SE specs and supports most Linux distributions (including Alpine Linux), Windows, macOS, Solaris. + The Liberica OpenJDK package with the HotSpot Virtual Machine viably replaces Java 8 (LTS), 9, 10, 11 (LTS), 12, 13, 14, 15, 16, 17 (LTS), 18, 19. +Tags: +- java +- jre +- runtime +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/22/Full/22.0.2+11/BellSoft.LibericaJRE.22.Full.yaml b/manifests/b/BellSoft/LibericaJRE/22/Full/22.0.2+11/BellSoft.LibericaJRE.22.Full.yaml new file mode 100644 index 0000000000000..315ef28d05146 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/22/Full/22.0.2+11/BellSoft.LibericaJRE.22.Full.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: BellSoft.LibericaJRE.22.Full +PackageVersion: 22.0.2+11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/23/23.0.2+9/BellSoft.LibericaJRE.23.installer.yaml b/manifests/b/BellSoft/LibericaJRE/23/23.0.2+9/BellSoft.LibericaJRE.23.installer.yaml new file mode 100644 index 0000000000000..636f82f7d97df --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/23/23.0.2+9/BellSoft.LibericaJRE.23.installer.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.23 +PackageVersion: 23.0.2+9 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-01-23 +Installers: +- Architecture: x64 + InstallerUrl: https://download.bell-sw.com/java/23.0.2+9/bellsoft-jre23.0.2+9-windows-amd64.msi + InstallerSha256: 8B73AE05A1FEC8409B04BE1355A8B8FD7DE8F2C98DC6BC1E9A437805969E07D7 + ProductCode: '{4B3089B8-1600-4466-89F6-3016D5B9E57C}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 23 (64-bit) + DisplayVersion: 23.0.2.9 + UpgradeCode: '{CDA2C7D0-8941-40F4-A51C-72BBDFCA56AE}' +- Architecture: arm64 + InstallerUrl: https://download.bell-sw.com/java/23.0.2+9/bellsoft-jre23.0.2+9-windows-aarch64.msi + InstallerSha256: 6DD9EE50D5383C5740D9AFC0BECA63399823D7A578FA86BEC3D28DA5CCE3BE34 + ProductCode: '{6DD19CF7-A355-4973-AB5D-D64881BE6B11}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 23 (AArch64) + DisplayVersion: 23.0.2.9 + UpgradeCode: '{731B9C34-630D-40DF-9077-E135ED22A918}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/23/23.0.2+9/BellSoft.LibericaJRE.23.locale.en-US.yaml b/manifests/b/BellSoft/LibericaJRE/23/23.0.2+9/BellSoft.LibericaJRE.23.locale.en-US.yaml new file mode 100644 index 0000000000000..20f0fddef8897 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/23/23.0.2+9/BellSoft.LibericaJRE.23.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.23 +PackageVersion: 23.0.2+9 +PackageLocale: en-US +Publisher: BellSoft +PublisherUrl: https://bell-sw.com/ +PackageName: Liberica JRE 23 +PackageUrl: https://bell-sw.com/pages/downloads +License: GPL-2.0 +LicenseUrl: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +Copyright: Copyright (c) BellSoft Corporation +ShortDescription: Liberica JDK is a free and open source Java Development Kit produced by BellSoft. +Description: |- + Liberica JDK is a free and open source Java Development Kit produced by BellSoft. + It has been verified by TCK for Java SE specs and supports most Linux distributions (including Alpine Linux), Windows, macOS, Solaris. + The Liberica OpenJDK package with the HotSpot Virtual Machine viably replaces Java 8 (LTS), 9, 10, 11 (LTS), 12, 13, 14, 15, 16, 17 (LTS), 18, 19. +Tags: +- java +- jre +- runtime +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/23/23.0.2+9/BellSoft.LibericaJRE.23.yaml b/manifests/b/BellSoft/LibericaJRE/23/23.0.2+9/BellSoft.LibericaJRE.23.yaml new file mode 100644 index 0000000000000..95ecaf9d53ab0 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/23/23.0.2+9/BellSoft.LibericaJRE.23.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: BellSoft.LibericaJRE.23 +PackageVersion: 23.0.2+9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/23/Full/23.0.2+9/BellSoft.LibericaJRE.23.Full.installer.yaml b/manifests/b/BellSoft/LibericaJRE/23/Full/23.0.2+9/BellSoft.LibericaJRE.23.Full.installer.yaml new file mode 100644 index 0000000000000..a9cd7fc6366fc --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/23/Full/23.0.2+9/BellSoft.LibericaJRE.23.Full.installer.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.23.Full +PackageVersion: 23.0.2+9 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-01-23 +Installers: +- Architecture: x64 + InstallerUrl: https://download.bell-sw.com/java/23.0.2+9/bellsoft-jre23.0.2+9-windows-amd64-full.msi + InstallerSha256: E1DCA859B49E251CE4AAFBBBE347DF985C1E6C016A4AEF5F6F88D3A30CE7714A + ProductCode: '{B2898879-BAAA-4544-BC6B-515AFDF3EC5B}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 23 Full (64-bit) + DisplayVersion: 23.0.2.9 + UpgradeCode: '{9309BDF9-910C-4986-BC13-D01842C946B0}' +- Architecture: arm64 + InstallerUrl: https://download.bell-sw.com/java/23.0.2+9/bellsoft-jre23.0.2+9-windows-aarch64-full.msi + InstallerSha256: ACB7961B58784708E1BD8D706D552A077A0A92DE5DC1F0765481124961BC3BA5 + ProductCode: '{C75A2FB1-32B7-4308-8811-7156EAFA74B3}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 23 Full (AArch64) + DisplayVersion: 23.0.2.9 + UpgradeCode: '{E6E3A573-1AED-4AC6-9721-D8F2633BF5D5}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/23/Full/23.0.2+9/BellSoft.LibericaJRE.23.Full.locale.en-US.yaml b/manifests/b/BellSoft/LibericaJRE/23/Full/23.0.2+9/BellSoft.LibericaJRE.23.Full.locale.en-US.yaml new file mode 100644 index 0000000000000..bec11797d530e --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/23/Full/23.0.2+9/BellSoft.LibericaJRE.23.Full.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.23.Full +PackageVersion: 23.0.2+9 +PackageLocale: en-US +Publisher: BellSoft +PublisherUrl: https://bell-sw.com/ +PackageName: Liberica JRE 23 Full +PackageUrl: https://bell-sw.com/pages/downloads +License: GPL-2.0 +LicenseUrl: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +Copyright: Copyright (c) BellSoft Corporation +ShortDescription: Liberica JDK is a free and open source Java Development Kit produced by BellSoft. +Description: |- + Liberica JDK is a free and open source Java Development Kit produced by BellSoft. + It has been verified by TCK for Java SE specs and supports most Linux distributions (including Alpine Linux), Windows, macOS, Solaris. + The Liberica OpenJDK package with the HotSpot Virtual Machine viably replaces Java 8 (LTS), 9, 10, 11 (LTS), 12, 13, 14, 15, 16, 17 (LTS), 18, 19. +Tags: +- java +- jre +- runtime +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/23/Full/23.0.2+9/BellSoft.LibericaJRE.23.Full.yaml b/manifests/b/BellSoft/LibericaJRE/23/Full/23.0.2+9/BellSoft.LibericaJRE.23.Full.yaml new file mode 100644 index 0000000000000..3e665302734c5 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/23/Full/23.0.2+9/BellSoft.LibericaJRE.23.Full.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: BellSoft.LibericaJRE.23.Full +PackageVersion: 23.0.2+9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/24/24.0.1+11/BellSoft.LibericaJRE.24.installer.yaml b/manifests/b/BellSoft/LibericaJRE/24/24.0.1+11/BellSoft.LibericaJRE.24.installer.yaml new file mode 100644 index 0000000000000..27ab7111b1724 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/24/24.0.1+11/BellSoft.LibericaJRE.24.installer.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.24 +PackageVersion: 24.0.1+11 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-04-11 +Installers: +- Architecture: x64 + InstallerUrl: https://download.bell-sw.com/java/24.0.1+11/bellsoft-jre24.0.1+11-windows-amd64.msi + InstallerSha256: 487F428391688F8413A1E46893313E359EE655ACA3E3EEB50D065BC96CB7E931 + ProductCode: '{1929A1CE-1CED-4E22-B89D-E403633B25F9}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 24 (64-bit) + DisplayVersion: 24.0.1.11 + UpgradeCode: '{08F6BD7F-E277-4540-BF06-DEDE190158C1}' +- Architecture: arm64 + InstallerUrl: https://download.bell-sw.com/java/24.0.1+11/bellsoft-jre24.0.1+11-windows-aarch64.msi + InstallerSha256: 29EA602C39803AB7910B53B503019CCE1203A149A5CBA58607DA6B857D293737 + ProductCode: '{A003EB95-2E3F-4167-8EDE-C24D7EF00DA7}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 24 (AArch64) + DisplayVersion: 24.0.1.11 + UpgradeCode: '{380A3132-F8C1-4E24-BB49-6A7DA7A6D462}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/24/24.0.1+11/BellSoft.LibericaJRE.24.locale.en-US.yaml b/manifests/b/BellSoft/LibericaJRE/24/24.0.1+11/BellSoft.LibericaJRE.24.locale.en-US.yaml new file mode 100644 index 0000000000000..07356d1fa711a --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/24/24.0.1+11/BellSoft.LibericaJRE.24.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.24 +PackageVersion: 24.0.1+11 +PackageLocale: en-US +Publisher: BellSoft +PublisherUrl: https://bell-sw.com/ +PackageName: Liberica JRE 24 Full +PackageUrl: https://bell-sw.com/pages/downloads +License: GPL-2.0 +LicenseUrl: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +Copyright: Copyright (c) BellSoft Corporation +ShortDescription: Liberica JDK is a free and open source Java Development Kit produced by BellSoft. +Description: |- + Liberica JDK is a free and open source Java Development Kit produced by BellSoft. + It has been verified by TCK for Java SE specs and supports most Linux distributions (including Alpine Linux), Windows, macOS, Solaris. + The Liberica OpenJDK package with the HotSpot Virtual Machine viably replaces Java 8 (LTS), 9, 10, 11 (LTS), 12, 13, 14, 15, 16, 17 (LTS), 18, 19. +Tags: +- java +- jre +- runtime +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/24/24.0.1+11/BellSoft.LibericaJRE.24.yaml b/manifests/b/BellSoft/LibericaJRE/24/24.0.1+11/BellSoft.LibericaJRE.24.yaml new file mode 100644 index 0000000000000..57790268dd018 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/24/24.0.1+11/BellSoft.LibericaJRE.24.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: BellSoft.LibericaJRE.24 +PackageVersion: 24.0.1+11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/24/Full/24.0.1+11/BellSoft.LibericaJRE.24.Full.installer.yaml b/manifests/b/BellSoft/LibericaJRE/24/Full/24.0.1+11/BellSoft.LibericaJRE.24.Full.installer.yaml new file mode 100644 index 0000000000000..4133f4a850fb7 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/24/Full/24.0.1+11/BellSoft.LibericaJRE.24.Full.installer.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.24.Full +PackageVersion: 24.0.1+11 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-04-11 +Installers: +- Architecture: x64 + InstallerUrl: https://download.bell-sw.com/java/24.0.1+11/bellsoft-jre24.0.1+11-windows-amd64-full.msi + InstallerSha256: 2DF842C232F168F3444FEE1C3A7C15C61B4F36478A8C700D71D381267B65E0A0 + ProductCode: '{B7D8A6C7-0C1F-4B04-B57F-A6F52A5E1D66}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 24 Full (64-bit) + DisplayVersion: 24.0.1.11 + UpgradeCode: '{8ECA12EA-5458-47B4-B10E-230E31436902}' +- Architecture: arm64 + InstallerUrl: https://download.bell-sw.com/java/24.0.1+11/bellsoft-jre24.0.1+11-windows-aarch64-full.msi + InstallerSha256: 667A98CE86EED8919E8BB2776FC92C5E771546A79F9A11D86A9B5CEEABAD9351 + ProductCode: '{59409CBD-B42F-4711-88B5-D2426D1DDE46}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 24 Full (AArch64) + DisplayVersion: 24.0.1.11 + UpgradeCode: '{047578E5-EE48-45CC-89A6-D67EB53A933F}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/24/Full/24.0.1+11/BellSoft.LibericaJRE.24.Full.locale.en-US.yaml b/manifests/b/BellSoft/LibericaJRE/24/Full/24.0.1+11/BellSoft.LibericaJRE.24.Full.locale.en-US.yaml new file mode 100644 index 0000000000000..6016c34692bf9 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/24/Full/24.0.1+11/BellSoft.LibericaJRE.24.Full.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.24.Full +PackageVersion: 24.0.1+11 +PackageLocale: en-US +Publisher: BellSoft +PublisherUrl: https://bell-sw.com/ +PackageName: Liberica JRE 24 Full +PackageUrl: https://bell-sw.com/pages/downloads +License: GPL-2.0 +LicenseUrl: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +Copyright: Copyright (c) BellSoft Corporation +ShortDescription: Liberica JDK is a free and open source Java Development Kit produced by BellSoft. +Description: |- + Liberica JDK is a free and open source Java Development Kit produced by BellSoft. + It has been verified by TCK for Java SE specs and supports most Linux distributions (including Alpine Linux), Windows, macOS, Solaris. + The Liberica OpenJDK package with the HotSpot Virtual Machine viably replaces Java 8 (LTS), 9, 10, 11 (LTS), 12, 13, 14, 15, 16, 17 (LTS), 18, 19. +Tags: +- java +- jre +- runtime +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/24/Full/24.0.1+11/BellSoft.LibericaJRE.24.Full.yaml b/manifests/b/BellSoft/LibericaJRE/24/Full/24.0.1+11/BellSoft.LibericaJRE.24.Full.yaml new file mode 100644 index 0000000000000..6eff3a28e31b1 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/24/Full/24.0.1+11/BellSoft.LibericaJRE.24.Full.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: BellSoft.LibericaJRE.24.Full +PackageVersion: 24.0.1+11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/8/8u452+11/BellSoft.LibericaJRE.8.installer.yaml b/manifests/b/BellSoft/LibericaJRE/8/8u452+11/BellSoft.LibericaJRE.8.installer.yaml new file mode 100644 index 0000000000000..defdeb515c18e --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/8/8u452+11/BellSoft.LibericaJRE.8.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.8 +PackageVersion: 8u452+11 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-04-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download.bell-sw.com/java/8u452+11/bellsoft-jre8u452+11-windows-i586.msi + InstallerSha256: 8CB7530B8BC9EF06A5A5A068FDC724880E91DF06CF4CC6DC84AC457A0BD46766 + ProductCode: '{86D91D7A-4B53-47F3-865C-23FE8C663EBF}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 8 (32-bit) + DisplayVersion: 8.0.452.11 +- Architecture: x64 + InstallerUrl: https://download.bell-sw.com/java/8u452+11/bellsoft-jre8u452+11-windows-amd64.msi + InstallerSha256: 75E2A2DB296DC04B9E4E2E133F563E139E870E9A42FF5CD42C34F9B57038415F + ProductCode: '{1A762830-0CD7-4DED-8F9E-2AD719567F88}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 8 (64-bit) + DisplayVersion: 8.0.452.11 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/8/8u452+11/BellSoft.LibericaJRE.8.locale.en-US.yaml b/manifests/b/BellSoft/LibericaJRE/8/8u452+11/BellSoft.LibericaJRE.8.locale.en-US.yaml new file mode 100644 index 0000000000000..418786cb92877 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/8/8u452+11/BellSoft.LibericaJRE.8.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.8 +PackageVersion: 8u452+11 +PackageLocale: en-US +Publisher: BellSoft +PublisherUrl: https://bell-sw.com/ +PublisherSupportUrl: https://bell-sw.com/pricing +PrivacyUrl: https://bell-sw.com/privacy-policy +Author: BellSoft +PackageName: Liberica JRE 8 +PackageUrl: https://bell-sw.com/pages/downloads +License: GPL-2.0 +Copyright: Copyright © BellSoft Corporation 2017-2023 +ShortDescription: Liberica JDK is a free and open source Java Development Kit produced by BellSoft. +Description: |- + Liberica JDK is a free and open source Java Development Kit produced by BellSoft. + It has been verified by TCK for Java SE specs and supports most Linux distributions (including Alpine Linux), Windows, macOS, Solaris. + The Liberica OpenJDK package with the HotSpot Virtual Machine viably replaces Java 8 (LTS), 9, 10, 11 (LTS), 12, 13, 14, 15, 16, 17 (LTS), 18, 19. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/8/8u452+11/BellSoft.LibericaJRE.8.yaml b/manifests/b/BellSoft/LibericaJRE/8/8u452+11/BellSoft.LibericaJRE.8.yaml new file mode 100644 index 0000000000000..282b6a207e78b --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/8/8u452+11/BellSoft.LibericaJRE.8.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: BellSoft.LibericaJRE.8 +PackageVersion: 8u452+11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/8/Full/8u452+11/BellSoft.LibericaJRE.8.Full.installer.yaml b/manifests/b/BellSoft/LibericaJRE/8/Full/8u452+11/BellSoft.LibericaJRE.8.Full.installer.yaml new file mode 100644 index 0000000000000..1130eab75a794 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/8/Full/8u452+11/BellSoft.LibericaJRE.8.Full.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.8.Full +PackageVersion: 8u452+11 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-04-14 +Installers: +- Architecture: x86 + InstallerUrl: https://download.bell-sw.com/java/8u452+11/bellsoft-jre8u452+11-windows-i586-full.msi + InstallerSha256: F1FB0E6B218D3688D29C0A51D81DF2A89B206FD83B8B83B8B1589AD29541B2D5 + ProductCode: '{37EF786C-5049-4B44-9DFC-A6A62CCA67F3}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 8 Full (32-bit) + DisplayVersion: 8.0.452.11 +- Architecture: x64 + InstallerUrl: https://download.bell-sw.com/java/8u452+11/bellsoft-jre8u452+11-windows-amd64-full.msi + InstallerSha256: C561CB6D37E57536C7D42014372FDC003174C3721761167BE24FA204C70FF257 + ProductCode: '{9EF58384-3ADE-4A21-96BF-9F8981E845FA}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JRE 8 Full (64-bit) + DisplayVersion: 8.0.452.11 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/8/Full/8u452+11/BellSoft.LibericaJRE.8.Full.locale.en-US.yaml b/manifests/b/BellSoft/LibericaJRE/8/Full/8u452+11/BellSoft.LibericaJRE.8.Full.locale.en-US.yaml new file mode 100644 index 0000000000000..4acce0be9ddad --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/8/Full/8u452+11/BellSoft.LibericaJRE.8.Full.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJRE.8.Full +PackageVersion: 8u452+11 +PackageLocale: en-US +Publisher: BellSoft +PublisherUrl: https://bell-sw.com/ +PublisherSupportUrl: https://bell-sw.com/pricing +PrivacyUrl: https://bell-sw.com/privacy-policy +Author: BellSoft +PackageName: Liberica JRE 8 Full +PackageUrl: https://bell-sw.com/pages/downloads +License: GPL 2 with Classpath Exception +LicenseUrl: https://bell-sw.com/liberica_eula +Copyright: Copyright © BellSoft Corporation 2017-2023 +ShortDescription: Liberica JDK is a free and open source Java Development Kit produced by BellSoft. +Description: |- + Liberica JDK is a free and open source Java Development Kit produced by BellSoft. + It has been verified by TCK for Java SE specs and supports most Linux distributions (including Alpine Linux), Windows, macOS, Solaris. + The Liberica OpenJDK package with the HotSpot Virtual Machine viably replaces Java 8 (LTS), 9, 10, 11 (LTS), 12, 13, 14, 15, 16, 17 (LTS), 18, 19. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJRE/8/Full/8u452+11/BellSoft.LibericaJRE.8.Full.yaml b/manifests/b/BellSoft/LibericaJRE/8/Full/8u452+11/BellSoft.LibericaJRE.8.Full.yaml new file mode 100644 index 0000000000000..d7d2c891dfc55 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJRE/8/Full/8u452+11/BellSoft.LibericaJRE.8.Full.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: BellSoft.LibericaJRE.8.Full +PackageVersion: 8u452+11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BenjaminLSR/HandheldCompanion/0.24.1.2/BenjaminLSR.HandheldCompanion.installer.yaml b/manifests/b/BenjaminLSR/HandheldCompanion/0.24.1.2/BenjaminLSR.HandheldCompanion.installer.yaml new file mode 100644 index 0000000000000..4a13e435747e9 --- /dev/null +++ b/manifests/b/BenjaminLSR/HandheldCompanion/0.24.1.2/BenjaminLSR.HandheldCompanion.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BenjaminLSR.HandheldCompanion +PackageVersion: 0.24.1.2 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallerSwitches: + Silent: /SILENT + Custom: /NORESTART /SUPPRESSMSGBOXES +ProductCode: Handheld Companion_is1 +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- ProductCode: Handheld Companion_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Handheld Companion' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Valkirie/HandheldCompanion/releases/download/0.24.1.2/HandheldCompanion-0.24.1.2.exe + InstallerSha256: 81A944AC7E4FA5A49662F22FFFF4F1A3C2875003E9572FCD3372542C32A02346 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BenjaminLSR/HandheldCompanion/0.24.1.2/BenjaminLSR.HandheldCompanion.locale.en-US.yaml b/manifests/b/BenjaminLSR/HandheldCompanion/0.24.1.2/BenjaminLSR.HandheldCompanion.locale.en-US.yaml new file mode 100644 index 0000000000000..3bc68231f87ee --- /dev/null +++ b/manifests/b/BenjaminLSR/HandheldCompanion/0.24.1.2/BenjaminLSR.HandheldCompanion.locale.en-US.yaml @@ -0,0 +1,64 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BenjaminLSR.HandheldCompanion +PackageVersion: 0.24.1.2 +PackageLocale: en-US +Publisher: BenjaminLSR +PublisherUrl: https://github.com/Valkirie +PublisherSupportUrl: https://github.com/Valkirie/HandheldCompanion/issues +Author: Lesueur Benjamin +PackageName: Handheld Companion +PackageUrl: https://github.com/Valkirie/HandheldCompanion +License: CC-NC-SA 4.0 License +LicenseUrl: https://github.com/Valkirie/HandheldCompanion/blob/HEAD/LICENSE.md +Copyright: Copyright @ BenjaminLSR +ShortDescription: ControllerService +Description: A touch optimized GUI to increase your handheld gaming computer experience. +ReleaseNotes: |- + Handheld Companion – Release Notes + 0.24.1.2 – Hotfixes & CPU Architecture Support + Fixed + - Regression in hotkey management introduced in 0.24.0.15 where creating or updating a hotkey overwrote the actions of all other hotkeys. + - Crash with steam active process Fixed an issue causing a crash when Steam platform would call FileWatcher_Changed + Added + - Support for new AMD CPU architectures + - Krackan Point (Ryzen AI 300‑series): Ryzen AI 7 350, Ryzen AI 5 340 + - Strix Halo (Ryzen AI Max 300‑series): Ryzen AI Max⁺ 395, Ryzen AI Max 390, Ryzen AI Max 385, Ryzen AI Max 380 + Improved + - Performance‑manager event handling. + - ScrollViewer touch‑input management. + - Updated LibreHardwareMonitorLib to v0.9.5‑pre419. + 0.24.0.15 – Miscellaneous & Quality‑of‑Life + New + - Suspend on Overlay – Optional setting (Profile page) that pauses the foreground process whenever QuickTools is summoned. + - QuickTools Layouts – Added Top‑Left and Top‑Right docking positions, a slightly smaller window, and a top action bar with an on‑screen keyboard shortcut. + - Controller‑Mode Hotkey overhaul + - Single press: toggle between Gamepad and Desktop modes. + - Double press: enable Automatic mode. + - Layout Mapper – Button → Trigger – Map any button to a trigger action. + Improved + - Controller management + - Better wake‑from‑sleep handling for ROG Ally and MSI Claw. + - Restored compatibility with the Steam Controller. + - Added Xbox/Nintendo layout switch for Gamesir Tarantula Pro. + - Reverted previous Bluetooth‑radio changes to avoid side‑effects. + - Internationalization – Fewer hard‑coded strings; updated Simplified Chinese (Sanhei) and Korean (Hijae Song) translations. + - Lower memory consumption and leak fixes. + - UI polish: theme & color fixes, faster navigation, migrated elements to SettingsCard and SettingsExpander. + - Multi‑screen support for AYANEO Flip DS. + - More reliable foreground‑app detection. + - Toast notifications enabled by default. + - Gamepad‑stick navigation throughout the UI. + Fixed + - Incorrect gamepad‑gyro calibration. + - Missing movement on the 3‑D controller model. + - Broken UI navigation with gamepad in some components and during page transitions. + - Crash on devices without gyro/accelerometer (e.g., ASUS ROG Flow Z13 GZ302). + - Wrong default power profiles on MSI Claw (existing users: delete the ExtremePerformance, Balanced, SuperBattery files in %USERPROFILE%\Documents\HandheldCompanion\powerprofiles). +ReleaseNotesUrl: https://github.com/Valkirie/HandheldCompanion/releases/tag/0.24.1.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/Valkirie/HandheldCompanion/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BenjaminLSR/HandheldCompanion/0.24.1.2/BenjaminLSR.HandheldCompanion.yaml b/manifests/b/BenjaminLSR/HandheldCompanion/0.24.1.2/BenjaminLSR.HandheldCompanion.yaml new file mode 100644 index 0000000000000..5d44772cd12b3 --- /dev/null +++ b/manifests/b/BenjaminLSR/HandheldCompanion/0.24.1.2/BenjaminLSR.HandheldCompanion.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: BenjaminLSR.HandheldCompanion +PackageVersion: 0.24.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Benji377/Tooka/1.0.3/Benji377.Tooka.installer.yaml b/manifests/b/Benji377/Tooka/1.0.3/Benji377.Tooka.installer.yaml new file mode 100644 index 0000000000000..2d56ccdcc48bb --- /dev/null +++ b/manifests/b/Benji377/Tooka/1.0.3/Benji377.Tooka.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Benji377.Tooka +PackageVersion: 1.0.3 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{91C0CD3E-1CAF-4750-8AA0-0E23C5EBDBDB}' +ReleaseDate: 2025-06-21 +AppsAndFeaturesEntries: +- DisplayName: tooka + Publisher: github + ProductCode: '{91C0CD3E-1CAF-4750-8AA0-0E23C5EBDBDB}' + UpgradeCode: '{B208CFF4-76F5-5B86-A6B3-F4B559718821}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\tooka' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/tooka-org/cli/releases/download/v1.0.3/tooka_1.0.3_x64_en-US.msi + InstallerSha256: 0549C3AD50F22D4C8DA1BB1A5D020CD48FF5684BE8334C84AEC95FCDD23140F8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Benji377/Tooka/1.0.3/Benji377.Tooka.locale.en-US.yaml b/manifests/b/Benji377/Tooka/1.0.3/Benji377.Tooka.locale.en-US.yaml new file mode 100644 index 0000000000000..f73f292c43929 --- /dev/null +++ b/manifests/b/Benji377/Tooka/1.0.3/Benji377.Tooka.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Benji377.Tooka +PackageVersion: 1.0.3 +PackageLocale: en-US +Publisher: Benjamin Demetz +PublisherUrl: https://github.com/Benji377/tooka +PublisherSupportUrl: https://github.com/Benji377/tooka/issues +Author: Benjamin Demetz +PackageName: Tooka +PackageUrl: https://tooka.deno.dev/ +License: GPL-3.0 +LicenseUrl: https://github.com/tooka-org/cli/blob/HEAD/LICENSE +ShortDescription: A fast, rule-based CLI tool for organizing your files +Moniker: tooka +Tags: +- command-line +- organizer +- productivity +- sorter +- tooka +- utilities +ReleaseNotes: |- + Release v1.0.3 + ✨ What’s New + - Added new packaging formats + ⚠️ Breaking Changes + None + 📝 Additional Notes + None + 🔗 Full Changelog: View Changelog + ✅ Attestations: View Attestations + Download Tooka +ReleaseNotesUrl: https://github.com/tooka-org/cli/releases/tag/v1.0.3 +Documentations: +- DocumentLabel: GitHub Wiki + DocumentUrl: https://github.com/Benji377/tooka/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Benji377/Tooka/1.0.3/Benji377.Tooka.yaml b/manifests/b/Benji377/Tooka/1.0.3/Benji377.Tooka.yaml new file mode 100644 index 0000000000000..013d271531a89 --- /dev/null +++ b/manifests/b/Benji377/Tooka/1.0.3/Benji377.Tooka.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: Benji377.Tooka +PackageVersion: 1.0.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Benji377/Tooka/1.0.4/Benji377.Tooka.installer.yaml b/manifests/b/Benji377/Tooka/1.0.4/Benji377.Tooka.installer.yaml new file mode 100644 index 0000000000000..0d82dbcbd55b0 --- /dev/null +++ b/manifests/b/Benji377/Tooka/1.0.4/Benji377.Tooka.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Benji377.Tooka +PackageVersion: 1.0.4 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{01A25B05-5B30-419A-AA37-B925F32E135B}' +ReleaseDate: 2025-06-28 +AppsAndFeaturesEntries: +- DisplayName: tooka + Publisher: github + ProductCode: '{01A25B05-5B30-419A-AA37-B925F32E135B}' + UpgradeCode: '{B208CFF4-76F5-5B86-A6B3-F4B559718821}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\tooka' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/tooka-org/tooka/releases/download/v1.0.4/tooka_1.0.4_x64_en-US.msi + InstallerSha256: A69525C07394127782ECC8492BF48B67277743FA3C2679DC342CCB1B8FC5E340 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Benji377/Tooka/1.0.4/Benji377.Tooka.locale.en-US.yaml b/manifests/b/Benji377/Tooka/1.0.4/Benji377.Tooka.locale.en-US.yaml new file mode 100644 index 0000000000000..c0991bc3934ca --- /dev/null +++ b/manifests/b/Benji377/Tooka/1.0.4/Benji377.Tooka.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Benji377.Tooka +PackageVersion: 1.0.4 +PackageLocale: en-US +Publisher: Benjamin Demetz +PublisherUrl: https://github.com/Benji377/tooka +PublisherSupportUrl: https://github.com/Benji377/tooka/issues +Author: Benjamin Demetz +PackageName: Tooka +PackageUrl: https://tooka.deno.dev/ +License: GPL-3.0 +LicenseUrl: https://github.com/tooka-org/tooka/blob/HEAD/LICENSE +ShortDescription: A fast, rule-based CLI tool for organizing your files +Moniker: tooka +Tags: +- command-line +- organizer +- productivity +- sorter +- tooka +- utilities +ReleaseNotes: |- + Release v1.0.4 + ✨ What’s New + - Core and CLI have been merged into one + - Improved performance + - Added working benchmark and tests + ⚠️ Breaking Changes + - Removed rpm and debian repos + - Renamed GitHub repo + 📝 Additional Notes + - Tooka is still available on crates.io + 🔗 Full Changelog: View Changelog + ✅ Attestations: View Attestations + Download Tooka +ReleaseNotesUrl: https://github.com/tooka-org/tooka/releases/tag/v1.0.4 +Documentations: +- DocumentLabel: GitHub Wiki + DocumentUrl: https://github.com/Benji377/tooka/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Benji377/Tooka/1.0.4/Benji377.Tooka.yaml b/manifests/b/Benji377/Tooka/1.0.4/Benji377.Tooka.yaml new file mode 100644 index 0000000000000..1b41c6709b604 --- /dev/null +++ b/manifests/b/Benji377/Tooka/1.0.4/Benji377.Tooka.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: Benji377.Tooka +PackageVersion: 1.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Benji377/Tooka/1.0.5/Benji377.Tooka.installer.yaml b/manifests/b/Benji377/Tooka/1.0.5/Benji377.Tooka.installer.yaml new file mode 100644 index 0000000000000..fe6714351aa16 --- /dev/null +++ b/manifests/b/Benji377/Tooka/1.0.5/Benji377.Tooka.installer.yaml @@ -0,0 +1,23 @@ +# 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: Benji377.Tooka +PackageVersion: 1.0.5 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{264962E3-0CCE-42CB-AECB-7D807C4EC02E}' +ReleaseDate: 2025-07-02 +AppsAndFeaturesEntries: +- DisplayName: tooka + Publisher: github + ProductCode: '{264962E3-0CCE-42CB-AECB-7D807C4EC02E}' + UpgradeCode: '{B208CFF4-76F5-5B86-A6B3-F4B559718821}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\tooka' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/tooka-org/tooka/releases/download/v1.0.5/tooka_1.0.5_x64_en-US.msi + InstallerSha256: D4E8590AFB76AA82A836E3CB07ABFC99668F8A7CCDAE62D8139F8A148ECEEF5B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Benji377/Tooka/1.0.5/Benji377.Tooka.locale.en-US.yaml b/manifests/b/Benji377/Tooka/1.0.5/Benji377.Tooka.locale.en-US.yaml new file mode 100644 index 0000000000000..09e40a87bef31 --- /dev/null +++ b/manifests/b/Benji377/Tooka/1.0.5/Benji377.Tooka.locale.en-US.yaml @@ -0,0 +1,41 @@ +# 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: Benji377.Tooka +PackageVersion: 1.0.5 +PackageLocale: en-US +Publisher: Benjamin Demetz +PublisherUrl: https://github.com/Benji377/tooka +PublisherSupportUrl: https://github.com/Benji377/tooka/issues +Author: Benjamin Demetz +PackageName: Tooka +PackageUrl: https://tooka.deno.dev/ +License: GPL-3.0 +LicenseUrl: https://github.com/tooka-org/tooka/blob/HEAD/LICENSE +ShortDescription: A fast, rule-based CLI tool for organizing your files +Moniker: tooka +Tags: +- command-line +- organizer +- productivity +- sorter +- tooka +- utilities +ReleaseNotes: |- + Release v1.0.5 + ✨ What’s New + - Fixed a config initialization issue + - Made UI more expressive + ⚠️ Breaking Changes + None + 📝 Additional Notes + - Started discussion on yaml crate replacement + 🔗 Full Changelog: View Changelog + ✅ Attestations: View Attestations + Download Tooka +ReleaseNotesUrl: https://github.com/tooka-org/tooka/releases/tag/v1.0.5 +Documentations: +- DocumentLabel: GitHub Wiki + DocumentUrl: https://github.com/Benji377/tooka/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Benji377/Tooka/1.0.5/Benji377.Tooka.yaml b/manifests/b/Benji377/Tooka/1.0.5/Benji377.Tooka.yaml new file mode 100644 index 0000000000000..6c0cc66aafa70 --- /dev/null +++ b/manifests/b/Benji377/Tooka/1.0.5/Benji377.Tooka.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: Benji377.Tooka +PackageVersion: 1.0.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Besware/Artweaver/8/Free/8.0.4.3029/Besware.Artweaver.8.Free.installer.yaml b/manifests/b/Besware/Artweaver/8/Free/8.0.5.3181/Besware.Artweaver.8.Free.installer.yaml similarity index 77% rename from manifests/b/Besware/Artweaver/8/Free/8.0.4.3029/Besware.Artweaver.8.Free.installer.yaml rename to manifests/b/Besware/Artweaver/8/Free/8.0.5.3181/Besware.Artweaver.8.Free.installer.yaml index 7ae9c68a781f9..78d51077099ad 100644 --- a/manifests/b/Besware/Artweaver/8/Free/8.0.4.3029/Besware.Artweaver.8.Free.installer.yaml +++ b/manifests/b/Besware/Artweaver/8/Free/8.0.5.3181/Besware.Artweaver.8.Free.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Besware.Artweaver.8.Free -PackageVersion: 8.0.4.3029 +PackageVersion: 8.0.5.3181 InstallerType: inno Scope: machine UpgradeBehavior: install @@ -19,12 +19,12 @@ FileExtensions: - pbv - plg ProductCode: '{AC97756D-6A81-4E87-B9BD-A54AA26C0ECB}_is1' -ReleaseDate: 2025-04-24 +ReleaseDate: 2025-07-07 AppsAndFeaturesEntries: - DisplayName: Artweaver 8 Installers: - Architecture: x64 InstallerUrl: https://www.artweaver.de/direct/Artweaver.exe - InstallerSha256: 0247F5F84FE0E9FBECE6204AB4EA335385A4A00CC75BC04DED2622BDD1EB5AD6 + InstallerSha256: EDB4AD01008B0D42FB2F679F2B53D6420BC48546754F70DA6C2B8E5A11BFA08E ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/b/Besware/Artweaver/8/Free/8.0.4.3029/Besware.Artweaver.8.Free.locale.en-US.yaml b/manifests/b/Besware/Artweaver/8/Free/8.0.5.3181/Besware.Artweaver.8.Free.locale.en-US.yaml similarity index 80% rename from manifests/b/Besware/Artweaver/8/Free/8.0.4.3029/Besware.Artweaver.8.Free.locale.en-US.yaml rename to manifests/b/Besware/Artweaver/8/Free/8.0.5.3181/Besware.Artweaver.8.Free.locale.en-US.yaml index 0076b18546b7e..27d0c4c907613 100644 --- a/manifests/b/Besware/Artweaver/8/Free/8.0.4.3029/Besware.Artweaver.8.Free.locale.en-US.yaml +++ b/manifests/b/Besware/Artweaver/8/Free/8.0.5.3181/Besware.Artweaver.8.Free.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Besware.Artweaver.8.Free -PackageVersion: 8.0.4.3029 +PackageVersion: 8.0.5.3181 PackageLocale: en-US Publisher: Besware PublisherUrl: https://www.besware.de/ @@ -49,17 +49,15 @@ Tags: - sketching ReleaseNotes: |- This version includes the following fixes - - Fixed error when deleting a custom palette - - Fixed error when restoring documents - - Fixed error when updating layers palette on active document change - - Fixed error when quickly closing right after starting - - Fixed truncated text on some message dialog - - Fixed error when using menu shortcuts - - Fixed error when ungrouping layers - - Fixed error when sending layers backwards - - Fixed error when deleting layer groups - - Fixed error when closing gradient editor dialog -ReleaseNotesUrl: https://www.artweaver.de/en/help/268 + - Fixed error in text tool when changing font during editing + - Fixed error when loading PCX documents + - Fixed error when deleting selected content + - Fixed error when filling selected areas + - Fixed error when painting with soft selections + - Fixed wrong perspective grid show button position + - Fixed error when dragging palettes + - Fixed error when showing window menu +ReleaseNotesUrl: https://www.artweaver.de/en/help/269 PurchaseUrl: https://www.artweaver.de/en/buy Documentations: - DocumentLabel: Documentation diff --git a/manifests/b/Besware/Artweaver/8/Free/8.0.4.3029/Besware.Artweaver.8.Free.locale.zh-CN.yaml b/manifests/b/Besware/Artweaver/8/Free/8.0.5.3181/Besware.Artweaver.8.Free.locale.zh-CN.yaml similarity index 93% rename from manifests/b/Besware/Artweaver/8/Free/8.0.4.3029/Besware.Artweaver.8.Free.locale.zh-CN.yaml rename to manifests/b/Besware/Artweaver/8/Free/8.0.5.3181/Besware.Artweaver.8.Free.locale.zh-CN.yaml index b7dc8407551a9..308e7ed3a007e 100644 --- a/manifests/b/Besware/Artweaver/8/Free/8.0.4.3029/Besware.Artweaver.8.Free.locale.zh-CN.yaml +++ b/manifests/b/Besware/Artweaver/8/Free/8.0.5.3181/Besware.Artweaver.8.Free.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Besware.Artweaver.8.Free -PackageVersion: 8.0.4.3029 +PackageVersion: 8.0.5.3181 PackageLocale: zh-CN License: 免费软件 ShortDescription: 功能全面的绘画工具,配备大量预设的逼真笔刷,既能进行创意绘画也可随意尝试。Artweaver 适合初学者与高阶用户使用。 @@ -36,7 +36,7 @@ Tags: - 绘图 - 绘画 - 艺术 -ReleaseNotesUrl: https://www.artweaver.de/en/help/268 +ReleaseNotesUrl: https://www.artweaver.de/en/help/269 Documentations: - DocumentLabel: 文档 DocumentUrl: https://documentation.artweaver.de/8/en/ diff --git a/manifests/b/Besware/Artweaver/8/Free/8.0.4.3029/Besware.Artweaver.8.Free.yaml b/manifests/b/Besware/Artweaver/8/Free/8.0.5.3181/Besware.Artweaver.8.Free.yaml similarity index 87% rename from manifests/b/Besware/Artweaver/8/Free/8.0.4.3029/Besware.Artweaver.8.Free.yaml rename to manifests/b/Besware/Artweaver/8/Free/8.0.5.3181/Besware.Artweaver.8.Free.yaml index 58f68b7d228c9..3b14430b7ef31 100644 --- a/manifests/b/Besware/Artweaver/8/Free/8.0.4.3029/Besware.Artweaver.8.Free.yaml +++ b/manifests/b/Besware/Artweaver/8/Free/8.0.5.3181/Besware.Artweaver.8.Free.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Besware.Artweaver.8.Free -PackageVersion: 8.0.4.3029 +PackageVersion: 8.0.5.3181 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/b/Besware/Artweaver/8/Plus/8.0.4.3029/Besware.Artweaver.8.Plus.installer.yaml b/manifests/b/Besware/Artweaver/8/Plus/8.0.5.3181/Besware.Artweaver.8.Plus.installer.yaml similarity index 77% rename from manifests/b/Besware/Artweaver/8/Plus/8.0.4.3029/Besware.Artweaver.8.Plus.installer.yaml rename to manifests/b/Besware/Artweaver/8/Plus/8.0.5.3181/Besware.Artweaver.8.Plus.installer.yaml index c761160aff15e..ad29ffc306b65 100644 --- a/manifests/b/Besware/Artweaver/8/Plus/8.0.4.3029/Besware.Artweaver.8.Plus.installer.yaml +++ b/manifests/b/Besware/Artweaver/8/Plus/8.0.5.3181/Besware.Artweaver.8.Plus.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Besware.Artweaver.8.Plus -PackageVersion: 8.0.4.3029 +PackageVersion: 8.0.5.3181 InstallerType: inno Scope: machine UpgradeBehavior: install @@ -19,12 +19,12 @@ FileExtensions: - pbv - plg ProductCode: '{AC97756D-6A81-4E87-B9BD-A54AA26C0ECB}_is1' -ReleaseDate: 2025-04-24 +ReleaseDate: 2025-07-07 AppsAndFeaturesEntries: - DisplayName: Artweaver 8 Installers: - Architecture: x64 InstallerUrl: https://www.artweaver.de/direct/ArtweaverPlus.exe - InstallerSha256: 0247F5F84FE0E9FBECE6204AB4EA335385A4A00CC75BC04DED2622BDD1EB5AD6 + InstallerSha256: EDB4AD01008B0D42FB2F679F2B53D6420BC48546754F70DA6C2B8E5A11BFA08E ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/b/Besware/Artweaver/8/Plus/8.0.4.3029/Besware.Artweaver.8.Plus.locale.en-US.yaml b/manifests/b/Besware/Artweaver/8/Plus/8.0.5.3181/Besware.Artweaver.8.Plus.locale.en-US.yaml similarity index 80% rename from manifests/b/Besware/Artweaver/8/Plus/8.0.4.3029/Besware.Artweaver.8.Plus.locale.en-US.yaml rename to manifests/b/Besware/Artweaver/8/Plus/8.0.5.3181/Besware.Artweaver.8.Plus.locale.en-US.yaml index b9b6e49d51432..885bbbf0f2dee 100644 --- a/manifests/b/Besware/Artweaver/8/Plus/8.0.4.3029/Besware.Artweaver.8.Plus.locale.en-US.yaml +++ b/manifests/b/Besware/Artweaver/8/Plus/8.0.5.3181/Besware.Artweaver.8.Plus.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Besware.Artweaver.8.Plus -PackageVersion: 8.0.4.3029 +PackageVersion: 8.0.5.3181 PackageLocale: en-US Publisher: Besware PublisherUrl: https://www.besware.de/ @@ -49,17 +49,15 @@ Tags: - sketching ReleaseNotes: |- This version includes the following fixes - - Fixed error when deleting a custom palette - - Fixed error when restoring documents - - Fixed error when updating layers palette on active document change - - Fixed error when quickly closing right after starting - - Fixed truncated text on some message dialog - - Fixed error when using menu shortcuts - - Fixed error when ungrouping layers - - Fixed error when sending layers backwards - - Fixed error when deleting layer groups - - Fixed error when closing gradient editor dialog -ReleaseNotesUrl: https://www.artweaver.de/en/help/268 + - Fixed error in text tool when changing font during editing + - Fixed error when loading PCX documents + - Fixed error when deleting selected content + - Fixed error when filling selected areas + - Fixed error when painting with soft selections + - Fixed wrong perspective grid show button position + - Fixed error when dragging palettes + - Fixed error when showing window menu +ReleaseNotesUrl: https://www.artweaver.de/en/help/269 PurchaseUrl: https://www.artweaver.de/en/buy Documentations: - DocumentLabel: Documentation diff --git a/manifests/b/Besware/Artweaver/8/Plus/8.0.4.3029/Besware.Artweaver.8.Plus.locale.zh-CN.yaml b/manifests/b/Besware/Artweaver/8/Plus/8.0.5.3181/Besware.Artweaver.8.Plus.locale.zh-CN.yaml similarity index 93% rename from manifests/b/Besware/Artweaver/8/Plus/8.0.4.3029/Besware.Artweaver.8.Plus.locale.zh-CN.yaml rename to manifests/b/Besware/Artweaver/8/Plus/8.0.5.3181/Besware.Artweaver.8.Plus.locale.zh-CN.yaml index 8f77c00441fef..478699c251fdd 100644 --- a/manifests/b/Besware/Artweaver/8/Plus/8.0.4.3029/Besware.Artweaver.8.Plus.locale.zh-CN.yaml +++ b/manifests/b/Besware/Artweaver/8/Plus/8.0.5.3181/Besware.Artweaver.8.Plus.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Besware.Artweaver.8.Plus -PackageVersion: 8.0.4.3029 +PackageVersion: 8.0.5.3181 PackageLocale: zh-CN License: 专有软件 ShortDescription: 功能全面的绘画工具,配备大量预设的逼真笔刷,既能进行创意绘画也可随意尝试。Artweaver 适合初学者与高阶用户使用。 @@ -36,7 +36,7 @@ Tags: - 绘图 - 绘画 - 艺术 -ReleaseNotesUrl: https://www.artweaver.de/en/help/268 +ReleaseNotesUrl: https://www.artweaver.de/en/help/269 Documentations: - DocumentLabel: 文档 DocumentUrl: https://documentation.artweaver.de/8/en/ diff --git a/manifests/b/Besware/Artweaver/8/Plus/8.0.4.3029/Besware.Artweaver.8.Plus.yaml b/manifests/b/Besware/Artweaver/8/Plus/8.0.5.3181/Besware.Artweaver.8.Plus.yaml similarity index 87% rename from manifests/b/Besware/Artweaver/8/Plus/8.0.4.3029/Besware.Artweaver.8.Plus.yaml rename to manifests/b/Besware/Artweaver/8/Plus/8.0.5.3181/Besware.Artweaver.8.Plus.yaml index 29089ac713de9..7b76ccbd3cd32 100644 --- a/manifests/b/Besware/Artweaver/8/Plus/8.0.4.3029/Besware.Artweaver.8.Plus.yaml +++ b/manifests/b/Besware/Artweaver/8/Plus/8.0.5.3181/Besware.Artweaver.8.Plus.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Besware.Artweaver.8.Plus -PackageVersion: 8.0.4.3029 +PackageVersion: 8.0.5.3181 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.installer.yaml b/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.installer.yaml deleted file mode 100644 index 306cb0eec04be..0000000000000 --- a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.installer.yaml +++ /dev/null @@ -1,64 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Betterbird.Betterbird -PackageVersion: 128.11.0 -InstallerType: nullsoft -Scope: machine -InstallerSwitches: - Silent: /S /PreventRebootRequired=true - SilentWithProgress: /S /PreventRebootRequired=true - InstallLocation: /InstallDirectoryPath="" -UpgradeBehavior: install -Protocols: -- mailto -- mid -- webcal -- webcals -FileExtensions: -- eml -- ics -- wdseml -Installers: -- InstallerLocale: en-US - Architecture: x64 - InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.11.0esr-bb28.en-US.win64.installer.exe - InstallerSha256: 2685032FFA451E153CA29C85E9AD358993ACE749D4B88ADDC1CFD3437782C24D - ProductCode: Betterbird 128.11.0 (x64 en-US) -- InstallerLocale: de - Architecture: x64 - InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.11.0esr-bb28.de.win64.installer.exe - InstallerSha256: 986D8B40ACD3A3571200B031254CE8B606D8A3849AD8F928CE5009BF2A32047F - ProductCode: Betterbird 128.11.0 (x64 de) -- InstallerLocale: es-AR - Architecture: x64 - InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.11.0esr-bb28.es-AR.win64.installer.exe - InstallerSha256: 80B51403362895D3B8D430682C674BA063F8B841C5BB6164673509CD54CFFE6E - ProductCode: Betterbird 128.11.0 (x64 es-AR) -- InstallerLocale: fr - Architecture: x64 - InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.11.0esr-bb28.fr.win64.installer.exe - InstallerSha256: E310DC23FDC420A953B6CD9DEA373961CAE7107F386ACFAE98F8304B1C8388C0 - ProductCode: Betterbird 128.11.0 (x64 fr) -- InstallerLocale: it - Architecture: x64 - InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.11.0esr-bb28.it.win64.installer.exe - InstallerSha256: A65BD2BB5A60617E906ADA397CBB5C77D7200A81845B5CD942587BA15859FC51 - ProductCode: Betterbird 128.11.0 (x64 it) -- InstallerLocale: ja - Architecture: x64 - InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.11.0esr-bb28.ja.win64.installer.exe - InstallerSha256: 07030EF11398169BB9DD3C67CBCF388361900B159A501D7E8B2B9C1958246CDC - ProductCode: Betterbird 128.11.0 (x64 ja) -- InstallerLocale: nl - Architecture: x64 - InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.11.0esr-bb28.nl.win64.installer.exe - InstallerSha256: 7CF0BDD969AFE9AECEF370F5B5B2F92138AE7BE54D891AB57A945A6AF78BAA85 - ProductCode: Betterbird 128.11.0 (x64 nl) -- InstallerLocale: pt-BR - Architecture: x64 - InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.11.0esr-bb28.pt-BR.win64.installer.exe - InstallerSha256: F6DF9450039847AF6D404C256AEC5AFEA81883F5FBFA25CA41CAE6C8618498E2 - ProductCode: Betterbird 128.11.0 (x64 pt-BR) -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.installer.yaml b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.installer.yaml new file mode 100644 index 0000000000000..5101e653b8275 --- /dev/null +++ b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.installer.yaml @@ -0,0 +1,64 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Betterbird.Betterbird +PackageVersion: 128.12.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- mailto +- mid +- webcal +- webcals +FileExtensions: +- eml +- ics +- wdseml +Installers: +- InstallerLocale: en-US + Architecture: x64 + InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.12.0esr-bb30.en-US.win64.installer.exe + InstallerSha256: 4638D28C8EA8CE941BF45ECE2B9A8C6B7067014276C42E054B5D7516FE07A8BB + ProductCode: Betterbird 128.12.0 (x64 en-US) +- InstallerLocale: de + Architecture: x64 + InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.12.0esr-bb30.de.win64.installer.exe + InstallerSha256: 839DF77EB6FDACC0A5C2FC990D57DE4666D2BC34B097BBF529AACDF3713CB95E + ProductCode: Betterbird 128.12.0 (x64 de) +- InstallerLocale: es-AR + Architecture: x64 + InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.12.0esr-bb30.es-AR.win64.installer.exe + InstallerSha256: F94745A519F76EEA95286DAC980CC72BD7534370C6DD492B22EFD9368CAFFCE3 + ProductCode: Betterbird 128.12.0 (x64 es-AR) +- InstallerLocale: fr + Architecture: x64 + InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.12.0esr-bb30.fr.win64.installer.exe + InstallerSha256: 2FD91BEDEB86B89ABAB46252A0BAD62184AFC9346366CB2F441BF62684DA4168 + ProductCode: Betterbird 128.12.0 (x64 fr) +- InstallerLocale: it + Architecture: x64 + InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.12.0esr-bb30.it.win64.installer.exe + InstallerSha256: 4137547BD1F71D3943CC65AAB881DFA34E9DCB97ABC2C0644904D5021EFC22CB + ProductCode: Betterbird 128.12.0 (x64 it) +- InstallerLocale: ja + Architecture: x64 + InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.12.0esr-bb30.ja.win64.installer.exe + InstallerSha256: ED7AB765372F6062E8434892DA213E281370F5CA6730668B9677E881991FDB1C + ProductCode: Betterbird 128.12.0 (x64 ja) +- InstallerLocale: nl + Architecture: x64 + InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.12.0esr-bb30.nl.win64.installer.exe + InstallerSha256: 599A8E5FF8EB84AEF0E6686AD950D649F9B2E8C66392079390D7B039D096F3EB + ProductCode: Betterbird 128.12.0 (x64 nl) +- InstallerLocale: pt-BR + Architecture: x64 + InstallerUrl: https://www.betterbird.eu/downloads/WindowsInstaller/betterbird-128.12.0esr-bb30.pt-BR.win64.installer.exe + InstallerSha256: C85C9191A6F39BB30E9BFE77CC492E965F8C4EDDB1A621C929F10560DB747F11 + ProductCode: Betterbird 128.12.0 (x64 pt-BR) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.de.yaml b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.de.yaml similarity index 91% rename from manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.de.yaml rename to manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.de.yaml index 6a0555dbad4ae..1c2ec04d19c6b 100644 --- a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.de.yaml +++ b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.de.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Betterbird.Betterbird -PackageVersion: 128.11.0 +PackageVersion: 128.12.0 PackageLocale: de ShortDescription: Betterbird ist eine Variante (Fork) von Mozilla Thunderbird, der zusätzliche Features und Bugfixes enthält. ManifestType: locale diff --git a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.en-US.yaml b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.en-US.yaml similarity index 94% rename from manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.en-US.yaml rename to manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.en-US.yaml index 5d40569fdc530..7f1cd68e26f57 100644 --- a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.en-US.yaml +++ b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Betterbird.Betterbird -PackageVersion: 128.11.0 +PackageVersion: 128.12.0 PackageLocale: en-US Publisher: Betterbird Project PublisherUrl: https://www.betterbird.eu/ diff --git a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.es-AR.yaml b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.es-AR.yaml similarity index 91% rename from manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.es-AR.yaml rename to manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.es-AR.yaml index 83c15d6b4c6d0..c784321a019e5 100644 --- a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.es-AR.yaml +++ b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.es-AR.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Betterbird.Betterbird -PackageVersion: 128.11.0 +PackageVersion: 128.12.0 PackageLocale: es-AR ShortDescription: Betterbird es una bifurcación de Mozilla Thunderbird con funciones y correcciones de errores adicionales. ManifestType: locale diff --git a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.fr.yaml b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.fr.yaml similarity index 91% rename from manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.fr.yaml rename to manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.fr.yaml index 70183217ca061..d545ba1afafb5 100644 --- a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.fr.yaml +++ b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.fr.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Betterbird.Betterbird -PackageVersion: 128.11.0 +PackageVersion: 128.12.0 PackageLocale: fr ShortDescription: Betterbird est un fork de Mozilla Thunderbird avec des fonctionnalités et des corrections de bogues supplémentaires. ManifestType: locale diff --git a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.it.yaml b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.it.yaml similarity index 91% rename from manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.it.yaml rename to manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.it.yaml index 3072f0cc6c552..5b85cc14343c4 100644 --- a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.it.yaml +++ b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.it.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Betterbird.Betterbird -PackageVersion: 128.11.0 +PackageVersion: 128.12.0 PackageLocale: it ShortDescription: Betterbird è un fork di Mozilla Thunderbird con funzioni e correzioni di bug aggiuntive. ManifestType: locale diff --git a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.nl.yaml b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.nl.yaml similarity index 90% rename from manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.nl.yaml rename to manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.nl.yaml index 2ab0444a87bbf..34ecfcec2c536 100644 --- a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.nl.yaml +++ b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.nl.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Betterbird.Betterbird -PackageVersion: 128.11.0 +PackageVersion: 128.12.0 PackageLocale: nl ShortDescription: Betterbird is een afsplitsing van Mozilla Thunderbird met extra functies en bugfixes. ManifestType: locale diff --git a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.pt-BR.yaml b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.pt-BR.yaml similarity index 91% rename from manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.pt-BR.yaml rename to manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.pt-BR.yaml index ccf1df25684ea..55789dd4259ef 100644 --- a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.pt-BR.yaml +++ b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.pt-BR.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Betterbird.Betterbird -PackageVersion: 128.11.0 +PackageVersion: 128.12.0 PackageLocale: pt-BR ShortDescription: Betterbird é um fork do Mozilla Thunderbird com recursos e correções de bugs adicionais. ManifestType: locale diff --git a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.zh-CN.yaml b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.zh-CN.yaml similarity index 91% rename from manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.zh-CN.yaml rename to manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.zh-CN.yaml index 12cb1a5dd30b2..cc02c1a01b659 100644 --- a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.locale.zh-CN.yaml +++ b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Betterbird.Betterbird -PackageVersion: 128.11.0 +PackageVersion: 128.12.0 PackageLocale: zh-CN ShortDescription: Betterbird 是 Mozilla Thunderbird 的一个分支,具有额外功能和错误修复。 Tags: diff --git a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.yaml b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.yaml similarity index 88% rename from manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.yaml rename to manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.yaml index ae1a63efa4e80..cd904ca8b6fc5 100644 --- a/manifests/b/Betterbird/Betterbird/128.11.0/Betterbird.Betterbird.yaml +++ b/manifests/b/Betterbird/Betterbird/128.12.0/Betterbird.Betterbird.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Betterbird.Betterbird -PackageVersion: 128.11.0 +PackageVersion: 128.12.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/b/BeyondATC/Client/EarlyAccess/1.6.58/BeyondATC.Client.EarlyAccess.installer.yaml b/manifests/b/BeyondATC/Client/EarlyAccess/1.6.58/BeyondATC.Client.EarlyAccess.installer.yaml new file mode 100644 index 0000000000000..abcb8c1add415 --- /dev/null +++ b/manifests/b/BeyondATC/Client/EarlyAccess/1.6.58/BeyondATC.Client.EarlyAccess.installer.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BeyondATC.Client.EarlyAccess +PackageVersion: 1.6.58 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: BeyondATCInstaller.exe +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{CF88F4D6-A60E-473D-A1D3-ABB5FE336EFA}_is1' +ReleaseDate: 2025-06-27 +AppsAndFeaturesEntries: +- Publisher: Skirmish Mode Games, Inc. + DisplayVersion: 1.6.58.EA + ProductCode: '{CF88F4D6-A60E-473D-A1D3-ABB5FE336EFA}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: C:\BeyondATC +Installers: +- Architecture: x64 + InstallerUrl: https://www.beyondatc.net/_files/archives/95003b_93e9792c4ed6478a9d13b74d15bb43fd.zip?dn=BATC_1.6.58.EA_Installer.zip + InstallerSha256: D2B30125BC01AED5C20360A8B71518538B882497B86BA87A93BE3FDFCBFAF825 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BeyondATC/Client/EarlyAccess/1.6.58/BeyondATC.Client.EarlyAccess.locale.en-US.yaml b/manifests/b/BeyondATC/Client/EarlyAccess/1.6.58/BeyondATC.Client.EarlyAccess.locale.en-US.yaml new file mode 100644 index 0000000000000..a88077a2f756a --- /dev/null +++ b/manifests/b/BeyondATC/Client/EarlyAccess/1.6.58/BeyondATC.Client.EarlyAccess.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BeyondATC.Client.EarlyAccess +PackageVersion: 1.6.58 +PackageLocale: en-US +Publisher: BeyondATC +PublisherUrl: https://www.beyondatc.net/ +PublisherSupportUrl: https://www.beyondatc.net/ +PackageName: BeyondATC Early Access +PackageUrl: https://www.beyondatc.net/ +License: Proprietary +ShortDescription: Realistic ATC for Microsoft Flight Simulator +Moniker: beyond-atc +Tags: +- flight-sim +- msfs +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BeyondATC/Client/EarlyAccess/1.6.58/BeyondATC.Client.EarlyAccess.yaml b/manifests/b/BeyondATC/Client/EarlyAccess/1.6.58/BeyondATC.Client.EarlyAccess.yaml new file mode 100644 index 0000000000000..10bd45b082af0 --- /dev/null +++ b/manifests/b/BeyondATC/Client/EarlyAccess/1.6.58/BeyondATC.Client.EarlyAccess.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: BeyondATC.Client.EarlyAccess +PackageVersion: 1.6.58 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BeyondATC/TrafficMap/1.1.2/BeyondATC.TrafficMap.installer.yaml b/manifests/b/BeyondATC/TrafficMap/1.1.2/BeyondATC.TrafficMap.installer.yaml new file mode 100644 index 0000000000000..f97a3d8ca2d7c --- /dev/null +++ b/manifests/b/BeyondATC/TrafficMap/1.1.2/BeyondATC.TrafficMap.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: BeyondATC.TrafficMap +PackageVersion: 1.1.2 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: nullsoft +NestedInstallerFiles: +- RelativeFilePath: BeyondATC_Traffic_Map_Setup_1.1.2.exe +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: 686582c2-d1e4-5de0-a33c-db166de38e6c +ReleaseDate: 2025-06-10 +AppsAndFeaturesEntries: +- DisplayName: BeyondATC Traffic Map 1.1.2 + ProductCode: 686582c2-d1e4-5de0-a33c-db166de38e6c +Installers: +- Architecture: x64 + InstallerUrl: https://www.beyondatc.net/_files/archives/95003b_55cd52b9c05343cf8a15d3f0a0cdd337.zip?dn=BeyondATC%20Traffic%20Map%20Setup%201.1.2.zip + InstallerSha256: 9F4004D1F4937B23AF9B452EB2F4072E36905B7645A226DED1A73EF94825A90E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BeyondATC/TrafficMap/1.1.2/BeyondATC.TrafficMap.locale.en-US.yaml b/manifests/b/BeyondATC/TrafficMap/1.1.2/BeyondATC.TrafficMap.locale.en-US.yaml new file mode 100644 index 0000000000000..023d45bc6d5df --- /dev/null +++ b/manifests/b/BeyondATC/TrafficMap/1.1.2/BeyondATC.TrafficMap.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: BeyondATC.TrafficMap +PackageVersion: 1.1.2 +PackageLocale: en-US +Publisher: BeyondATC +PublisherUrl: https://www.beyondatc.net/ +PackageName: BeyondATC Traffic Map +PackageUrl: https://www.beyondatc.net/download +License: Proprietary +ShortDescription: You can now check out all the traffic injected into the sim from BATC using this handy traffic map! +Moniker: beyondatc-trafficmap +Tags: +- beyondatc +- flightsim +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BeyondATC/TrafficMap/1.1.2/BeyondATC.TrafficMap.locale.zh-CN.yaml b/manifests/b/BeyondATC/TrafficMap/1.1.2/BeyondATC.TrafficMap.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a29a7e616ec82 --- /dev/null +++ b/manifests/b/BeyondATC/TrafficMap/1.1.2/BeyondATC.TrafficMap.locale.zh-CN.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: BeyondATC.TrafficMap +PackageVersion: 1.1.2 +PackageLocale: zh-CN +Publisher: BeyondATC +PublisherUrl: https://www.beyondatc.net/ +PackageName: BeyondATC Traffic Map +PackageUrl: https://www.beyondatc.net/download +License: 专有软件 +ShortDescription: 现在,您可以使用这张方便的交通地图,查看从 BATC 注入模拟器的所有交通流量! +Tags: +- beyondatc +- flightsim +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BeyondATC/TrafficMap/1.1.2/BeyondATC.TrafficMap.yaml b/manifests/b/BeyondATC/TrafficMap/1.1.2/BeyondATC.TrafficMap.yaml new file mode 100644 index 0000000000000..ce21e8fdbc606 --- /dev/null +++ b/manifests/b/BeyondATC/TrafficMap/1.1.2/BeyondATC.TrafficMap.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: BeyondATC.TrafficMap +PackageVersion: 1.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bilibili/Bcut/3.5.2/Bilibili.Bcut.installer.yaml b/manifests/b/Bilibili/Bcut/3.5.2/Bilibili.Bcut.installer.yaml deleted file mode 100644 index c3030ffc2199e..0000000000000 --- a/manifests/b/Bilibili/Bcut/3.5.2/Bilibili.Bcut.installer.yaml +++ /dev/null @@ -1,17 +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: Bilibili.Bcut -PackageVersion: 3.5.2 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -Protocols: -- bcut -ProductCode: 必剪_is1 -Installers: -- Architecture: x64 - InstallerUrl: https://boss.hdslb.com/material/static/229d4e09b77cb75a88aed4c32c3afe92/Bcut-Win-3.5.2.exe - InstallerSha256: D7D2EF5BD80D31E8F35D51372C30A5D6663EE5CC5A0D6DD90876C41C33BC57FA -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/b/Bilibili/Bcut/3.5.2/Bilibili.Bcut.locale.en-US.yaml b/manifests/b/Bilibili/Bcut/3.5.2/Bilibili.Bcut.locale.en-US.yaml deleted file mode 100644 index b1717d9a91dd9..0000000000000 --- a/manifests/b/Bilibili/Bcut/3.5.2/Bilibili.Bcut.locale.en-US.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: Bilibili.Bcut -PackageVersion: 3.5.2 -PackageLocale: en-US -Publisher: 上海哔哩哔哩动画有限公司 -PublisherUrl: https://www.bilibili.com/ -PublisherSupportUrl: https://www.bilibili.com/v/customer-service -PrivacyUrl: https://www.bilibili.com/blackboard/activity-GpejgaRvl5.html -Author: Shanghai Magic Electric Information Technology Co., Ltd. -PackageName: 必剪 -PackageUrl: https://bcut.bilibili.cn/ -License: Proprietary -LicenseUrl: https://www.bilibili.com/blackboard/bcut/activity-fwyT3DYfq4.html -Copyright: © 2009-2023 BILIBILI ALL RIGHTS RESERVED -CopyrightUrl: https://www.bilibili.com/blackboard/bcut/activity-fwyT3DYfq4.html -ShortDescription: A popular clipping tool for the uploaders -Tags: -- clip -- creative -- creativity -- edit -- editor -- film -- movie -- video -- video-editing -- video-editor -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/b/Bilibili/Bcut/3.5.2/Bilibili.Bcut.locale.zh-CN.yaml b/manifests/b/Bilibili/Bcut/3.5.2/Bilibili.Bcut.locale.zh-CN.yaml deleted file mode 100644 index d694bf2a9c656..0000000000000 --- a/manifests/b/Bilibili/Bcut/3.5.2/Bilibili.Bcut.locale.zh-CN.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json - -PackageIdentifier: Bilibili.Bcut -PackageVersion: 3.5.2 -PackageLocale: zh-CN -Publisher: 上海哔哩哔哩动画有限公司 -PublisherUrl: https://www.bilibili.com/ -PublisherSupportUrl: https://www.bilibili.com/v/customer-service -PrivacyUrl: https://www.bilibili.com/blackboard/activity-GpejgaRvl5.html -Author: 上海幻电信息科技有限公司 -PackageName: 必剪 -PackageUrl: https://bcut.bilibili.cn/ -License: 专有软件 -LicenseUrl: https://www.bilibili.com/blackboard/bcut/activity-fwyT3DYfq4.html -Copyright: © 2009-2023 BILIBILI ALL RIGHTS RESERVED -CopyrightUrl: https://www.bilibili.com/blackboard/bcut/activity-fwyT3DYfq4.html -ShortDescription: UP 主都在用的剪辑神器 -Tags: -- 创意 -- 剪辑 -- 影片 -- 电影 -- 视频 -- 视频编辑 -- 视频编辑器 -- 编辑 -- 编辑器 -ManifestType: locale -ManifestVersion: 1.9.0 diff --git a/manifests/b/Bilibili/Bcut/3.5.2/Bilibili.Bcut.yaml b/manifests/b/Bilibili/Bcut/3.5.2/Bilibili.Bcut.yaml deleted file mode 100644 index 7674350175a6c..0000000000000 --- a/manifests/b/Bilibili/Bcut/3.5.2/Bilibili.Bcut.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: Bilibili.Bcut -PackageVersion: 3.5.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/b/Bilibili/Bcut/3.5.3/Bilibili.Bcut.installer.yaml b/manifests/b/Bilibili/Bcut/3.5.3/Bilibili.Bcut.installer.yaml new file mode 100644 index 0000000000000..ace6fdaa78551 --- /dev/null +++ b/manifests/b/Bilibili/Bcut/3.5.3/Bilibili.Bcut.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Bilibili.Bcut +PackageVersion: 3.5.3 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- bcut +ProductCode: 必剪_is1 +Installers: +- Architecture: x64 + InstallerUrl: https://boss.hdslb.com/bcut_pc_pkg/static/f9b34aeb64c7dbfa2ccc5d285c078ce6/Bcut-Win.exe + InstallerSha256: B05FA554C971F113D59321FBFEFE6F58A3609FBF71B5F8251FFADB3F94BE98D5 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-19 diff --git a/manifests/b/Bilibili/Bcut/3.5.3/Bilibili.Bcut.locale.en-US.yaml b/manifests/b/Bilibili/Bcut/3.5.3/Bilibili.Bcut.locale.en-US.yaml new file mode 100644 index 0000000000000..5fd0b4da3228f --- /dev/null +++ b/manifests/b/Bilibili/Bcut/3.5.3/Bilibili.Bcut.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Bilibili.Bcut +PackageVersion: 3.5.3 +PackageLocale: en-US +Publisher: 上海哔哩哔哩动画有限公司 +PublisherUrl: https://www.bilibili.com/ +PublisherSupportUrl: https://www.bilibili.com/v/customer-service +PrivacyUrl: https://www.bilibili.com/blackboard/activity-GpejgaRvl5.html +Author: Shanghai Magic Electric Information Technology Co., Ltd. +PackageName: 必剪 +PackageUrl: https://bcut.bilibili.cn/ +License: Proprietary +LicenseUrl: https://www.bilibili.com/blackboard/bcut/activity-fwyT3DYfq4.html +Copyright: © 2009-2023 BILIBILI ALL RIGHTS RESERVED +CopyrightUrl: https://www.bilibili.com/blackboard/bcut/activity-fwyT3DYfq4.html +ShortDescription: A popular clipping tool for the uploaders +Tags: +- clip +- creative +- creativity +- edit +- editor +- film +- movie +- video +- video-editing +- video-editor +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/b/Bilibili/Bcut/3.5.3/Bilibili.Bcut.locale.zh-CN.yaml b/manifests/b/Bilibili/Bcut/3.5.3/Bilibili.Bcut.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b1fb3e23b3a31 --- /dev/null +++ b/manifests/b/Bilibili/Bcut/3.5.3/Bilibili.Bcut.locale.zh-CN.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: Bilibili.Bcut +PackageVersion: 3.5.3 +PackageLocale: zh-CN +Publisher: 上海哔哩哔哩动画有限公司 +PublisherUrl: https://www.bilibili.com/ +PublisherSupportUrl: https://www.bilibili.com/v/customer-service +PrivacyUrl: https://www.bilibili.com/blackboard/activity-GpejgaRvl5.html +Author: 上海幻电信息科技有限公司 +PackageName: 必剪 +PackageUrl: https://bcut.bilibili.cn/ +License: 专有软件 +LicenseUrl: https://www.bilibili.com/blackboard/bcut/activity-fwyT3DYfq4.html +Copyright: © 2009-2023 BILIBILI ALL RIGHTS RESERVED +CopyrightUrl: https://www.bilibili.com/blackboard/bcut/activity-fwyT3DYfq4.html +ShortDescription: UP 主都在用的剪辑神器 +Tags: +- 创意 +- 剪辑 +- 影片 +- 电影 +- 视频 +- 视频编辑 +- 视频编辑器 +- 编辑 +- 编辑器 +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/b/Bilibili/Bcut/3.5.3/Bilibili.Bcut.yaml b/manifests/b/Bilibili/Bcut/3.5.3/Bilibili.Bcut.yaml new file mode 100644 index 0000000000000..e19b2ecca2c8a --- /dev/null +++ b/manifests/b/Bilibili/Bcut/3.5.3/Bilibili.Bcut.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: Bilibili.Bcut +PackageVersion: 3.5.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/b/Bilibili/Bcut/3.5.4/Bilibili.Bcut.installer.yaml b/manifests/b/Bilibili/Bcut/3.5.4/Bilibili.Bcut.installer.yaml new file mode 100644 index 0000000000000..d0a8d352bc238 --- /dev/null +++ b/manifests/b/Bilibili/Bcut/3.5.4/Bilibili.Bcut.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Bilibili.Bcut +PackageVersion: 3.5.4 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- bcut +ProductCode: 必剪_is1 +Installers: +- Architecture: x86 + InstallerUrl: https://boss.hdslb.com/bcut_pc_pkg/static/3ef8339b1cea74a1832b5eecf4bdef0f/Bcut-Win-3.5.4.exe + InstallerSha256: 76136A5E885B486FED3BF27A8B9C3C02382B4BC12A313AC4DFED30ECE2B09E64 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/b/Bilibili/Bcut/3.5.4/Bilibili.Bcut.locale.en-US.yaml b/manifests/b/Bilibili/Bcut/3.5.4/Bilibili.Bcut.locale.en-US.yaml new file mode 100644 index 0000000000000..b51fc0b47ee1b --- /dev/null +++ b/manifests/b/Bilibili/Bcut/3.5.4/Bilibili.Bcut.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Bilibili.Bcut +PackageVersion: 3.5.4 +PackageLocale: en-US +Publisher: 上海哔哩哔哩动画有限公司 +PublisherUrl: https://www.bilibili.com/ +PublisherSupportUrl: https://www.bilibili.com/v/customer-service +PrivacyUrl: https://www.bilibili.com/blackboard/activity-GpejgaRvl5.html +Author: Shanghai Magic Electric Information Technology Co., Ltd. +PackageName: 必剪 +PackageUrl: https://bcut.bilibili.cn/ +License: Proprietary +LicenseUrl: https://www.bilibili.com/blackboard/bcut/activity-fwyT3DYfq4.html +Copyright: © 2009-2023 BILIBILI ALL RIGHTS RESERVED +CopyrightUrl: https://www.bilibili.com/blackboard/bcut/activity-fwyT3DYfq4.html +ShortDescription: A popular clipping tool for the uploaders +Tags: +- clip +- creative +- creativity +- edit +- editor +- film +- movie +- video +- video-editing +- video-editor +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/b/Bilibili/Bcut/3.5.4/Bilibili.Bcut.locale.zh-CN.yaml b/manifests/b/Bilibili/Bcut/3.5.4/Bilibili.Bcut.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cb4691a04d0cd --- /dev/null +++ b/manifests/b/Bilibili/Bcut/3.5.4/Bilibili.Bcut.locale.zh-CN.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: Bilibili.Bcut +PackageVersion: 3.5.4 +PackageLocale: zh-CN +Publisher: 上海哔哩哔哩动画有限公司 +PublisherUrl: https://www.bilibili.com/ +PublisherSupportUrl: https://www.bilibili.com/v/customer-service +PrivacyUrl: https://www.bilibili.com/blackboard/activity-GpejgaRvl5.html +Author: 上海幻电信息科技有限公司 +PackageName: 必剪 +PackageUrl: https://bcut.bilibili.cn/ +License: 专有软件 +LicenseUrl: https://www.bilibili.com/blackboard/bcut/activity-fwyT3DYfq4.html +Copyright: © 2009-2023 BILIBILI ALL RIGHTS RESERVED +CopyrightUrl: https://www.bilibili.com/blackboard/bcut/activity-fwyT3DYfq4.html +ShortDescription: UP 主都在用的剪辑神器 +Tags: +- 创意 +- 剪辑 +- 影片 +- 电影 +- 视频 +- 视频编辑 +- 视频编辑器 +- 编辑 +- 编辑器 +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/b/Bilibili/Bcut/3.5.4/Bilibili.Bcut.yaml b/manifests/b/Bilibili/Bcut/3.5.4/Bilibili.Bcut.yaml new file mode 100644 index 0000000000000..a6a66483b7765 --- /dev/null +++ b/manifests/b/Bilibili/Bcut/3.5.4/Bilibili.Bcut.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: Bilibili.Bcut +PackageVersion: 3.5.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/b/Bilibili/Bcut/beta/Bilibili.Bcut.installer.yaml b/manifests/b/Bilibili/Bcut/beta/Bilibili.Bcut.installer.yaml index aafd98a2034fa..91037e4af1945 100644 --- a/manifests/b/Bilibili/Bcut/beta/Bilibili.Bcut.installer.yaml +++ b/manifests/b/Bilibili/Bcut/beta/Bilibili.Bcut.installer.yaml @@ -11,7 +11,7 @@ Protocols: ProductCode: 必剪_is1 Installers: - Architecture: x64 - InstallerUrl: https://boss.hdslb.com/bcut_pc_pkg/static/f9b34aeb64c7dbfa2ccc5d285c078ce6/Bcut-Win.exe - InstallerSha256: B05FA554C971F113D59321FBFEFE6F58A3609FBF71B5F8251FFADB3F94BE98D5 + InstallerUrl: https://boss.hdslb.com/bcut_pc_pkg/static/3ef8339b1cea74a1832b5eecf4bdef0f/Bcut-Win-3.5.4.exe + InstallerSha256: 76136A5E885B486FED3BF27A8B9C3C02382B4BC12A313AC4DFED30ECE2B09E64 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/b/Bilibili/Bcut/beta/Bilibili.Bcut.locale.zh-CN.yaml b/manifests/b/Bilibili/Bcut/beta/Bilibili.Bcut.locale.zh-CN.yaml index bb6f3db4ebac2..0ca0b9448898e 100644 --- a/manifests/b/Bilibili/Bcut/beta/Bilibili.Bcut.locale.zh-CN.yaml +++ b/manifests/b/Bilibili/Bcut/beta/Bilibili.Bcut.locale.zh-CN.yaml @@ -26,6 +26,8 @@ Tags: - 视频编辑器 - 编辑 - 编辑器 -ReleaseNotes: 【优化】优化产品体验,修复若干问题 +ReleaseNotes: |- + 【音色克隆】上线即时音色克隆功能,快速克隆你的专属音色! + 【优化】优化产品体验,修复若干问题 ManifestType: locale ManifestVersion: 1.10.0 diff --git a/manifests/b/Bilibili/Livehime/7.16.0.9240/Bilibili.Livehime.installer.yaml b/manifests/b/Bilibili/Livehime/7.16.0.9240/Bilibili.Livehime.installer.yaml new file mode 100644 index 0000000000000..065c46f968a26 --- /dev/null +++ b/manifests/b/Bilibili/Livehime/7.16.0.9240/Bilibili.Livehime.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: Bilibili.Livehime +PackageVersion: 7.16.0.9240 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- livehime +ProductCode: '{06BB8CDE-F4AC-4B22-A680-0F3699CB9912}_is1' +Installers: +- Architecture: x64 + InstallerUrl: https://dl.hdslb.com/bili/bililive/win/Livehime-Win-beta-7.16.0.9240-x64.exe + InstallerSha256: 605404D43A7B3EA36F49224F02511F31FD45A1C42DA42AA93A3D78272A7273B1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bilibili/Livehime/7.16.0.9240/Bilibili.Livehime.locale.en-US.yaml b/manifests/b/Bilibili/Livehime/7.16.0.9240/Bilibili.Livehime.locale.en-US.yaml new file mode 100644 index 0000000000000..d112c707cf046 --- /dev/null +++ b/manifests/b/Bilibili/Livehime/7.16.0.9240/Bilibili.Livehime.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Bilibili.Livehime +PackageVersion: 7.16.0.9240 +PackageLocale: en-US +Publisher: 上海幻电信息科技有限公司 +PublisherUrl: https://live.bilibili.com +PublisherSupportUrl: https://link.bilibili.com/p/help/ +PrivacyUrl: https://www.bilibili.com/blackboard/live/mobilelink-provacypolicy.html +Author: Shanghai Magic Electric Information Technology Co., Ltd. +PackageName: 哔哩哔哩直播姬 +PackageUrl: https://live.bilibili.com/liveHime +License: Freeware +LicenseUrl: https://www.bilibili.com/blackboard/live/activity-dLUnpNZEM1.html +Copyright: Copyright (C) 2024 Shanghai Magic Electric Information Technology Co., Ltd. All Right Reserved. +ShortDescription: Bilibili Live official live streaming tool +Description: Bilibili Livehime is a live streaming tool for Bilibili streamers and uploaders that focuses on games, entertainment and voice chat. +Tags: +- broadcasting +- live +- live-streaming +- livestreaming +- screencasting +- streaming +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bilibili/Livehime/7.16.0.9240/Bilibili.Livehime.locale.zh-CN.yaml b/manifests/b/Bilibili/Livehime/7.16.0.9240/Bilibili.Livehime.locale.zh-CN.yaml new file mode 100644 index 0000000000000..141ac6e64a659 --- /dev/null +++ b/manifests/b/Bilibili/Livehime/7.16.0.9240/Bilibili.Livehime.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: Bilibili.Livehime +PackageVersion: 7.16.0.9240 +PackageLocale: zh-CN +Publisher: 上海幻电信息科技有限公司 +PublisherUrl: https://live.bilibili.com +PublisherSupportUrl: https://link.bilibili.com/p/help/ +PrivacyUrl: https://www.bilibili.com/blackboard/live/mobilelink-provacypolicy.html +Author: 上海幻电信息科技有限公司 +PackageName: 哔哩哔哩直播姬 +PackageUrl: https://live.bilibili.com/liveHime +License: 免费软件 +LicenseUrl: https://www.bilibili.com/blackboard/live/activity-dLUnpNZEM1.html +Copyright: Copyright (C) 2024 上海幻电信息科技有限公司. All Right Reserved. +ShortDescription: 哔哩哔哩直播官方直播软件 +Description: 哔哩哔哩直播姬是哔哩哔哩独家为主播和 UP 主们打造的开播软件,集游戏、娱乐、语音开播为一体。一键即可开播,下一个直播届的超级偶像就是你~ +Tags: +- 推流 +- 直播 +ReleaseNotes: |- + 【优化】礼物动画解码支持硬件加速 + 【优化】已知问题优化 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bilibili/Livehime/7.16.0.9240/Bilibili.Livehime.yaml b/manifests/b/Bilibili/Livehime/7.16.0.9240/Bilibili.Livehime.yaml new file mode 100644 index 0000000000000..52738a98b7e13 --- /dev/null +++ b/manifests/b/Bilibili/Livehime/7.16.0.9240/Bilibili.Livehime.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: Bilibili.Livehime +PackageVersion: 7.16.0.9240 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bilibili/Livehime/7.17.0.9343/Bilibili.Livehime.installer.yaml b/manifests/b/Bilibili/Livehime/7.17.0.9343/Bilibili.Livehime.installer.yaml new file mode 100644 index 0000000000000..1792c1e41627b --- /dev/null +++ b/manifests/b/Bilibili/Livehime/7.17.0.9343/Bilibili.Livehime.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: Bilibili.Livehime +PackageVersion: 7.17.0.9343 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- livehime +ProductCode: '{06BB8CDE-F4AC-4B22-A680-0F3699CB9912}_is1' +Installers: +- Architecture: x64 + InstallerUrl: https://dl.hdslb.com/bili/bililive/win/Livehime-Win-beta-7.17.0.9343-x64.exe + InstallerSha256: C565AAB2EFB1FAD3AEB35C6129E870AC1C063D5CFBAB9B88FA1EA38354D9C047 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bilibili/Livehime/7.17.0.9343/Bilibili.Livehime.locale.en-US.yaml b/manifests/b/Bilibili/Livehime/7.17.0.9343/Bilibili.Livehime.locale.en-US.yaml new file mode 100644 index 0000000000000..5662dd1d693e3 --- /dev/null +++ b/manifests/b/Bilibili/Livehime/7.17.0.9343/Bilibili.Livehime.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Bilibili.Livehime +PackageVersion: 7.17.0.9343 +PackageLocale: en-US +Publisher: 上海幻电信息科技有限公司 +PublisherUrl: https://live.bilibili.com +PublisherSupportUrl: https://link.bilibili.com/p/help/ +PrivacyUrl: https://www.bilibili.com/blackboard/live/mobilelink-provacypolicy.html +Author: Shanghai Magic Electric Information Technology Co., Ltd. +PackageName: 哔哩哔哩直播姬 +PackageUrl: https://live.bilibili.com/liveHime +License: Freeware +LicenseUrl: https://www.bilibili.com/blackboard/live/activity-dLUnpNZEM1.html +Copyright: Copyright (C) 2024 Shanghai Magic Electric Information Technology Co., Ltd. All Right Reserved. +ShortDescription: Bilibili Live official live streaming tool +Description: Bilibili Livehime is a live streaming tool for Bilibili streamers and uploaders that focuses on games, entertainment and voice chat. +Tags: +- broadcasting +- live +- live-streaming +- livestreaming +- screencasting +- streaming +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bilibili/Livehime/7.17.0.9343/Bilibili.Livehime.locale.zh-CN.yaml b/manifests/b/Bilibili/Livehime/7.17.0.9343/Bilibili.Livehime.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9fb761bda33a3 --- /dev/null +++ b/manifests/b/Bilibili/Livehime/7.17.0.9343/Bilibili.Livehime.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: Bilibili.Livehime +PackageVersion: 7.17.0.9343 +PackageLocale: zh-CN +Publisher: 上海幻电信息科技有限公司 +PublisherUrl: https://live.bilibili.com +PublisherSupportUrl: https://link.bilibili.com/p/help/ +PrivacyUrl: https://www.bilibili.com/blackboard/live/mobilelink-provacypolicy.html +Author: 上海幻电信息科技有限公司 +PackageName: 哔哩哔哩直播姬 +PackageUrl: https://live.bilibili.com/liveHime +License: 免费软件 +LicenseUrl: https://www.bilibili.com/blackboard/live/activity-dLUnpNZEM1.html +Copyright: Copyright (C) 2024 上海幻电信息科技有限公司. All Right Reserved. +ShortDescription: 哔哩哔哩直播官方直播软件 +Description: 哔哩哔哩直播姬是哔哩哔哩独家为主播和 UP 主们打造的开播软件,集游戏、娱乐、语音开播为一体。一键即可开播,下一个直播届的超级偶像就是你~ +Tags: +- 推流 +- 直播 +ReleaseNotes: |- + 【新增】 观众连麦支持 1v1 视频互动啦,观众可打开摄像头与主播连麦 + 【优化】已知问题修复 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bilibili/Livehime/7.17.0.9343/Bilibili.Livehime.yaml b/manifests/b/Bilibili/Livehime/7.17.0.9343/Bilibili.Livehime.yaml new file mode 100644 index 0000000000000..ff1ffae4dadf4 --- /dev/null +++ b/manifests/b/Bilibili/Livehime/7.17.0.9343/Bilibili.Livehime.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: Bilibili.Livehime +PackageVersion: 7.17.0.9343 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bilibili/Livehime/7.18.0.9388/Bilibili.Livehime.installer.yaml b/manifests/b/Bilibili/Livehime/7.18.0.9388/Bilibili.Livehime.installer.yaml new file mode 100644 index 0000000000000..ae6d4aea7f0a4 --- /dev/null +++ b/manifests/b/Bilibili/Livehime/7.18.0.9388/Bilibili.Livehime.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: Bilibili.Livehime +PackageVersion: 7.18.0.9388 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- livehime +ProductCode: '{06BB8CDE-F4AC-4B22-A680-0F3699CB9912}_is1' +Installers: +- Architecture: x64 + InstallerUrl: https://dl.hdslb.com/bili/bililive/win/Livehime-Win-beta-7.18.0.9388-x64.exe + InstallerSha256: B92ED660F2C2AF51FD016364D1AA100261F6D6986530454FB78D469EA085A2CE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bilibili/Livehime/7.18.0.9388/Bilibili.Livehime.locale.en-US.yaml b/manifests/b/Bilibili/Livehime/7.18.0.9388/Bilibili.Livehime.locale.en-US.yaml new file mode 100644 index 0000000000000..447bc5b95c760 --- /dev/null +++ b/manifests/b/Bilibili/Livehime/7.18.0.9388/Bilibili.Livehime.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Bilibili.Livehime +PackageVersion: 7.18.0.9388 +PackageLocale: en-US +Publisher: 上海幻电信息科技有限公司 +PublisherUrl: https://live.bilibili.com +PublisherSupportUrl: https://link.bilibili.com/p/help/ +PrivacyUrl: https://www.bilibili.com/blackboard/live/mobilelink-provacypolicy.html +Author: Shanghai Magic Electric Information Technology Co., Ltd. +PackageName: 哔哩哔哩直播姬 +PackageUrl: https://live.bilibili.com/liveHime +License: Freeware +LicenseUrl: https://www.bilibili.com/blackboard/live/activity-dLUnpNZEM1.html +Copyright: Copyright (C) 2024 Shanghai Magic Electric Information Technology Co., Ltd. All Right Reserved. +ShortDescription: Bilibili Live official live streaming tool +Description: Bilibili Livehime is a live streaming tool for Bilibili streamers and uploaders that focuses on games, entertainment and voice chat. +Tags: +- broadcasting +- live +- live-streaming +- livestreaming +- screencasting +- streaming +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bilibili/Livehime/7.18.0.9388/Bilibili.Livehime.locale.zh-CN.yaml b/manifests/b/Bilibili/Livehime/7.18.0.9388/Bilibili.Livehime.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c2f8649edb0ab --- /dev/null +++ b/manifests/b/Bilibili/Livehime/7.18.0.9388/Bilibili.Livehime.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: Bilibili.Livehime +PackageVersion: 7.18.0.9388 +PackageLocale: zh-CN +Publisher: 上海幻电信息科技有限公司 +PublisherUrl: https://live.bilibili.com +PublisherSupportUrl: https://link.bilibili.com/p/help/ +PrivacyUrl: https://www.bilibili.com/blackboard/live/mobilelink-provacypolicy.html +Author: 上海幻电信息科技有限公司 +PackageName: 哔哩哔哩直播姬 +PackageUrl: https://live.bilibili.com/liveHime +License: 免费软件 +LicenseUrl: https://www.bilibili.com/blackboard/live/activity-dLUnpNZEM1.html +Copyright: Copyright (C) 2024 上海幻电信息科技有限公司. All Right Reserved. +ShortDescription: 哔哩哔哩直播官方直播软件 +Description: 哔哩哔哩直播姬是哔哩哔哩独家为主播和 UP 主们打造的开播软件,集游戏、娱乐、语音开播为一体。一键即可开播,下一个直播届的超级偶像就是你~ +Tags: +- 推流 +- 直播 +ReleaseNotes: 已知问题修复 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bilibili/Livehime/7.18.0.9388/Bilibili.Livehime.yaml b/manifests/b/Bilibili/Livehime/7.18.0.9388/Bilibili.Livehime.yaml new file mode 100644 index 0000000000000..873188cf5c7a2 --- /dev/null +++ b/manifests/b/Bilibili/Livehime/7.18.0.9388/Bilibili.Livehime.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: Bilibili.Livehime +PackageVersion: 7.18.0.9388 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bin-Huang/Chatbox/1.14.3/Bin-Huang.Chatbox.installer.yaml b/manifests/b/Bin-Huang/Chatbox/1.14.3/Bin-Huang.Chatbox.installer.yaml new file mode 100644 index 0000000000000..dec6b198d8bdd --- /dev/null +++ b/manifests/b/Bin-Huang/Chatbox/1.14.3/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.14.3 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: bd4f3b30-4f23-5853-b30a-61e20eb47251 +ReleaseDate: 2025-06-29 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.chatboxai.app/releases/Chatbox-1.14.3-Setup.exe + InstallerSha256: D70A8FF62308688A099908C395C313AD44E241CFD456BADB0A3C941C788D66A0 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.chatboxai.app/releases/Chatbox-1.14.3-Setup.exe + InstallerSha256: D70A8FF62308688A099908C395C313AD44E241CFD456BADB0A3C941C788D66A0 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.chatboxai.app/releases/Chatbox-1.14.3-Setup.exe + InstallerSha256: D70A8FF62308688A099908C395C313AD44E241CFD456BADB0A3C941C788D66A0 + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.chatboxai.app/releases/Chatbox-1.14.3-Setup.exe + InstallerSha256: D70A8FF62308688A099908C395C313AD44E241CFD456BADB0A3C941C788D66A0 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bin-Huang/Chatbox/1.14.3/Bin-Huang.Chatbox.locale.en-US.yaml b/manifests/b/Bin-Huang/Chatbox/1.14.3/Bin-Huang.Chatbox.locale.en-US.yaml new file mode 100644 index 0000000000000..2c6e653c13b22 --- /dev/null +++ b/manifests/b/Bin-Huang/Chatbox/1.14.3/Bin-Huang.Chatbox.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: Bin-Huang.Chatbox +PackageVersion: 1.14.3 +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 +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.14.3/Bin-Huang.Chatbox.locale.zh-CN.yaml b/manifests/b/Bin-Huang/Chatbox/1.14.3/Bin-Huang.Chatbox.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e9ccf749c3391 --- /dev/null +++ b/manifests/b/Bin-Huang/Chatbox/1.14.3/Bin-Huang.Chatbox.locale.zh-CN.yaml @@ -0,0 +1,37 @@ +# 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.14.3 +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 +- 人工智能 +- 大语言模型 +- 聊天机器人 +- 豆包 +- 通义千问 +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.14.3/Bin-Huang.Chatbox.yaml b/manifests/b/Bin-Huang/Chatbox/1.14.3/Bin-Huang.Chatbox.yaml new file mode 100644 index 0000000000000..40dc93306f244 --- /dev/null +++ b/manifests/b/Bin-Huang/Chatbox/1.14.3/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.14.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bin-Huang/Chatbox/1.14.4/Bin-Huang.Chatbox.installer.yaml b/manifests/b/Bin-Huang/Chatbox/1.14.4/Bin-Huang.Chatbox.installer.yaml new file mode 100644 index 0000000000000..370286302278d --- /dev/null +++ b/manifests/b/Bin-Huang/Chatbox/1.14.4/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.14.4 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: bd4f3b30-4f23-5853-b30a-61e20eb47251 +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.chatboxai.app/releases/Chatbox-1.14.4-Setup.exe + InstallerSha256: 1244DE05426A3AE28E8E608ED30C50A812E4D0D5767ECDE10398A14BBA4B088E + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.chatboxai.app/releases/Chatbox-1.14.4-Setup.exe + InstallerSha256: 1244DE05426A3AE28E8E608ED30C50A812E4D0D5767ECDE10398A14BBA4B088E + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.chatboxai.app/releases/Chatbox-1.14.4-Setup.exe + InstallerSha256: 1244DE05426A3AE28E8E608ED30C50A812E4D0D5767ECDE10398A14BBA4B088E + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.chatboxai.app/releases/Chatbox-1.14.4-Setup.exe + InstallerSha256: 1244DE05426A3AE28E8E608ED30C50A812E4D0D5767ECDE10398A14BBA4B088E + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bin-Huang/Chatbox/1.14.4/Bin-Huang.Chatbox.locale.en-US.yaml b/manifests/b/Bin-Huang/Chatbox/1.14.4/Bin-Huang.Chatbox.locale.en-US.yaml new file mode 100644 index 0000000000000..0b0bef8e68064 --- /dev/null +++ b/manifests/b/Bin-Huang/Chatbox/1.14.4/Bin-Huang.Chatbox.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: Bin-Huang.Chatbox +PackageVersion: 1.14.4 +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 +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.14.4/Bin-Huang.Chatbox.locale.zh-CN.yaml b/manifests/b/Bin-Huang/Chatbox/1.14.4/Bin-Huang.Chatbox.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a9fbd29c57291 --- /dev/null +++ b/manifests/b/Bin-Huang/Chatbox/1.14.4/Bin-Huang.Chatbox.locale.zh-CN.yaml @@ -0,0 +1,37 @@ +# 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.14.4 +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 +- 人工智能 +- 大语言模型 +- 聊天机器人 +- 豆包 +- 通义千问 +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.14.4/Bin-Huang.Chatbox.yaml b/manifests/b/Bin-Huang/Chatbox/1.14.4/Bin-Huang.Chatbox.yaml new file mode 100644 index 0000000000000..d471f12ba6ff5 --- /dev/null +++ b/manifests/b/Bin-Huang/Chatbox/1.14.4/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.14.4 +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/BinaryFortress/LogFusion/7.0.0.0/BinaryFortress.LogFusion.installer.yaml b/manifests/b/BinaryFortress/LogFusion/7.0.0.0/BinaryFortress.LogFusion.installer.yaml index 361c65f8e9f96..3d8b276afbfa9 100644 --- a/manifests/b/BinaryFortress/LogFusion/7.0.0.0/BinaryFortress.LogFusion.installer.yaml +++ b/manifests/b/BinaryFortress/LogFusion/7.0.0.0/BinaryFortress.LogFusion.installer.yaml @@ -1,23 +1,19 @@ +# Created with YamlCreate.ps1 v2.4.4 $debug=QUSU.CRLF.7-5-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + PackageIdentifier: BinaryFortress.LogFusion PackageVersion: 7.0.0.0 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 InstallerType: inno Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress UpgradeBehavior: install +ProductCode: FB6AD4D7-2F45-4E7D-B161-14190E5A4F51_is1 +ReleaseDate: 2024-12-10 Installers: - Architecture: x86 - InstallerType: inno - InstallerUrl: https://www.binaryfortress.com/Data/Download/?DownloadID=0193b204-6a91-74b0-8055-b80d2bb296b6&Log=202 - InstallerSha256: e41936b97f9fe15d0616059738cd5977e4af7354f7127735594efd88bea266fb + InstallerUrl: https://binaryfortressdownloads.com/Download/BFSFiles/117/LogFusionSetup-7.0.exe + InstallerSha256: E41936B97F9FE15D0616059738CD5977E4AF7354F7127735594EFD88BEA266FB - Architecture: x64 - InstallerType: inno - InstallerUrl: https://www.binaryfortress.com/Data/Download/?DownloadID=0193b204-6a91-74b0-8055-b80d2bb296b6&Log=202 - InstallerSha256: e41936b97f9fe15d0616059738cd5977e4af7354f7127735594efd88bea266fb + InstallerUrl: https://binaryfortressdownloads.com/Download/BFSFiles/117/LogFusionSetup-7.0.exe + InstallerSha256: E41936B97F9FE15D0616059738CD5977E4AF7354F7127735594EFD88BEA266FB ManifestType: installer ManifestVersion: 1.9.0 diff --git a/manifests/b/BinaryFortress/LogFusion/7.0.0.0/BinaryFortress.LogFusion.locale.en-US.yaml b/manifests/b/BinaryFortress/LogFusion/7.0.0.0/BinaryFortress.LogFusion.locale.en-US.yaml index 93cad0f712975..f525a679e976c 100644 --- a/manifests/b/BinaryFortress/LogFusion/7.0.0.0/BinaryFortress.LogFusion.locale.en-US.yaml +++ b/manifests/b/BinaryFortress/LogFusion/7.0.0.0/BinaryFortress.LogFusion.locale.en-US.yaml @@ -1,19 +1,47 @@ +# Created with YamlCreate.ps1 v2.4.4 $debug=QUSU.CRLF.7-5-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + PackageIdentifier: BinaryFortress.LogFusion PackageVersion: 7.0.0.0 PackageLocale: en-US Publisher: Binary Fortress Software -PublisherUrl: https://www.binaryfortress.com -PublisherSupportUrl: https://www.binaryfortress.com/Support/ +PublisherUrl: https://www.binaryfortress.com/ +PublisherSupportUrl: https://www.logfusion.ca/Support/ PrivacyUrl: https://www.logfusion.ca/Privacy/ Author: Binary Fortress Software PackageName: LogFusion -PackageUrl: https://www.logfusion.ca -License: Free/Paid +PackageUrl: https://www.logfusion.ca/ +License: Proprietary LicenseUrl: https://www.logfusion.ca/License/ -Copyright: Copyright © 2007-2025 Binary Fortress Software +Copyright: Copyright © 2007-2024 Binary Fortress Software CopyrightUrl: https://www.logfusion.ca/License/ -ShortDescription: LogFusion is a powerful realtime log monitoring application designed for system administrators and developers! Use custom highlighting rules, filtering and more. You can even sync your LogFusion settings between computers. +ShortDescription: Real-Time Log Monitoring Made Easy +Description: LogFusion is a powerful realtime log monitoring application designed for system administrators and developers! Use custom highlighting rules, filtering and more. You can even sync your LogFusion settings between computers. Moniker: logfusion +Tags: +- log +- monitor +- system +ReleaseNotes: |- + - Change: Updated to use .NET 8 + - Change: Added a feature to jump to a specific line number (Ctrl + G) + - Change: New Advanced Setting: Don't Show Encoding Change Dialog + - Change: New Advanced Setting: Default Log Encoding Override + - Change: You can now drag a tab out of the LogFusion window to move it to its own window + - Change: .NET garbage collection will run after opening logs on startup + - Change: Highlight rule order now syncs with rules + - Change: Non-focused tabs will now show a star icon to indicate when new lines have been added + - Fix: Resolved an issue that sometimes prevented multiple files from opening from Explorer + - Fix: No longer adds random blank lines for some log files + - Fix: Forced garbage collection on startup to improve memory usage + - Fix: Improved selected line highlighting + - Fix: Resolved two GDI object leaks + - Fix: Query details in Edit Highlight dialog now has a scroll bar when needed ReleaseNotesUrl: https://www.logfusion.ca/ChangeLog/ +PurchaseUrl: https://www.logfusion.ca/Purchase/ +# InstallationNotes: +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://www.logfusion.ca/FAQ/ ManifestType: defaultLocale ManifestVersion: 1.9.0 diff --git a/manifests/b/BinaryFortress/LogFusion/7.0.0.0/BinaryFortress.LogFusion.yaml b/manifests/b/BinaryFortress/LogFusion/7.0.0.0/BinaryFortress.LogFusion.yaml index 0d6b6db6b381a..3c157f2b21444 100644 --- a/manifests/b/BinaryFortress/LogFusion/7.0.0.0/BinaryFortress.LogFusion.yaml +++ b/manifests/b/BinaryFortress/LogFusion/7.0.0.0/BinaryFortress.LogFusion.yaml @@ -1,3 +1,6 @@ +# Created with YamlCreate.ps1 v2.4.4 $debug=QUSU.CRLF.7-5-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + PackageIdentifier: BinaryFortress.LogFusion PackageVersion: 7.0.0.0 DefaultLocale: en-US diff --git a/manifests/b/BishwaSaha/Koncentro/0.10.0/BishwaSaha.Koncentro.installer.yaml b/manifests/b/BishwaSaha/Koncentro/0.10.0/BishwaSaha.Koncentro.installer.yaml new file mode 100644 index 0000000000000..5ea2bc1549697 --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.10.0/BishwaSaha.Koncentro.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: BishwaSaha.Koncentro +PackageVersion: 0.10.0 +InstallerLocale: en-US +InstallerType: inno +Scope: user +ProductCode: Koncentro_is1 +ReleaseDate: 2025-07-09 +AppsAndFeaturesEntries: +- ProductCode: Koncentro_is1 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\Koncentro' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/kun-codes/Koncentro/releases/download/v0.10.0/Koncentro-0.10.0-Installer.exe + InstallerSha256: 1C09EFCDC4A5BB1C45106D73243875801D7500827E12E7C46B0E2B5E16EF0215 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.10.0/BishwaSaha.Koncentro.locale.en-US.yaml b/manifests/b/BishwaSaha/Koncentro/0.10.0/BishwaSaha.Koncentro.locale.en-US.yaml new file mode 100644 index 0000000000000..3ef3dac790ec9 --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.10.0/BishwaSaha.Koncentro.locale.en-US.yaml @@ -0,0 +1,33 @@ +# 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: BishwaSaha.Koncentro +PackageVersion: 0.10.0 +PackageLocale: en-US +Publisher: Bishwa Saha +PublisherUrl: https://bishwasaha.com/ +PublisherSupportUrl: https://github.com/kun-codes/Koncentro/discussions +Author: Bishwa Saha +PackageName: Koncentro +PackageUrl: https://github.com/kun-codes/Koncentro/releases +License: GPL-3.0 +LicenseUrl: https://github.com/kun-codes/Koncentro/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Bishwa Saha +CopyrightUrl: https://github.com/kun-codes/Koncentro/blob/main/LICENSE +ShortDescription: A powerful productivity app combining Pomodoro technique, task management, and website blocking +Description: A powerful productivity app combining Pomodoro technique, task management, and website blocking. +Moniker: koncentro +Tags: +- focus +- open source +- pomodoro +- productivity +- task manager +- time management +- timeboxing +- todo +- website blocker +ReleaseNotes: Koncentro v0.10.0 release +ReleaseNotesUrl: https://github.com/kun-codes/Koncentro/releases/tag/v0.10.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.10.0/BishwaSaha.Koncentro.yaml b/manifests/b/BishwaSaha/Koncentro/0.10.0/BishwaSaha.Koncentro.yaml new file mode 100644 index 0000000000000..7fcde42c47d95 --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.10.0/BishwaSaha.Koncentro.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: BishwaSaha.Koncentro +PackageVersion: 0.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.6.0/BishwaSaha.Koncentro.installer.yaml b/manifests/b/BishwaSaha/Koncentro/0.6.0/BishwaSaha.Koncentro.installer.yaml new file mode 100644 index 0000000000000..f408a50cab6d6 --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.6.0/BishwaSaha.Koncentro.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: BishwaSaha.Koncentro +PackageVersion: 0.6.0 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/kun-codes/Koncentro/releases/download/v0.6.0/Koncentro-0.6.0-Installer.exe + InstallerSha256: 4D7C36D9FE916FBD5068A5BF907A513D07A0D04FCB0D26514E2272DE08433192 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.6.0/BishwaSaha.Koncentro.locale.en-US.yaml b/manifests/b/BishwaSaha/Koncentro/0.6.0/BishwaSaha.Koncentro.locale.en-US.yaml new file mode 100644 index 0000000000000..8f3b7d42ec1da --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.6.0/BishwaSaha.Koncentro.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: BishwaSaha.Koncentro +PackageVersion: 0.6.0 +PackageLocale: en-US +Publisher: Bishwa Saha +PublisherUrl: https://bishwasaha.com/ +PublisherSupportUrl: https://github.com/kun-codes/Koncentro/discussions +Author: Bishwa Saha +PackageName: Koncentro +PackageUrl: https://github.com/kun-codes/Koncentro/releases +License: GPL-3.0-or-later +LicenseUrl: https://github.com/kun-codes/Koncentro/blob/main/LICENSE +Copyright: Copyright (c) 2025 Bishwa Saha +CopyrightUrl: https://github.com/kun-codes/Koncentro/blob/main/LICENSE +ShortDescription: A powerful productivity app combining Pomodoro technique, task management, and website blocking +Description: A powerful productivity app combining Pomodoro technique, task management, and website blocking. +Moniker: koncentro +Tags: +- pomodoro +- todo +- productivity +- task manager +- time management +- website blocker +- timeboxing +- focus +- open source +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.6.0/BishwaSaha.Koncentro.yaml b/manifests/b/BishwaSaha/Koncentro/0.6.0/BishwaSaha.Koncentro.yaml new file mode 100644 index 0000000000000..89d44c90b62ba --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.6.0/BishwaSaha.Koncentro.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: BishwaSaha.Koncentro +PackageVersion: 0.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.7.3/BishwaSaha.Koncentro.installer.yaml b/manifests/b/BishwaSaha/Koncentro/0.7.3/BishwaSaha.Koncentro.installer.yaml new file mode 100644 index 0000000000000..a622342cfcfd7 --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.7.3/BishwaSaha.Koncentro.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: BishwaSaha.Koncentro +PackageVersion: 0.7.3 +InstallerLocale: en-US +InstallerType: inno +Scope: user +ProductCode: Koncentro_is1 +ReleaseDate: 2025-07-03 +AppsAndFeaturesEntries: +- ProductCode: Koncentro_is1 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\Koncentro' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/kun-codes/Koncentro/releases/download/v0.7.3/Koncentro-0.7.3-Installer.exe + InstallerSha256: E0801EF12F7B007FC601842DE53757E150F6FB83BF541ACAA73EECC2BA037EE4 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.7.3/BishwaSaha.Koncentro.locale.en-US.yaml b/manifests/b/BishwaSaha/Koncentro/0.7.3/BishwaSaha.Koncentro.locale.en-US.yaml new file mode 100644 index 0000000000000..f408a818a3633 --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.7.3/BishwaSaha.Koncentro.locale.en-US.yaml @@ -0,0 +1,33 @@ +# 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: BishwaSaha.Koncentro +PackageVersion: 0.7.3 +PackageLocale: en-US +Publisher: Bishwa Saha +PublisherUrl: https://bishwasaha.com/ +PublisherSupportUrl: https://github.com/kun-codes/Koncentro/discussions +Author: Bishwa Saha +PackageName: Koncentro +PackageUrl: https://github.com/kun-codes/Koncentro/releases +License: GPL-3.0 +LicenseUrl: https://github.com/kun-codes/Koncentro/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Bishwa Saha +CopyrightUrl: https://github.com/kun-codes/Koncentro/blob/main/LICENSE +ShortDescription: A powerful productivity app combining Pomodoro technique, task management, and website blocking +Description: A powerful productivity app combining Pomodoro technique, task management, and website blocking. +Moniker: koncentro +Tags: +- focus +- open source +- pomodoro +- productivity +- task manager +- time management +- timeboxing +- todo +- website blocker +ReleaseNotes: Koncentro v0.7.3 release +ReleaseNotesUrl: https://github.com/kun-codes/Koncentro/releases/tag/v0.7.3 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.7.3/BishwaSaha.Koncentro.yaml b/manifests/b/BishwaSaha/Koncentro/0.7.3/BishwaSaha.Koncentro.yaml new file mode 100644 index 0000000000000..0026d5606e6ab --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.7.3/BishwaSaha.Koncentro.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: BishwaSaha.Koncentro +PackageVersion: 0.7.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.8.0/BishwaSaha.Koncentro.installer.yaml b/manifests/b/BishwaSaha/Koncentro/0.8.0/BishwaSaha.Koncentro.installer.yaml new file mode 100644 index 0000000000000..127781d6a7949 --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.8.0/BishwaSaha.Koncentro.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: BishwaSaha.Koncentro +PackageVersion: 0.8.0 +InstallerLocale: en-US +InstallerType: inno +Scope: user +ProductCode: Koncentro_is1 +ReleaseDate: 2025-07-06 +AppsAndFeaturesEntries: +- ProductCode: Koncentro_is1 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\Koncentro' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/kun-codes/Koncentro/releases/download/v0.8.0/Koncentro-0.8.0-Installer.exe + InstallerSha256: 7AD625C60242936A5E10C75C3F37834B7D5F418C5FBE13D581290F2E93F8A136 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.8.0/BishwaSaha.Koncentro.locale.en-US.yaml b/manifests/b/BishwaSaha/Koncentro/0.8.0/BishwaSaha.Koncentro.locale.en-US.yaml new file mode 100644 index 0000000000000..8481e345e7678 --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.8.0/BishwaSaha.Koncentro.locale.en-US.yaml @@ -0,0 +1,33 @@ +# 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: BishwaSaha.Koncentro +PackageVersion: 0.8.0 +PackageLocale: en-US +Publisher: Bishwa Saha +PublisherUrl: https://bishwasaha.com/ +PublisherSupportUrl: https://github.com/kun-codes/Koncentro/discussions +Author: Bishwa Saha +PackageName: Koncentro +PackageUrl: https://github.com/kun-codes/Koncentro/releases +License: GPL-3.0 +LicenseUrl: https://github.com/kun-codes/Koncentro/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Bishwa Saha +CopyrightUrl: https://github.com/kun-codes/Koncentro/blob/main/LICENSE +ShortDescription: A powerful productivity app combining Pomodoro technique, task management, and website blocking +Description: A powerful productivity app combining Pomodoro technique, task management, and website blocking. +Moniker: koncentro +Tags: +- focus +- open source +- pomodoro +- productivity +- task manager +- time management +- timeboxing +- todo +- website blocker +ReleaseNotes: Koncentro v0.8.0 release +ReleaseNotesUrl: https://github.com/kun-codes/Koncentro/releases/tag/v0.8.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.8.0/BishwaSaha.Koncentro.yaml b/manifests/b/BishwaSaha/Koncentro/0.8.0/BishwaSaha.Koncentro.yaml new file mode 100644 index 0000000000000..7089c03cdb81d --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.8.0/BishwaSaha.Koncentro.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: BishwaSaha.Koncentro +PackageVersion: 0.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.8.1/BishwaSaha.Koncentro.installer.yaml b/manifests/b/BishwaSaha/Koncentro/0.8.1/BishwaSaha.Koncentro.installer.yaml new file mode 100644 index 0000000000000..04b6be94400a3 --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.8.1/BishwaSaha.Koncentro.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: BishwaSaha.Koncentro +PackageVersion: 0.8.1 +InstallerLocale: en-US +InstallerType: inno +Scope: user +ProductCode: Koncentro_is1 +ReleaseDate: 2025-07-06 +AppsAndFeaturesEntries: +- ProductCode: Koncentro_is1 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\Koncentro' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/kun-codes/Koncentro/releases/download/v0.8.1/Koncentro-0.8.1-Installer.exe + InstallerSha256: FBB5E530855BC862BDB379C66311C86467B9A4993A13D0D4F4F003D725F90DCC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.8.1/BishwaSaha.Koncentro.locale.en-US.yaml b/manifests/b/BishwaSaha/Koncentro/0.8.1/BishwaSaha.Koncentro.locale.en-US.yaml new file mode 100644 index 0000000000000..2e01f33f97d67 --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.8.1/BishwaSaha.Koncentro.locale.en-US.yaml @@ -0,0 +1,33 @@ +# 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: BishwaSaha.Koncentro +PackageVersion: 0.8.1 +PackageLocale: en-US +Publisher: Bishwa Saha +PublisherUrl: https://bishwasaha.com/ +PublisherSupportUrl: https://github.com/kun-codes/Koncentro/discussions +Author: Bishwa Saha +PackageName: Koncentro +PackageUrl: https://github.com/kun-codes/Koncentro/releases +License: GPL-3.0 +LicenseUrl: https://github.com/kun-codes/Koncentro/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Bishwa Saha +CopyrightUrl: https://github.com/kun-codes/Koncentro/blob/main/LICENSE +ShortDescription: A powerful productivity app combining Pomodoro technique, task management, and website blocking +Description: A powerful productivity app combining Pomodoro technique, task management, and website blocking. +Moniker: koncentro +Tags: +- focus +- open source +- pomodoro +- productivity +- task manager +- time management +- timeboxing +- todo +- website blocker +ReleaseNotes: Koncentro v0.8.1 release +ReleaseNotesUrl: https://github.com/kun-codes/Koncentro/releases/tag/v0.8.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.8.1/BishwaSaha.Koncentro.yaml b/manifests/b/BishwaSaha/Koncentro/0.8.1/BishwaSaha.Koncentro.yaml new file mode 100644 index 0000000000000..599e90df09fc2 --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.8.1/BishwaSaha.Koncentro.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: BishwaSaha.Koncentro +PackageVersion: 0.8.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.9.0/BishwaSaha.Koncentro.installer.yaml b/manifests/b/BishwaSaha/Koncentro/0.9.0/BishwaSaha.Koncentro.installer.yaml new file mode 100644 index 0000000000000..c269b27881247 --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.9.0/BishwaSaha.Koncentro.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: BishwaSaha.Koncentro +PackageVersion: 0.9.0 +InstallerLocale: en-US +InstallerType: inno +Scope: user +ProductCode: Koncentro_is1 +ReleaseDate: 2025-07-07 +AppsAndFeaturesEntries: +- ProductCode: Koncentro_is1 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\Koncentro' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/kun-codes/Koncentro/releases/download/v0.9.0/Koncentro-0.9.0-Installer.exe + InstallerSha256: D7502EF3C26F6B2C5EC7112FF048C428E9E8FC51D85074848E9ACEE6AB17A427 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.9.0/BishwaSaha.Koncentro.locale.en-US.yaml b/manifests/b/BishwaSaha/Koncentro/0.9.0/BishwaSaha.Koncentro.locale.en-US.yaml new file mode 100644 index 0000000000000..7f239148028ac --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.9.0/BishwaSaha.Koncentro.locale.en-US.yaml @@ -0,0 +1,33 @@ +# 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: BishwaSaha.Koncentro +PackageVersion: 0.9.0 +PackageLocale: en-US +Publisher: Bishwa Saha +PublisherUrl: https://bishwasaha.com/ +PublisherSupportUrl: https://github.com/kun-codes/Koncentro/discussions +Author: Bishwa Saha +PackageName: Koncentro +PackageUrl: https://github.com/kun-codes/Koncentro/releases +License: GPL-3.0 +LicenseUrl: https://github.com/kun-codes/Koncentro/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Bishwa Saha +CopyrightUrl: https://github.com/kun-codes/Koncentro/blob/main/LICENSE +ShortDescription: A powerful productivity app combining Pomodoro technique, task management, and website blocking +Description: A powerful productivity app combining Pomodoro technique, task management, and website blocking. +Moniker: koncentro +Tags: +- focus +- open source +- pomodoro +- productivity +- task manager +- time management +- timeboxing +- todo +- website blocker +ReleaseNotes: Koncentro v0.9.0 release +ReleaseNotesUrl: https://github.com/kun-codes/Koncentro/releases/tag/v0.9.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BishwaSaha/Koncentro/0.9.0/BishwaSaha.Koncentro.yaml b/manifests/b/BishwaSaha/Koncentro/0.9.0/BishwaSaha.Koncentro.yaml new file mode 100644 index 0000000000000..006d6bdd54f18 --- /dev/null +++ b/manifests/b/BishwaSaha/Koncentro/0.9.0/BishwaSaha.Koncentro.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: BishwaSaha.Koncentro +PackageVersion: 0.9.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bisq/Bisq/1.9.21/Bisq.Bisq.installer.yaml b/manifests/b/Bisq/Bisq/1.9.21/Bisq.Bisq.installer.yaml new file mode 100644 index 0000000000000..bc96162a4683f --- /dev/null +++ b/manifests/b/Bisq/Bisq/1.9.21/Bisq.Bisq.installer.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Bisq.Bisq +PackageVersion: 1.9.21 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: burn +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive +UpgradeBehavior: install +ProductCode: '{00535C4C-12E8-37E5-99EE-D5642EF86375}' +AppsAndFeaturesEntries: +- UpgradeCode: '{F1561753-1C78-3E58-B8B7-D04CEACA202B}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bisq-network/bisq/releases/download/v1.9.21/Bisq-64bit-1.9.21.exe + InstallerSha256: D174E77F273336A35AA3B8B0541B2B92057E62FE52C88416A6E598036DD69665 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-26 diff --git a/manifests/b/Bisq/Bisq/1.9.21/Bisq.Bisq.locale.en-US.yaml b/manifests/b/Bisq/Bisq/1.9.21/Bisq.Bisq.locale.en-US.yaml new file mode 100644 index 0000000000000..7dec52459c24e --- /dev/null +++ b/manifests/b/Bisq/Bisq/1.9.21/Bisq.Bisq.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Bisq.Bisq +PackageVersion: 1.9.21 +PackageLocale: en-US +Publisher: Bisq +PublisherUrl: https://bisq.network/ +PublisherSupportUrl: https://bisq.network/getting-started/ +Author: Bisq +PackageName: Bisq +PackageUrl: https://github.com/bisq-network/bisq +License: AGPL-3.0 +LicenseUrl: https://github.com/bisq-network/bisq/blob/v1.9.18/LICENSE +Copyright: Copyright © 2013-2024 - The Bisq developers +ShortDescription: A decentralized bitcoin exchange network. +Description: Bisq is a safe, private and decentralized way to exchange bitcoin for national currencies and other digital assets. Bisq uses peer-to-peer networking and multi-signature escrow to facilitate trading without a third party. Bisq is non-custodial and incorporates a human arbitration system to resolve disputes. +Moniker: bisq +Tags: +- bitcoin +- decentralized +- exchange +- network +- p2p +- peer-to-peer +- private +ReleaseNotesUrl: https://github.com/bisq-network/bisq/releases/tag/v1.9.21 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://bisq.wiki/ +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/b/Bisq/Bisq/1.9.21/Bisq.Bisq.yaml b/manifests/b/Bisq/Bisq/1.9.21/Bisq.Bisq.yaml new file mode 100644 index 0000000000000..9e8801095ce88 --- /dev/null +++ b/manifests/b/Bisq/Bisq/1.9.21/Bisq.Bisq.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: Bisq.Bisq +PackageVersion: 1.9.21 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/15.2.0.1/BitSum.ProcessLasso.Beta.installer.yaml b/manifests/b/BitSum/ProcessLasso/Beta/15.2.0.1/BitSum.ProcessLasso.Beta.installer.yaml deleted file mode 100644 index 6b12a1ed3e44f..0000000000000 --- a/manifests/b/BitSum/ProcessLasso/Beta/15.2.0.1/BitSum.ProcessLasso.Beta.installer.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/19 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: BitSum.ProcessLasso.Beta -PackageVersion: 15.2.0.1 -InstallerLocale: en-US -InstallerType: nullsoft -Scope: machine -InstallModes: -- interactive -- silent -UpgradeBehavior: install -ProductCode: ProcessLasso -ReleaseDate: 2025-05-19 -AppsAndFeaturesEntries: -- DisplayName: Process Lasso -Installers: -- Architecture: x86 - InstallerUrl: https://dl.bitsum.com/files/beta/processlassosetup32.exe - InstallerSha256: 197FA4D5912198E6FA7177D061479029B4AA31936763CF9CEA95B39EDEDFEF32 - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\Process Lasso' -- Architecture: x64 - InstallerUrl: https://dl.bitsum.com/files/beta/processlassosetup64.exe - InstallerSha256: 511FF4687BED0B505B859B77CFF53AD60F35E3C001DCAF8345199539445DBC06 - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Process Lasso' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/15.2.0.1/BitSum.ProcessLasso.Beta.locale.en-US.yaml b/manifests/b/BitSum/ProcessLasso/Beta/15.2.0.1/BitSum.ProcessLasso.Beta.locale.en-US.yaml deleted file mode 100644 index be8a3b0c11619..0000000000000 --- a/manifests/b/BitSum/ProcessLasso/Beta/15.2.0.1/BitSum.ProcessLasso.Beta.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/19 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: BitSum.ProcessLasso.Beta -PackageVersion: 15.2.0.1 -PackageLocale: en-US -Publisher: Bitsum -PublisherUrl: https://bitsum.com/about/ -PrivacyUrl: https://bitsum.com/privacy-policy/ -Author: Bitsum -PackageName: Process Lasso Beta -PackageUrl: https://bitsum.com/download-process-lasso/ -PurchaseUrl: https://bitsum.com/get-lasso-pro/ -License: Proprietary -LicenseUrl: https://bitsum.com/terms-of-use/ -Copyright: Copyright (c) Bitsum LLC -CopyrightUrl: https://bitsum.com/our-copyright-notice/ -ShortDescription: > - Process Lasso is a tool designed to manage and edit how your processes and services run. -Description: > - It offers a robust list of capabilities including default process priorities and affinities, termination of disallowed processes, instance count limits, a system responsiveness graph, logging of processes, keep select processes running (auto-restart), and much more. -Moniker: processlasso-beta -Tags: -- execute -- manager -- optimizer -- priority -- process -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/15.2.0.1/BitSum.ProcessLasso.Beta.yaml b/manifests/b/BitSum/ProcessLasso/Beta/15.2.0.1/BitSum.ProcessLasso.Beta.yaml deleted file mode 100644 index 781d85bc5d835..0000000000000 --- a/manifests/b/BitSum/ProcessLasso/Beta/15.2.0.1/BitSum.ProcessLasso.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/19 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: BitSum.ProcessLasso.Beta -PackageVersion: 15.2.0.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.23/BitSum.ProcessLasso.Beta.installer.yaml b/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.23/BitSum.ProcessLasso.Beta.installer.yaml new file mode 100644 index 0000000000000..02f1e777d0c77 --- /dev/null +++ b/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.23/BitSum.ProcessLasso.Beta.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: BitSum.ProcessLasso.Beta +PackageVersion: 16.0.0.23 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: ProcessLasso +ReleaseDate: 2025-05-19 +AppsAndFeaturesEntries: +- DisplayName: Process Lasso +Installers: +- Architecture: x86 + InstallerUrl: https://dl.bitsum.com/files/beta/processlassosetup32.exe + InstallerSha256: E7416DE08657611E0681676A88674E239032B96247A5F2F0EF8C5D4F6ED8598C + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Process Lasso' +- Architecture: x64 + InstallerUrl: https://dl.bitsum.com/files/beta/processlassosetup64.exe + InstallerSha256: 97E3F7EEFDD4FFB115FDAFA7FC48A1DE2435A2D8832B90654E44721F7671ED85 + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Process Lasso' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.23/BitSum.ProcessLasso.Beta.locale.en-US.yaml b/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.23/BitSum.ProcessLasso.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..c12deeaad22e4 --- /dev/null +++ b/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.23/BitSum.ProcessLasso.Beta.locale.en-US.yaml @@ -0,0 +1,30 @@ +# 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: BitSum.ProcessLasso.Beta +PackageVersion: 16.0.0.23 +PackageLocale: en-US +Publisher: Bitsum +PublisherUrl: https://bitsum.com/about/ +PrivacyUrl: https://bitsum.com/privacy-policy/ +Author: Bitsum +PackageName: Process Lasso Beta +PackageUrl: https://bitsum.com/download-process-lasso/ +PurchaseUrl: https://bitsum.com/get-lasso-pro/ +License: Proprietary +LicenseUrl: https://bitsum.com/terms-of-use/ +Copyright: Copyright (c) Bitsum LLC +CopyrightUrl: https://bitsum.com/our-copyright-notice/ +ShortDescription: > + Process Lasso is a tool designed to manage and edit how your processes and services run. +Description: > + It offers a robust list of capabilities including default process priorities and affinities, termination of disallowed processes, instance count limits, a system responsiveness graph, logging of processes, keep select processes running (auto-restart), and much more. +Moniker: processlasso-beta +Tags: +- execute +- manager +- optimizer +- priority +- process +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.23/BitSum.ProcessLasso.Beta.yaml b/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.23/BitSum.ProcessLasso.Beta.yaml new file mode 100644 index 0000000000000..f72c1fcf1f256 --- /dev/null +++ b/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.23/BitSum.ProcessLasso.Beta.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: BitSum.ProcessLasso.Beta +PackageVersion: 16.0.0.23 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.31/BitSum.ProcessLasso.Beta.installer.yaml b/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.31/BitSum.ProcessLasso.Beta.installer.yaml new file mode 100644 index 0000000000000..01adfef107237 --- /dev/null +++ b/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.31/BitSum.ProcessLasso.Beta.installer.yaml @@ -0,0 +1,29 @@ +# Automatically updated by the winget bot at 2025/Jul/09 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BitSum.ProcessLasso.Beta +PackageVersion: 16.0.0.31 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: ProcessLasso +ReleaseDate: 2025-05-19 +AppsAndFeaturesEntries: +- DisplayName: Process Lasso +Installers: +- Architecture: x86 + InstallerUrl: https://dl.bitsum.com/files/beta/processlassosetup32.exe + InstallerSha256: A1F1E7A36F76A60C7F1B1865D495D41AA2989917CF9C8A8A32F5E1E175C622C3 + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Process Lasso' +- Architecture: x64 + InstallerUrl: https://dl.bitsum.com/files/beta/processlassosetup64.exe + InstallerSha256: A6FBD50B2A7F4FD67D66097D51BF9DDEA35289020B3C9D114E454708B9141279 + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Process Lasso' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.31/BitSum.ProcessLasso.Beta.locale.en-US.yaml b/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.31/BitSum.ProcessLasso.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..60fb680d2161a --- /dev/null +++ b/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.31/BitSum.ProcessLasso.Beta.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Automatically updated by the winget bot at 2025/Jul/09 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BitSum.ProcessLasso.Beta +PackageVersion: 16.0.0.31 +PackageLocale: en-US +Publisher: Bitsum +PublisherUrl: https://bitsum.com/about/ +PrivacyUrl: https://bitsum.com/privacy-policy/ +Author: Bitsum +PackageName: Process Lasso Beta +PackageUrl: https://bitsum.com/download-process-lasso/ +PurchaseUrl: https://bitsum.com/get-lasso-pro/ +License: Proprietary +LicenseUrl: https://bitsum.com/terms-of-use/ +Copyright: Copyright (c) Bitsum LLC +CopyrightUrl: https://bitsum.com/our-copyright-notice/ +ShortDescription: > + Process Lasso is a tool designed to manage and edit how your processes and services run. +Description: > + It offers a robust list of capabilities including default process priorities and affinities, termination of disallowed processes, instance count limits, a system responsiveness graph, logging of processes, keep select processes running (auto-restart), and much more. +Moniker: processlasso-beta +Tags: +- execute +- manager +- optimizer +- priority +- process +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.31/BitSum.ProcessLasso.Beta.yaml b/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.31/BitSum.ProcessLasso.Beta.yaml new file mode 100644 index 0000000000000..d3ecb4d7bd963 --- /dev/null +++ b/manifests/b/BitSum/ProcessLasso/Beta/16.0.0.31/BitSum.ProcessLasso.Beta.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/09 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: BitSum.ProcessLasso.Beta +PackageVersion: 16.0.0.31 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BitcoinCoreProject/BitcoinCore/28.2.0/BitcoinCoreProject.BitcoinCore.installer.yaml b/manifests/b/BitcoinCoreProject/BitcoinCore/28.2.0/BitcoinCoreProject.BitcoinCore.installer.yaml new file mode 100644 index 0000000000000..a3d693578e703 --- /dev/null +++ b/manifests/b/BitcoinCoreProject/BitcoinCore/28.2.0/BitcoinCoreProject.BitcoinCore.installer.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BitcoinCoreProject.BitcoinCore +PackageVersion: 28.2.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ReleaseDate: 2025-06-25 +AppsAndFeaturesEntries: +- DisplayName: Bitcoin Core (64-bit) +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Bitcoin' +Installers: +- Architecture: x64 + InstallerUrl: https://bitcoincore.org/bin/bitcoin-core-28.2/bitcoin-28.2-win64-setup.exe + InstallerSha256: AEF8CB840A84C1599302B6A838CA25752F1567728C16696211111F4A3B3ABF50 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BitcoinCoreProject/BitcoinCore/28.2.0/BitcoinCoreProject.BitcoinCore.locale.en-US.yaml b/manifests/b/BitcoinCoreProject/BitcoinCore/28.2.0/BitcoinCoreProject.BitcoinCore.locale.en-US.yaml new file mode 100644 index 0000000000000..d8c8df4c491eb --- /dev/null +++ b/manifests/b/BitcoinCoreProject/BitcoinCore/28.2.0/BitcoinCoreProject.BitcoinCore.locale.en-US.yaml @@ -0,0 +1,51 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BitcoinCoreProject.BitcoinCore +PackageVersion: 28.2.0 +PackageLocale: en-US +Publisher: Bitcoin Core project +PublisherUrl: https://bitcoincore.org/ +PublisherSupportUrl: https://github.com/bitcoin/bitcoin/issues +PrivacyUrl: https://bitcoincore.org/en/legal/privacy/ +Author: Bitcoin Core project +PackageName: Bitcoin Core +PackageUrl: https://bitcoincore.org/en/download/ +License: MIT License +LicenseUrl: https://raw.githubusercontent.com/bitcoin/bitcoin/master/COPYING +Copyright: Copyright (c) 2009-2025 The Bitcoin Core developers, Copyright (c) 2009-2025 Bitcoin Developers +CopyrightUrl: https://raw.githubusercontent.com/bitcoin/bitcoin/master/COPYING +ShortDescription: Bitcoin Core is an open source project which maintains and releases Bitcoin client software called Bitcoin Core. +Tags: +- bitcoin +- cryptocurrency +- cryptography +- p2p +ReleaseNotes: |- + How to Upgrade + If you are running an older version, shut it down. Wait until it has completely shut down (which might take a few minutes in some cases), then run the installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on macOS) or bitcoind/bitcoin-qt (on Linux). + Upgrading directly from a version of Bitcoin Core that has reached its EOL is possible, but it might take some time if the data directory needs to be migrated. Old wallet versions of Bitcoin Core are generally supported. + Compatibility + Bitcoin Core is supported and extensively tested on operating systems using the Linux Kernel 3.17+, macOS 11.0+, and Windows 7 and newer. Bitcoin Core should also work on most other UNIX-like systems but is not as frequently tested on them. It is not recommended to use Bitcoin Core on unsupported systems. + Notable changes + Build + - #31407 guix: Notarize MacOS app bundle and codesign all MacOS and Windows binaries + - #31500 depends: Fix compiling libevent package on NetBSD + - #31627 depends: Fix spacing issue + - #32070 build: use make < 3.82 syntax for define directive + - #32439 guix: accomodate migration to codeberg + - #32568 depends: use "mkdir -p" when installing xproto + - #32693 depends: fix cmake compatibility error for freetype + Test + - #32286 test: Handle empty string returned by CLI as None in RPC tests + - #32336 test: Suppress upstream -Wduplicate-decl-specifier in bpfcc + Tracing + - #31623 tracing: Rename the MIN macro to TRACEPOINT_TEST_MIN in log_raw_p2p_msgs + Doc + - #32003 doc: remove note about macOS self-signing + Misc + - #31611 doc: upgrade license to 2025 + - #32187 refactor: Remove spurious virtual from final ~CZMQNotificationInterface +ReleaseNotesUrl: https://github.com/bitcoin/bitcoin/blob/master/doc/release-notes/release-notes-28.2.md +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BitcoinCoreProject/BitcoinCore/28.2.0/BitcoinCoreProject.BitcoinCore.yaml b/manifests/b/BitcoinCoreProject/BitcoinCore/28.2.0/BitcoinCoreProject.BitcoinCore.yaml new file mode 100644 index 0000000000000..7827678a0fdc4 --- /dev/null +++ b/manifests/b/BitcoinCoreProject/BitcoinCore/28.2.0/BitcoinCoreProject.BitcoinCore.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: BitcoinCoreProject.BitcoinCore +PackageVersion: 28.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/Bitwarden/2025.6.0/Bitwarden.Bitwarden.installer.yaml b/manifests/b/Bitwarden/Bitwarden/2025.6.0/Bitwarden.Bitwarden.installer.yaml new file mode 100644 index 0000000000000..c23444b569ccf --- /dev/null +++ b/manifests/b/Bitwarden/Bitwarden/2025.6.0/Bitwarden.Bitwarden.installer.yaml @@ -0,0 +1,33 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Bitwarden.Bitwarden +PackageVersion: 2025.6.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- bitwarden +ProductCode: 173a9bac-6f0d-50c4-8202-4744c69d091a +ReleaseDate: 2025-06-26 +AppsAndFeaturesEntries: +- ProductCode: 173a9bac-6f0d-50c4-8202-4744c69d091a +Installers: +- Architecture: neutral + Scope: user + InstallerUrl: https://github.com/bitwarden/clients/releases/download/desktop-v2025.6.0/Bitwarden-Installer-2025.6.0.exe + InstallerSha256: A2779E4F04DCADF1F146C07FDCF7F4C355B651887A2503010DE4A6177C1515C7 + InstallerSwitches: + Custom: /currentuser +- Architecture: neutral + Scope: machine + InstallerUrl: https://github.com/bitwarden/clients/releases/download/desktop-v2025.6.0/Bitwarden-Installer-2025.6.0.exe + InstallerSha256: A2779E4F04DCADF1F146C07FDCF7F4C355B651887A2503010DE4A6177C1515C7 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/Bitwarden/2025.6.0/Bitwarden.Bitwarden.locale.en-US.yaml b/manifests/b/Bitwarden/Bitwarden/2025.6.0/Bitwarden.Bitwarden.locale.en-US.yaml new file mode 100644 index 0000000000000..141d235cf290b --- /dev/null +++ b/manifests/b/Bitwarden/Bitwarden/2025.6.0/Bitwarden.Bitwarden.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Bitwarden.Bitwarden +PackageVersion: 2025.6.0 +PackageLocale: en-US +Publisher: Bitwarden Inc. +PublisherUrl: https://bitwarden.com/ +PublisherSupportUrl: https://bitwarden.com/help +PrivacyUrl: https://bitwarden.com/privacy +Author: Bitwarden Inc. +PackageName: Bitwarden +PackageUrl: https://bitwarden.com/download +License: GPL-3.0 or Bitwarden-1.0 +LicenseUrl: https://github.com/bitwarden/clients/blob/HEAD/LICENSE.txt +Copyright: Copyright © 2015-2025 Bitwarden Inc. +CopyrightUrl: https://github.com/bitwarden/server/blob/master/TRADEMARK_GUIDELINES.md +ShortDescription: A secure and free password manager for all of your devices. +Tags: +- credential +- password +- protect +- protection +- security +ReleaseNotes: |- + - Added logging for which transport method is in use for notifications + - Bug-fix for Duckduckgo integration + - Bug-fix for starting automatically on Flatpak distribution + - Dependency updates, small enhancements, and bug-fixes +ReleaseNotesUrl: https://github.com/bitwarden/clients/releases/tag/desktop-v2025.6.0 +PurchaseUrl: https://bitwarden.com/pricing/business/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/Bitwarden/2025.6.0/Bitwarden.Bitwarden.locale.pt-BR.yaml b/manifests/b/Bitwarden/Bitwarden/2025.6.0/Bitwarden.Bitwarden.locale.pt-BR.yaml new file mode 100644 index 0000000000000..014ce2ed4c72d --- /dev/null +++ b/manifests/b/Bitwarden/Bitwarden/2025.6.0/Bitwarden.Bitwarden.locale.pt-BR.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Bitwarden.Bitwarden +PackageVersion: 2025.6.0 +PackageLocale: pt-BR +Publisher: Bitwarden Inc. +PublisherUrl: https://bitwarden.com/ +PublisherSupportUrl: https://bitwarden.com/help +PrivacyUrl: https://bitwarden.com/privacy +Author: Bitwarden Inc. +PackageName: Bitwarden +PackageUrl: https://bitwarden.com/download +License: GPL-3.0 ou Bitwarden-1.0 +LicenseUrl: https://github.com/bitwarden/clients/blob/master/LICENSE.txt +Copyright: Copyright © 2015-2025 Bitwarden Inc. +CopyrightUrl: https://github.com/bitwarden/server/blob/master/TRADEMARK_GUIDELINES.md +ShortDescription: Um gerenciador de senha seguro e gratuito para todos os seus dispositivos. +Tags: +- credencial +- proteger +- proteção +- segurança +- senha +PurchaseUrl: https://bitwarden.com/pricing/business +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/Bitwarden/2025.6.0/Bitwarden.Bitwarden.locale.zh-CN.yaml b/manifests/b/Bitwarden/Bitwarden/2025.6.0/Bitwarden.Bitwarden.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7a7021dea99bf --- /dev/null +++ b/manifests/b/Bitwarden/Bitwarden/2025.6.0/Bitwarden.Bitwarden.locale.zh-CN.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: Bitwarden.Bitwarden +PackageVersion: 2025.6.0 +PackageLocale: zh-CN +Publisher: Bitwarden Inc. +PublisherUrl: https://bitwarden.com/ +PublisherSupportUrl: https://bitwarden.com/help +PrivacyUrl: https://bitwarden.com/privacy +Author: Bitwarden Inc. +PackageName: Bitwarden +PackageUrl: https://bitwarden.com/download +License: GPL-3.0 或 Bitwarden-1.0 +LicenseUrl: https://github.com/bitwarden/clients/blob/master/LICENSE.txt +Copyright: Copyright © 2015-2025 Bitwarden Inc. +CopyrightUrl: https://github.com/bitwarden/server/blob/master/TRADEMARK_GUIDELINES.md +ShortDescription: 适用于所有设备的安全免费的密码管理器 +Tags: +- 保护 +- 凭据 +- 安全 +- 密码 +PurchaseUrl: https://bitwarden.com/pricing/business +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/Bitwarden/2025.6.0/Bitwarden.Bitwarden.yaml b/manifests/b/Bitwarden/Bitwarden/2025.6.0/Bitwarden.Bitwarden.yaml new file mode 100644 index 0000000000000..d112c864e8349 --- /dev/null +++ b/manifests/b/Bitwarden/Bitwarden/2025.6.0/Bitwarden.Bitwarden.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: Bitwarden.Bitwarden +PackageVersion: 2025.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/Bitwarden/2025.6.1/Bitwarden.Bitwarden.installer.yaml b/manifests/b/Bitwarden/Bitwarden/2025.6.1/Bitwarden.Bitwarden.installer.yaml new file mode 100644 index 0000000000000..9ef2fe7873110 --- /dev/null +++ b/manifests/b/Bitwarden/Bitwarden/2025.6.1/Bitwarden.Bitwarden.installer.yaml @@ -0,0 +1,33 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Bitwarden.Bitwarden +PackageVersion: 2025.6.1 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- bitwarden +ProductCode: 173a9bac-6f0d-50c4-8202-4744c69d091a +ReleaseDate: 2025-07-02 +AppsAndFeaturesEntries: +- ProductCode: 173a9bac-6f0d-50c4-8202-4744c69d091a +Installers: +- Architecture: neutral + Scope: user + InstallerUrl: https://github.com/bitwarden/clients/releases/download/desktop-v2025.6.1/Bitwarden-Installer-2025.6.1.exe + InstallerSha256: D33B9D227589ADE6221416481919C39294F10683CCBD1270BCCAB749E37CAAF7 + InstallerSwitches: + Custom: /currentuser +- Architecture: neutral + Scope: machine + InstallerUrl: https://github.com/bitwarden/clients/releases/download/desktop-v2025.6.1/Bitwarden-Installer-2025.6.1.exe + InstallerSha256: D33B9D227589ADE6221416481919C39294F10683CCBD1270BCCAB749E37CAAF7 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/Bitwarden/2025.6.1/Bitwarden.Bitwarden.locale.en-US.yaml b/manifests/b/Bitwarden/Bitwarden/2025.6.1/Bitwarden.Bitwarden.locale.en-US.yaml new file mode 100644 index 0000000000000..40f0908893b81 --- /dev/null +++ b/manifests/b/Bitwarden/Bitwarden/2025.6.1/Bitwarden.Bitwarden.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Bitwarden.Bitwarden +PackageVersion: 2025.6.1 +PackageLocale: en-US +Publisher: Bitwarden Inc. +PublisherUrl: https://bitwarden.com/ +PublisherSupportUrl: https://bitwarden.com/help +PrivacyUrl: https://bitwarden.com/privacy +Author: Bitwarden Inc. +PackageName: Bitwarden +PackageUrl: https://bitwarden.com/download +License: GPL-3.0 or Bitwarden-1.0 +LicenseUrl: https://github.com/bitwarden/clients/blob/HEAD/LICENSE.txt +Copyright: Copyright © 2015-2025 Bitwarden Inc. +CopyrightUrl: https://github.com/bitwarden/server/blob/master/TRADEMARK_GUIDELINES.md +ShortDescription: A secure and free password manager for all of your devices. +Tags: +- credential +- password +- protect +- protection +- security +ReleaseNotes: Fixed Password generator is broken. Version 2025.6.0 (43904) +ReleaseNotesUrl: https://github.com/bitwarden/clients/releases/tag/desktop-v2025.6.1 +PurchaseUrl: https://bitwarden.com/pricing/business/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/Bitwarden/2025.6.1/Bitwarden.Bitwarden.locale.pt-BR.yaml b/manifests/b/Bitwarden/Bitwarden/2025.6.1/Bitwarden.Bitwarden.locale.pt-BR.yaml new file mode 100644 index 0000000000000..22d8d8ea612aa --- /dev/null +++ b/manifests/b/Bitwarden/Bitwarden/2025.6.1/Bitwarden.Bitwarden.locale.pt-BR.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Bitwarden.Bitwarden +PackageVersion: 2025.6.1 +PackageLocale: pt-BR +Publisher: Bitwarden Inc. +PublisherUrl: https://bitwarden.com/ +PublisherSupportUrl: https://bitwarden.com/help +PrivacyUrl: https://bitwarden.com/privacy +Author: Bitwarden Inc. +PackageName: Bitwarden +PackageUrl: https://bitwarden.com/download +License: GPL-3.0 ou Bitwarden-1.0 +LicenseUrl: https://github.com/bitwarden/clients/blob/master/LICENSE.txt +Copyright: Copyright © 2015-2025 Bitwarden Inc. +CopyrightUrl: https://github.com/bitwarden/server/blob/master/TRADEMARK_GUIDELINES.md +ShortDescription: Um gerenciador de senha seguro e gratuito para todos os seus dispositivos. +Tags: +- credencial +- proteger +- proteção +- segurança +- senha +PurchaseUrl: https://bitwarden.com/pricing/business +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/Bitwarden/2025.6.1/Bitwarden.Bitwarden.locale.zh-CN.yaml b/manifests/b/Bitwarden/Bitwarden/2025.6.1/Bitwarden.Bitwarden.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7a92a7b07c92e --- /dev/null +++ b/manifests/b/Bitwarden/Bitwarden/2025.6.1/Bitwarden.Bitwarden.locale.zh-CN.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: Bitwarden.Bitwarden +PackageVersion: 2025.6.1 +PackageLocale: zh-CN +Publisher: Bitwarden Inc. +PublisherUrl: https://bitwarden.com/ +PublisherSupportUrl: https://bitwarden.com/help +PrivacyUrl: https://bitwarden.com/privacy +Author: Bitwarden Inc. +PackageName: Bitwarden +PackageUrl: https://bitwarden.com/download +License: GPL-3.0 或 Bitwarden-1.0 +LicenseUrl: https://github.com/bitwarden/clients/blob/master/LICENSE.txt +Copyright: Copyright © 2015-2025 Bitwarden Inc. +CopyrightUrl: https://github.com/bitwarden/server/blob/master/TRADEMARK_GUIDELINES.md +ShortDescription: 适用于所有设备的安全免费的密码管理器 +Tags: +- 保护 +- 凭据 +- 安全 +- 密码 +PurchaseUrl: https://bitwarden.com/pricing/business +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/Bitwarden/2025.6.1/Bitwarden.Bitwarden.yaml b/manifests/b/Bitwarden/Bitwarden/2025.6.1/Bitwarden.Bitwarden.yaml new file mode 100644 index 0000000000000..3634c953222b4 --- /dev/null +++ b/manifests/b/Bitwarden/Bitwarden/2025.6.1/Bitwarden.Bitwarden.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: Bitwarden.Bitwarden +PackageVersion: 2025.6.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/CLI/2025.6.0/Bitwarden.CLI.installer.yaml b/manifests/b/Bitwarden/CLI/2025.6.0/Bitwarden.CLI.installer.yaml new file mode 100644 index 0000000000000..488176ea4b793 --- /dev/null +++ b/manifests/b/Bitwarden/CLI/2025.6.0/Bitwarden.CLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Bitwarden.CLI +PackageVersion: 2025.6.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: bw.exe +InstallerSwitches: + Silent: status --quiet +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bitwarden/clients/releases/download/cli-v2025.6.0/bw-windows-2025.6.0.zip + InstallerSha256: F06944E260E27AE78087D58F12EE68801F03841E08CA855C13250F5B1DD98D07 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/CLI/2025.6.0/Bitwarden.CLI.locale.en-US.yaml b/manifests/b/Bitwarden/CLI/2025.6.0/Bitwarden.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..c95a4ebbe3a03 --- /dev/null +++ b/manifests/b/Bitwarden/CLI/2025.6.0/Bitwarden.CLI.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Bitwarden.CLI +PackageVersion: 2025.6.0 +PackageLocale: en-US +Publisher: Bitwarden Inc. +PublisherUrl: https://bitwarden.com/ +PublisherSupportUrl: https://bitwarden.com/help +PrivacyUrl: https://bitwarden.com/privacy +Author: Bitwarden Inc. +PackageName: Bitwarden CLI +PackageUrl: https://bitwarden.com/download +License: GPL-3.0 or Bitwarden-1.0 +LicenseUrl: https://github.com/bitwarden/clients/blob/HEAD/LICENSE.txt +Copyright: Copyright © 2015-2024 Bitwarden Inc. +CopyrightUrl: https://github.com/bitwarden/server/blob/master/TRADEMARK_GUIDELINES.md +ShortDescription: A secure and free password manager for all of your devices. +Tags: +- credential +- password +- protect +- protection +- security +ReleaseNotes: |- + - Bug-fix for email 2FA codes not being sent + - Dependency updates, small enhancements, and bug-fixes +ReleaseNotesUrl: https://github.com/bitwarden/clients/releases/tag/cli-v2025.6.0 +PurchaseUrl: https://bitwarden.com/pricing/business/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/CLI/2025.6.0/Bitwarden.CLI.locale.pt-BR.yaml b/manifests/b/Bitwarden/CLI/2025.6.0/Bitwarden.CLI.locale.pt-BR.yaml new file mode 100644 index 0000000000000..be1a4080b48fa --- /dev/null +++ b/manifests/b/Bitwarden/CLI/2025.6.0/Bitwarden.CLI.locale.pt-BR.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Bitwarden.CLI +PackageVersion: 2025.6.0 +PackageLocale: pt-BR +Publisher: Bitwarden Inc. +PublisherUrl: https://bitwarden.com/ +PublisherSupportUrl: https://bitwarden.com/help +PrivacyUrl: https://bitwarden.com/privacy +Author: Bitwarden Inc. +PackageName: Bitwarden CLI +PackageUrl: https://bitwarden.com/download +License: GPL-3.0 ou Bitwarden-1.0 +LicenseUrl: https://github.com/bitwarden/clients/blob/master/LICENSE.txt +Copyright: Copyright © 2015-2024 Bitwarden Inc. +CopyrightUrl: https://github.com/bitwarden/server/blob/master/TRADEMARK_GUIDELINES.md +ShortDescription: Um gerenciador de senha seguro e gratuito para todos os seus dispositivos. +Tags: +- credencial +- proteger +- proteção +- segurança +- senha +PurchaseUrl: https://bitwarden.com/pricing/business/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/CLI/2025.6.0/Bitwarden.CLI.yaml b/manifests/b/Bitwarden/CLI/2025.6.0/Bitwarden.CLI.yaml new file mode 100644 index 0000000000000..bd17abc7cd11c --- /dev/null +++ b/manifests/b/Bitwarden/CLI/2025.6.0/Bitwarden.CLI.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: Bitwarden.CLI +PackageVersion: 2025.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/CLI/2025.6.1/Bitwarden.CLI.installer.yaml b/manifests/b/Bitwarden/CLI/2025.6.1/Bitwarden.CLI.installer.yaml new file mode 100644 index 0000000000000..28a26765cbc92 --- /dev/null +++ b/manifests/b/Bitwarden/CLI/2025.6.1/Bitwarden.CLI.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: Bitwarden.CLI +PackageVersion: 2025.6.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: bw.exe +InstallerSwitches: + Silent: status --quiet +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bitwarden/clients/releases/download/cli-v2025.6.1/bw-windows-2025.6.1.zip + InstallerSha256: 640F956E738CA015703E2DF89DA364C884BCF21C07C39B245404A148BE91DFA0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/CLI/2025.6.1/Bitwarden.CLI.locale.en-US.yaml b/manifests/b/Bitwarden/CLI/2025.6.1/Bitwarden.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..82a0a6ce1c5e5 --- /dev/null +++ b/manifests/b/Bitwarden/CLI/2025.6.1/Bitwarden.CLI.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Bitwarden.CLI +PackageVersion: 2025.6.1 +PackageLocale: en-US +Publisher: Bitwarden Inc. +PublisherUrl: https://bitwarden.com/ +PublisherSupportUrl: https://bitwarden.com/help +PrivacyUrl: https://bitwarden.com/privacy +Author: Bitwarden Inc. +PackageName: Bitwarden CLI +PackageUrl: https://bitwarden.com/download +License: GPL-3.0 or Bitwarden-1.0 +LicenseUrl: https://github.com/bitwarden/clients/blob/HEAD/LICENSE.txt +Copyright: Copyright © 2015-2024 Bitwarden Inc. +CopyrightUrl: https://github.com/bitwarden/server/blob/master/TRADEMARK_GUIDELINES.md +ShortDescription: A secure and free password manager for all of your devices. +Tags: +- credential +- password +- protect +- protection +- security +ReleaseNotes: Fixed Password generator is broken. Version 2025.6.0 (43904) +ReleaseNotesUrl: https://github.com/bitwarden/clients/releases/tag/cli-v2025.6.1 +PurchaseUrl: https://bitwarden.com/pricing/business/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/CLI/2025.6.1/Bitwarden.CLI.locale.pt-BR.yaml b/manifests/b/Bitwarden/CLI/2025.6.1/Bitwarden.CLI.locale.pt-BR.yaml new file mode 100644 index 0000000000000..efa77524b3c10 --- /dev/null +++ b/manifests/b/Bitwarden/CLI/2025.6.1/Bitwarden.CLI.locale.pt-BR.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Bitwarden.CLI +PackageVersion: 2025.6.1 +PackageLocale: pt-BR +Publisher: Bitwarden Inc. +PublisherUrl: https://bitwarden.com/ +PublisherSupportUrl: https://bitwarden.com/help +PrivacyUrl: https://bitwarden.com/privacy +Author: Bitwarden Inc. +PackageName: Bitwarden CLI +PackageUrl: https://bitwarden.com/download +License: GPL-3.0 ou Bitwarden-1.0 +LicenseUrl: https://github.com/bitwarden/clients/blob/master/LICENSE.txt +Copyright: Copyright © 2015-2024 Bitwarden Inc. +CopyrightUrl: https://github.com/bitwarden/server/blob/master/TRADEMARK_GUIDELINES.md +ShortDescription: Um gerenciador de senha seguro e gratuito para todos os seus dispositivos. +Tags: +- credencial +- proteger +- proteção +- segurança +- senha +PurchaseUrl: https://bitwarden.com/pricing/business/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bitwarden/CLI/2025.6.1/Bitwarden.CLI.yaml b/manifests/b/Bitwarden/CLI/2025.6.1/Bitwarden.CLI.yaml new file mode 100644 index 0000000000000..ecd5338b0db86 --- /dev/null +++ b/manifests/b/Bitwarden/CLI/2025.6.1/Bitwarden.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: Bitwarden.CLI +PackageVersion: 2025.6.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BjoernBoeckle/mqtt-presence/0.2.9/BjoernBoeckle.mqtt-presence.installer.yaml b/manifests/b/BjoernBoeckle/mqtt-presence/0.2.9/BjoernBoeckle.mqtt-presence.installer.yaml new file mode 100644 index 0000000000000..1505befb32987 --- /dev/null +++ b/manifests/b/BjoernBoeckle/mqtt-presence/0.2.9/BjoernBoeckle.mqtt-presence.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: BjoernBoeckle.mqtt-presence +PackageVersion: 0.2.9 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bjoernboeckle/mqtt-presence/releases/download/v0.2.9/mqtt-presence-v0.2.9-setup.exe + InstallerSha256: dbbb620f6d7325dbf01a5fefe6376c501f5596d45e8ddcfa988961b938570ab0 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/b/BjoernBoeckle/mqtt-presence/0.2.9/BjoernBoeckle.mqtt-presence.locale.en-US.yaml b/manifests/b/BjoernBoeckle/mqtt-presence/0.2.9/BjoernBoeckle.mqtt-presence.locale.en-US.yaml new file mode 100644 index 0000000000000..c6cdb58bd2ac7 --- /dev/null +++ b/manifests/b/BjoernBoeckle/mqtt-presence/0.2.9/BjoernBoeckle.mqtt-presence.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: BjoernBoeckle.mqtt-presence +PackageVersion: 0.2.9 +PackageLocale: en-US +Publisher: Bjoern Boeckle +PackageName: mqtt-presence +License: Apache-2.0 +ShortDescription: Lightweight MQTT-based presence detection with shutdown and Raspberry Pi GPio support +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/b/BjoernBoeckle/mqtt-presence/0.2.9/BjoernBoeckle.mqtt-presence.yaml b/manifests/b/BjoernBoeckle/mqtt-presence/0.2.9/BjoernBoeckle.mqtt-presence.yaml new file mode 100644 index 0000000000000..52a77cf2b6865 --- /dev/null +++ b/manifests/b/BjoernBoeckle/mqtt-presence/0.2.9/BjoernBoeckle.mqtt-presence.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: BjoernBoeckle.mqtt-presence +PackageVersion: 0.2.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/b/Blinue/Magpie/0.12.0-preview1/Blinue.Magpie.installer.yaml b/manifests/b/Blinue/Magpie/0.12.0-preview1/Blinue.Magpie.installer.yaml new file mode 100644 index 0000000000000..7041fe13a8396 --- /dev/null +++ b/manifests/b/Blinue/Magpie/0.12.0-preview1/Blinue.Magpie.installer.yaml @@ -0,0 +1,19 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Blinue.Magpie +PackageVersion: 0.12.0-preview1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: Magpie.exe + PortableCommandAlias: magpie +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Blinue/Magpie/releases/download/v0.12.0-preview1/Magpie-v0.12.0-preview1-x64.zip + InstallerSha256: 513bfc0c21d776cee37ea8ac41fea5e20435d5a03fd4f9863f5b8bf13bdc21f7 +- Architecture: arm64 + InstallerUrl: https://github.com/Blinue/Magpie/releases/download/v0.12.0-preview1/Magpie-v0.12.0-preview1-ARM64.zip + InstallerSha256: 5baa83cb96fc08beb27a9cb7c01f5380244df8601e22112c8aa2327c2c780b40 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Blinue/Magpie/0.12.0-preview1/Blinue.Magpie.locale.en-US.yaml b/manifests/b/Blinue/Magpie/0.12.0-preview1/Blinue.Magpie.locale.en-US.yaml new file mode 100644 index 0000000000000..4f82a06f2c238 --- /dev/null +++ b/manifests/b/Blinue/Magpie/0.12.0-preview1/Blinue.Magpie.locale.en-US.yaml @@ -0,0 +1,76 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Blinue.Magpie +PackageVersion: 0.12.0-preview1 +PackageLocale: en-US +Publisher: Blinue +PublisherUrl: https://github.com/Blinue +PublisherSupportUrl: https://github.com/Blinue/Magpie/issues +PackageName: Magpie +PackageUrl: https://github.com/Blinue/Magpie +License: GPL-3.0 +LicenseUrl: https://github.com/Blinue/Magpie/blob/HEAD/LICENSE +ShortDescription: Magpie can enlarge any window to full screen and supports a variety of advanced zoom algorithms, including Lanczos, Anime4K, FSR, FSRCNNX, etc. +Tags: +- anime4k +- capture +- cppwinrt +- fluent-design +- fsr +- hlsl +- magnifier +- magpie +- super-resolution +- windows +- xaml-islands +ReleaseNotes: |- + New Features + 1. Windowed mode scaling (#1071, #135) + - Press Alt+Shift+Q to upscale the foreground window in windowed mode. The scaled window can be dragged and resized like a normal window. + - A toolbar has been added at the top of the scaled window, providing features like FPS display and screenshot capture + 2. Fullscreen scaling now persists when switching foreground windows (#1052) + 3. Improved error reporting with user-friendly messages (#1022) + 4. Minimum FPS threshold support (#1043, #899) + - Helps maintain stable GPU clock speeds and prevents stuttering due to sudden framerate spikes + 5. GPU change detection support (#1037) + 6. Tray icon menu now supports delayed scaling (#1042, #524) + - You can now open the main window with a single click on the tray icon, double-click is no longer needed + 7. "New Profile" dialog: "Name" field now supports filling in window title or process name via right-click menu (#1153, #1157) + 8. Shortcut keys now support Tab, Print Screen, and Pause/Break (#1134, #1133)ReleaseNotesUrl: https://github.com/Blinue/Magpie/releases/tag/v0.12.0-preview1 + Effects + 1. FP16 support added (#1049) + - Significantly improves performance for most ML-based effects + - FP16-enabled effects include Anime4K family, CuNNy family, FSRCNNX family, ACNet, FSR, NIS, and more + - Enabled only on GPUs with FP16 support + 2. New CuNNy2 effect family (#1147) + - An enhanced version of CuNNy, with retrained models for fewer artifacts and sharper lines + - CuNNy now replaces ACNet as one of the default scaling modes + - The original CuNNy has been deprecated and will be removed in a future release + - Homepage: https://github.com/funnyplanter/CuNNy + 3. NIS updated to v1.0.3 (#1049) + 4. CRT_Geom no longer supports interlacing simulation (#1165) + - Interlacing parameter removed + - The change is due to the reliance of interlacing on a fixed frame rate, which is incompatible with Magpie’s on-demand rendering model + Fixes + 1. Fixed missing arguments when using a shortcut as a launcher (#1162, #1158) + 2. Fixed incorrect GPU order in certain cases + 3. Fixed crash when deleting a scaling mode (#1155, #1154) + 4. Fixed crash when opening context menu in text boxes under certain conditions (#1152, #1070) + 5. Fixed error dialog of TouchHelper (#1139, #1135) + 6. Fixed flickering at window edges during resizing (thanks @apkipa) (#1096) + 7. Fixed incorrect position of snap layout popup (thanks @apkipa) (#1034) + 8. Fixed missing "Auto scale" setting when copying a profile (#1065, #1064) + Other Changes + 1. Default modifier key changed from Win to Alt (#1150, #1136) + - Win+Shift+A is now reserved by Windows Recall + 2. Increased GPU process priority (#1146) + - Improves smoothness under heavy system load + 3. Improved long path handling (#960) + - Magpie itself still doesn’t support being run from a long path + 4. Documentation updates (thanks @mhtvsSFrpHdE) (#1113, #1140) +ReleaseNotesUrl: https://github.com/Blinue/Magpie/releases/tag/v0.12.0-preview1 +Documentations: + - DocumentLabel: Wiki + DocumentUrl: https://github.com/Blinue/Magpie/wiki/Home%20(EN) +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Blinue/Magpie/0.12.0-preview1/Blinue.Magpie.yaml b/manifests/b/Blinue/Magpie/0.12.0-preview1/Blinue.Magpie.yaml new file mode 100644 index 0000000000000..2fd29c1418197 --- /dev/null +++ b/manifests/b/Blinue/Magpie/0.12.0-preview1/Blinue.Magpie.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Blinue.Magpie +PackageVersion: 0.12.0-preview1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Blix/BlueMail/1.140.97/Blix.BlueMail.installer.yaml b/manifests/b/Blix/BlueMail/1.140.97/Blix.BlueMail.installer.yaml new file mode 100644 index 0000000000000..a200c1072fa2a --- /dev/null +++ b/manifests/b/Blix/BlueMail/1.140.97/Blix.BlueMail.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: Blix.BlueMail +PackageVersion: 1.140.97 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 71858651-6442-5a51-8131-e85c863c9f27 +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x64 + InstallerUrl: https://download.bluemail.me/BlueMail/BlueMail-1.140.97.exe + InstallerSha256: 996A6099A75D439AD40FB2DAE490C1A6D2C1D5BC6092CBD2119636F2AFA5B4A1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Blix/BlueMail/1.140.97/Blix.BlueMail.locale.en-US.yaml b/manifests/b/Blix/BlueMail/1.140.97/Blix.BlueMail.locale.en-US.yaml new file mode 100644 index 0000000000000..2e0f299bc9ee7 --- /dev/null +++ b/manifests/b/Blix/BlueMail/1.140.97/Blix.BlueMail.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Blix.BlueMail +PackageVersion: 1.140.97 +PackageLocale: en-US +Publisher: BlueMail +PublisherUrl: https://blix.net/ +PublisherSupportUrl: https://bluemail.me/help/ +PrivacyUrl: https://bluemail.me/privacy/ +Author: Blix Inc. +PackageName: BlueMail +PackageUrl: https://bluemail.me/ +License: Proprietary +LicenseUrl: https://bluemail.me/tos/ +Copyright: Copyright © 2024 Blix Inc. All rights reserved. +ShortDescription: BlueMail is a free, beautifully designed, cross platform email & calendar app, capable of managing an unlimited number of mail accounts from various providers. +Tags: +- email +- mail +PurchaseUrl: https://bluemail.me/pricing/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Blix/BlueMail/1.140.97/Blix.BlueMail.locale.zh-CN.yaml b/manifests/b/Blix/BlueMail/1.140.97/Blix.BlueMail.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e385966264ca5 --- /dev/null +++ b/manifests/b/Blix/BlueMail/1.140.97/Blix.BlueMail.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: Blix.BlueMail +PackageVersion: 1.140.97 +PackageLocale: zh-CN +Publisher: BlueMail +PublisherUrl: https://blix.net/ +PublisherSupportUrl: https://bluemail.me/help/ +PrivacyUrl: https://bluemail.me/privacy/ +Author: Blix Inc. +PackageName: BlueMail +PackageUrl: https://bluemail.me/ +License: 专有软件 +LicenseUrl: https://bluemail.me/tos/ +Copyright: Copyright © 2024 Blix Inc. All rights reserved. +ShortDescription: BlueMail 是一款设计精美的免费跨平台电子邮件和日历应用程序,能够管理无限数量的来自不同供应商的邮件账户。 +Tags: +- 电子邮件 +- 邮件 +PurchaseUrl: https://bluemail.me/pricing/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Blix/BlueMail/1.140.97/Blix.BlueMail.yaml b/manifests/b/Blix/BlueMail/1.140.97/Blix.BlueMail.yaml new file mode 100644 index 0000000000000..05c5030f7c80f --- /dev/null +++ b/manifests/b/Blix/BlueMail/1.140.97/Blix.BlueMail.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: Blix.BlueMail +PackageVersion: 1.140.97 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bloomberg/BloombergTerminal/2.0/Bloomberg.BloombergTerminal.installer.yaml b/manifests/b/Bloomberg/BloombergTerminal/2.0/Bloomberg.BloombergTerminal.installer.yaml index e824f287cfada..f929bc942853f 100644 --- a/manifests/b/Bloomberg/BloombergTerminal/2.0/Bloomberg.BloombergTerminal.installer.yaml +++ b/manifests/b/Bloomberg/BloombergTerminal/2.0/Bloomberg.BloombergTerminal.installer.yaml @@ -7,10 +7,10 @@ InstallerType: inno Scope: machine UpgradeBehavior: install ProductCode: Bloomberg Terminal_is1 -ReleaseDate: 2025-05-14 +ReleaseDate: 2025-06-05 Installers: - Architecture: x64 - InstallerUrl: https://bdn-ak-ssl.bloomberg.com/software/trv/sotr169_5_81.exe - InstallerSha256: 68550BB919014823AE661EB699D3076601F931DC74AD0AED5A1A2B1C926F2DEF + InstallerUrl: https://bdn-ak-ssl.bloomberg.com/software/trv/sotr171_4_81.exe + InstallerSha256: 567C58161A87EB2B7A44FCADE78F530AB7C9F9E91B2EA1BB8CBAF7088DD08846 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/b/Bloomberg/BloombergTerminal/2.0/Bloomberg.BloombergTerminal.locale.en-US.yaml b/manifests/b/Bloomberg/BloombergTerminal/2.0/Bloomberg.BloombergTerminal.locale.en-US.yaml index 34cea18068c50..c9dcc2393fdd1 100644 --- a/manifests/b/Bloomberg/BloombergTerminal/2.0/Bloomberg.BloombergTerminal.locale.en-US.yaml +++ b/manifests/b/Bloomberg/BloombergTerminal/2.0/Bloomberg.BloombergTerminal.locale.en-US.yaml @@ -12,6 +12,6 @@ LicenseUrl: https://www.bloomberg.com/notices/tos/ Copyright: © 2025 Bloomberg L.P. All Rights Reserved. CopyrightUrl: https://www.bloomberg.com/notices/tos/ ShortDescription: The most powerful, flexible tool for financial professionals who need real-time data, news, and analytics. -ReleaseNotes: '- Update Bloomberg Webview API Version' +ReleaseNotes: '- Performance improvements to Bloomberg Application' ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/b/BlueMystical/EDHM/2.2.67/BlueMystical.EDHM.installer.yaml b/manifests/b/BlueMystical/EDHM/2.2.67/BlueMystical.EDHM.installer.yaml new file mode 100644 index 0000000000000..c2c4bfd5e5ae1 --- /dev/null +++ b/manifests/b/BlueMystical/EDHM/2.2.67/BlueMystical.EDHM.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BlueMystical.EDHM +PackageVersion: 2.2.67 +InstallerLocale: en-US +InstallerType: msi +Scope: machine +UpgradeBehavior: install +ProductCode: '{615F9D14-43D5-44C9-9706-213393A48266}' +ReleaseDate: 2025-06-30 +AppsAndFeaturesEntries: +- DisplayName: EDHM_UI + Publisher: Blue Mystic + ProductCode: '{615F9D14-43D5-44C9-9706-213393A48266}' + UpgradeCode: '{2949570F-AF20-4990-B258-006A1649A388}' +InstallationMetadata: + DefaultInstallLocation: APPDIR:. +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/BlueMystical/EDHM_UI/releases/download/v2.2.67/EDHM_UI_Setup.msi + InstallerSha256: 28A141F0113240154798A48EF6E39BE23000DFDE06E1FBA5C2C3FC54AA91D58B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BlueMystical/EDHM/2.2.67/BlueMystical.EDHM.locale.en-US.yaml b/manifests/b/BlueMystical/EDHM/2.2.67/BlueMystical.EDHM.locale.en-US.yaml new file mode 100644 index 0000000000000..04806a7a5d793 --- /dev/null +++ b/manifests/b/BlueMystical/EDHM/2.2.67/BlueMystical.EDHM.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: BlueMystical.EDHM +PackageVersion: 2.2.67 +PackageLocale: en-US +Publisher: BlueMystical +PublisherUrl: https://github.com/BlueMystical +PublisherSupportUrl: https://github.com/BlueMystical/EDHM_UI/issues +PackageName: User Interface for Elite Dangerous HUD Mod +PackageUrl: https://github.com/BlueMystical/EDHM_UI +License: GPL-3.0 +LicenseUrl: https://github.com/BlueMystical/EDHM_UI/blob/HEAD/license.txt +ShortDescription: The purpose of EDHM is to allow players of the game to customize their HUD Colors in many ways. This is estrictly a graphical mod, we dont change any in-game mechanics or things that FDev charges for. +Moniker: edhm_ui +ReleaseNotes: '- Little patch to ensure compatibility with incoming v3.0' +ReleaseNotesUrl: https://github.com/BlueMystical/EDHM_UI/releases/tag/v2.2.67 +InstallationNotes: The first time EDHM_UI runs, it will prompt you for the Elite Dangerous game folder. This determines where the EDHM core mod will be installed. The location varies depending on which version of ED you have installed. Simply click the Green Button and do as the Assistant says. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BlueMystical/EDHM/2.2.67/BlueMystical.EDHM.yaml b/manifests/b/BlueMystical/EDHM/2.2.67/BlueMystical.EDHM.yaml new file mode 100644 index 0000000000000..f021bb8ec603a --- /dev/null +++ b/manifests/b/BlueMystical/EDHM/2.2.67/BlueMystical.EDHM.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: BlueMystical.EDHM +PackageVersion: 2.2.67 +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/Bluefish/Bluefish/2.2.17/Bluefish.Bluefish.installer.yaml b/manifests/b/Bluefish/Bluefish/2.2.17/Bluefish.Bluefish.installer.yaml index 30364639a7509..bbbdb0661fef3 100644 --- a/manifests/b/Bluefish/Bluefish/2.2.17/Bluefish.Bluefish.installer.yaml +++ b/manifests/b/Bluefish/Bluefish/2.2.17/Bluefish.Bluefish.installer.yaml @@ -1,22 +1,20 @@ -# Created with komac v2.11.2 -# 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: Bluefish.Bluefish PackageVersion: 2.2.17 -InstallerLocale: en-US InstallerType: nullsoft -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install +FileExtensions: +- bfproject ReleaseDate: 2025-03-31 InstallationMetadata: DefaultInstallLocation: '%ProgramFiles(x86)%\Bluefish' + Files: + - RelativeFilePath: bluefish.exe + FileSha256: 9DD7E3ACB4CE2CD7C7F04639102708F7E456F09BF08657AEA0CCC2E3044E44CF Installers: - Architecture: x64 InstallerUrl: https://www.bennewitz.com/bluefish/stable/binaries/windows_x64/Bluefish%202.2.17%20Setup.exe InstallerSha256: 9C07E7D61CE445573BD46D3D222359F2D374CC5CBE26C4E7F78D6AFF1F0E0120 ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bluefish/Bluefish/2.2.17/Bluefish.Bluefish.locale.en-US.yaml b/manifests/b/Bluefish/Bluefish/2.2.17/Bluefish.Bluefish.locale.en-US.yaml index 29332e6dedecd..48474ec56a878 100644 --- a/manifests/b/Bluefish/Bluefish/2.2.17/Bluefish.Bluefish.locale.en-US.yaml +++ b/manifests/b/Bluefish/Bluefish/2.2.17/Bluefish.Bluefish.locale.en-US.yaml @@ -1,25 +1,103 @@ -# Created with komac v2.11.2 -# 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: Bluefish.Bluefish PackageVersion: 2.2.17 PackageLocale: en-US Publisher: The Bluefish Developers -PublisherUrl: https://bluefish.openoffice.nl/index.html -PublisherSupportUrl: https://bfwiki.tellefsen.net/index.php/Manual_2_ToC +PublisherUrl: https://bluefish.openoffice.nl/ +PublisherSupportUrl: https://bluefish.openoffice.nl/development.html +# PrivacyUrl: +# Author: PackageName: Bluefish PackageUrl: https://bluefish.openoffice.nl/features.html -License: GNU GPL +License: GPL-3.0 LicenseUrl: https://sourceforge.net/p/bluefish/code/HEAD/tree/trunk/bluefish/COPYING +Copyright: Copyright © 1998-2025 Olivier Sessink and others. +# CopyrightUrl: ShortDescription: Bluefish is a powerful editor targeted towards programmers and webdevelopers, with many options to write websites, scripts and programming code. Description: |- Bluefish is a powerful editor targeted towards programmers and webdevelopers, with many options to write websites, scripts and programming code. - Bluefish supports many programming and markup languages. - See features for an extensive overview, take a look at the screenshots, or download it right away. + Bluefish has many features, this list will give you an overview of the most important or outstanding features in Bluefish 2.2. Not all features are (yet) available on Windows or Mac OSX. + - Lightweight - Bluefish tries to be lean and clean, as far as possible given it is a GUI editor. + - Fast - Bluefish starts really quick (even on a netbook) and loads hundreds of files within seconds. + - Multiple document interface, easily opens 500+ documents (tested >10000 documents simultaneously) + - Project support, enables you to work efficiently on multiple projects, and automatically restores settings for each project. + - Multi-threaded support for remote files using gvfs, supporting FTP, SFTP, HTTP, HTTPS, WebDAV, CIFS and more + - Very powerful search and replace, with support for Perl Compatible regular expressions, sub-pattern replacing, and search and replace in files on disk. + - Open files recursively based on filename patterns and/or content patterns + - Snippets sidebar - specify custom dialogs, search and replace patterns or insert patterns and bind them to a shortkut key combination of your liking to speed up your development process + - Integrate external programs such as make, lint, weblint, xmllint, tidy, javac, or your own program or script to handle advanced text processing or error detection + - Integrate external filters of your liking, pipe your document (or just the current selected text) through sort, sed, awk or any custom script + - Unlimited undo/redo functionality + - In-line spell checker which is programing language aware (spell check comments and strings, but not code), requires libenchant during compilation + - Auto-recovery of changes in modified documents after a crash, kill or shutdown + - Character map of all unicode characters (requires libgucharmap during compilation) + - Site upload / download1 + - Full screen editing + - Many tools such as tabs to spaces, join lines, lines to columns, strip whitespace, etc. etc. + - Customizable programming language support: + - In-line reference information (move your mouse over a function name or tag name) for various programming languages + - Code block folding + - Highlighting matching block start and end markers (both brackets and tags) + - Auto-completion and auto-tag-closing for many programming languages, with reference information, and even for nested languages (e.g. css and javascript inside html code that is inside a php document) + with included language definition files for: + - Ada + - ASP .NET and VBS + - C/C++ + - CSS + - CFML + - Clojure + - D + - gettext PO + - Google Go + - HTML, XHTML and HTML5 + - Java and JSP + - JavaScript and jQuery + - Lua + - Octave/MATLAB + - MediaWiki + - NSIS + - Pascal + - Perl + - PHP + - Python + - R + - Ruby + - SASS + - Shell + - Scheme + - SQL + - SVG + - Vala + - Wordpress + - XML + - Multiple encodings support. Bluefish works internally with UTF8, but can save your documents in any desired encoding. + - Bookmarks functionality + - HTML toolbar and tearable menu's + - Dialogs and wizards for many HTML tags, with all their attributes + - Fully featured image insert dialog + - Thumbnail creation and automatically linking of the thumbnail with the original image, and multi-thumbnail creation + - User-customizable toolbar for quick access to often used functions + - ZenCoding support + - Compliance with the Gnome and KDE user interface guidelines where possible + - Translations into 17 languages - and more are coming for the next releases. Bluefish is an open source development project, released under the GNU GPL licence. Moniker: bluefish Tags: -- bluefish +- code +- coding +- editing - editor +- programming +ReleaseNotes: |- + Bluefish 2.2.17 is a maintenance release that has only code cleanup fixes to comply better with modern compiler standards. It furthermore has fixes for a 64bit Windows build of Bluefish with Msys2. So there finally is an up to date Bluefish installer for windows again! + The windows build has a few remaining issues that need to be solved. The biggest issue is that starting external commands from within Bluefish does not yet work (such as a preview in browser, an external filter or just your favourite CI/CD pipeline). The other big issues is the character map plugin that is not yet included in the installer. If you want to help to improve Bluefish on windows, contact me at olivier(at)bluefish.openoffice.nl or join the community mailinglist. +ReleaseNotesUrl: https://bluefish.openoffice.nl/ +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://bfwiki.tellefsen.net/ ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bluefish/Bluefish/2.2.17/Bluefish.Bluefish.locale.zh-CN.yaml b/manifests/b/Bluefish/Bluefish/2.2.17/Bluefish.Bluefish.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3aef8cfed5873 --- /dev/null +++ b/manifests/b/Bluefish/Bluefish/2.2.17/Bluefish.Bluefish.locale.zh-CN.yaml @@ -0,0 +1,98 @@ +# 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: Bluefish.Bluefish +PackageVersion: 2.2.17 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +# License: +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: Bluefish 是一款功能强大的编辑器,专为程序员和网页开发人员设计,提供多种选项用于编写网站、脚本和编程代码。 +Description: |- + Bluefish 是一款功能强大的编辑器,专为程序员和网页开发人员设计,提供多种选项用于编写网站、脚本和编程代码。 + Bluefish 拥有许多功能,以下是 Bluefish 2.2 中最重要或最突出的功能概览。并非所有功能目前都支持 Windows 或 Mac OSX。 + - 轻量级 - Bluefish 尽量保持简洁和轻量,尽可能符合 GUI 编辑器的要求。 + - 快速 - Bluefish 启动速度极快(即使在上网本上),并可在几秒内加载数百个文件。 + - 多文档界面,轻松打开 500+ 文档(已测试同时打开 >10000 个文档)。 + - 项目支持 - 支持高效管理多个项目,自动恢复每个项目的设置。 + - 多线程远程文件支持,通过 gvfs 支持 FTP、SFTP、HTTP、HTTPS、WebDAV、CIFS 等协议。 + - 功能强大的查找和替换 - 支持 Perl 兼容的正则表达式、子模式替换,以及磁盘上文件的查找和替换。 + - 递归打开文件,基于文件名模式和/或内容模式。 + - 代码片段侧边栏 - 自定义对话框、查找和替换模式或插入模式,并绑定到快捷键组合以加速开发过程。 + - 集成外部程序 - 如 make、lint、weblint、xmllint、tidy、javac,或自定义程序/脚本,用于高级文本处理或错误检测。 + - 集成外部过滤器 - 可将文档(或当前选中的文本)通过 sort、sed、awk 或任何自定义脚本处理。 + - 无限制的撤销/重做功能。 + - 内联拼写检查 - 具有编程语言感知能力(检查注释和字符串,而非代码),需要在编译时安装 libenchant。 + - 自动恢复功能 - 在崩溃、终止或关机后恢复已修改文档的更改。 + - Unicode 字符映射(编译时需要 libgucharmap)。 + - 站点上传/下载。 + - 全屏编辑模式。 + - 多种工具 - 如制表符转空格、合并行、行转列、清除空格等。 + - 可自定义的编程语言支持: + - 各种编程语言的内联参考信息(将鼠标悬停在函数名或标签名上)。 + - 代码块折叠功能。 + - 匹配代码块起始和结束标记的高亮显示(括号和标签)。 + - 对多种编程语言提供自动补全和自动闭合标签,支持嵌套语言(如 HTML 代码中的 CSS 和 JavaScript,嵌套于 PHP 文档中)。 + 包含的语言定义文件支持: + - Ada + - ASP .NET 和 VBS + - C/C++ + - CSS + - CFML + - Clojure + - D + - gettext PO + - Google Go + - HTML、XHTML 和 HTML5 + - Java 和 JSP + - JavaScript 和 jQuery + - Lua + - Octave/MATLAB + - MediaWiki + - NSIS + - Pascal + - Perl + - PHP + - Python + - R + - Ruby + - SASS + - Shell + - Scheme + - SQL + - SVG + - Vala + - Wordpress + - XML + - 多编码支持 - Bluefish 内部使用 UTF8,但可将文档保存为任何所需编码格式。 + - 书签功能。 + - HTML 工具栏和可分离菜单: + - 提供许多 HTML 标签的对话框和向导,包含所有属性。 + - 完整功能的图像插入对话框。 + - 缩略图创建,自动将缩略图与原始图像链接,以及批量缩略图创建。 + - 用户可自定义工具栏,快速访问常用功能。 + - 支持 ZenCoding。 + - 尽可能符合 Gnome 和 KDE 用户界面指南。 + - 支持 17 种语言的翻译 - 更多语言将在未来版本中添加。 + Bluefish 是一个开源开发项目,根据 GNU GPL 许可证发布。 +# Moniker: +Tags: +- 代码 +- 编程 +- 编辑 +- 编辑器 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bluefish/Bluefish/2.2.17/Bluefish.Bluefish.yaml b/manifests/b/Bluefish/Bluefish/2.2.17/Bluefish.Bluefish.yaml index 8618dd4ee0525..001c4de3036f6 100644 --- a/manifests/b/Bluefish/Bluefish/2.2.17/Bluefish.Bluefish.yaml +++ b/manifests/b/Bluefish/Bluefish/2.2.17/Bluefish.Bluefish.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.11.2 -# 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: Bluefish.Bluefish PackageVersion: 2.2.17 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.6.0/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.6.0/Bosyun.BoardMix.CN.installer.yaml index 8ee6ed682052e..47495782b92c0 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.6.0/Bosyun.BoardMix.CN.installer.yaml +++ b/manifests/b/Bosyun/BoardMix/CN/1.6.0/Bosyun.BoardMix.CN.installer.yaml @@ -11,7 +11,7 @@ AppsAndFeaturesEntries: - InstallerType: nullsoft Installers: - Architecture: x64 - InstallerUrl: https://cms-oss.boardmix.cn/packages/download/desktop/bosyun/1.6.0/boardmix_win_1.6.0_x64.exe + InstallerUrl: https://boardmix-cms.oss-cn-hangzhou.aliyuncs.com/packages/download/desktop/bosyun/1.6.0/boardmix_win_1.6.0_x64.exe InstallerSha256: ED268056E95C7F5A63062871789BB4D577E6AD3BBAE401AFC1796B5E691714FB ProductCode: '{b9464f48-5337-57a6-aa1d-adc298f5233d}_is1' ManifestType: installer diff --git a/manifests/b/Bosyun/BoardMix/CN/1.6.4/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.6.4/Bosyun.BoardMix.CN.installer.yaml index 890e572bb4351..b5c34f6899d53 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.6.4/Bosyun.BoardMix.CN.installer.yaml +++ b/manifests/b/Bosyun/BoardMix/CN/1.6.4/Bosyun.BoardMix.CN.installer.yaml @@ -11,7 +11,7 @@ AppsAndFeaturesEntries: - InstallerType: nullsoft Installers: - Architecture: x64 - InstallerUrl: https://cms-oss.boardmix.cn/packages/download/desktop/bosyun/1.6.4/boardmix_win_1.6.4_x64.exe + InstallerUrl: https://boardmix-cms.oss-cn-hangzhou.aliyuncs.com/packages/download/desktop/bosyun/1.6.4/boardmix_win_1.6.4_x64.exe InstallerSha256: 0B1C7D85BFDEA1A3278602F903F1C46ECFE87DCEE1808BAE4FA4CA0128FC1271 ManifestType: installer ManifestVersion: 1.6.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.6.6/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.6.6/Bosyun.BoardMix.CN.installer.yaml index a490c3515c149..d2856f1f31a90 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.6.6/Bosyun.BoardMix.CN.installer.yaml +++ b/manifests/b/Bosyun/BoardMix/CN/1.6.6/Bosyun.BoardMix.CN.installer.yaml @@ -11,7 +11,7 @@ AppsAndFeaturesEntries: - InstallerType: nullsoft Installers: - Architecture: x64 - InstallerUrl: https://cms-oss.boardmix.cn/packages/download/desktop/bosyun/1.6.6/boardmix_win_1.6.6_x64.exe + InstallerUrl: https://boardmix-cms.oss-cn-hangzhou.aliyuncs.com/packages/download/desktop/bosyun/1.6.6/boardmix_win_1.6.6_x64.exe InstallerSha256: CF8F72D0E1D6239F29D9AFDB4DF58B4DCB4A4C6FC9093F8D62473F5B407A3F77 ProductCode: '{b9464f48-5337-57a6-aa1d-adc298f5233d}_is1' ManifestType: installer diff --git a/manifests/b/Bosyun/BoardMix/CN/1.7.2/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.7.2/Bosyun.BoardMix.CN.installer.yaml index 38841b47e4d94..76318d431d510 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.7.2/Bosyun.BoardMix.CN.installer.yaml +++ b/manifests/b/Bosyun/BoardMix/CN/1.7.2/Bosyun.BoardMix.CN.installer.yaml @@ -12,7 +12,7 @@ AppsAndFeaturesEntries: - InstallerType: nullsoft Installers: - Architecture: x64 - InstallerUrl: https://cms-oss.boardmix.cn/packages/download/desktop/bosyun/1.7.2/boardmix_win_1.7.2_x64.exe + InstallerUrl: https://boardmix-cms.oss-cn-hangzhou.aliyuncs.com/packages/download/desktop/bosyun/1.7.2/boardmix_win_1.7.2_x64.exe InstallerSha256: 787E7FD22044B8D4312FF8F540AA936706C70B288021CE3D62EB7E350CF636AD ManifestType: installer ManifestVersion: 1.9.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.installer.yaml index 977edae51a3f6..c433395886b50 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.installer.yaml +++ b/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.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: Bosyun.BoardMix.CN PackageVersion: 1.7.3 @@ -12,7 +12,7 @@ AppsAndFeaturesEntries: - InstallerType: nullsoft Installers: - Architecture: x64 - InstallerUrl: https://cms-oss.boardmix.cn/packages/download/desktop/bosyun/1.7.3/boardmix_win_1.7.3_x64.exe + InstallerUrl: https://boardmix-cms.oss-cn-hangzhou.aliyuncs.com/packages/download/desktop/bosyun_v2/1.7.3/boardmix_win_1.7.3_x64.exe InstallerSha256: 3B87C01AF7E18CBC77EC6869D84C1A9924EA346B43C542353943A1A623C854E8 ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.locale.en-US.yaml index 83b63e151ca42..abf0801236b05 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.locale.en-US.yaml +++ b/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.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: Bosyun.BoardMix.CN PackageVersion: 1.7.3 @@ -24,4 +24,4 @@ Tags: - whiteboard PurchaseUrl: https://boardmix.cn/price/ ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.locale.zh-CN.yaml index b5f84cab6134d..78cade0a50c12 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ b/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.locale.zh-CN.yaml @@ -1,5 +1,5 @@ # 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: Bosyun.BoardMix.CN PackageVersion: 1.7.3 @@ -25,4 +25,4 @@ Tags: - 白板 PurchaseUrl: https://boardmix.cn/price ManifestType: locale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.yaml index d810e8f1eef83..3a12df8a1ba57 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.yaml +++ b/manifests/b/Bosyun/BoardMix/CN/1.7.3/Bosyun.BoardMix.CN.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: Bosyun.BoardMix.CN PackageVersion: 1.7.3 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bosyun/Pixso/CN/2.1.0/Bosyun.Pixso.CN.installer.yaml b/manifests/b/Bosyun/Pixso/CN/2.1.0/Bosyun.Pixso.CN.installer.yaml new file mode 100644 index 0000000000000..ac0d9db9158c9 --- /dev/null +++ b/manifests/b/Bosyun/Pixso/CN/2.1.0/Bosyun.Pixso.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: Bosyun.Pixso.CN +PackageVersion: 2.1.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +FileExtensions: +- pix +ProductCode: fdd33279-9a2b-5abb-9257-06737273f034 +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + InstallerUrl: https://pixso-pub-prod.obs.cn-east-3.myhuaweicloud.com/cms/download/package/app/bosyun/2.1.0/Pixso_win_v2_1_0.exe + InstallerSha256: E5124FC447872DF412708CC817FE6D617B3863DABEEBCCCC307BB0FDE9EE5CE8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bosyun/Pixso/CN/2.1.0/Bosyun.Pixso.CN.locale.en-US.yaml b/manifests/b/Bosyun/Pixso/CN/2.1.0/Bosyun.Pixso.CN.locale.en-US.yaml new file mode 100644 index 0000000000000..bd83a66d7a7fa --- /dev/null +++ b/manifests/b/Bosyun/Pixso/CN/2.1.0/Bosyun.Pixso.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: Bosyun.Pixso.CN +PackageVersion: 2.1.0 +PackageLocale: en-US +Publisher: Bosyun +PublisherUrl: https://pixso.cn/ +PublisherSupportUrl: https://pixso.cn/help/ +PrivacyUrl: https://pixso.cn/private-policy/ +Author: Shenzhen Pixso Technology Co., Ltd. +PackageName: Pixso +PackageUrl: https://pixso.cn/download/ +License: Proprietary +LicenseUrl: https://pixso.cn/term-services/ +Copyright: © 2024 Shenzhen Pixso Technology Co., Ltd. All rights reserved. +ShortDescription: Create Amazing UI/UX Design +Description: Pixso is an all-in-one design collaboration tool that helps R&D teams to have an easier and smoother working experience and more efficient team collaboration in prototyping, UI/UX design, visual design and low-code delivery. +Tags: +- design +- diagram +- flow +- flowchart +- interface +- mockup +- prototype +- specification +- ui +- user-interface +- ux +- wireframe +ReleaseNotesUrl: https://pixso.cn/releases/ +PurchaseUrl: https://pixso.cn/price/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bosyun/Pixso/CN/2.1.0/Bosyun.Pixso.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/Pixso/CN/2.1.0/Bosyun.Pixso.CN.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cb73784e61350 --- /dev/null +++ b/manifests/b/Bosyun/Pixso/CN/2.1.0/Bosyun.Pixso.CN.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: Bosyun.Pixso.CN +PackageVersion: 2.1.0 +PackageLocale: zh-CN +Publisher: Bosyun +PublisherUrl: https://pixso.cn/ +PublisherSupportUrl: https://pixso.cn/help/ +PrivacyUrl: https://pixso.cn/private-policy/ +Author: 深圳市博思云创科技有限公司 +PackageName: Pixso +PackageUrl: https://pixso.cn/download/ +License: 专有软件 +LicenseUrl: https://pixso.cn/term-services/ +Copyright: © 2024 深圳市博思云创科技有限公司 版权所有 +ShortDescription: 新一代设计协作工具 +Description: Pixso 是一体化设计协作工具,助力产研设团队制作原型,UI/UX 设计,视觉设计,低代码交付时获得更轻松流畅的工作体验,让团队协作更高效。 +Tags: +- ui +- 人机交互 +- 原型 +- 图表 +- 模型 +- 流程 +- 流程图 +- 用户界面 +- 界面 +- 线框图 +- 规格 +- 设计 +ReleaseNotesUrl: https://pixso.cn/releases/ +PurchaseUrl: https://pixso.cn/price/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bosyun/Pixso/CN/2.1.0/Bosyun.Pixso.CN.yaml b/manifests/b/Bosyun/Pixso/CN/2.1.0/Bosyun.Pixso.CN.yaml new file mode 100644 index 0000000000000..48e34e712d77c --- /dev/null +++ b/manifests/b/Bosyun/Pixso/CN/2.1.0/Bosyun.Pixso.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: Bosyun.Pixso.CN +PackageVersion: 2.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/138.1.80.113/Brave.Brave.installer.yaml b/manifests/b/Brave/Brave/138.1.80.113/Brave.Brave.installer.yaml new file mode 100644 index 0000000000000..21a147c84f331 --- /dev/null +++ b/manifests/b/Brave/Brave/138.1.80.113/Brave.Brave.installer.yaml @@ -0,0 +1,85 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Brave.Brave +PackageVersion: 138.1.80.113 +InstallerType: exe +ExpectedReturnCodes: +- InstallerReturnCode: -2147219440 + ReturnResponse: cancelledByUser +- InstallerReturnCode: -2147219416 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: -2147218431 + ReturnResponse: invalidParameter +- InstallerReturnCode: -2147024809 + ReturnResponse: invalidParameter +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: BraveSoftware Brave-Browser +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.80.113/BraveBrowserStandaloneSilentSetup32.exe + InstallerSha256: 30671358CF9A065499FC071FA62738E557585E17A66DCF0510597A1520632628 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.80.113/BraveBrowserStandaloneSetup32.exe + InstallerSha256: 678C8BC8D88E573EF5605B61819DA4D8ACC4BCD2C903C7940E1D73803157D499 + 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.80.113/BraveBrowserStandaloneSilentSetup.exe + InstallerSha256: 334B72F9FBEC6F3A001E46969C9D2A12F20C580E1076450B1F24A22A9184DBD8 + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.80.113/BraveBrowserStandaloneSetup.exe + InstallerSha256: 89AD86FEF630046A527E724942C0E6DF7F974838ABBAFB4B36129F3B1BC1E7F4 + 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.80.113/BraveBrowserStandaloneSilentSetupArm64.exe + InstallerSha256: AB2E2D9790573FD9B880EAD6139730077A6CC3316E085AF17613AB35A6B1ED71 + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.80.113/BraveBrowserStandaloneSetupArm64.exe + InstallerSha256: 1544F01B93E504F6E9C8413AEBF08353473FBFE9766C188BD8D9E79C90FD340A + 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/138.1.80.113/Brave.Brave.locale.en-US.yaml b/manifests/b/Brave/Brave/138.1.80.113/Brave.Brave.locale.en-US.yaml new file mode 100644 index 0000000000000..c1a55241ed825 --- /dev/null +++ b/manifests/b/Brave/Brave/138.1.80.113/Brave.Brave.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: Brave.Brave +PackageVersion: 138.1.80.113 +PackageLocale: en-US +Publisher: Brave Software Inc +PublisherUrl: https://brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave +PackageUrl: https://brave.com/download +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: Secure, Fast & Private Web Browser with Adblocker +Description: |- + The new Brave browser blocks ads and trackers that slow you down and invade your privacy. + Discover a new way of thinking about how the web can work. +Tags: +- browser +- chromium +- internet +- privacy +- web +- webpage +ReleaseNotes: |- + Web3 + - Implemented stricter wallet routing and added a 404 page for an invalid route. (#45684) + - Updated opt-in screen for Meld to fit on small screen sizes. (#44318) + - Removed the "Edit" gas button for Zcash transactions. (#45748) + - Fixed crash which occurred when trying to render Brave Wallet image in certain cases. (#46828) + - Fixed "Search" icon being cut off on the "Explore" page. (#44950) + Leo + - Added support for automatic default model. (#45954) + - Added loading spinner to display when uploading image attachments. (#45889) + - Improved image attachment UI. (#45672) + - Removed Mixtral from the default Leo model list. (#46406) + - Fixed attachment thumbnail image not being displayed correctly. (#45916) + Rewards + - Updated dark mode color theme for Rewards UI. (#45741) + General + - Added the ability to open Progressive Web Apps (PWAs) in a tabbed window. (#45435) + - Updated extension import to warn the user to close Chrome if opened during import attempt. (#44945) + - Updated extension import to import both "IndexedDB" and "Local Extension Storage" when present for an extension. (#44946) + - Updated buttons on interstitial pages to use Brave theme. (#45666) + - Removed the password check box from brave://settings/importData dialog when importing from Chrome. (#46206) + - Fixed crash which occurred when moving a tab across monitors. (#46066) + - Fixed issue with ":matches-path" being used at the beginning of a filter rule. (#46220) + - Fixed display of long keyboard shortcuts on brave://settings/system/shortcuts. (#41873) + - Fixed "Toggle Vertical Tabs Expanded" keyboard shortcut not working when "Expand Vertical Tabs Independently per Window" is enabled. (#41074) + - Upgraded Chromium to 138.0.7204.49. (#47094) (Changelog for 138.0.7204.49) +ReleaseNotesUrl: https://brave.com/latest +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://brave.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/138.1.80.113/Brave.Brave.locale.zh-CN.yaml b/manifests/b/Brave/Brave/138.1.80.113/Brave.Brave.locale.zh-CN.yaml new file mode 100644 index 0000000000000..26a72bb9c5eeb --- /dev/null +++ b/manifests/b/Brave/Brave/138.1.80.113/Brave.Brave.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: Brave.Brave +PackageVersion: 138.1.80.113 +PackageLocale: zh-CN +Publisher: Brave Software Inc +PublisherUrl: https://brave.com/zh +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave +PackageUrl: https://brave.com/zh/download +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: 带有广告拦截器的安全、快速且私密的网络浏览器 +Description: 全新的 Brave 浏览器会阻止那些导致运行速度变慢和侵犯隐私的广告和跟踪程序。探索重新思考网络运作的全新方式。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +ReleaseNotesUrl: https://brave.com/latest +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://brave.com/zh/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/138.1.80.113/Brave.Brave.yaml b/manifests/b/Brave/Brave/138.1.80.113/Brave.Brave.yaml new file mode 100644 index 0000000000000..48371338f3fdd --- /dev/null +++ b/manifests/b/Brave/Brave/138.1.80.113/Brave.Brave.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 +PackageVersion: 138.1.80.113 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/138.1.80.115/Brave.Brave.installer.yaml b/manifests/b/Brave/Brave/138.1.80.115/Brave.Brave.installer.yaml new file mode 100644 index 0000000000000..405f6cef06c6c --- /dev/null +++ b/manifests/b/Brave/Brave/138.1.80.115/Brave.Brave.installer.yaml @@ -0,0 +1,85 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Brave.Brave +PackageVersion: 138.1.80.115 +InstallerType: exe +ExpectedReturnCodes: +- InstallerReturnCode: -2147219440 + ReturnResponse: cancelledByUser +- InstallerReturnCode: -2147219416 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: -2147218431 + ReturnResponse: invalidParameter +- InstallerReturnCode: -2147024809 + ReturnResponse: invalidParameter +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: BraveSoftware Brave-Browser +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.80.115/BraveBrowserStandaloneSilentSetup32.exe + InstallerSha256: 5EB7390705EC5E32870A2D79B4A8BA2554887D07059AA850A35EDDC35F63BCC6 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.80.115/BraveBrowserStandaloneSetup32.exe + InstallerSha256: 109FE8BC0D9EBE7F9748B875012D477E2D1F52A7AB70FB48468A9D65DF60F511 + 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.80.115/BraveBrowserStandaloneSilentSetup.exe + InstallerSha256: 0B5231F46F0DF8C471160A9734FDC75FE38574F25E65CC7F3E81BF5ADBFB1228 + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.80.115/BraveBrowserStandaloneSetup.exe + InstallerSha256: F9EBD5D5BD3D7761879897ADEB248AB4B687172A7D1C4332BDD35CB9EBD6DE3F + 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.80.115/BraveBrowserStandaloneSilentSetupArm64.exe + InstallerSha256: D5EE711D158B9E2FE5D7D932EE377087313163957EFC7056252905D7DFAEDD5B + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.80.115/BraveBrowserStandaloneSetupArm64.exe + InstallerSha256: E5A30F701FCEF6F4288588E407956854782FBCA04D903F4091F465F5AE4B4A45 + 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/138.1.80.115/Brave.Brave.locale.en-US.yaml b/manifests/b/Brave/Brave/138.1.80.115/Brave.Brave.locale.en-US.yaml new file mode 100644 index 0000000000000..5aa8b39e4bb1a --- /dev/null +++ b/manifests/b/Brave/Brave/138.1.80.115/Brave.Brave.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: Brave.Brave +PackageVersion: 138.1.80.115 +PackageLocale: en-US +Publisher: Brave Software Inc +PublisherUrl: https://brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave +PackageUrl: https://brave.com/download +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: Secure, Fast & Private Web Browser with Adblocker +Description: |- + The new Brave browser blocks ads and trackers that slow you down and invade your privacy. + Discover a new way of thinking about how the web can work. +Tags: +- browser +- chromium +- internet +- privacy +- web +- webpage +ReleaseNotes: |- + - Fixed issue with Brave Leo not summarizing video transcripts. (#46845) + - Upgraded Chromium to 138.0.7204.97. (#47276) (Changelog for 138.0.7204.97) +ReleaseNotesUrl: https://brave.com/latest +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://brave.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/138.1.80.115/Brave.Brave.locale.zh-CN.yaml b/manifests/b/Brave/Brave/138.1.80.115/Brave.Brave.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6ee63f6e7ce33 --- /dev/null +++ b/manifests/b/Brave/Brave/138.1.80.115/Brave.Brave.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: Brave.Brave +PackageVersion: 138.1.80.115 +PackageLocale: zh-CN +Publisher: Brave Software Inc +PublisherUrl: https://brave.com/zh +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave +PackageUrl: https://brave.com/zh/download +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: 带有广告拦截器的安全、快速且私密的网络浏览器 +Description: 全新的 Brave 浏览器会阻止那些导致运行速度变慢和侵犯隐私的广告和跟踪程序。探索重新思考网络运作的全新方式。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +ReleaseNotesUrl: https://brave.com/latest +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://brave.com/zh/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/138.1.80.115/Brave.Brave.yaml b/manifests/b/Brave/Brave/138.1.80.115/Brave.Brave.yaml new file mode 100644 index 0000000000000..11e0a0bced2f5 --- /dev/null +++ b/manifests/b/Brave/Brave/138.1.80.115/Brave.Brave.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 +PackageVersion: 138.1.80.115 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Beta/138.1.81.100/Brave.Brave.Beta.installer.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.100/Brave.Brave.Beta.installer.yaml new file mode 100644 index 0000000000000..b0e0ecd3c45d2 --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.100/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.100 +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-Beta +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.100/BraveBrowserStandaloneSilentBetaSetup32.exe + InstallerSha256: 122AD7AE74442202CBE1B799A0932EE4752979B975867AFD0AE9D95585DDFE10 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.100/BraveBrowserStandaloneBetaSetup32.exe + InstallerSha256: 3F8779EB2AF301D67A973E0A7A76C2B7E51F076E2B08FE4D8C7D0885576D51FF + 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.81.100/BraveBrowserStandaloneSilentBetaSetup.exe + InstallerSha256: 38848DD1C68446FC5A278B1079B4AA588CC0442C2BCC30B1B669A7000AE0D5B8 + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.100/BraveBrowserStandaloneBetaSetup.exe + InstallerSha256: 8217DB1092E017D0A30105A50804D8C2C05A73277EA2FBA69D9605C4B79B39C4 + 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.81.100/BraveBrowserStandaloneSilentBetaSetupArm64.exe + InstallerSha256: 7E4A1C8D2B1191A70CAD5AF9635268C0EE3F7E01971759F001A3E0748AD92ED2 + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.100/BraveBrowserStandaloneBetaSetupArm64.exe + InstallerSha256: 250E0E69F5D598D488A3963B36EF909BCFE55414446B15226288F72CEF959752 + 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/Beta/138.1.81.100/Brave.Brave.Beta.locale.en-US.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.100/Brave.Brave.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..bd48d32cc5884 --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.100/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.100 +PackageLocale: en-US +Publisher: Brave Software Inc +PublisherUrl: https://brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Beta +PackageUrl: https://brave.com/download-beta +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 Beta is an early preview for new versions of Brave that showcases the newest advances that we're bringing to your browser. +Description: |- + Brave Beta is an early preview for new versions of Brave. + This build showcases the newest advances that we’re bringing to your browser and it’s ready for your daily use. + Brave Beta 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/Beta/138.1.81.100/Brave.Brave.Beta.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.100/Brave.Brave.Beta.locale.zh-CN.yaml new file mode 100644 index 0000000000000..779729c99773e --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.100/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.100 +PackageLocale: zh-CN +Publisher: Brave Software Inc +PublisherUrl: https://brave.com/zh +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Beta +PackageUrl: https://brave.com/download-beta +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 Beta 是 Brave 新版本的早期预览,展示了我们为您的浏览器带来的最新进展。 +Description: Brave Beta 是 Brave 新版本的早期预览,展示了我们为您的浏览器带来的最新进展,并已经准备好供您日常使用。当出现问题时,Brave Beta 会自动向我们发送崩溃报告。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://brave.com/zh/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Beta/138.1.81.100/Brave.Brave.Beta.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.100/Brave.Brave.Beta.yaml new file mode 100644 index 0000000000000..42d00008bfbaa --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.100/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.100 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Beta/138.1.81.102/Brave.Brave.Beta.installer.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.102/Brave.Brave.Beta.installer.yaml new file mode 100644 index 0000000000000..a9ac47951b31c --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.102/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.102 +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-Beta +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.102/BraveBrowserStandaloneSilentBetaSetup32.exe + InstallerSha256: 16B113981144187FA15A1EC126E27A36AAD75F2798623A948BAC9BB0E5CD9848 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.102/BraveBrowserStandaloneBetaSetup32.exe + InstallerSha256: 1C9AFAC9DE37415B5F3CFEC9E7FD650044496922279039F116312A62C0E11E34 + 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.81.102/BraveBrowserStandaloneSilentBetaSetup.exe + InstallerSha256: 3012B464991DB5D26919E82727131E1301270074A484B037278797DD9690B98A + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.102/BraveBrowserStandaloneBetaSetup.exe + InstallerSha256: D92163DE9E3C3DD01A37170040D66725475565694579E7A62003659D5D28E596 + 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.81.102/BraveBrowserStandaloneSilentBetaSetupArm64.exe + InstallerSha256: E5E2801143093F6E1D1A85CA19B3C186AE722164496E57EA6E3F8FACCB40C479 + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.102/BraveBrowserStandaloneBetaSetupArm64.exe + InstallerSha256: E7D15866D081BAA59DF1C7593D273440AB62C62C32F237BF8D7B9F2E0D6D3673 + 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/Beta/138.1.81.102/Brave.Brave.Beta.locale.en-US.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.102/Brave.Brave.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..4fa6f7145edad --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.102/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.102 +PackageLocale: en-US +Publisher: Brave Software Inc +PublisherUrl: https://brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Beta +PackageUrl: https://brave.com/download-beta +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 Beta is an early preview for new versions of Brave that showcases the newest advances that we're bringing to your browser. +Description: |- + Brave Beta is an early preview for new versions of Brave. + This build showcases the newest advances that we’re bringing to your browser and it’s ready for your daily use. + Brave Beta 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/Beta/138.1.81.102/Brave.Brave.Beta.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.102/Brave.Brave.Beta.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e9973dbf16f54 --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.102/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.102 +PackageLocale: zh-CN +Publisher: Brave Software Inc +PublisherUrl: https://brave.com/zh +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Beta +PackageUrl: https://brave.com/download-beta +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 Beta 是 Brave 新版本的早期预览,展示了我们为您的浏览器带来的最新进展。 +Description: Brave Beta 是 Brave 新版本的早期预览,展示了我们为您的浏览器带来的最新进展,并已经准备好供您日常使用。当出现问题时,Brave Beta 会自动向我们发送崩溃报告。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://brave.com/zh/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Beta/138.1.81.102/Brave.Brave.Beta.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.102/Brave.Brave.Beta.yaml new file mode 100644 index 0000000000000..1ca423c1e005c --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.102/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.102 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Beta/138.1.81.105/Brave.Brave.Beta.installer.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.105/Brave.Brave.Beta.installer.yaml new file mode 100644 index 0000000000000..10028bdc49ffd --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.105/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.105 +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-Beta +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.105/BraveBrowserStandaloneSilentBetaSetup32.exe + InstallerSha256: A8A7B1155AA64CF2B18B96CE3EA10B0E44C5F5B5B15630555B07501EBEDA9E10 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.105/BraveBrowserStandaloneBetaSetup32.exe + InstallerSha256: 1EDCD1BAFD64D24799A4073CFCCD04CF31DC262F73865DDBB905028F397EE703 + 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.81.105/BraveBrowserStandaloneSilentBetaSetup.exe + InstallerSha256: AC9C7A2BCE71CF81AE1BD6986A0A6CF37363EE35BEBF300D4ABCDA66CB211ADF + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.105/BraveBrowserStandaloneBetaSetup.exe + InstallerSha256: C39773B7BAA67ACD464A68B1ECCB8460AE0BFA9446B9758775D55203AE398CC2 + 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.81.105/BraveBrowserStandaloneSilentBetaSetupArm64.exe + InstallerSha256: ED43D2EFB3B95CE39DFF98985468FFA7679FABFEE5C21991583948C01AAC849E + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.105/BraveBrowserStandaloneBetaSetupArm64.exe + InstallerSha256: FCA9BA44FAC963E905B3B1F1759FFBC3C97D1003BAB0B4CF6EEB5F6AD7FC4BD4 + 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/Beta/138.1.81.105/Brave.Brave.Beta.locale.en-US.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.105/Brave.Brave.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..27025468c179b --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.105/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.105 +PackageLocale: en-US +Publisher: Brave Software Inc +PublisherUrl: https://brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Beta +PackageUrl: https://brave.com/download-beta +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 Beta is an early preview for new versions of Brave that showcases the newest advances that we're bringing to your browser. +Description: |- + Brave Beta is an early preview for new versions of Brave. + This build showcases the newest advances that we’re bringing to your browser and it’s ready for your daily use. + Brave Beta 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/Beta/138.1.81.105/Brave.Brave.Beta.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.105/Brave.Brave.Beta.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f7633ab02f695 --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.105/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.105 +PackageLocale: zh-CN +Publisher: Brave Software Inc +PublisherUrl: https://brave.com/zh +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Beta +PackageUrl: https://brave.com/download-beta +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 Beta 是 Brave 新版本的早期预览,展示了我们为您的浏览器带来的最新进展。 +Description: Brave Beta 是 Brave 新版本的早期预览,展示了我们为您的浏览器带来的最新进展,并已经准备好供您日常使用。当出现问题时,Brave Beta 会自动向我们发送崩溃报告。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://brave.com/zh/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Beta/138.1.81.105/Brave.Brave.Beta.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.105/Brave.Brave.Beta.yaml new file mode 100644 index 0000000000000..3bf3a014381e4 --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.105/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.105 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Beta/138.1.81.107/Brave.Brave.Beta.installer.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.107/Brave.Brave.Beta.installer.yaml new file mode 100644 index 0000000000000..d575dc88300e0 --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.107/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.107 +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-Beta +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.107/BraveBrowserStandaloneSilentBetaSetup32.exe + InstallerSha256: 45FB9F7D57F0D0E1A308780262176DE179743968BC1919EB09EB1A5CBF0A0E81 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.107/BraveBrowserStandaloneBetaSetup32.exe + InstallerSha256: 68B0258F57A759256FEAC21C822832E823AF15B83657C437720E393E504CDA20 + 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.81.107/BraveBrowserStandaloneSilentBetaSetup.exe + InstallerSha256: A7D08E20097C5E5633869A6D9702DCFBC6D4104493B167DE0BAC0DD41D7E6927 + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.107/BraveBrowserStandaloneBetaSetup.exe + InstallerSha256: BAFF7A3856DAA14C6E69F53978DAEFCC88FF1615E6B15B8871D69F632797F421 + 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.81.107/BraveBrowserStandaloneSilentBetaSetupArm64.exe + InstallerSha256: 4C9F3BCED804E711B9AA4E4344FEE9DF655F4D66F6CA901441ACA6F7255E5CA7 + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.107/BraveBrowserStandaloneBetaSetupArm64.exe + InstallerSha256: 38829847E263759C2AA1287F3756C813497B14D601D60AFE370D38754B6C67E5 + 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/Beta/138.1.81.107/Brave.Brave.Beta.locale.en-US.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.107/Brave.Brave.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..9c7d37bd09302 --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.107/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.107 +PackageLocale: en-US +Publisher: Brave Software Inc +PublisherUrl: https://brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Beta +PackageUrl: https://brave.com/download-beta +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 Beta is an early preview for new versions of Brave that showcases the newest advances that we're bringing to your browser. +Description: |- + Brave Beta is an early preview for new versions of Brave. + This build showcases the newest advances that we’re bringing to your browser and it’s ready for your daily use. + Brave Beta 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/Beta/138.1.81.107/Brave.Brave.Beta.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.107/Brave.Brave.Beta.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4ace2c5750da8 --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.107/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.107 +PackageLocale: zh-CN +Publisher: Brave Software Inc +PublisherUrl: https://brave.com/zh +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Beta +PackageUrl: https://brave.com/download-beta +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 Beta 是 Brave 新版本的早期预览,展示了我们为您的浏览器带来的最新进展。 +Description: Brave Beta 是 Brave 新版本的早期预览,展示了我们为您的浏览器带来的最新进展,并已经准备好供您日常使用。当出现问题时,Brave Beta 会自动向我们发送崩溃报告。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://brave.com/zh/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Beta/138.1.81.107/Brave.Brave.Beta.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.107/Brave.Brave.Beta.yaml new file mode 100644 index 0000000000000..7b3ab598184e7 --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.107/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.107 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Beta/138.1.81.110/Brave.Brave.Beta.installer.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.110/Brave.Brave.Beta.installer.yaml new file mode 100644 index 0000000000000..b2fe32b95a694 --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.110/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.110 +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-Beta +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.110/BraveBrowserStandaloneSilentBetaSetup32.exe + InstallerSha256: E1CEC2093975E7CF9A4497B33B2D90415FD6A6721A9B342357B466B1D5E5DFD8 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.110/BraveBrowserStandaloneBetaSetup32.exe + InstallerSha256: 94AE84FC3107685C227E13AB70EFA7EAAB2377CF2C05A7E46C38CB2D1AC26074 + 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.81.110/BraveBrowserStandaloneSilentBetaSetup.exe + InstallerSha256: 55A0DEB27B8D325B49B1FC014465E2C3412E8F157FA6A789D5BAB000D249D43C + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.110/BraveBrowserStandaloneBetaSetup.exe + InstallerSha256: 3DF924E0BE4B9C305AAC9C8F3434CCC89117242821E6C8B6C66349EC222547AE + 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.81.110/BraveBrowserStandaloneSilentBetaSetupArm64.exe + InstallerSha256: C29BC4E1F1EE2CAADDD4F4101FE17CFB21F516799ED3C53525CBB82D832FD311 + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.81.110/BraveBrowserStandaloneBetaSetupArm64.exe + InstallerSha256: 66FA833BEE709756D9A7F20E2F4BA1FAC0A8489D427DAE12CEBD8142B5C3A21B + 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/Beta/138.1.81.110/Brave.Brave.Beta.locale.en-US.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.110/Brave.Brave.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..942a5570a3eba --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.110/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.110 +PackageLocale: en-US +Publisher: Brave Software Inc +PublisherUrl: https://brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Beta +PackageUrl: https://brave.com/download-beta +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 Beta is an early preview for new versions of Brave that showcases the newest advances that we're bringing to your browser. +Description: |- + Brave Beta is an early preview for new versions of Brave. + This build showcases the newest advances that we’re bringing to your browser and it’s ready for your daily use. + Brave Beta 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/Beta/138.1.81.110/Brave.Brave.Beta.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.110/Brave.Brave.Beta.locale.zh-CN.yaml new file mode 100644 index 0000000000000..939b97f04ba25 --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.110/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.110 +PackageLocale: zh-CN +Publisher: Brave Software Inc +PublisherUrl: https://brave.com/zh +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Beta +PackageUrl: https://brave.com/download-beta +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 Beta 是 Brave 新版本的早期预览,展示了我们为您的浏览器带来的最新进展。 +Description: Brave Beta 是 Brave 新版本的早期预览,展示了我们为您的浏览器带来的最新进展,并已经准备好供您日常使用。当出现问题时,Brave Beta 会自动向我们发送崩溃报告。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://brave.com/zh/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Beta/138.1.81.110/Brave.Brave.Beta.yaml b/manifests/b/Brave/Brave/Beta/138.1.81.110/Brave.Brave.Beta.yaml new file mode 100644 index 0000000000000..48d9a56388339 --- /dev/null +++ b/manifests/b/Brave/Brave/Beta/138.1.81.110/Brave.Brave.Beta.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.Beta +PackageVersion: 138.1.81.110 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.16/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.16/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 0000000000000..d8803e75aba4f --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.16/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.16 +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.16/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: 6B5266E4D7D262DF95A2465C4B6BA7A1C43B3EBCD214D25E81780E005EFF679F + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.16/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: A2D3B1B50210C5868B7B57964A28DC1CB9E5BF998E7EE422989EF1002527E997 + 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.16/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: 6D950AF1EEDD1D1FFE42FAE3F99544A033930CAE6E5938FBF364D353AE09887C + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.16/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: D703090237A006A5BFE6196580CB63F6964A4FB60BAE06ED48AF974F7E8FA82D + 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.16/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: 32DA9E1BE2C194D07610D7EEB24FAA02F115D191DB2D5A1D38972AA2417207B1 + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.16/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: 9C1B2224474F49B08334B9E0280ED7FCF8C7BA7863EE55FCB68D59B2EE38E5A6 + 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.16/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.16/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..501259f50b8c1 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.16/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.16 +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.16/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.16/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..afaa6ea02b025 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.16/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.16 +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.16/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.16/Brave.Brave.Nightly.yaml new file mode 100644 index 0000000000000..0fbd511a046fb --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.16/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.16 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.21/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.21/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 0000000000000..84b88c43d9fea --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.21/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.21 +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.21/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: 59ABB2A42C8C6151675FD727B9CFAC398287176BE1E1A0DE85B78B087E0693B9 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.21/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: DE84AEAF8399CB1B81A856A6C31EA848E87D65673E6A6B3E6EA31C2CF48649F5 + 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.21/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: 9385F1749DEB4DD987E8CBB1B021C455EB26925B5AE4A59B7E7AB98FF293442D + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.21/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: E64C5C318470E97DF918AA033639EAB10FE818578584AEBA1B6172884F3F1F02 + 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.21/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: 205354D8B8A710AA139F2EA86793F8047505CAECD44FEE533F3EDD59114C51F0 + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.21/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: 6EDECF3511121A049346C7F863783F275F7B42859F6C72D44E18E9AE2307CC8D + 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.21/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.21/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..5bed0206c294e --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.21/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.21 +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.21/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.21/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7f1a0a4e96ae9 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.21/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.21 +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.21/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.21/Brave.Brave.Nightly.yaml new file mode 100644 index 0000000000000..39ee9b756bff4 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.21/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.21 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.24/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.24/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 0000000000000..3e43cff5a5406 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.24/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.24 +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.24/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: DD04449642EC837CB77133E165190A679D912B2A54F71F0AA407477A637E99F9 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.24/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: 3ACAF2E26BFE0A14E248C9D6DEC4AC847B8BD35FF488DDF0CC94B3BC3151A755 + 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.24/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: 7C0A965F4ABD0DEBC9420F4BC21344D9D412DC90F15FE22824B2DC77823C8FBB + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.24/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: 4C133AE0C6916287C0DEBC5A3098B68B5506B0326D92E982D541FA3F15A310A7 + 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.24/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: FEDE00A55BAA5442C9DA658A1BE6DD76E355E0EC1A78C1BCC4897884C7BC6A8F + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.24/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: 8DFAB99FA2A054770BA19F9FC5844909B42773F45B97BACF984AAECCB2A134DA + 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.24/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.24/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..9139f8ec16fe6 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.24/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.24 +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.24/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.24/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..46a0da4606bfc --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.24/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.24 +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.24/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.24/Brave.Brave.Nightly.yaml new file mode 100644 index 0000000000000..aa75ca772a29b --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.24/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.24 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.31/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.31/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 0000000000000..9724bc9f35fba --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.31/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.31 +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.31/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: 64E404094EDF1C27C71E63550BA95D7B1243B8BD31A9282E9E1295D88E45298C + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.31/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: CC5DCEDFFC4A847845BB2D49D487838B7C6E73F356C06AA819C503870A7443E1 + 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.31/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: 9215A18B767D0875146255F6CC72F95437F24325240352A368437C2C58362629 + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.31/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: 6712FE1583C91F92BD3F0EA062ACF9955E1C5E8FED72B50B342C269E1290838A + 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.31/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: 18702CF17C8D34869FE526D991510F7903C716C2C259620A696E98E13EE89CB9 + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.31/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: 8867421475895030FC83EA975DEA97BED8206026BC9C2A8D511C97D161947DA1 + 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.31/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.31/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..8bb47c6279064 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.31/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.31 +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.31/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.31/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..06aa7d9bf5152 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.31/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.31 +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.31/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.31/Brave.Brave.Nightly.yaml new file mode 100644 index 0000000000000..885553b5e796a --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.31/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.31 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.35/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.35/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 0000000000000..0e5aa6a6c76ad --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.35/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.35 +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.35/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: 4794AFB3C751AA8BC2DF071308BAC7E8829CA99B2C2065B57DED631EACB59EFC + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.35/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: 16699D9B7210DF5B5ABCB6CBE14C63C011C2A836747F32C212809E9A81DA859C + 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.35/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: 8512C40E377223186D40249A31C0EF9052D19AD1F8C22158BDE43D0841C94316 + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.35/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: A83D564ADAFB38EC6FD09DBB79C9E5B57C6A8B0C9A28A46C58FED96DD8919191 + 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.35/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: 0512737EF4AC329C4ED714F03619234152E51B67E38E80D997F67551F1B776FA + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.35/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: 55A45AAE93D20768C2B36D4D72754FE048FEBD0EDC19DD5AE3CD2148CEE02A25 + 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.35/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.35/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..16f044487adcf --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.35/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.35 +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.35/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.35/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4bec2e196093d --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.35/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.35 +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.35/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.35/Brave.Brave.Nightly.yaml new file mode 100644 index 0000000000000..6808a41989169 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.35/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.35 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.36/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.36/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 0000000000000..f9d12d892c58c --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.36/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.36 +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.36/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: 040DC2A3A488DB6ACA101976B53EEB2180A09BC7B8369E404A281DD7438A19A3 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.36/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: F8E1B33FF2B53732763F85536DEC268CBE9395F0E0539208545CA07DFB068490 + 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.36/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: 590BB8B28CA1C6EACC7744CE2218E987B66B5449B47B43F8EBE02A733914B65D + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.36/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: 8673504710FEB1D9FD3F03925AB9992948FF1BDD035493C4217045C388374850 + 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.36/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: B71E2031263B058EAA4224B182043C8A811B743BDFAE42B799F7A98922707818 + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.36/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: 86C3C215E4B5A53E2E45F44E677A957C451785DE2AA795C63261CB07EB8CAAE3 + 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.36/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.36/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..a3343732a99fa --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.36/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.36 +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.36/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.36/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..caefaa0c7ec74 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.36/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.36 +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.36/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.36/Brave.Brave.Nightly.yaml new file mode 100644 index 0000000000000..3011e3265307b --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.36/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.36 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.40/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.40/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 0000000000000..2e266583f10a6 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.40/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.40 +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.40/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: 56717F13E95020635D48FBF7F7DC619D9FC49BFBA2E4A9E17C43BE98297B3D31 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.40/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: 093B3DE552C6812AA38649BEDC8095089446E4BCC338FC6170046E189C41EE96 + 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.40/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: D8CA200EECA38E196EA9894BB1C4844750D8CC4069496D32B3B292919F3FAFFC + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.40/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: F087108BB62D930B3ED4108182ECC8851F5FF27DD080051EAC64E5357BB9CA07 + 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.40/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: A6A2FCE4896999E46B70AF1CD0545C04BBDEE863366C2A175B006984EE41C9EB + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.40/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: D7225A4B8E0D62C0CDD099D12D4D5E9634D2A2A6BAEF28E8539327F4C67233E9 + 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.40/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.40/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..827669aed6c15 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.40/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.40 +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.40/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.40/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..007385712466e --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.40/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.40 +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.40/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.40/Brave.Brave.Nightly.yaml new file mode 100644 index 0000000000000..8d0baca58e783 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.40/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.40 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.44/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.44/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 0000000000000..a8f629e73a208 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.44/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.44 +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.44/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: 136F7E01B7677E15EDC218264BA143E3C1DA77EE906A3D6A593EB9AF2C121199 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.44/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: B250000A5D71B5BA2837B645B2E9FFFC9F3F99B3BA3F4113670E08AB13B14D6E + 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.44/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: 434FFA492F903A2C9B405AE2F2E16799F3EE1A306DC78E57BEA1F98DACED3B4A + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.44/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: 31E1248C5A493DA8B570B2B42BF4C6E1439DCFADA6884BB52EBA99182208740C + 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.44/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: EAA7FF3BD0B00750C2D09DE5553CD6FB042D11AB05A967DE255D309739913C3F + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.44/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: 09C3EF672CCCA3A1E64C25E8A5C6AE5283B5806A29E369672456AB8F20315B91 + 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.44/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.44/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..6b50da1d25d13 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.44/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.44 +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.44/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.44/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f1c0a7052469f --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.44/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.44 +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.44/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.44/Brave.Brave.Nightly.yaml new file mode 100644 index 0000000000000..31811d2ea7831 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.44/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.44 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.49/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.49/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 0000000000000..007495d9fcccc --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.49/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.49 +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.49/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: C03F0DC370A001D7263265C3EAFC7EFD4AB11F1F9951DCCC645BDA81DA2CFC02 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.49/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: 516E41FD7AF5A6E100D71B9F6892202E20D542BCC7535CAEC31201498410A6B3 + 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.49/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: 9BC2362932B335CD3EF47555F8327B41CC4D8176182A1C174307A16E2062B1A8 + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.49/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: 0D4FEAEAB3C73A0B4666F48776313CD0F4D683720DE80D8A0B32B39519664EB6 + 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.49/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: F5BCE31CEA6D998BE836E22BE70B9DBAC3EB5F98AAEAE23F3D448DEC6F2688A1 + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.49/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: E511D87B3D141E08471714B2AAD422791B4C91D6822E8681B3182AB20192CFFC + 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.49/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.49/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..f08f02e6749f7 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.49/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.49 +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.49/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.49/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f9c97f00b43f9 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.49/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.49 +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.49/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.49/Brave.Brave.Nightly.yaml new file mode 100644 index 0000000000000..ec1d1233d8477 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.49/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.49 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.52/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.52/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 0000000000000..c493030e422f7 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.52/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.52 +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.52/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: 187CD0A1E6B2C44D848F8FB6181005AE93BD432F90453F645BAB71A2B2F9C6A0 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.52/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: D5C0E55574CFD8658A1194B13182D4CE3670BE2C7BCEA9EA86746E7C12DAE07F + 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.52/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: EA63CC0B8610D9902965F84643C389D39436C8352B8E43376C1EFC0060F34738 + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.52/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: CC9D3B9FF2E9278E208BFD26F6C789FC5129A665DD22C19AED2D15475443D0B8 + 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.52/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: AF0810EBEEF03BFA7A34E5D4C51E60B2F295B454E03DD01E37FB40976D6B476C + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.52/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: FF34B82944E53B54C76ABB347C8EA354C119C4FBF89A1AB06F3C25EB0E1A6013 + 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.52/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.52/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..4a52644a8ec9a --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.52/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.52 +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.52/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.52/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6a9e9cbfa4de2 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.52/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.52 +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.52/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.52/Brave.Brave.Nightly.yaml new file mode 100644 index 0000000000000..46a817805eebd --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.52/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.52 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.56/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.56/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 0000000000000..fa67f23d81a0b --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.56/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.56 +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.56/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: 1674B11074D207CCD644536D7DDE0DC883FF9FA3800212DD8C0876B1ECDE6EA4 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.56/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: 6249D7F7DBF5E912B2CA1594F2C25B72F9907DE1B80DDA31783F0CAD986AD837 + 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.56/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: 1872EFC5A3F800670C586FDA7990534D45ABD8C983F648A4759DAE79970F1025 + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.56/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: D5AC2748989AEE2D8FD6787AC9B825973FBE4AD414DB2650335A8AD376322349 + 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.56/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: EBDB8F044A133BA899BAA67258511B0BBD84D06268C78C1A9CD92FC9670B95AC + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.56/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: 71DBF5BD53DE7048F62D41166036FBD153EC3D1CF9C096EB8EAD74BC9B0E423D + 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.56/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.56/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..692e01d440591 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.56/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.56 +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.56/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.56/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8716a8f8eba69 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.56/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.56 +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.56/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.56/Brave.Brave.Nightly.yaml new file mode 100644 index 0000000000000..44dac9a287aed --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.56/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.56 +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/BrettMayson/HEMTT/1.16.2/BrettMayson.HEMTT.installer.yaml b/manifests/b/BrettMayson/HEMTT/1.16.2/BrettMayson.HEMTT.installer.yaml new file mode 100644 index 0000000000000..fae4068af1ab4 --- /dev/null +++ b/manifests/b/BrettMayson/HEMTT/1.16.2/BrettMayson.HEMTT.installer.yaml @@ -0,0 +1,19 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BrettMayson.HEMTT +PackageVersion: 1.16.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: hemtt.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/BrettMayson/HEMTT/releases/download/v1.16.2/windows-x64.zip + InstallerSha256: AD3F68251C9250958831111302A5E665EE11A656C6A63E1263F206A81B87714F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BrettMayson/HEMTT/1.16.2/BrettMayson.HEMTT.locale.en-US.yaml b/manifests/b/BrettMayson/HEMTT/1.16.2/BrettMayson.HEMTT.locale.en-US.yaml new file mode 100644 index 0000000000000..035113d52ded9 --- /dev/null +++ b/manifests/b/BrettMayson/HEMTT/1.16.2/BrettMayson.HEMTT.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BrettMayson.HEMTT +PackageVersion: 1.16.2 +PackageLocale: en-US +Publisher: BrettMayson +PublisherUrl: https://github.com/BrettMayson +PublisherSupportUrl: https://github.com/BrettMayson/HEMTT/issues +PackageName: HEMTT +PackageUrl: https://github.com/BrettMayson/HEMTT +License: GPL-2.0 +LicenseUrl: https://github.com/BrettMayson/HEMTT/blob/HEAD/LICENSE +ShortDescription: An opinionated build system for Arma 3 mods. +Tags: +- arma +- arma3 +- hemtt +ReleaseNotes: |- + Added + - check: final newlines by @BrettMayson in #1005 + - config: C14 check unused externs by @PabstMirror in #1009 + - hls: open last rpt by @BrettMayson in #1015 + - launch: support distrobox by @BrettMayson in #1014 + Fixed + - config: check if parent exists in scope by @PabstMirror in #1008 + - config: don't rapify .fsm by @PabstMirror in #998 + - config: fix not collecting CfgFunctions defined as extern by @PabstMirror in #1000 + - hls: fix preprocessor errors not being removed when fixed by @BrettMayson in #1012 + - hls: stop using semantic tokens by @BrettMayson in #1011 + - hooks: fix directory copy on real file system by @BrettMayson in #1010 + - preprocessor: fix not enclosed includes by @BrettMayson in #1006 + - stringtables: improve read performance by @BrettMayson in #1002 + Full Changelog: v1.16.1...v1.16.2 +ReleaseNotesUrl: https://github.com/BrettMayson/HEMTT/releases/tag/v1.16.2 +Documentations: +- DocumentLabel: The HEMTT Book + DocumentUrl: https://brettmayson.github.io/HEMTT +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BrettMayson/HEMTT/1.16.2/BrettMayson.HEMTT.yaml b/manifests/b/BrettMayson/HEMTT/1.16.2/BrettMayson.HEMTT.yaml new file mode 100644 index 0000000000000..00a7ab10b2b39 --- /dev/null +++ b/manifests/b/BrettMayson/HEMTT/1.16.2/BrettMayson.HEMTT.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: BrettMayson.HEMTT +PackageVersion: 1.16.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorBouw.installer.yaml b/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorBouw.installer.yaml similarity index 84% rename from manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorBouw.installer.yaml rename to manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorBouw.installer.yaml index 75c3dadce7404..1cf50236e6fc6 100644 --- a/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorBouw.installer.yaml +++ b/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorBouw.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: BrinkSoftware.IbisCalculerenVoorBouw -PackageVersion: 3.0.2505.10701 +PackageVersion: 3.0.2506.12502 InstallerType: exe Scope: machine InstallModes: @@ -63,13 +63,13 @@ UpgradeBehavior: install FileExtensions: - xtb - xtbf -ProductCode: '{95C5D46F-9282-4D65-9CAA-BA6F966BCB9C}' +ProductCode: '{56366A0F-2160-4C0F-B273-DD10823A8940}' AppsAndFeaturesEntries: - UpgradeCode: '{4DE7B318-4A06-4205-8850-71CEADC68770}' InstallerType: msi Installers: - Architecture: x64 - InstallerUrl: https://2804826.fs1.hubspotusercontent-na1.net/hubfs/2804826/Downloads%20ibis.nl%20en%20ibis.be/Bouw/IbisCalculerenVoorBouw_Setup_x64.exe - InstallerSha256: 534201DA5AF7F496A3F3FB2D5695729C0F27AB16ACF6EAAC068A7F012D38835C + InstallerUrl: https://www.ibis.nl/hubfs/Downloads%20ibis.nl%20en%20ibis.be/Bouw/IbisCalculerenVoorBouw_Setup_x64.exe + InstallerSha256: 5FDC9EC3A87E396C781A6FE01F732B7C3E2D439D47E48AE8169D35A6F43F5D73 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorBouw.locale.en-US.yaml b/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorBouw.locale.en-US.yaml similarity index 95% rename from manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorBouw.locale.en-US.yaml rename to manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorBouw.locale.en-US.yaml index b1b8e86812b13..f00127a5e8232 100644 --- a/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorBouw.locale.en-US.yaml +++ b/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorBouw.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: BrinkSoftware.IbisCalculerenVoorBouw -PackageVersion: 3.0.2505.10701 +PackageVersion: 3.0.2506.12502 PackageLocale: en-US Publisher: Brink Software B.V. PublisherUrl: https://www.ibis.nl/ diff --git a/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorBouw.locale.zh-CN.yaml b/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorBouw.locale.zh-CN.yaml similarity index 93% rename from manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorBouw.locale.zh-CN.yaml rename to manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorBouw.locale.zh-CN.yaml index 5b2d378668f2b..8ac33ac5aca86 100644 --- a/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorBouw.locale.zh-CN.yaml +++ b/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorBouw.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: BrinkSoftware.IbisCalculerenVoorBouw -PackageVersion: 3.0.2505.10701 +PackageVersion: 3.0.2506.12502 PackageLocale: zh-CN License: 专有软件 ShortDescription: 强大的建筑项目估算和成本计算软件。 diff --git a/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorBouw.yaml b/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorBouw.yaml similarity index 86% rename from manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorBouw.yaml rename to manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorBouw.yaml index 87abe254446c9..6b2861c2bdd09 100644 --- a/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorBouw.yaml +++ b/manifests/b/BrinkSoftware/IbisCalculerenVoorBouw/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorBouw.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: BrinkSoftware.IbisCalculerenVoorBouw -PackageVersion: 3.0.2505.10701 +PackageVersion: 3.0.2506.12502 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.2506.12502/BrinkSoftware.IbisCalculerenVoorInstallatie.installer.yaml similarity index 83% rename from manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.installer.yaml rename to manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorInstallatie.installer.yaml index 9a07f56a853ce..70b90fc6ea5cb 100644 --- a/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.installer.yaml +++ b/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorInstallatie.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: BrinkSoftware.IbisCalculerenVoorInstallatie -PackageVersion: 3.0.2505.10701 +PackageVersion: 3.0.2506.12502 InstallerType: exe Scope: machine InstallModes: @@ -60,13 +60,13 @@ ExpectedReturnCodes: - InstallerReturnCode: 3010 ReturnResponse: rebootRequiredToFinish UpgradeBehavior: install -ProductCode: '{F6D90BA8-FC96-43A4-BC5E-B7830DD26116}' +ProductCode: '{7A51DD2B-E849-4943-81A2-CD72258F674F}' 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 + InstallerUrl: https://www.ibis.nl/hubfs/Downloads%20ibis.nl%20en%20ibis.be/Installatietechniek/IbisCalculerenVoorInstallatie_Setup_x64.exe + InstallerSha256: E82C5650A51936D2437CE42289D824F4901F14B0BB6EE871669FF51E474D0919 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.2506.12502/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.en-US.yaml similarity index 96% rename from manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.en-US.yaml rename to manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.en-US.yaml index 85029b74e8fff..032a334526b55 100644 --- a/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.en-US.yaml +++ b/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: BrinkSoftware.IbisCalculerenVoorInstallatie -PackageVersion: 3.0.2505.10701 +PackageVersion: 3.0.2506.12502 PackageLocale: en-US Publisher: Brink Software B.V. PublisherUrl: https://www.ibis.nl/ diff --git a/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.zh-CN.yaml b/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.zh-CN.yaml similarity index 93% rename from manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.zh-CN.yaml rename to manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.zh-CN.yaml index 4c02d09f17c4e..47143105c8bbc 100644 --- a/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.zh-CN.yaml +++ b/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorInstallatie.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: BrinkSoftware.IbisCalculerenVoorInstallatie -PackageVersion: 3.0.2505.10701 +PackageVersion: 3.0.2506.12502 PackageLocale: zh-CN License: 专有软件 ShortDescription: 安装技术计算与成本估算 diff --git a/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.yaml b/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorInstallatie.yaml similarity index 87% rename from manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.yaml rename to manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorInstallatie.yaml index 8d121ab60b677..6559f3a2a6877 100644 --- a/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2505.10701/BrinkSoftware.IbisCalculerenVoorInstallatie.yaml +++ b/manifests/b/BrinkSoftware/IbisCalculerenVoorInstallatie/3.0.2506.12502/BrinkSoftware.IbisCalculerenVoorInstallatie.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: BrinkSoftware.IbisCalculerenVoorInstallatie -PackageVersion: 3.0.2505.10701 +PackageVersion: 3.0.2506.12502 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/b/Brother/BRAdmin/Professional/4/1.19.0000/Brother.BRAdmin.Professional.4.installer.yaml b/manifests/b/Brother/BRAdmin/Professional/4/1.19.0000/Brother.BRAdmin.Professional.4.installer.yaml new file mode 100644 index 0000000000000..ea0a151126652 --- /dev/null +++ b/manifests/b/Brother/BRAdmin/Professional/4/1.19.0000/Brother.BRAdmin.Professional.4.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Brother.BRAdmin.Professional.4 +PackageVersion: 1.19.0000 +# InstallerType: InstallShield Wizard +InstallerType: exe +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S /v/qn + SilentWithProgress: /S /v/qn +UpgradeBehavior: install +ReleaseDate: 2024-11-19 +Installers: +- Architecture: x86 + InstallerUrl: https://download.brother.com/welcome/dlf106405/Setup_BRAdminPro4_1.19.0000.exe + InstallerSha256: D64E903AB497051B625776CACBA6FE34A88BB0B704C7EB3AD3D4FF44D6333E5B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brother/BRAdmin/Professional/4/1.19.0000/Brother.BRAdmin.Professional.4.locale.en-US.yaml b/manifests/b/Brother/BRAdmin/Professional/4/1.19.0000/Brother.BRAdmin.Professional.4.locale.en-US.yaml new file mode 100644 index 0000000000000..b3835a3acf48f --- /dev/null +++ b/manifests/b/Brother/BRAdmin/Professional/4/1.19.0000/Brother.BRAdmin.Professional.4.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Brother.BRAdmin.Professional.4 +PackageVersion: 1.19.0000 +PackageLocale: en-US +Publisher: Brother Industries, Ltd. +PublisherUrl: https://support.brother.com/g/b/index.aspx?noautojudge=true +# PublisherSupportUrl: https://www.brother-usa.com/contact-us?utm_source=support.brother.com&utm_medium=referral&utm_campaign=header03 +PrivacyUrl: https://support.brother.com/g/s/common/us/us/en/privacy.html +PackageName: Brother BRAdmin Professional 4 +PackageUrl: https://support.brother.com/g/b/downloadend.aspx?c=us&lang=en&prod=mfcj6935dw_us_eu&os=10068&dlid=dlf106405_000&flang=4&type3=10456 +License: Proprietary (EULA) +LicenseUrl: https://support.brother.com/g/s/agreement/English/agree.html +Copyright: © 2001-2025 Brother Industries, Ltd. All Rights Reserved. +CopyrightUrl: https://support.brother.com/g/b/index.aspx?noautojudge=true#:~:text=%C2%A9 +ShortDescription: BRAdmin Professional 4 +Description: > + This software allows system administrators deploy and manage their + networked/USB connected Brother printers and scanners and view the status of + most other SNMP compliant printing devices. +ReleaseNotes: |- + Version 1.19.0000 + + - Improvement in security. + - This update includes improvements. + - Added supported models +ReleaseNotesUrl: https://support.brother.com/g/b/downloadend.aspx?c=us&lang=en&prod=mfcj6935dw_us_eu&os=10068&dlid=dlf106405_000&flang=4&type3=10456#pane1:~:text=Update%20History +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Brother/BRAdmin/Professional/4/1.19.0000/Brother.BRAdmin.Professional.4.yaml b/manifests/b/Brother/BRAdmin/Professional/4/1.19.0000/Brother.BRAdmin.Professional.4.yaml new file mode 100644 index 0000000000000..0805efb88d597 --- /dev/null +++ b/manifests/b/Brother/BRAdmin/Professional/4/1.19.0000/Brother.BRAdmin.Professional.4.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Brother.BRAdmin.Professional.4 +PackageVersion: 1.19.0000 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bruno/Bruno/2.7.0/Bruno.Bruno.installer.yaml b/manifests/b/Bruno/Bruno/2.7.0/Bruno.Bruno.installer.yaml new file mode 100644 index 0000000000000..6c541c0aeb67b --- /dev/null +++ b/manifests/b/Bruno/Bruno/2.7.0/Bruno.Bruno.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Bruno.Bruno +PackageVersion: 2.7.0 +InstallModes: +- interactive +- silent +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Bruno.exe + InstallerUrl: https://github.com/usebruno/bruno/releases/download/v2.7.0/bruno_2.7.0_x64_win.zip + InstallerSha256: A4F122A9C0342B81E41C65390268ACD16B5A892B951FE1CE83BACD802894654E + ArchiveBinariesDependOnPath: true +- InstallerLocale: en-US + Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/usebruno/bruno/releases/download/v2.7.0/bruno_2.7.0_x64_win.exe + InstallerSha256: F25115A31AD539F00E32C77FC81CA25C4644FCA24E5FE829B8F30FADD1141107 + UpgradeBehavior: install + ProductCode: 35fe443c-39df-5cca-9e6d-73ca33a1ce77 + AppsAndFeaturesEntries: + - DisplayName: Bruno 2.7.0 + ProductCode: 35fe443c-39df-5cca-9e6d-73ca33a1ce77 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bruno/Bruno/2.7.0/Bruno.Bruno.locale.en-US.yaml b/manifests/b/Bruno/Bruno/2.7.0/Bruno.Bruno.locale.en-US.yaml new file mode 100644 index 0000000000000..464e401474ae6 --- /dev/null +++ b/manifests/b/Bruno/Bruno/2.7.0/Bruno.Bruno.locale.en-US.yaml @@ -0,0 +1,89 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Bruno.Bruno +PackageVersion: 2.7.0 +PackageLocale: en-US +Publisher: Anoop M D +PublisherUrl: https://www.usebruno.com/ +PublisherSupportUrl: https://www.usebruno.com/support +PrivacyUrl: https://www.usebruno.com/privacy-policy +Author: Anoop M D, Anusree P S and Contributors +PackageName: Bruno +PackageUrl: https://www.usebruno.com/ +License: MIT +LicenseUrl: https://github.com/usebruno/bruno/blob/HEAD/license.md +Copyright: Copyright (c) 2022 Anoop M D, Anusree P S and Contributors +CopyrightUrl: https://github.com/usebruno/bruno/blob/main/license.md +ShortDescription: Re-Inventing the API Client +Description: |- + Bruno is a Fast and Git-Friendly Opensource API client, aimed at revolutionizing the status quo + represented by Postman, Insomnia and similar tools out there. + + Bruno stores your collections directly in a folder on your filesystem. + We use a plain text markup + language, Bru, to save information about API requests. + + You can use git or any version control of your choice to collaborate over your API collections. + + Bruno is offline-only. + There are no plans to add cloud-sync to Bruno, ever. +Moniker: bruno +Tags: +- api +- development +- openapi +ReleaseNotes: |- + What's Changed + Features + - Autocomplete random variables by @sanjaikumar-bruno in #4695 + - feature: add randomNanoId to dynamic variables by @henripqt in #4932 + - feat: implement vertical layout for response pane and enhance drag by @helloanoop in #4957 + - feat: Add placeholder for SingleLineEditor by @bacteriostat in #4956 + - feat: add dropdown to select language and add lib selector in code gen by @pooja-bruno in #4345 + - Feat: Update serialization logic for application/x-www-form-urlencoded body type by @Pragadesh-45 in #4943 + - Improved feat: add bulk edit mode for request headers by @sanjaikumar-bruno in #4958 + - feat: support onFail api to catch errors in pre req by @pooja-bruno in #4581 + Fixes + - fix: handle falsy values in Postman environment and collection variables by @sanish-bruno in #4924 + - Fix: postman collection fails when auth object missing auth values by @sanish-bruno in #4794 + - fix(import): curl parser library by @maintainer-bruno in #4959 + - Fix: Made reporter-skip-headers option case-insensitive in bruno-cli by @ganesh-bruno in #4799 + - Fix: undefined auth fields in folder-level authentication by @pooja-bruno in #4907 + - fix: oauth2 tokenHeaderPrefix can be set to an empty string value by @lohxt1 in #4928 + - fix(layout): minor layout css fixes by @maintainer-bruno in #4994 + - fix(import): handle repeated query keys and improve error handling in curl import by @maintainer-bruno in #4992 + - Fix: Allow empty Content-Type when no body (#1693) by @betawait in #3973 + - fix: include unsaved changes in generate code by @pooja-bruno in #4995 + - Bugfix/4749 generate code error with binary file request by @Art051 in #4752 + - fix: set default proxy value as false for bru.sendRequest' axios request config by @lohxt1 in #4973 + - fix: Add null check for collection root in snippet generator #5029 by @stupidly-logical in #5030 + Others + - Add Debian dependencies (in particular, for "libasound2") by @Nikolai2038 in #2356 + - Update Spanish contribution guide for clarity and accuracy by @georgegiosue in #4859 + - docs(#1036): Update linux installation instructions via apt by @Nikolai2038 in #1037 + - Update wording for clarification. Add tooltip. by @JohannKaspar in #4761 + - Add support for integer and boolean in OpenAPI to Bruno converter by @philjones88 in #4734 + - Enable variable tootlip in json request body by @stupidly-logical in #4885 + - add explicit HTTP agents with keepAlive to bru.sendRequest axios request config by @lohxt1 in #4969 + - Removed text from runtime var section by @ganesh-bruno in #4970 + - Remove scope parameter from token request when empty by @naman-bruno in #4987 + - codemirror api/variables autocomplete refactor by @lohxt1 in #4980 + - removed BETA keyword by @ganesh-bruno in #4999 + - handle requestConfig translations for variable references in pm.sendRequest calls by @lohxt1 in #5020 + New Contributors + - @Nikolai2038 made their first contribution in #2356 + - @georgegiosue made their first contribution in #4859 + - @henripqt made their first contribution in #4932 + - @JohannKaspar made their first contribution in #4761 + - @philjones88 made their first contribution in #4734 + - @bacteriostat made their first contribution in #4956 + - @betawait made their first contribution in #3973 + Full Changelog: v2.6.1...v2.7.0 +ReleaseNotesUrl: https://github.com/usebruno/bruno/releases/tag/v2.7.0 +PurchaseUrl: https://www.usebruno.com/pricing +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.usebruno.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Bruno/Bruno/2.7.0/Bruno.Bruno.yaml b/manifests/b/Bruno/Bruno/2.7.0/Bruno.Bruno.yaml new file mode 100644 index 0000000000000..baa29fc7cd507 --- /dev/null +++ b/manifests/b/Bruno/Bruno/2.7.0/Bruno.Bruno.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: Bruno.Bruno +PackageVersion: 2.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.6.1.installer.yaml b/manifests/b/BtbN/FFmpeg/GPL/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.6.1.installer.yaml new file mode 100644 index 0000000000000..9a0892cc301f8 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.6.1.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BtbN.FFmpeg.GPL.6.1 +PackageVersion: 6.1.2-20250630 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ffmpeg-n6.1.2-191-g749f93de8d-win64-gpl-6.1\bin\ffmpeg.exe + PortableCommandAlias: ffmpeg +- RelativeFilePath: ffmpeg-n6.1.2-191-g749f93de8d-win64-gpl-6.1\bin\ffplay.exe + PortableCommandAlias: ffplay +- RelativeFilePath: ffmpeg-n6.1.2-191-g749f93de8d-win64-gpl-6.1\bin\ffprobe.exe + PortableCommandAlias: ffprobe +Commands: +- ffmpeg +- ffplay +- ffprobe +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-06-30-13-55/ffmpeg-n6.1.2-191-g749f93de8d-win64-gpl-6.1.zip + InstallerSha256: 74357072270E796AC759BFAE1A2C2B4B4031E28C9C84B40A1ED5583D16879090 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.6.1.locale.en-US.yaml b/manifests/b/BtbN/FFmpeg/GPL/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.6.1.locale.en-US.yaml new file mode 100644 index 0000000000000..ae8d64a2c6ac1 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.6.1.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: BtbN.FFmpeg.GPL.6.1 +PackageVersion: 6.1.2-20250630 +PackageLocale: en-US +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (GPL static variant, 6.1 release branch) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: GPL-3.0 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: A complete, cross-platform solution to record, convert and stream audio and video. +Description: |- + FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. + A static FFmpeg build from BtbN based on the 6.1 release branch with all dependencies, even those that require full GPL instead of just LGPL. +Tags: +- audio +- codec +- convert +- decode +- demux +- encode +- filter +- media +- multimedia +- mux +- record +- stream +- streaming +- transcode +- video +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.6.1.locale.zh-CN.yaml b/manifests/b/BtbN/FFmpeg/GPL/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.6.1.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d888e03c4aae9 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.6.1.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: BtbN.FFmpeg.GPL.6.1 +PackageVersion: 6.1.2-20250630 +PackageLocale: zh-CN +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (GPL 静态编译版, 6.1 发布分支) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: GPL-3.0 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: 用于录制、转换和传输音频和视频的完整跨平台解决方案。 +Description: |- + FFmpeg 是领先的多媒体框架,能够解码、编码、转码、混流、分解、推流、应用滤镜并播放人类和机器创建的几乎所有内容。它支持从最晦涩古老的格式到最前沿的格式。 + 由 BtbN 构建的基于 6.1 发布分支的静态编译的 FFmpeg,拥有包含那些要求完整 GPL 协议而不仅仅是 LGPL 协议的在内的所有依赖。 +Tags: +- 多媒体 +- 媒体 +- 录制 +- 推流 +- 流媒体 +- 滤镜 +- 视频 +- 编码 +- 编解码器 +- 解码 +- 转换 +- 转码 +- 过滤器 +- 音视频 +- 音频 +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.6.1.yaml b/manifests/b/BtbN/FFmpeg/GPL/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.6.1.yaml new file mode 100644 index 0000000000000..274cdea2ad0ac --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.6.1.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: BtbN.FFmpeg.GPL.6.1 +PackageVersion: 6.1.2-20250630 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.7.1.installer.yaml b/manifests/b/BtbN/FFmpeg/GPL/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.7.1.installer.yaml new file mode 100644 index 0000000000000..8414851894f36 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.7.1.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BtbN.FFmpeg.GPL.7.1 +PackageVersion: 7.1.1-20250630 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ffmpeg-n7.1.1-54-g6400860b9d-win64-gpl-7.1\bin\ffmpeg.exe + PortableCommandAlias: ffmpeg +- RelativeFilePath: ffmpeg-n7.1.1-54-g6400860b9d-win64-gpl-7.1\bin\ffplay.exe + PortableCommandAlias: ffplay +- RelativeFilePath: ffmpeg-n7.1.1-54-g6400860b9d-win64-gpl-7.1\bin\ffprobe.exe + PortableCommandAlias: ffprobe +Commands: +- ffmpeg +- ffplay +- ffprobe +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-06-30-13-55/ffmpeg-n7.1.1-54-g6400860b9d-win64-gpl-7.1.zip + InstallerSha256: 854A90760D872A48EB30FB61582FB6B76B616F934FFC3B901033D21CC7F6FA6E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.7.1.locale.en-US.yaml b/manifests/b/BtbN/FFmpeg/GPL/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.7.1.locale.en-US.yaml new file mode 100644 index 0000000000000..ecdf5860cb987 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.7.1.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: BtbN.FFmpeg.GPL.7.1 +PackageVersion: 7.1.1-20250630 +PackageLocale: en-US +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (GPL static variant, 7.1 release branch) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: GPL-3.0 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: A complete, cross-platform solution to record, convert and stream audio and video. +Description: |- + FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. + A static FFmpeg build from BtbN based on the 7.1 release branch with all dependencies, even those that require full GPL instead of just LGPL. +Tags: +- audio +- codec +- convert +- decode +- demux +- encode +- filter +- media +- multimedia +- mux +- record +- stream +- streaming +- transcode +- video +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.7.1.locale.zh-CN.yaml b/manifests/b/BtbN/FFmpeg/GPL/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.7.1.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f3327ff7e2717 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.7.1.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: BtbN.FFmpeg.GPL.7.1 +PackageVersion: 7.1.1-20250630 +PackageLocale: zh-CN +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (GPL 静态编译版, 7.1 发布分支) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: GPL-3.0 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: 用于录制、转换和传输音频和视频的完整跨平台解决方案。 +Description: |- + FFmpeg 是领先的多媒体框架,能够解码、编码、转码、混流、分解、推流、应用滤镜并播放人类和机器创建的几乎所有内容。它支持从最晦涩古老的格式到最前沿的格式。 + 由 BtbN 构建的基于 7.1 发布分支的静态编译的 FFmpeg,拥有包含那些要求完整 GPL 协议而不仅仅是 LGPL 协议的在内的所有依赖。 +Tags: +- 多媒体 +- 媒体 +- 录制 +- 推流 +- 流媒体 +- 滤镜 +- 视频 +- 编码 +- 编解码器 +- 解码 +- 转换 +- 转码 +- 过滤器 +- 音视频 +- 音频 +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.7.1.yaml b/manifests/b/BtbN/FFmpeg/GPL/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.7.1.yaml new file mode 100644 index 0000000000000..5d5a91ec172e9 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.7.1.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: BtbN.FFmpeg.GPL.7.1 +PackageVersion: 7.1.1-20250630 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.installer.yaml b/manifests/b/BtbN/FFmpeg/GPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.installer.yaml new file mode 100644 index 0000000000000..6914624f9d29b --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BtbN.FFmpeg.GPL +PackageVersion: N-120061-gcfd1f81e7d-20250630 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ffmpeg-N-120061-gcfd1f81e7d-win64-gpl\bin\ffmpeg.exe + PortableCommandAlias: ffmpeg +- RelativeFilePath: ffmpeg-N-120061-gcfd1f81e7d-win64-gpl\bin\ffplay.exe + PortableCommandAlias: ffplay +- RelativeFilePath: ffmpeg-N-120061-gcfd1f81e7d-win64-gpl\bin\ffprobe.exe + PortableCommandAlias: ffprobe +Commands: +- ffmpeg +- ffplay +- ffprobe +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-06-30-13-55/ffmpeg-N-120061-gcfd1f81e7d-win64-gpl.zip + InstallerSha256: 5A8A8B310AA0D8BE2839C5404B9E79AF7A9DBF04E83383DCBFF5388355761CB4 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.locale.en-US.yaml b/manifests/b/BtbN/FFmpeg/GPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.locale.en-US.yaml new file mode 100644 index 0000000000000..815adf0bd70d4 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.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: BtbN.FFmpeg.GPL +PackageVersion: N-120061-gcfd1f81e7d-20250630 +PackageLocale: en-US +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (GPL static variant, master branch) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: GPL-3.0 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: A complete, cross-platform solution to record, convert and stream audio and video. +Description: |- + FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. + A static FFmpeg build from BtbN based on the master branch with all dependencies, even those that require full GPL instead of just LGPL. +Tags: +- audio +- codec +- convert +- decode +- demux +- encode +- filter +- media +- multimedia +- mux +- record +- stream +- streaming +- transcode +- video +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.locale.zh-CN.yaml b/manifests/b/BtbN/FFmpeg/GPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7f85eff308ccc --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.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: BtbN.FFmpeg.GPL +PackageVersion: N-120061-gcfd1f81e7d-20250630 +PackageLocale: zh-CN +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (GPL 静态编译版, master 分支) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: GPL-3.0 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: 用于录制、转换和传输音频和视频的完整跨平台解决方案。 +Description: |- + FFmpeg 是领先的多媒体框架,能够解码、编码、转码、混流、分解、推流、应用滤镜并播放人类和机器创建的几乎所有内容。它支持从最晦涩古老的格式到最前沿的格式。 + 由 BtbN 构建的基于 master 分支的静态编译的 FFmpeg,拥有包含那些要求完整 GPL 协议而不仅仅是 LGPL 协议的在内的所有依赖。 +Tags: +- 多媒体 +- 媒体 +- 录制 +- 推流 +- 流媒体 +- 滤镜 +- 视频 +- 编码 +- 编解码器 +- 解码 +- 转换 +- 转码 +- 过滤器 +- 音视频 +- 音频 +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.yaml b/manifests/b/BtbN/FFmpeg/GPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.yaml new file mode 100644 index 0000000000000..06193bc5ec4c3 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.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: BtbN.FFmpeg.GPL +PackageVersion: N-120061-gcfd1f81e7d-20250630 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.Shared.6.1.installer.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.Shared.6.1.installer.yaml new file mode 100644 index 0000000000000..f9de5becec6ba --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.Shared.6.1.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: BtbN.FFmpeg.GPL.Shared.6.1 +PackageVersion: 6.1.2-20250630 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ffmpeg-n6.1.2-191-g749f93de8d-win64-gpl-shared-6.1\bin\ffmpeg.exe + PortableCommandAlias: ffmpeg +- RelativeFilePath: ffmpeg-n6.1.2-191-g749f93de8d-win64-gpl-shared-6.1\bin\ffplay.exe + PortableCommandAlias: ffplay +- RelativeFilePath: ffmpeg-n6.1.2-191-g749f93de8d-win64-gpl-shared-6.1\bin\ffprobe.exe + PortableCommandAlias: ffprobe +Commands: +- ffmpeg +- ffplay +- ffprobe +ReleaseDate: 2025-06-30 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-06-30-13-55/ffmpeg-n6.1.2-191-g749f93de8d-win64-gpl-shared-6.1.zip + InstallerSha256: AF68090B555D7852CAE2E33B036AFF5E650ABB2693492249832612009155F37E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.Shared.6.1.locale.en-US.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.Shared.6.1.locale.en-US.yaml new file mode 100644 index 0000000000000..35633ab31546d --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.Shared.6.1.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: BtbN.FFmpeg.GPL.Shared.6.1 +PackageVersion: 6.1.2-20250630 +PackageLocale: en-US +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (GPL shared variant, 6.1 release branch) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: GPL-3.0 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: A complete, cross-platform solution to record, convert and stream audio and video. +Description: |- + FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. + A shared FFmpeg build from BtbN based on the 6.1 release branch with all dependencies, even those that require full GPL instead of just LGPL. +Tags: +- audio +- codec +- convert +- decode +- demux +- encode +- filter +- media +- multimedia +- mux +- record +- stream +- streaming +- transcode +- video +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.Shared.6.1.locale.zh-CN.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.Shared.6.1.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e4272d21b5e97 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.Shared.6.1.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: BtbN.FFmpeg.GPL.Shared.6.1 +PackageVersion: 6.1.2-20250630 +PackageLocale: zh-CN +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (GPL 动态编译版, 6.1 发布分支) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: GPL-3.0 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: 用于录制、转换和传输音频和视频的完整跨平台解决方案。 +Description: |- + FFmpeg 是领先的多媒体框架,能够解码、编码、转码、混流、分解、推流、应用滤镜并播放人类和机器创建的几乎所有内容。它支持从最晦涩古老的格式到最前沿的格式。 + 由 BtbN 构建的基于 6.1 发布分支的动态编译的 FFmpeg,拥有包含那些要求完整 GPL 协议而不仅仅是 LGPL 协议的在内的所有依赖。 +Tags: +- 多媒体 +- 媒体 +- 录制 +- 推流 +- 流媒体 +- 滤镜 +- 视频 +- 编码 +- 编解码器 +- 解码 +- 转换 +- 转码 +- 过滤器 +- 音视频 +- 音频 +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.Shared.6.1.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.Shared.6.1.yaml new file mode 100644 index 0000000000000..ccb03abe06a4e --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.GPL.Shared.6.1.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: BtbN.FFmpeg.GPL.Shared.6.1 +PackageVersion: 6.1.2-20250630 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.Shared.7.1.installer.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.Shared.7.1.installer.yaml new file mode 100644 index 0000000000000..ba26a41ff5be0 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.Shared.7.1.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: BtbN.FFmpeg.GPL.Shared.7.1 +PackageVersion: 7.1.1-20250630 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ffmpeg-n7.1.1-54-g6400860b9d-win64-gpl-shared-7.1\bin\ffmpeg.exe + PortableCommandAlias: ffmpeg +- RelativeFilePath: ffmpeg-n7.1.1-54-g6400860b9d-win64-gpl-shared-7.1\bin\ffplay.exe + PortableCommandAlias: ffplay +- RelativeFilePath: ffmpeg-n7.1.1-54-g6400860b9d-win64-gpl-shared-7.1\bin\ffprobe.exe + PortableCommandAlias: ffprobe +Commands: +- ffmpeg +- ffplay +- ffprobe +ReleaseDate: 2025-06-30 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-06-30-13-55/ffmpeg-n7.1.1-54-g6400860b9d-win64-gpl-shared-7.1.zip + InstallerSha256: 4460ABF35424B02D4B57D985BAFCC539946909739BFE3FFC157C147A3719AAFA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.Shared.7.1.locale.en-US.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.Shared.7.1.locale.en-US.yaml new file mode 100644 index 0000000000000..f8156c9bc1a3c --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.Shared.7.1.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: BtbN.FFmpeg.GPL.Shared.7.1 +PackageVersion: 7.1.1-20250630 +PackageLocale: en-US +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (GPL shared variant, 7.1 release branch) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: GPL-3.0 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: A complete, cross-platform solution to record, convert and stream audio and video. +Description: |- + FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. + A shared FFmpeg build from BtbN based on the 7.1 release branch with all dependencies, even those that require full GPL instead of just LGPL. +Tags: +- audio +- codec +- convert +- decode +- demux +- encode +- filter +- media +- multimedia +- mux +- record +- stream +- streaming +- transcode +- video +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.Shared.7.1.locale.zh-CN.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.Shared.7.1.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1598ca2fef7f8 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.Shared.7.1.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: BtbN.FFmpeg.GPL.Shared.7.1 +PackageVersion: 7.1.1-20250630 +PackageLocale: zh-CN +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (GPL 动态编译版, 7.1 发布分支) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: GPL-3.0 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: 用于录制、转换和传输音频和视频的完整跨平台解决方案。 +Description: |- + FFmpeg 是领先的多媒体框架,能够解码、编码、转码、混流、分解、推流、应用滤镜并播放人类和机器创建的几乎所有内容。它支持从最晦涩古老的格式到最前沿的格式。 + 由 BtbN 构建的基于 7.1 发布分支的动态编译的 FFmpeg,拥有包含那些要求完整 GPL 协议而不仅仅是 LGPL 协议的在内的所有依赖。 +Tags: +- 多媒体 +- 媒体 +- 录制 +- 推流 +- 流媒体 +- 滤镜 +- 视频 +- 编码 +- 编解码器 +- 解码 +- 转换 +- 转码 +- 过滤器 +- 音视频 +- 音频 +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.Shared.7.1.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.Shared.7.1.yaml new file mode 100644 index 0000000000000..3bb1c64f95243 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.GPL.Shared.7.1.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: BtbN.FFmpeg.GPL.Shared.7.1 +PackageVersion: 7.1.1-20250630 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.Shared.installer.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.Shared.installer.yaml new file mode 100644 index 0000000000000..3f3151d5fd8d5 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.Shared.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: BtbN.FFmpeg.GPL.Shared +PackageVersion: N-120061-gcfd1f81e7d-20250630 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ffmpeg-N-120061-gcfd1f81e7d-win64-gpl-shared\bin\ffmpeg.exe + PortableCommandAlias: ffmpeg +- RelativeFilePath: ffmpeg-N-120061-gcfd1f81e7d-win64-gpl-shared\bin\ffplay.exe + PortableCommandAlias: ffplay +- RelativeFilePath: ffmpeg-N-120061-gcfd1f81e7d-win64-gpl-shared\bin\ffprobe.exe + PortableCommandAlias: ffprobe +Commands: +- ffmpeg +- ffplay +- ffprobe +ReleaseDate: 2025-06-30 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-06-30-13-55/ffmpeg-N-120061-gcfd1f81e7d-win64-gpl-shared.zip + InstallerSha256: A86A1B3F0F3FB333BDAF39F444E022993DCE79BEB662AAB55752702692668AFD +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.Shared.locale.en-US.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.Shared.locale.en-US.yaml new file mode 100644 index 0000000000000..097f300ffb5f7 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.Shared.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: BtbN.FFmpeg.GPL.Shared +PackageVersion: N-120061-gcfd1f81e7d-20250630 +PackageLocale: en-US +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (GPL shared variant, master branch) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: GPL-3.0 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: A complete, cross-platform solution to record, convert and stream audio and video. +Description: |- + FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. + A shared FFmpeg build from BtbN based on the master branch with all dependencies, even those that require full GPL instead of just LGPL. +Tags: +- audio +- codec +- convert +- decode +- demux +- encode +- filter +- media +- multimedia +- mux +- record +- stream +- streaming +- transcode +- video +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.Shared.locale.zh-CN.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.Shared.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e9cd7552917de --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.Shared.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: BtbN.FFmpeg.GPL.Shared +PackageVersion: N-120061-gcfd1f81e7d-20250630 +PackageLocale: zh-CN +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (GPL 动态编译版, master 分支) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: GPL-3.0 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: 用于录制、转换和传输音频和视频的完整跨平台解决方案。 +Description: |- + FFmpeg 是领先的多媒体框架,能够解码、编码、转码、混流、分解、推流、应用滤镜并播放人类和机器创建的几乎所有内容。它支持从最晦涩古老的格式到最前沿的格式。 + 由 BtbN 构建的基于 master 分支的动态编译的 FFmpeg,拥有包含那些要求完整 GPL 协议而不仅仅是 LGPL 协议的在内的所有依赖。 +Tags: +- 多媒体 +- 媒体 +- 录制 +- 推流 +- 流媒体 +- 滤镜 +- 视频 +- 编码 +- 编解码器 +- 解码 +- 转换 +- 转码 +- 过滤器 +- 音视频 +- 音频 +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.Shared.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.Shared.yaml new file mode 100644 index 0000000000000..e44ddab73624f --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.GPL.Shared.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: BtbN.FFmpeg.GPL.Shared +PackageVersion: N-120061-gcfd1f81e7d-20250630 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.6.1.installer.yaml b/manifests/b/BtbN/FFmpeg/LGPL/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.6.1.installer.yaml new file mode 100644 index 0000000000000..d21acaeb96226 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.6.1.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BtbN.FFmpeg.LGPL.6.1 +PackageVersion: 6.1.2-20250630 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ffmpeg-n6.1.2-191-g749f93de8d-win64-lgpl-6.1\bin\ffmpeg.exe + PortableCommandAlias: ffmpeg +- RelativeFilePath: ffmpeg-n6.1.2-191-g749f93de8d-win64-lgpl-6.1\bin\ffplay.exe + PortableCommandAlias: ffplay +- RelativeFilePath: ffmpeg-n6.1.2-191-g749f93de8d-win64-lgpl-6.1\bin\ffprobe.exe + PortableCommandAlias: ffprobe +Commands: +- ffmpeg +- ffplay +- ffprobe +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-06-30-13-55/ffmpeg-n6.1.2-191-g749f93de8d-win64-lgpl-6.1.zip + InstallerSha256: 6C0AFCBD01D8F276DE5E8A73ADF04CFB98A82CE559DFB3F77AAB87D0ECCC1949 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.6.1.locale.en-US.yaml b/manifests/b/BtbN/FFmpeg/LGPL/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.6.1.locale.en-US.yaml new file mode 100644 index 0000000000000..146913c4fb4e2 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.6.1.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: BtbN.FFmpeg.LGPL.6.1 +PackageVersion: 6.1.2-20250630 +PackageLocale: en-US +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (LGPL static variant, 6.1 release branch) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: LGPL-2.1 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: A complete, cross-platform solution to record, convert and stream audio and video. +Description: |- + FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. + A static FFmpeg build from BtbN based on the 6.1 release branch with all dependencies except libraries that are GPL-only +Tags: +- audio +- codec +- convert +- decode +- demux +- encode +- filter +- media +- multimedia +- mux +- record +- stream +- streaming +- transcode +- video +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.6.1.locale.zh-CN.yaml b/manifests/b/BtbN/FFmpeg/LGPL/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.6.1.locale.zh-CN.yaml new file mode 100644 index 0000000000000..bf090bc592cb2 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.6.1.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: BtbN.FFmpeg.LGPL.6.1 +PackageVersion: 6.1.2-20250630 +PackageLocale: zh-CN +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (LGPL 静态编译版, 6.1 发布分支) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: LGPL-2.1 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: 用于录制、转换和传输音频和视频的完整跨平台解决方案。 +Description: |- + FFmpeg 是领先的多媒体框架,能够解码、编码、转码、混流、分解、推流、应用滤镜并播放人类和机器创建的几乎所有内容。它支持从最晦涩古老的格式到最前沿的格式。 + 由 BtbN 构建的基于 6.1 发布分支的静态编译的 FFmpeg,拥有除仅 GPL 协议的库以外的所有依赖。 +Tags: +- 多媒体 +- 媒体 +- 录制 +- 推流 +- 流媒体 +- 滤镜 +- 视频 +- 编码 +- 编解码器 +- 解码 +- 转换 +- 转码 +- 过滤器 +- 音视频 +- 音频 +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.6.1.yaml b/manifests/b/BtbN/FFmpeg/LGPL/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.6.1.yaml new file mode 100644 index 0000000000000..702cafaa0c18d --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.6.1.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: BtbN.FFmpeg.LGPL.6.1 +PackageVersion: 6.1.2-20250630 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.7.1.installer.yaml b/manifests/b/BtbN/FFmpeg/LGPL/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.7.1.installer.yaml new file mode 100644 index 0000000000000..a6b653ffc57b8 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.7.1.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BtbN.FFmpeg.LGPL.7.1 +PackageVersion: 7.1.1-20250630 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ffmpeg-n7.1.1-54-g6400860b9d-win64-lgpl-7.1\bin\ffmpeg.exe + PortableCommandAlias: ffmpeg +- RelativeFilePath: ffmpeg-n7.1.1-54-g6400860b9d-win64-lgpl-7.1\bin\ffplay.exe + PortableCommandAlias: ffplay +- RelativeFilePath: ffmpeg-n7.1.1-54-g6400860b9d-win64-lgpl-7.1\bin\ffprobe.exe + PortableCommandAlias: ffprobe +Commands: +- ffmpeg +- ffplay +- ffprobe +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-06-30-13-55/ffmpeg-n7.1.1-54-g6400860b9d-win64-lgpl-7.1.zip + InstallerSha256: F520A108C44469806E2110806033700DC9C03A6808F4B10BF2D7C261A6A6EFBC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.7.1.locale.en-US.yaml b/manifests/b/BtbN/FFmpeg/LGPL/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.7.1.locale.en-US.yaml new file mode 100644 index 0000000000000..47c0e8b24a965 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.7.1.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: BtbN.FFmpeg.LGPL.7.1 +PackageVersion: 7.1.1-20250630 +PackageLocale: en-US +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (LGPL static variant, 7.1 release branch) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: LGPL-2.1 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: A complete, cross-platform solution to record, convert and stream audio and video. +Description: |- + FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. + A static FFmpeg build from BtbN based on the 7.1 release branch with all dependencies except libraries that are GPL-only +Tags: +- audio +- codec +- convert +- decode +- demux +- encode +- filter +- media +- multimedia +- mux +- record +- stream +- streaming +- transcode +- video +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.7.1.locale.zh-CN.yaml b/manifests/b/BtbN/FFmpeg/LGPL/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.7.1.locale.zh-CN.yaml new file mode 100644 index 0000000000000..93e2f9160db60 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.7.1.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: BtbN.FFmpeg.LGPL.7.1 +PackageVersion: 7.1.1-20250630 +PackageLocale: zh-CN +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (LGPL 静态编译版, 7.1 发布分支) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: LGPL-2.1 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: 用于录制、转换和传输音频和视频的完整跨平台解决方案。 +Description: |- + FFmpeg 是领先的多媒体框架,能够解码、编码、转码、混流、分解、推流、应用滤镜并播放人类和机器创建的几乎所有内容。它支持从最晦涩古老的格式到最前沿的格式。 + 由 BtbN 构建的基于 7.1 发布分支的静态编译的 FFmpeg,拥有除仅 GPL 协议的库以外的所有依赖。 +Tags: +- 多媒体 +- 媒体 +- 录制 +- 推流 +- 流媒体 +- 滤镜 +- 视频 +- 编码 +- 编解码器 +- 解码 +- 转换 +- 转码 +- 过滤器 +- 音视频 +- 音频 +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.7.1.yaml b/manifests/b/BtbN/FFmpeg/LGPL/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.7.1.yaml new file mode 100644 index 0000000000000..ae28947b51758 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.7.1.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: BtbN.FFmpeg.LGPL.7.1 +PackageVersion: 7.1.1-20250630 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.installer.yaml b/manifests/b/BtbN/FFmpeg/LGPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.installer.yaml new file mode 100644 index 0000000000000..c59fdf93c9ed4 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BtbN.FFmpeg.LGPL +PackageVersion: N-120061-gcfd1f81e7d-20250630 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ffmpeg-N-120061-gcfd1f81e7d-win64-lgpl\bin\ffmpeg.exe + PortableCommandAlias: ffmpeg +- RelativeFilePath: ffmpeg-N-120061-gcfd1f81e7d-win64-lgpl\bin\ffplay.exe + PortableCommandAlias: ffplay +- RelativeFilePath: ffmpeg-N-120061-gcfd1f81e7d-win64-lgpl\bin\ffprobe.exe + PortableCommandAlias: ffprobe +Commands: +- ffmpeg +- ffplay +- ffprobe +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-06-30-13-55/ffmpeg-N-120061-gcfd1f81e7d-win64-lgpl.zip + InstallerSha256: CFD0F8FB4B7BBC354EABA9DA0301274FD60AD52B98CC0163E1DD4CDD97EA4766 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.locale.en-US.yaml b/manifests/b/BtbN/FFmpeg/LGPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.locale.en-US.yaml new file mode 100644 index 0000000000000..525b8279992f0 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.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: BtbN.FFmpeg.LGPL +PackageVersion: N-120061-gcfd1f81e7d-20250630 +PackageLocale: en-US +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (LGPL static variant, master branch) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: LGPL-2.1 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: A complete, cross-platform solution to record, convert and stream audio and video. +Description: |- + FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. + A static FFmpeg build from BtbN based on the master branch with all dependencies except libraries that are GPL-only +Tags: +- audio +- codec +- convert +- decode +- demux +- encode +- filter +- media +- multimedia +- mux +- record +- stream +- streaming +- transcode +- video +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.locale.zh-CN.yaml b/manifests/b/BtbN/FFmpeg/LGPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.locale.zh-CN.yaml new file mode 100644 index 0000000000000..0f5536058931b --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.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: BtbN.FFmpeg.LGPL +PackageVersion: N-120061-gcfd1f81e7d-20250630 +PackageLocale: zh-CN +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (LGPL 静态编译版, master 分支) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: LGPL-2.1 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: 用于录制、转换和传输音频和视频的完整跨平台解决方案。 +Description: |- + FFmpeg 是领先的多媒体框架,能够解码、编码、转码、混流、分解、推流、应用滤镜并播放人类和机器创建的几乎所有内容。它支持从最晦涩古老的格式到最前沿的格式。 + 由 BtbN 构建的基于 master 分支的静态编译的 FFmpeg,拥有除仅 GPL 协议的库以外的所有依赖。 +Tags: +- 多媒体 +- 媒体 +- 录制 +- 推流 +- 流媒体 +- 滤镜 +- 视频 +- 编码 +- 编解码器 +- 解码 +- 转换 +- 转码 +- 过滤器 +- 音视频 +- 音频 +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.yaml b/manifests/b/BtbN/FFmpeg/LGPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.yaml new file mode 100644 index 0000000000000..6089c1a8fc859 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.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: BtbN.FFmpeg.LGPL +PackageVersion: N-120061-gcfd1f81e7d-20250630 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.Shared.6.1.installer.yaml b/manifests/b/BtbN/FFmpeg/LGPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.Shared.6.1.installer.yaml new file mode 100644 index 0000000000000..56d49e92341f2 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.Shared.6.1.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: BtbN.FFmpeg.LGPL.Shared.6.1 +PackageVersion: 6.1.2-20250630 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ffmpeg-n6.1.2-191-g749f93de8d-win64-lgpl-shared-6.1\bin\ffmpeg.exe + PortableCommandAlias: ffmpeg +- RelativeFilePath: ffmpeg-n6.1.2-191-g749f93de8d-win64-lgpl-shared-6.1\bin\ffplay.exe + PortableCommandAlias: ffplay +- RelativeFilePath: ffmpeg-n6.1.2-191-g749f93de8d-win64-lgpl-shared-6.1\bin\ffprobe.exe + PortableCommandAlias: ffprobe +Commands: +- ffmpeg +- ffplay +- ffprobe +ReleaseDate: 2025-06-30 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-06-30-13-55/ffmpeg-n6.1.2-191-g749f93de8d-win64-lgpl-shared-6.1.zip + InstallerSha256: 56C1852467482DC3E3952E56A88C360644A38B63FB5BBEEE151D86836D23BA26 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.Shared.6.1.locale.en-US.yaml b/manifests/b/BtbN/FFmpeg/LGPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.Shared.6.1.locale.en-US.yaml new file mode 100644 index 0000000000000..6ca0d41bad9fd --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.Shared.6.1.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: BtbN.FFmpeg.LGPL.Shared.6.1 +PackageVersion: 6.1.2-20250630 +PackageLocale: en-US +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (LGPL shared variant, 6.1 release branch) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: LGPL-2.1 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: A complete, cross-platform solution to record, convert and stream audio and video. +Description: |- + FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. + A shared FFmpeg build from BtbN based on the 6.1 release branch with all dependencies except libraries that are GPL-only +Tags: +- audio +- codec +- convert +- decode +- demux +- encode +- filter +- media +- multimedia +- mux +- record +- stream +- streaming +- transcode +- video +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.Shared.6.1.locale.zh-CN.yaml b/manifests/b/BtbN/FFmpeg/LGPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.Shared.6.1.locale.zh-CN.yaml new file mode 100644 index 0000000000000..22ed099dc976a --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.Shared.6.1.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: BtbN.FFmpeg.LGPL.Shared.6.1 +PackageVersion: 6.1.2-20250630 +PackageLocale: zh-CN +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (LGPL 动态编译版, 6.1 发布分支) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: LGPL-2.1 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: 用于录制、转换和传输音频和视频的完整跨平台解决方案。 +Description: |- + FFmpeg 是领先的多媒体框架,能够解码、编码、转码、混流、分解、推流、应用滤镜并播放人类和机器创建的几乎所有内容。它支持从最晦涩古老的格式到最前沿的格式。 + 由 BtbN 构建的基于 6.1 发布分支的动态编译的 FFmpeg,拥有除仅 GPL 协议的库以外的所有依赖。 +Tags: +- 多媒体 +- 媒体 +- 录制 +- 推流 +- 流媒体 +- 滤镜 +- 视频 +- 编码 +- 编解码器 +- 解码 +- 转换 +- 转码 +- 过滤器 +- 音视频 +- 音频 +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.Shared.6.1.yaml b/manifests/b/BtbN/FFmpeg/LGPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.Shared.6.1.yaml new file mode 100644 index 0000000000000..eeb83ba517015 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/Shared/6/1/6.1.2-20250630/BtbN.FFmpeg.LGPL.Shared.6.1.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: BtbN.FFmpeg.LGPL.Shared.6.1 +PackageVersion: 6.1.2-20250630 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.Shared.7.1.installer.yaml b/manifests/b/BtbN/FFmpeg/LGPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.Shared.7.1.installer.yaml new file mode 100644 index 0000000000000..4b6bdef0e3b28 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.Shared.7.1.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: BtbN.FFmpeg.LGPL.Shared.7.1 +PackageVersion: 7.1.1-20250630 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ffmpeg-n7.1.1-54-g6400860b9d-win64-lgpl-shared-7.1\bin\ffmpeg.exe + PortableCommandAlias: ffmpeg +- RelativeFilePath: ffmpeg-n7.1.1-54-g6400860b9d-win64-lgpl-shared-7.1\bin\ffplay.exe + PortableCommandAlias: ffplay +- RelativeFilePath: ffmpeg-n7.1.1-54-g6400860b9d-win64-lgpl-shared-7.1\bin\ffprobe.exe + PortableCommandAlias: ffprobe +Commands: +- ffmpeg +- ffplay +- ffprobe +ReleaseDate: 2025-06-30 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-06-30-13-55/ffmpeg-n7.1.1-54-g6400860b9d-win64-lgpl-shared-7.1.zip + InstallerSha256: E9AD0512FB2D13F63554AC3C3CDB3847B36ECB9D4BC54962B91180962E957FB1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.Shared.7.1.locale.en-US.yaml b/manifests/b/BtbN/FFmpeg/LGPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.Shared.7.1.locale.en-US.yaml new file mode 100644 index 0000000000000..fd8f6887493a1 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.Shared.7.1.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: BtbN.FFmpeg.LGPL.Shared.7.1 +PackageVersion: 7.1.1-20250630 +PackageLocale: en-US +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (LGPL shared variant, 7.1 release branch) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: LGPL-2.1 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: A complete, cross-platform solution to record, convert and stream audio and video. +Description: |- + FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. + A shared FFmpeg build from BtbN based on the 7.1 release branch with all dependencies except libraries that are GPL-only +Tags: +- audio +- codec +- convert +- decode +- demux +- encode +- filter +- media +- multimedia +- mux +- record +- stream +- streaming +- transcode +- video +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.Shared.7.1.locale.zh-CN.yaml b/manifests/b/BtbN/FFmpeg/LGPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.Shared.7.1.locale.zh-CN.yaml new file mode 100644 index 0000000000000..956c4936db639 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.Shared.7.1.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: BtbN.FFmpeg.LGPL.Shared.7.1 +PackageVersion: 7.1.1-20250630 +PackageLocale: zh-CN +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (LGPL 动态编译版, 7.1 发布分支) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: LGPL-2.1 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: 用于录制、转换和传输音频和视频的完整跨平台解决方案。 +Description: |- + FFmpeg 是领先的多媒体框架,能够解码、编码、转码、混流、分解、推流、应用滤镜并播放人类和机器创建的几乎所有内容。它支持从最晦涩古老的格式到最前沿的格式。 + 由 BtbN 构建的基于 7.1 发布分支的动态编译的 FFmpeg,拥有除仅 GPL 协议的库以外的所有依赖。 +Tags: +- 多媒体 +- 媒体 +- 录制 +- 推流 +- 流媒体 +- 滤镜 +- 视频 +- 编码 +- 编解码器 +- 解码 +- 转换 +- 转码 +- 过滤器 +- 音视频 +- 音频 +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.Shared.7.1.yaml b/manifests/b/BtbN/FFmpeg/LGPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.Shared.7.1.yaml new file mode 100644 index 0000000000000..9ae28075811d6 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/Shared/7/1/7.1.1-20250630/BtbN.FFmpeg.LGPL.Shared.7.1.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: BtbN.FFmpeg.LGPL.Shared.7.1 +PackageVersion: 7.1.1-20250630 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.Shared.installer.yaml b/manifests/b/BtbN/FFmpeg/LGPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.Shared.installer.yaml new file mode 100644 index 0000000000000..53a64f5da6f88 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.Shared.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: BtbN.FFmpeg.LGPL.Shared +PackageVersion: N-120061-gcfd1f81e7d-20250630 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ffmpeg-N-120061-gcfd1f81e7d-win64-lgpl-shared\bin\ffmpeg.exe + PortableCommandAlias: ffmpeg +- RelativeFilePath: ffmpeg-N-120061-gcfd1f81e7d-win64-lgpl-shared\bin\ffplay.exe + PortableCommandAlias: ffplay +- RelativeFilePath: ffmpeg-N-120061-gcfd1f81e7d-win64-lgpl-shared\bin\ffprobe.exe + PortableCommandAlias: ffprobe +Commands: +- ffmpeg +- ffplay +- ffprobe +ReleaseDate: 2025-06-30 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-06-30-13-55/ffmpeg-N-120061-gcfd1f81e7d-win64-lgpl-shared.zip + InstallerSha256: 9992F7B551D0357B8E3A6251951837675235F68E5D2DE2CBFFBCE70C66B111B5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.Shared.locale.en-US.yaml b/manifests/b/BtbN/FFmpeg/LGPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.Shared.locale.en-US.yaml new file mode 100644 index 0000000000000..45bece75f43b9 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.Shared.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: BtbN.FFmpeg.LGPL.Shared +PackageVersion: N-120061-gcfd1f81e7d-20250630 +PackageLocale: en-US +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (LGPL shared variant, master branch) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: LGPL-2.1 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: A complete, cross-platform solution to record, convert and stream audio and video. +Description: |- + FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. + A shared FFmpeg build from BtbN based on the master branch with all dependencies except libraries that are GPL-only +Tags: +- audio +- codec +- convert +- decode +- demux +- encode +- filter +- media +- multimedia +- mux +- record +- stream +- streaming +- transcode +- video +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.Shared.locale.zh-CN.yaml b/manifests/b/BtbN/FFmpeg/LGPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.Shared.locale.zh-CN.yaml new file mode 100644 index 0000000000000..dc4a88a3fd5fa --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.Shared.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: BtbN.FFmpeg.LGPL.Shared +PackageVersion: N-120061-gcfd1f81e7d-20250630 +PackageLocale: zh-CN +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (LGPL 动态编译版, master 分支) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: LGPL-2.1 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2024 the FFmpeg developers +ShortDescription: 用于录制、转换和传输音频和视频的完整跨平台解决方案。 +Description: |- + FFmpeg 是领先的多媒体框架,能够解码、编码、转码、混流、分解、推流、应用滤镜并播放人类和机器创建的几乎所有内容。它支持从最晦涩古老的格式到最前沿的格式。 + 由 BtbN 构建的基于 master 分支的动态编译的 FFmpeg,拥有除仅 GPL 协议的库以外的所有依赖。 +Tags: +- 多媒体 +- 媒体 +- 录制 +- 推流 +- 流媒体 +- 滤镜 +- 视频 +- 编码 +- 编解码器 +- 解码 +- 转换 +- 转码 +- 过滤器 +- 音视频 +- 音频 +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-06-30-13-55 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/LGPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.Shared.yaml b/manifests/b/BtbN/FFmpeg/LGPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.Shared.yaml new file mode 100644 index 0000000000000..7659215d70005 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/LGPL/Shared/N-120061-gcfd1f81e7d-20250630/BtbN.FFmpeg.LGPL.Shared.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: BtbN.FFmpeg.LGPL.Shared +PackageVersion: N-120061-gcfd1f81e7d-20250630 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Burnaware/PDFShaper/Free/15.2/Burnaware.PDFShaper.Free.installer.yaml b/manifests/b/Burnaware/PDFShaper/Free/15.2/Burnaware.PDFShaper.Free.installer.yaml new file mode 100644 index 0000000000000..e01e46b5feb56 --- /dev/null +++ b/manifests/b/Burnaware/PDFShaper/Free/15.2/Burnaware.PDFShaper.Free.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: Burnaware.PDFShaper.Free +PackageVersion: '15.2' +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: PDF Shaper Free_is1 +ReleaseDate: 2025-06-09 +AppsAndFeaturesEntries: +- ProductCode: PDF Shaper Free_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\PDF Shaper Free' +Installers: +- Architecture: x86 + InstallerUrl: https://www.pdfshaper.com/downloads/pdfshaper_free_15.2.exe + InstallerSha256: E34C854E19358E57218FA265957B4DA2D78EB58909CEFA712F202F9DC237E92D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Burnaware/PDFShaper/Free/15.2/Burnaware.PDFShaper.Free.locale.en-US.yaml b/manifests/b/Burnaware/PDFShaper/Free/15.2/Burnaware.PDFShaper.Free.locale.en-US.yaml new file mode 100644 index 0000000000000..8de7ff2af224e --- /dev/null +++ b/manifests/b/Burnaware/PDFShaper/Free/15.2/Burnaware.PDFShaper.Free.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Burnaware.PDFShaper.Free +PackageVersion: '15.2' +PackageLocale: en-US +Publisher: Burnaware +PublisherUrl: https://www.pdfshaper.com/about-us.html +PublisherSupportUrl: https://www.pdfshaper.com/support.html +PrivacyUrl: https://www.pdfshaper.com/privacy-policy.html +PackageName: PDF Shaper Free +PackageUrl: https://www.pdfshaper.com/download.html +License: Proprietary (EULA) +LicenseUrl: https://www.pdfshaper.com/eula.html +Copyright: Copyright © 2025 Burnaware. +ShortDescription: > + PDF Shaper is a powerful yet lightweight Windows application for offline PDF + processing. +Description: > + PDF Software for Home and BusinessSecure, offline document processingDesigned + for simplicity and efficiency. +ReleaseNotesUrl: https://www.pdfshaper.com/release-notes.html +Documentations: +- DocumentLabel: User manual + DocumentUrl: https://www.pdfshaper.com/online-manual.html +- DocumentLabel: FAQs + DocumentUrl: https://www.pdfshaper.com/faq.html +- DocumentLabel: Request quote + DocumentUrl: https://www.pdfshaper.com/quote.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Burnaware/PDFShaper/Free/15.2/Burnaware.PDFShaper.Free.yaml b/manifests/b/Burnaware/PDFShaper/Free/15.2/Burnaware.PDFShaper.Free.yaml new file mode 100644 index 0000000000000..4c4580414185d --- /dev/null +++ b/manifests/b/Burnaware/PDFShaper/Free/15.2/Burnaware.PDFShaper.Free.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: Burnaware.PDFShaper.Free +PackageVersion: '15.2' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/ButterflyEffect/Monica/2.9.2/ButterflyEffect.Monica.installer.yaml b/manifests/b/ButterflyEffect/Monica/2.9.2/ButterflyEffect.Monica.installer.yaml new file mode 100644 index 0000000000000..04def1ab74f37 --- /dev/null +++ b/manifests/b/ButterflyEffect/Monica/2.9.2/ButterflyEffect.Monica.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: ButterflyEffect.Monica +PackageVersion: 2.9.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- monica +ProductCode: 2c806f82-a8b4-5c1c-97dd-7babf26e0869 +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.monica.im/Monica%20Setup%202.9.2.exe + InstallerSha256: C4A25A8A7C7853C66B58D09BE19FD8B4959C6C918B3A3421915018092B68D662 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.monica.im/Monica%20Setup%202.9.2.exe + InstallerSha256: C4A25A8A7C7853C66B58D09BE19FD8B4959C6C918B3A3421915018092B68D662 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/ButterflyEffect/Monica/2.9.2/ButterflyEffect.Monica.locale.en-US.yaml b/manifests/b/ButterflyEffect/Monica/2.9.2/ButterflyEffect.Monica.locale.en-US.yaml new file mode 100644 index 0000000000000..7216438b48c93 --- /dev/null +++ b/manifests/b/ButterflyEffect/Monica/2.9.2/ButterflyEffect.Monica.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: ButterflyEffect.Monica +PackageVersion: 2.9.2 +PackageLocale: en-US +Publisher: Beijing Butterfly Effect Technology Co., Ltd. +PublisherUrl: https://monica.im/ +PrivacyUrl: https://monica.im/privacy +Author: Beijing Butterfly Effect Technology Co., Ltd. +PackageName: Monica +PackageUrl: https://monica.im/desktop +License: Proprietary +LicenseUrl: https://monica.im/terms +Copyright: Copyright © 2024 Monica +ShortDescription: Your ChatGPT Powered AI Assistant +Description: Monica is your personal AI-Powered copilot. You can chat with Monica about anything, anywhere. Let Monica help you create effortlessly and insert text anywhere. +Tags: +- ai +- chatgpt +- gpt +PurchaseUrl: https://monica.im/pricing +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ButterflyEffect/Monica/2.9.2/ButterflyEffect.Monica.locale.zh-CN.yaml b/manifests/b/ButterflyEffect/Monica/2.9.2/ButterflyEffect.Monica.locale.zh-CN.yaml new file mode 100644 index 0000000000000..424976c7c0248 --- /dev/null +++ b/manifests/b/ButterflyEffect/Monica/2.9.2/ButterflyEffect.Monica.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: ButterflyEffect.Monica +PackageVersion: 2.9.2 +PackageLocale: zh-CN +Publisher: 北京蝴蝶效应科技有限公司 +PublisherUrl: https://monica.im/ +PrivacyUrl: https://monica.im/privacy +Author: 北京蝴蝶效应科技有限公司 +PackageName: Monica +PackageUrl: https://monica.im/desktop +License: 专有软件 +LicenseUrl: https://monica.im/terms +Copyright: Copyright © 2024 Monica +ShortDescription: 您的 ChatGPT AI 智能助理 +Description: Monica 是您的私人 AI 助手。您可以随时随地与 Monica 聊天。让 Monica 帮您轻松创建并在任何地方插入文字。 +Tags: +- ai +- chatgpt +- gpt +PurchaseUrl: https://monica.im/pricing +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ButterflyEffect/Monica/2.9.2/ButterflyEffect.Monica.yaml b/manifests/b/ButterflyEffect/Monica/2.9.2/ButterflyEffect.Monica.yaml new file mode 100644 index 0000000000000..2884234b6c263 --- /dev/null +++ b/manifests/b/ButterflyEffect/Monica/2.9.2/ButterflyEffect.Monica.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: ButterflyEffect.Monica +PackageVersion: 2.9.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/CapCut/6.5.0.2562/ByteDance.CapCut.installer.yaml b/manifests/b/ByteDance/CapCut/6.5.0.2562/ByteDance.CapCut.installer.yaml new file mode 100644 index 0000000000000..dcb1a4c2295e8 --- /dev/null +++ b/manifests/b/ByteDance/CapCut/6.5.0.2562/ByteDance.CapCut.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ByteDance.CapCut +PackageVersion: 6.5.0.2562 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /silent_install=1 + SilentWithProgress: /silent_install=1 + InstallLocation: /install_path="" + Upgrade: /update_install +UpgradeBehavior: install +Protocols: +- capcut +ProductCode: CapCut +Installers: +- Architecture: x64 + InstallerUrl: https://lf16-capcut.faceulv.com/obj/capcutpc-packages-sg/packages/CapCut_6_5_0_2562_capcutpc_0_creatortool.exe + InstallerSha256: E60481424E84449CC175DC852BB54AD8DB10FBACC2E9E0C0DCED83EA8D35D66F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/CapCut/6.5.0.2562/ByteDance.CapCut.locale.en-US.yaml b/manifests/b/ByteDance/CapCut/6.5.0.2562/ByteDance.CapCut.locale.en-US.yaml new file mode 100644 index 0000000000000..fbd4beae4e548 --- /dev/null +++ b/manifests/b/ByteDance/CapCut/6.5.0.2562/ByteDance.CapCut.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: ByteDance.CapCut +PackageVersion: 6.5.0.2562 +PackageLocale: en-US +Publisher: Bytedance Pte. Ltd. +PublisherUrl: https://www.bytedance.com/en +PrivacyUrl: https://sf16-draftcdn-sg.ibytedtos.com/obj/ies-hotsoon-draft-sg/capcut/via_clause_privacy_policy_en.html +Author: Bytedance Pte. Ltd. +PackageName: CapCut +PackageUrl: https://www.capcut.com/ +License: Freeware +LicenseUrl: https://sf16-draftcdn-sg.ibytedtos.com/obj/ies-hotsoon-draft-sg/capcut/via_clause_user_agreement_en.html +Copyright: Copyright © 2024 ByteDance Pte. Ltd. +ShortDescription: A video editing tool packed with features on your desktop or laptop +Description: CapCut is an all-in-one online video editing software which makes creation, upload & share easier, with frame by frame track editor, cloud drive etc. +Tags: +- clip +- creative +- creativity +- edit +- editor +- film +- movie +- video +- video-editing +- video-editor +ReleaseNotes: |- + - Fixed some known issues and improved the trimming experience. + We thank you for supporting CapCut and look forward to creating beautiful moments together. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/CapCut/6.5.0.2562/ByteDance.CapCut.locale.zh-CN.yaml b/manifests/b/ByteDance/CapCut/6.5.0.2562/ByteDance.CapCut.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c5eeaf28a5e08 --- /dev/null +++ b/manifests/b/ByteDance/CapCut/6.5.0.2562/ByteDance.CapCut.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: ByteDance.CapCut +PackageVersion: 6.5.0.2562 +PackageLocale: zh-CN +Publisher: Bytedance Pte. Ltd. +PublisherUrl: https://www.bytedance.com/zh +PrivacyUrl: https://sf16-draftcdn-sg.ibytedtos.com/obj/ies-hotsoon-draft-sg/capcut/via_clause_privacy_policy_en.html +Author: Bytedance Pte. Ltd. +PackageName: CapCut +PackageUrl: https://www.capcut.com/ +License: 免费软件 +LicenseUrl: https://sf16-draftcdn-sg.ibytedtos.com/obj/ies-hotsoon-draft-sg/capcut/via_clause_user_agreement_en.html +Copyright: Copyright © 2024 ByteDance Pte. Ltd. +ShortDescription: 功能齐全的桌面视频编辑工具 +Description: CapCut 是一款多合一在线视频编辑软件,具有逐帧轨道编辑器和云存储等,让创作、上传和分享更加容易。 +Tags: +- 创意 +- 剪辑 +- 影片 +- 电影 +- 视频 +- 视频编辑 +- 视频编辑器 +- 编辑 +- 编辑器 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/CapCut/6.5.0.2562/ByteDance.CapCut.yaml b/manifests/b/ByteDance/CapCut/6.5.0.2562/ByteDance.CapCut.yaml new file mode 100644 index 0000000000000..eba2606a5803b --- /dev/null +++ b/manifests/b/ByteDance/CapCut/6.5.0.2562/ByteDance.CapCut.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: ByteDance.CapCut +PackageVersion: 6.5.0.2562 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Doubao/1.61.3/ByteDance.Doubao.installer.yaml b/manifests/b/ByteDance/Doubao/1.61.3/ByteDance.Doubao.installer.yaml new file mode 100644 index 0000000000000..5f2b527e4759a --- /dev/null +++ b/manifests/b/ByteDance/Doubao/1.61.3/ByteDance.Doubao.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ByteDance.Doubao +PackageVersion: 1.61.3 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --command=quiet_install + SilentWithProgress: --command=quiet_install + InstallLocation: --target_dir="" + Log: --log_dir="" +UpgradeBehavior: install +ProductCode: Doubao +Installers: +- Architecture: x64 + InstallerUrl: https://lf-flow-web-cdn.doubao.com/obj/flow-doubao/doubao_pc/1.61.3/Doubao_installer_1.61.3.exe + InstallerSha256: 226DF3FD9FCCFF90F0C9B8342050D8E033704D8EE7D5EBAF7260A94B46994A37 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Doubao/1.61.3/ByteDance.Doubao.locale.en-US.yaml b/manifests/b/ByteDance/Doubao/1.61.3/ByteDance.Doubao.locale.en-US.yaml new file mode 100644 index 0000000000000..9158b751f5538 --- /dev/null +++ b/manifests/b/ByteDance/Doubao/1.61.3/ByteDance.Doubao.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: ByteDance.Doubao +PackageVersion: 1.61.3 +PackageLocale: en-US +Publisher: Beijing Chuntian Zhiyun Technology Co., Ltd. +PublisherUrl: https://www.doubao.com/ +PrivacyUrl: https://www.doubao.com/legal/privacy +Author: Beijing Chuntian Zhiyun Technology Co., Ltd. +PackageName: 豆包 +PackageUrl: https://www.doubao.com/ +License: Freeware +LicenseUrl: https://www.doubao.com/legal/terms +Copyright: Copyright 2024 The Doubao Authors. All rights reserved. +ShortDescription: Doubao is your intelligent AI chatting assistant and versatile tool, assisting in writing, translating, companion and programming. Doubao can answer questions, provide inspiration, assist in creation, and chat about any topic you are interested in. +Tags: +- ai +- ai-chat +- chat-ai +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Doubao/1.61.3/ByteDance.Doubao.locale.zh-CN.yaml b/manifests/b/ByteDance/Doubao/1.61.3/ByteDance.Doubao.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ed006a2318f71 --- /dev/null +++ b/manifests/b/ByteDance/Doubao/1.61.3/ByteDance.Doubao.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: ByteDance.Doubao +PackageVersion: 1.61.3 +PackageLocale: zh-CN +Publisher: Beijing Chuntian Zhiyun Technology Co., Ltd. +PublisherUrl: https://www.doubao.com/ +PrivacyUrl: https://www.doubao.com/legal/privacy +Author: 北京春田知韵科技有限公司 +PackageName: 豆包 +PackageUrl: https://www.doubao.com/ +License: 免费软件 +LicenseUrl: https://www.doubao.com/legal/terms +Copyright: 版权所有 2024 The 豆包 Authors。保留所有权利。 +ShortDescription: 豆包是你的 AI 聊天智能对话问答助手,写作文案翻译情感陪伴编程全能工具。豆包为你答疑解惑,提供灵感,辅助创作,也可以和你畅聊任何你感兴趣的话题。 +Tags: +- ai +- ai对话 +- ai聊天 +ReleaseNotes: |- + 悬浮助手体验升级,功能展示更清晰 + 在豆包首页也支持选择共享应用和屏幕发起对话了 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Doubao/1.61.3/ByteDance.Doubao.yaml b/manifests/b/ByteDance/Doubao/1.61.3/ByteDance.Doubao.yaml new file mode 100644 index 0000000000000..f2121e56a58a2 --- /dev/null +++ b/manifests/b/ByteDance/Doubao/1.61.3/ByteDance.Doubao.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: ByteDance.Doubao +PackageVersion: 1.61.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Doubao/1.62.5/ByteDance.Doubao.installer.yaml b/manifests/b/ByteDance/Doubao/1.62.5/ByteDance.Doubao.installer.yaml new file mode 100644 index 0000000000000..8429d36b5c630 --- /dev/null +++ b/manifests/b/ByteDance/Doubao/1.62.5/ByteDance.Doubao.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ByteDance.Doubao +PackageVersion: 1.62.5 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --command=quiet_install + SilentWithProgress: --command=quiet_install + InstallLocation: --target_dir="" + Log: --log_dir="" +UpgradeBehavior: install +ProductCode: Doubao +Installers: +- Architecture: x64 + InstallerUrl: https://lf-flow-web-cdn.doubao.com/obj/flow-doubao/doubao_pc/1.62.5/Doubao_installer_1.62.5.exe + InstallerSha256: 9501F19FC95B5EF6CF607841C343D02E54D6247B8560B5EEDD627EDFA63BEED6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Doubao/1.62.5/ByteDance.Doubao.locale.en-US.yaml b/manifests/b/ByteDance/Doubao/1.62.5/ByteDance.Doubao.locale.en-US.yaml new file mode 100644 index 0000000000000..e5e4a10384cd2 --- /dev/null +++ b/manifests/b/ByteDance/Doubao/1.62.5/ByteDance.Doubao.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: ByteDance.Doubao +PackageVersion: 1.62.5 +PackageLocale: en-US +Publisher: Beijing Chuntian Zhiyun Technology Co., Ltd. +PublisherUrl: https://www.doubao.com/ +PrivacyUrl: https://www.doubao.com/legal/privacy +Author: Beijing Chuntian Zhiyun Technology Co., Ltd. +PackageName: 豆包 +PackageUrl: https://www.doubao.com/ +License: Freeware +LicenseUrl: https://www.doubao.com/legal/terms +Copyright: Copyright 2024 The Doubao Authors. All rights reserved. +ShortDescription: Doubao is your intelligent AI chatting assistant and versatile tool, assisting in writing, translating, companion and programming. Doubao can answer questions, provide inspiration, assist in creation, and chat about any topic you are interested in. +Tags: +- ai +- ai-chat +- chat-ai +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Doubao/1.62.5/ByteDance.Doubao.locale.zh-CN.yaml b/manifests/b/ByteDance/Doubao/1.62.5/ByteDance.Doubao.locale.zh-CN.yaml new file mode 100644 index 0000000000000..81cf0a1b64932 --- /dev/null +++ b/manifests/b/ByteDance/Doubao/1.62.5/ByteDance.Doubao.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: ByteDance.Doubao +PackageVersion: 1.62.5 +PackageLocale: zh-CN +Publisher: Beijing Chuntian Zhiyun Technology Co., Ltd. +PublisherUrl: https://www.doubao.com/ +PrivacyUrl: https://www.doubao.com/legal/privacy +Author: 北京春田知韵科技有限公司 +PackageName: 豆包 +PackageUrl: https://www.doubao.com/ +License: 免费软件 +LicenseUrl: https://www.doubao.com/legal/terms +Copyright: 版权所有 2024 The 豆包 Authors。保留所有权利。 +ShortDescription: 豆包是你的 AI 聊天智能对话问答助手,写作文案翻译情感陪伴编程全能工具。豆包为你答疑解惑,提供灵感,辅助创作,也可以和你畅聊任何你感兴趣的话题。 +Tags: +- ai +- ai对话 +- ai聊天 +ReleaseNotes: AI 播客在生成完成后支持下载音频 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Doubao/1.62.5/ByteDance.Doubao.yaml b/manifests/b/ByteDance/Doubao/1.62.5/ByteDance.Doubao.yaml new file mode 100644 index 0000000000000..d28cb81854685 --- /dev/null +++ b/manifests/b/ByteDance/Doubao/1.62.5/ByteDance.Doubao.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: ByteDance.Doubao +PackageVersion: 1.62.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Doubao/1.62.6/ByteDance.Doubao.installer.yaml b/manifests/b/ByteDance/Doubao/1.62.6/ByteDance.Doubao.installer.yaml new file mode 100644 index 0000000000000..6ab0e4665f034 --- /dev/null +++ b/manifests/b/ByteDance/Doubao/1.62.6/ByteDance.Doubao.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ByteDance.Doubao +PackageVersion: 1.62.6 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --command=quiet_install + SilentWithProgress: --command=quiet_install + InstallLocation: --target_dir="" + Log: --log_dir="" +UpgradeBehavior: install +ProductCode: Doubao +Installers: +- Architecture: x64 + InstallerUrl: https://lf-flow-web-cdn.doubao.com/obj/flow-doubao/doubao_pc/1.62.6/Doubao_installer_1.62.6.exe + InstallerSha256: 3E3916598DBBC5B499BFAFC28E2147C62C3DE8373AF58CCEA9F49DD690F1E2E0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Doubao/1.62.6/ByteDance.Doubao.locale.en-US.yaml b/manifests/b/ByteDance/Doubao/1.62.6/ByteDance.Doubao.locale.en-US.yaml new file mode 100644 index 0000000000000..bd283454ba383 --- /dev/null +++ b/manifests/b/ByteDance/Doubao/1.62.6/ByteDance.Doubao.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: ByteDance.Doubao +PackageVersion: 1.62.6 +PackageLocale: en-US +Publisher: Beijing Chuntian Zhiyun Technology Co., Ltd. +PublisherUrl: https://www.doubao.com/ +PrivacyUrl: https://www.doubao.com/legal/privacy +Author: Beijing Chuntian Zhiyun Technology Co., Ltd. +PackageName: 豆包 +PackageUrl: https://www.doubao.com/ +License: Freeware +LicenseUrl: https://www.doubao.com/legal/terms +Copyright: Copyright 2024 The Doubao Authors. All rights reserved. +ShortDescription: Doubao is your intelligent AI chatting assistant and versatile tool, assisting in writing, translating, companion and programming. Doubao can answer questions, provide inspiration, assist in creation, and chat about any topic you are interested in. +Tags: +- ai +- ai-chat +- chat-ai +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Doubao/1.62.6/ByteDance.Doubao.locale.zh-CN.yaml b/manifests/b/ByteDance/Doubao/1.62.6/ByteDance.Doubao.locale.zh-CN.yaml new file mode 100644 index 0000000000000..0874a7501dcfa --- /dev/null +++ b/manifests/b/ByteDance/Doubao/1.62.6/ByteDance.Doubao.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: ByteDance.Doubao +PackageVersion: 1.62.6 +PackageLocale: zh-CN +Publisher: Beijing Chuntian Zhiyun Technology Co., Ltd. +PublisherUrl: https://www.doubao.com/ +PrivacyUrl: https://www.doubao.com/legal/privacy +Author: 北京春田知韵科技有限公司 +PackageName: 豆包 +PackageUrl: https://www.doubao.com/ +License: 免费软件 +LicenseUrl: https://www.doubao.com/legal/terms +Copyright: 版权所有 2024 The 豆包 Authors。保留所有权利。 +ShortDescription: 豆包是你的 AI 聊天智能对话问答助手,写作文案翻译情感陪伴编程全能工具。豆包为你答疑解惑,提供灵感,辅助创作,也可以和你畅聊任何你感兴趣的话题。 +Tags: +- ai +- ai对话 +- ai聊天 +ReleaseNotes: AI 播客在生成完成后支持下载音频 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Doubao/1.62.6/ByteDance.Doubao.yaml b/manifests/b/ByteDance/Doubao/1.62.6/ByteDance.Doubao.yaml new file mode 100644 index 0000000000000..2a9e593dcc11e --- /dev/null +++ b/manifests/b/ByteDance/Doubao/1.62.6/ByteDance.Doubao.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: ByteDance.Doubao +PackageVersion: 1.62.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Douyin/6.2.0/ByteDance.Douyin.installer.yaml b/manifests/b/ByteDance/Douyin/6.2.0/ByteDance.Douyin.installer.yaml new file mode 100644 index 0000000000000..e3a4421f1f602 --- /dev/null +++ b/manifests/b/ByteDance/Douyin/6.2.0/ByteDance.Douyin.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: ByteDance.Douyin +PackageVersion: 6.2.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: douyin +ReleaseDate: 2025-06-25 +Installers: +- Architecture: x86 + InstallerUrl: https://lf-douyin-pc-web.douyinstatic.com/obj/douyin-pc-web/douyin-pc-client/7044145585217083655/releases/170965630/6.2.0/win32-ia32/douyin-v6.2.0-win32-ia32-default.exe + InstallerSha256: BC81360D0841D6CACD3CF59DD0FC5EFAC5EBDB3F087105AA318B32FDEAD7D912 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Douyin/6.2.0/ByteDance.Douyin.locale.en-US.yaml b/manifests/b/ByteDance/Douyin/6.2.0/ByteDance.Douyin.locale.en-US.yaml new file mode 100644 index 0000000000000..1ec66440ba7ec --- /dev/null +++ b/manifests/b/ByteDance/Douyin/6.2.0/ByteDance.Douyin.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: ByteDance.Douyin +PackageVersion: 6.2.0 +PackageLocale: en-US +Publisher: Beijing Microlive Vision Technology Co., Ltd. +PublisherUrl: https://www.douyin.com/ +PublisherSupportUrl: https://www.douyin.com/aboutus/#contact +PrivacyUrl: https://www.douyin.com/draft/douyin_agreement/douyin_agreement_privacy.html +Author: Beijing Microlive Vision Technology Co., Ltd. +PackageName: 抖音 +PackageUrl: https://www.douyin.com/downloadpage/pc +License: Freeware +LicenseUrl: https://www.douyin.com/draft/douyin_agreement/douyin_agreement_user.html +Copyright: 2024© Douyin +ShortDescription: Discover good content and watch freely +Tags: +- douyin +- short-video +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Douyin/6.2.0/ByteDance.Douyin.locale.zh-CN.yaml b/manifests/b/ByteDance/Douyin/6.2.0/ByteDance.Douyin.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fcf05acef2f41 --- /dev/null +++ b/manifests/b/ByteDance/Douyin/6.2.0/ByteDance.Douyin.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: ByteDance.Douyin +PackageVersion: 6.2.0 +PackageLocale: zh-CN +Publisher: Beijing Microlive Vision Technology Co., Ltd. +PublisherUrl: https://www.douyin.com/ +PublisherSupportUrl: https://www.douyin.com/aboutus/#contact +PrivacyUrl: https://www.douyin.com/draft/douyin_agreement/douyin_agreement_privacy.html +Author: 北京微播视界科技有限公司 +PackageName: 抖音 +PackageUrl: https://www.douyin.com/downloadpage/pc +License: 免费软件 +LicenseUrl: https://www.douyin.com/draft/douyin_agreement/douyin_agreement_user.html +Copyright: 2024© 抖音 +ShortDescription: 发现好内容畅快看 +Tags: +- 抖音 +- 短视频 +ReleaseNotes: 新版本修复了一些已知问题,并针对性能进行优化 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Douyin/6.2.0/ByteDance.Douyin.yaml b/manifests/b/ByteDance/Douyin/6.2.0/ByteDance.Douyin.yaml new file mode 100644 index 0000000000000..ac0641f2a7861 --- /dev/null +++ b/manifests/b/ByteDance/Douyin/6.2.0/ByteDance.Douyin.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: ByteDance.Douyin +PackageVersion: 6.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Feishu/7.46.6/ByteDance.Feishu.installer.yaml b/manifests/b/ByteDance/Feishu/7.46.6/ByteDance.Feishu.installer.yaml new file mode 100644 index 0000000000000..11bea83751923 --- /dev/null +++ b/manifests/b/ByteDance/Feishu/7.46.6/ByteDance.Feishu.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: ByteDance.Feishu +PackageVersion: 7.46.6 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --command=quiet_install + SilentWithProgress: --command=quiet_install + InstallLocation: --target_dir="" + Log: --log_dir="" +UpgradeBehavior: install +Protocols: +- feishu +- feishu-open +- lark +- x-feishu +ProductCode: Feishu +ReleaseDate: 2025-06-20 +Installers: +- Architecture: x86 + InstallerUrl: https://sf3-cn.feishucdn.com/obj/ee-appcenter/940cc58d/Feishu-win32_ia32-7.46.6-signed.exe + InstallerSha256: 52C08A373A89107F4A5EABC8C081EE2EE5E98590E4297097D0E61DD09881E4ED +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Feishu/7.46.6/ByteDance.Feishu.locale.en-US.yaml b/manifests/b/ByteDance/Feishu/7.46.6/ByteDance.Feishu.locale.en-US.yaml new file mode 100644 index 0000000000000..e8ef5d16b6808 --- /dev/null +++ b/manifests/b/ByteDance/Feishu/7.46.6/ByteDance.Feishu.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ByteDance.Feishu +PackageVersion: 7.46.6 +PackageLocale: en-US +Publisher: Beijing Feishu Technology Co., Ltd. +PublisherUrl: https://www.feishu.cn/en/ +PublisherSupportUrl: https://www.feishu.cn/hc/en-US/ +PrivacyUrl: https://www.feishu.cn/en/privacy +Author: Beijing Feishu Technology Co., Ltd. +PackageName: Feishu +PackageUrl: https://www.feishu.cn/en/ +License: Proprietary +LicenseUrl: https://www.feishu.cn/en/terms +Copyright: Copyright © 2024 Beijing Feishu Technology Co., Ltd. +ShortDescription: A new way to collaborate +Description: Empowering teams by messenger, meetings, calendar, docs, and emails. It's all in one place. +Tags: +- attendance +- bussiness +- check-in +- collaboration +- communicate +- comunication +- conference +- docs +- document +- enterprise +- meeting +- oa +- office +- saas +- team +- working +ReleaseNotes: |- + Knowledge AI + - Feishu Knowledge AI is now available. This AI-powered tool utilizes your organization's knowledge to provide intelligent support. You can ask questions, and it will provide answers and generate content based on materials you have permission to access within Feishu, such as messages, documents, and wikis. This feature requires additional purchase and is currently in beta. To request access, contact your Customer Success Manager. + Base + - In Base, you can view linked data from one-way/two-way link fields in grid view on a record’s details page. Here, you can easily add, delete, or modify fields and records of the source table, or unlink records, simplifying data reviews and boosting efficiency. +ReleaseNotesUrl: https://www.feishu.cn/hc/en-US/articles/493631677073 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Feishu/7.46.6/ByteDance.Feishu.locale.zh-CN.yaml b/manifests/b/ByteDance/Feishu/7.46.6/ByteDance.Feishu.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9444574e06dee --- /dev/null +++ b/manifests/b/ByteDance/Feishu/7.46.6/ByteDance.Feishu.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: ByteDance.Feishu +PackageVersion: 7.46.6 +PackageLocale: zh-CN +Publisher: Beijing Feishu Technology Co., Ltd. +PublisherUrl: https://www.feishu.cn/ +PublisherSupportUrl: https://www.feishu.cn/hc/zh-CN/ +PrivacyUrl: https://www.feishu.cn/privacy +Author: 北京飞书科技有限公司 +PackageName: 飞书 +PackageUrl: https://www.feishu.cn/download +License: 专有软件 +LicenseUrl: https://www.feishu.cn/terms +Copyright: Copyright © 2024 北京飞书科技有限公司 +ShortDescription: 先进团队,先用飞书 +Description: 飞书——字节跳动旗下先进企业协作与管理平台,不仅一站式整合及时沟通、智能日历、音视频会议、飞书文档、云盘等办公协作套件,更提供飞书 OKR、飞书招聘、飞书绩效等组织管理产品,让目标更清晰,信息流动更顺畅,每一个人工作更高效更愉悦。先进团队,先用飞书。 +Tags: +- oa +- saas +- 交流 +- 企业 +- 会议 +- 公司 +- 办公 +- 协作 +- 协同 +- 团队 +- 工作 +- 打卡 +- 文档 +- 沟通 +- 签到 +- 考勤 +ReleaseNotes: |- + 知识问答 + - 飞书知识问答功能全新上线。它是整合企业知识的企业专属 AI 问答工具。你可以向它提问,它能根据你在飞书上有权限访问的消息、文档、知识库等资料,给出回答及进行内容创作。此功能需另外购买,且在内测中。如需申请开通,请联系客户成功经理。 + 多维表格 + - 使用多维表格时,如果数据表中包含单向或双向关联字段,你可以在对应记录的详情页中,以表格视图的形式查看被关联数据明细。同时,你还可以在该视图中对源数据表的字段或记录进行增、删、改等操作,或解除关联关系。实现关联数据可视化查看,操作处理更高效。 +ReleaseNotesUrl: https://www.feishu.cn/hc/zh-CN/articles/493631677073 +PurchaseUrl: https://www.feishu.cn/service +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Feishu/7.46.6/ByteDance.Feishu.yaml b/manifests/b/ByteDance/Feishu/7.46.6/ByteDance.Feishu.yaml new file mode 100644 index 0000000000000..86f1d37c2d877 --- /dev/null +++ b/manifests/b/ByteDance/Feishu/7.46.6/ByteDance.Feishu.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: ByteDance.Feishu +PackageVersion: 7.46.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/JianyingPro/8.6.0.13206/ByteDance.JianyingPro.installer.yaml b/manifests/b/ByteDance/JianyingPro/8.6.0.13206/ByteDance.JianyingPro.installer.yaml new file mode 100644 index 0000000000000..668f60e7c2bc4 --- /dev/null +++ b/manifests/b/ByteDance/JianyingPro/8.6.0.13206/ByteDance.JianyingPro.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ByteDance.JianyingPro +PackageVersion: 8.6.0.13206 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /silent_install=1 + SilentWithProgress: /silent_install=1 + InstallLocation: /install_path="" + Upgrade: /update_install +UpgradeBehavior: install +Protocols: +- vega +ProductCode: JianyingPro +Installers: +- Architecture: x64 + InstallerUrl: https://lf3-package.vlabstatic.com/obj/faceu-packages/Jianying_8_6_0_13206_jianyingpro_0_creatortool.exe + InstallerSha256: 813A7D345B3486D178BF83C46F525D26BECAAA8FC98411AE82755B63E7705037 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/JianyingPro/8.6.0.13206/ByteDance.JianyingPro.locale.en-US.yaml b/manifests/b/ByteDance/JianyingPro/8.6.0.13206/ByteDance.JianyingPro.locale.en-US.yaml new file mode 100644 index 0000000000000..8f5c9d9d02e02 --- /dev/null +++ b/manifests/b/ByteDance/JianyingPro/8.6.0.13206/ByteDance.JianyingPro.locale.en-US.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: ByteDance.JianyingPro +PackageVersion: 8.6.0.13206 +PackageLocale: en-US +Publisher: Shenzhen Lianmeng Technology +PublisherUrl: https://www.bytedance.com/en +PrivacyUrl: https://lf3-beecdn.bytetos.com/obj/ies-fe-bee/bee_prod/biz_80/bee_prod_80_bee_publish_8401.html +Author: Shenzhen Lianmeng Technology Co., Ltd. +PackageName: 剪映专业版 +PackageUrl: https://www.capcut.cn +License: Freeware +LicenseUrl: https://lv.ulikecam.com/clause/agreement/pro +Copyright: Copyright © 2024 Shenzhen Lianmeng Technology Co., Ltd. +ShortDescription: All-in-one, easy-to-use desktop video editing software +Description: Jianying Pro is an all-in-one, easy-to-use desktop video editing software that makes creation easier. +Tags: +- clip +- creative +- creativity +- edit +- editor +- film +- movie +- video +- video-editing +- video-editor +Documentations: +- DocumentLabel: Guide + DocumentUrl: https://learning.capcut.cn/topic_detail/7128272592783428894 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/JianyingPro/8.6.0.13206/ByteDance.JianyingPro.locale.zh-CN.yaml b/manifests/b/ByteDance/JianyingPro/8.6.0.13206/ByteDance.JianyingPro.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9bb4e15a18770 --- /dev/null +++ b/manifests/b/ByteDance/JianyingPro/8.6.0.13206/ByteDance.JianyingPro.locale.zh-CN.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: ByteDance.JianyingPro +PackageVersion: 8.6.0.13206 +PackageLocale: zh-CN +Publisher: 深圳市脸萌科技有限公司 +PublisherUrl: https://www.bytedance.com/zh +PrivacyUrl: https://lf3-beecdn.bytetos.com/obj/ies-fe-bee/bee_prod/biz_80/bee_prod_80_bee_publish_8401.html +Author: 深圳市脸萌科技有限公司 +PackageName: 剪映专业版 +PackageUrl: https://www.capcut.cn +License: 免费软件 +LicenseUrl: https://lv.ulikecam.com/clause/agreement/pro +Copyright: Copyright © 2024 深圳市脸萌科技有限公司 +ShortDescription: 全能易用的桌面端剪辑软件 +Description: 剪映专业版是一款全能易用的桌面端剪辑软件,让创作更简单。 +Moniker: 剪映 +Tags: +- 创意 +- 剪辑 +- 影片 +- 电影 +- 视频 +- 视频编辑 +- 视频编辑器 +- 编辑 +- 编辑器 +ReleaseNotes: |- + 剪映专业版 8.6.0 最新版来啦! + - 修复了一些已知的体验问题,让剪辑更顺畅 +Documentations: +- DocumentLabel: 剪辑教程 + DocumentUrl: https://learning.capcut.cn/topic_detail/7128272592783428894 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/JianyingPro/8.6.0.13206/ByteDance.JianyingPro.locale.zh-TW.yaml b/manifests/b/ByteDance/JianyingPro/8.6.0.13206/ByteDance.JianyingPro.locale.zh-TW.yaml new file mode 100644 index 0000000000000..baba8394aa77e --- /dev/null +++ b/manifests/b/ByteDance/JianyingPro/8.6.0.13206/ByteDance.JianyingPro.locale.zh-TW.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: ByteDance.JianyingPro +PackageVersion: 8.6.0.13206 +PackageLocale: zh-TW +Publisher: 深圳市脸萌科技有限公司 +PublisherUrl: https://www.bytedance.com/zh +PrivacyUrl: https://lf3-beecdn.bytetos.com/obj/ies-fe-bee/bee_prod/biz_80/bee_prod_80_bee_publish_8401.html +Author: 深圳市脸萌科技有限公司 +PackageName: 剪映專業版 +PackageUrl: https://www.capcut.cn +License: 免費軟件 +LicenseUrl: https://lv.ulikecam.com/clause/agreement/pro +Copyright: 版权所有 (c) 深圳市脸萌科技有限公司 +ShortDescription: 全能易用的桌面端剪輯軟件 +Description: 剪映專業版是一款全能易用的桌面端剪輯軟件,讓創作更簡單。 +Tags: +- 剪輯 +- 剪辑 +- 創意 +- 影片 +- 电影 +- 视频 +- 视频编辑 +- 视频编辑器 +- 编辑 +- 编辑器 +- 電影 +Documentations: +- DocumentLabel: 剪辑教程 + DocumentUrl: https://learning.capcut.cn/topic_detail/7128272592783428894 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/JianyingPro/8.6.0.13206/ByteDance.JianyingPro.yaml b/manifests/b/ByteDance/JianyingPro/8.6.0.13206/ByteDance.JianyingPro.yaml new file mode 100644 index 0000000000000..bef3f1a4a6c9c --- /dev/null +++ b/manifests/b/ByteDance/JianyingPro/8.6.0.13206/ByteDance.JianyingPro.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: ByteDance.JianyingPro +PackageVersion: 8.6.0.13206 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Lark/7.46.7/ByteDance.Lark.installer.yaml b/manifests/b/ByteDance/Lark/7.46.7/ByteDance.Lark.installer.yaml new file mode 100644 index 0000000000000..eba5fe00d65ea --- /dev/null +++ b/manifests/b/ByteDance/Lark/7.46.7/ByteDance.Lark.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: ByteDance.Lark +PackageVersion: 7.46.7 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --command=quiet_install + SilentWithProgress: --command=quiet_install + InstallLocation: --target_dir="" + Log: --log_dir="" +UpgradeBehavior: install +Protocols: +- feishu +- feishu-open +- lark +- x-lark +ProductCode: Lark +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x86 + InstallerUrl: https://sf16-sg.larksuitecdn.com/obj/lark-artifact-storage/ee90594e/Lark-win32_ia32-7.46.7-signed.exe + InstallerSha256: FE69D048C777F12F02F40F47C1A8BCE39B2543A7B2621504B022FEBA0DF1D55D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Lark/7.46.7/ByteDance.Lark.locale.en-US.yaml b/manifests/b/ByteDance/Lark/7.46.7/ByteDance.Lark.locale.en-US.yaml new file mode 100644 index 0000000000000..7c5ac9ea5a831 --- /dev/null +++ b/manifests/b/ByteDance/Lark/7.46.7/ByteDance.Lark.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ByteDance.Lark +PackageVersion: 7.46.7 +PackageLocale: en-US +Publisher: Lark Technologies Pte. Ltd. +PublisherUrl: https://www.larksuite.com/en_us/ +PublisherSupportUrl: https://www.larksuite.com/hc/en-US/ +PrivacyUrl: https://www.larksuite.com/en_us/privacy-policy +Author: Lark Technologies Pte. Ltd. +PackageName: Lark +PackageUrl: https://www.larksuite.com/en_us/download +License: Proprietary +LicenseUrl: https://www.larksuite.com/en_us/user-terms-of-service +Copyright: Copyright © 2024 Lark Technologies Pte. Ltd. +ShortDescription: The Next-Gen Collaboration Suite +Description: Lark is a next-generation office suite that integrates messaging, schedule management, collaborative documents, video conferencing, and many more applications in a single platform. +Moniker: larksuite +Tags: +- attendance +- bussiness +- check-in +- collaboration +- communicate +- comunication +- conference +- docs +- document +- enterprise +- meeting +- oa +- office +- saas +- team +- working +ReleaseNotes: |- + Base + - In Base, you can view linked data from one-way/two-way link fields in grid view on a record’s details page. Here, you can easily add, delete, or modify fields and records of the source table, or unlink records, simplifying data reviews and boosting efficiency. +ReleaseNotesUrl: https://www.larksuite.com/hc/en-US/articles/869310069970 +PurchaseUrl: https://www.larksuite.com/en_us/plans +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Lark/7.46.7/ByteDance.Lark.locale.zh-CN.yaml b/manifests/b/ByteDance/Lark/7.46.7/ByteDance.Lark.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f158c49751989 --- /dev/null +++ b/manifests/b/ByteDance/Lark/7.46.7/ByteDance.Lark.locale.zh-CN.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: ByteDance.Lark +PackageVersion: 7.46.7 +PackageLocale: zh-CN +Publisher: Lark Technologies Pte. Ltd. +PublisherUrl: https://www.larksuite.com/zh_cn/ +PublisherSupportUrl: https://www.larksuite.com/hc/zh-CN/ +PrivacyUrl: https://www.larksuite.com/zh_cn/privacy-policy +Author: Lark Technologies Pte. Ltd. +PackageName: Lark +PackageUrl: https://www.larksuite.com/zh_cn/download +License: 专有软件 +LicenseUrl: https://www.larksuite.com/zh_cn/user-terms-of-service +Copyright: Copyright © 2024 Lark Technologies Pte. Ltd. +ShortDescription: 新一代协同套件 +Description: 一站式整合即时沟通、日历、视频会议、云文档、云盘、工作台等功能 +Tags: +- oa +- saas +- 交流 +- 企业 +- 会议 +- 公司 +- 办公 +- 协作 +- 协同 +- 团队 +- 工作 +- 打卡 +- 文档 +- 沟通 +- 签到 +- 考勤 +ReleaseNotes: |- + 多维表格 + - 使用多维表格时,如果数据表中包含单向或双向关联字段,你可以在对应记录的详情页中,以表格视图的形式查看被关联数据明细。同时,你还可以在该视图中对源数据表的字段或记录进行增、删、改等操作,或解除关联关系。实现关联数据可视化查看,操作处理更高效。 +ReleaseNotesUrl: https://www.larksuite.com/hc/zh-CN/articles/869310069970 +PurchaseUrl: https://www.larksuite.com/zh_cn/plans +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Lark/7.46.7/ByteDance.Lark.yaml b/manifests/b/ByteDance/Lark/7.46.7/ByteDance.Lark.yaml new file mode 100644 index 0000000000000..a862349ee1533 --- /dev/null +++ b/manifests/b/ByteDance/Lark/7.46.7/ByteDance.Lark.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: ByteDance.Lark +PackageVersion: 7.46.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/SodaMusic/2.5.0/ByteDance.SodaMusic.installer.yaml b/manifests/b/ByteDance/SodaMusic/2.5.0/ByteDance.SodaMusic.installer.yaml new file mode 100644 index 0000000000000..9f3d33dc290ee --- /dev/null +++ b/manifests/b/ByteDance/SodaMusic/2.5.0/ByteDance.SodaMusic.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: ByteDance.SodaMusic +PackageVersion: 2.5.0 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: '{87285ABF-B326-46A4-B8BD-FFDD150917DE}_is1' +Installers: +- Architecture: x86 + InstallerUrl: https://lf-luna-release.qishui.com/obj/luna-release/2.5.0/170597163/SodaMusic-v2.5.0-official-win32_ia32.exe + InstallerSha256: a46e42cdc9f6cf8f4d9f8d4925e49608559310f8d2f629a6e581a9d02185be3b +- Architecture: x64 + InstallerUrl: https://lf-luna-release.qishui.com/obj/luna-release/2.5.0/170597163/SodaMusic-v2.5.0-official-win32_x64.exe + InstallerSha256: 880fefda5a3de14aec77853da2787a5aa891c946c7e4b1530c30030d7a80c349 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/SodaMusic/2.5.0/ByteDance.SodaMusic.locale.en-US.yaml b/manifests/b/ByteDance/SodaMusic/2.5.0/ByteDance.SodaMusic.locale.en-US.yaml new file mode 100644 index 0000000000000..8a72bfff96c5f --- /dev/null +++ b/manifests/b/ByteDance/SodaMusic/2.5.0/ByteDance.SodaMusic.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: ByteDance.SodaMusic +PackageVersion: 2.5.0 +PackageLocale: en-US +Publisher: Beijing Douyin Technology Co., Ltd. +PublisherUrl: https://www.douyin.com/ +PublisherSupportUrl: https://www.douyin.com/aboutus/#contact +PrivacyUrl: https://luna-web.douyin.com/privacy +Author: Beijing Microlive Vision Technology Co., Ltd. +PackageName: 汽水音乐 +PackageUrl: https://www.qishui.com/ +License: Proprietary +LicenseUrl: https://luna-web.douyin.com/terms +Copyright: Copyright © 2024 Beijing Microlive Vision Technology Co., Ltd. +ShortDescription: Douyin's official music APP +Tags: +- album +- artist +- audio +- cloud +- douyin +- music +- player +- playlist +- song +- sound +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/SodaMusic/2.5.0/ByteDance.SodaMusic.locale.zh-CN.yaml b/manifests/b/ByteDance/SodaMusic/2.5.0/ByteDance.SodaMusic.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ddc71f993f754 --- /dev/null +++ b/manifests/b/ByteDance/SodaMusic/2.5.0/ByteDance.SodaMusic.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: ByteDance.SodaMusic +PackageVersion: 2.5.0 +PackageLocale: zh-CN +Publisher: Beijing Douyin Technology Co., Ltd. +PublisherUrl: https://www.douyin.com/ +PublisherSupportUrl: https://www.douyin.com/aboutus/#contact +PrivacyUrl: https://luna-web.douyin.com/privacy +Author: 北京抖音科技有限公司 +PackageName: 汽水音乐 +PackageUrl: https://www.qishui.com/ +License: 专有软件 +LicenseUrl: https://luna-web.douyin.com/terms +Copyright: Copyright © 2024 Beijing Microlive Vision Technology Co., Ltd. +ShortDescription: 抖音官方出品音乐 APP +Tags: +- 专辑 +- 抖音 +- 播放器 +- 歌单 +- 歌手 +- 歌曲 +- 音乐 +- 音频 +ReleaseNotes: 优化了用户体验,修复了一些已知问题 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/SodaMusic/2.5.0/ByteDance.SodaMusic.yaml b/manifests/b/ByteDance/SodaMusic/2.5.0/ByteDance.SodaMusic.yaml new file mode 100644 index 0000000000000..d050ad1d527ca --- /dev/null +++ b/manifests/b/ByteDance/SodaMusic/2.5.0/ByteDance.SodaMusic.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: ByteDance.SodaMusic +PackageVersion: 2.5.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Trae/1.100.3/ByteDance.Trae.installer.yaml b/manifests/b/ByteDance/Trae/1.100.3/ByteDance.Trae.installer.yaml new file mode 100644 index 0000000000000..e62a768c16671 --- /dev/null +++ b/manifests/b/ByteDance/Trae/1.100.3/ByteDance.Trae.installer.yaml @@ -0,0 +1,165 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ByteDance.Trae +PackageVersion: 1.100.3 +InstallerType: inno +Scope: user +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- trae +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ini +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- log +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- ps1 +- psd1 +- psgi +- psm1 +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- svgz +- t +- tex +- toml +- ts +- tsx +- txt +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ProductCode: '{1082AAEF-E2C3-4ABD-8789-9861082B709F}_is1' +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://lf-cdn.trae.ai/obj/trae-ai-us/pkg/app/releases/stable/1.0.15364/win32/Trae-Setup-x64.exe + InstallerSha256: E5881373F9FD2D09A4A90B1ECEFB3249A16152BA4DAE8B998D161B9A73EAC540 +- InstallerLocale: zh-CN + Architecture: x64 + InstallerUrl: https://lf-cdn.trae.com.cn/obj/trae-com-cn/pkg/app/releases/stable/1.0.15364/win32/Trae-Setup-x64.exe + InstallerSha256: E5881373F9FD2D09A4A90B1ECEFB3249A16152BA4DAE8B998D161B9A73EAC540 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Trae/1.100.3/ByteDance.Trae.locale.en-US.yaml b/manifests/b/ByteDance/Trae/1.100.3/ByteDance.Trae.locale.en-US.yaml new file mode 100644 index 0000000000000..afed5458d09d2 --- /dev/null +++ b/manifests/b/ByteDance/Trae/1.100.3/ByteDance.Trae.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: ByteDance.Trae +PackageVersion: 1.100.3 +PackageLocale: en-US +Publisher: SPRING (SG) PTE. LTD +PublisherUrl: https://www.trae.ai/ +PublisherSupportUrl: https://discord.gg/NV3MF24tAe +PrivacyUrl: https://www.trae.ai/privacy-policy +Author: SPRING (SG) PTE. LTD. +PackageName: Trae +PackageUrl: https://www.trae.ai/ +License: Proprietary +LicenseUrl: https://www.trae.ai/terms-of-service +Copyright: Copyright © 2025. All rights reserved. +ShortDescription: An adaptive AI IDE that transforms how you work, collaborating with you to run faster. +Description: Trae (/treɪ/) is your helpful coding partner. It offers features like AI Q&A, code auto-completion, and agent-based AI programming capabilities. When developing projects with Trae, you can collaborate with AI to enhance your development efficiency. +Tags: +- ai +- code +- coding +- develop +- development +- editing +- editor +- large-language-model +- llm +- programming +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.trae.ai/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Trae/1.100.3/ByteDance.Trae.locale.zh-CN.yaml b/manifests/b/ByteDance/Trae/1.100.3/ByteDance.Trae.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f9cac6402487b --- /dev/null +++ b/manifests/b/ByteDance/Trae/1.100.3/ByteDance.Trae.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: ByteDance.Trae +PackageVersion: 1.100.3 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 自适应的 AI 集成开发环境,改变您的工作方式,从而与您协作,提高速度。 +Description: Trae(/treɪ/)与 AI 深度集成,提供智能问答、代码自动补全以及基于 Agent 的 AI 自动编程能力。使用 Trae 开发项目时,你可以与 AI 灵活协作,提升开发效率。 +Tags: +- ai +- llm +- 人工智能 +- 代码 +- 大语言模型 +- 开发 +- 编程 +- 编辑 +- 编辑器 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.trae.ai/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Trae/1.100.3/ByteDance.Trae.yaml b/manifests/b/ByteDance/Trae/1.100.3/ByteDance.Trae.yaml new file mode 100644 index 0000000000000..a3c3798eb6a03 --- /dev/null +++ b/manifests/b/ByteDance/Trae/1.100.3/ByteDance.Trae.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: ByteDance.Trae +PackageVersion: 1.100.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Trae/CN/1.100.3/ByteDance.Trae.CN.installer.yaml b/manifests/b/ByteDance/Trae/CN/1.100.3/ByteDance.Trae.CN.installer.yaml new file mode 100644 index 0000000000000..4148a3c6c0333 --- /dev/null +++ b/manifests/b/ByteDance/Trae/CN/1.100.3/ByteDance.Trae.CN.installer.yaml @@ -0,0 +1,165 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ByteDance.Trae.CN +PackageVersion: 1.100.3 +InstallerType: inno +Scope: user +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- trae-cn +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ini +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- log +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- ps1 +- psd1 +- psgi +- psm1 +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- svgz +- t +- tex +- toml +- ts +- tsx +- txt +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ProductCode: '{98EB0EF0-1DE3-4838-B14A-3B0DC4570E8B}_is1' +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://lf-cdn.trae.ai/obj/trae-ai-us/pkg/app/releases/stable/1.0.15362/win32/Trae%20CN-Setup-x64.exe + InstallerSha256: 95044EC7C15AB554D7754C8F48495D0E2874080780CA38E8139EE0D3FCAA565C +- InstallerLocale: zh-CN + Architecture: x64 + InstallerUrl: https://lf-cdn.trae.com.cn/obj/trae-com-cn/pkg/app/releases/stable/1.0.15362/win32/Trae%20CN-Setup-x64.exe + InstallerSha256: 95044EC7C15AB554D7754C8F48495D0E2874080780CA38E8139EE0D3FCAA565C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Trae/CN/1.100.3/ByteDance.Trae.CN.locale.en-US.yaml b/manifests/b/ByteDance/Trae/CN/1.100.3/ByteDance.Trae.CN.locale.en-US.yaml new file mode 100644 index 0000000000000..f875c35d27871 --- /dev/null +++ b/manifests/b/ByteDance/Trae/CN/1.100.3/ByteDance.Trae.CN.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: ByteDance.Trae.CN +PackageVersion: 1.100.3 +PackageLocale: en-US +Publisher: Beijing Yinli Catapult Technology Co., Ltd. +PublisherUrl: https://www.trae.com.cn/ +PublisherSupportUrl: https://juejin.cn/pin/club/7473403408615997490 +PrivacyUrl: https://www.trae.com.cn/privacy-policy +Author: Beijing Yinli Catapult Technology Co., Ltd. +PackageName: Trae CN +PackageUrl: https://www.trae.com.cn/ +License: Proprietary +LicenseUrl: https://www.trae.com.cn/terms-of-service +Copyright: © 2025 Beijing Yinli Catapult Technology Co., Ltd. All rights reserved. +ShortDescription: An adaptive AI IDE that transforms how you work, collaborating with you to run faster. +Description: Trae (/treɪ/) is your helpful coding partner. It offers features like AI Q&A, code auto-completion, and agent-based AI programming capabilities. When developing projects with Trae, you can collaborate with AI to enhance your development efficiency. +Tags: +- ai +- code +- coding +- develop +- development +- editing +- editor +- large-language-model +- llm +- programming +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.trae.com.cn/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Trae/CN/1.100.3/ByteDance.Trae.CN.locale.zh-CN.yaml b/manifests/b/ByteDance/Trae/CN/1.100.3/ByteDance.Trae.CN.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ee088b11602ce --- /dev/null +++ b/manifests/b/ByteDance/Trae/CN/1.100.3/ByteDance.Trae.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: ByteDance.Trae.CN +PackageVersion: 1.100.3 +PackageLocale: zh-CN +Publisher: Beijing Yinli Catapult Technology Co., Ltd. +PublisherUrl: https://www.trae.com.cn/ +PublisherSupportUrl: https://juejin.cn/pin/club/7473403408615997490 +PrivacyUrl: https://www.trae.com.cn/privacy-policy +Author: 北京引力弹弓科技有限公司 +PackageName: Trae CN +PackageUrl: https://www.trae.com.cn/ +License: 专有软件 +LicenseUrl: https://www.trae.com.cn/terms-of-service +Copyright: © 2025 北京引力弹弓科技有限公司版权所有 +ShortDescription: 多种模型供选择,体验新一代 AI 编程工具 +Description: Trae(/treɪ/)与 AI 深度集成,提供智能问答、代码自动补全以及基于 Agent 的 AI 自动编程能力。使用 Trae 开发项目时,你可以与 AI 灵活协作,提升开发效率。 +Tags: +- ai +- llm +- 人工智能 +- 代码 +- 大语言模型 +- 开发 +- 编程 +- 编辑 +- 编辑器 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.trae.com.cn/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/Trae/CN/1.100.3/ByteDance.Trae.CN.yaml b/manifests/b/ByteDance/Trae/CN/1.100.3/ByteDance.Trae.CN.yaml new file mode 100644 index 0000000000000..34156d0519113 --- /dev/null +++ b/manifests/b/ByteDance/Trae/CN/1.100.3/ByteDance.Trae.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: ByteDance.Trae.CN +PackageVersion: 1.100.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/UI-TARS/0.2.1/ByteDance.UI-TARS.installer.yaml b/manifests/b/ByteDance/UI-TARS/0.2.1/ByteDance.UI-TARS.installer.yaml new file mode 100644 index 0000000000000..2c7695b5bc47c --- /dev/null +++ b/manifests/b/ByteDance/UI-TARS/0.2.1/ByteDance.UI-TARS.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: ByteDance.UI-TARS +PackageVersion: 0.2.1 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +ProductCode: UI-TARS +ReleaseDate: 2025-06-25 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bytedance/UI-TARS-desktop/releases/download/v0.2.1/UI-TARS-0.2.1-Setup.exe + InstallerSha256: CA321B71F1749D1480203C11197C21F51ABAFB593E74810302133F3866006370 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/UI-TARS/0.2.1/ByteDance.UI-TARS.locale.en-US.yaml b/manifests/b/ByteDance/UI-TARS/0.2.1/ByteDance.UI-TARS.locale.en-US.yaml new file mode 100644 index 0000000000000..c1eaa6195560d --- /dev/null +++ b/manifests/b/ByteDance/UI-TARS/0.2.1/ByteDance.UI-TARS.locale.en-US.yaml @@ -0,0 +1,48 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ByteDance.UI-TARS +PackageVersion: 0.2.1 +PackageLocale: en-US +Publisher: ByteDance +PublisherUrl: https://www.bytedance.com/ +PublisherSupportUrl: https://github.com/bytedance/UI-TARS-desktop/issues +Author: Bytedance Inc. +PackageName: UI TARS +PackageUrl: https://github.com/bytedance/UI-TARS-desktop +License: Apache-2.0 +LicenseUrl: https://github.com/bytedance/UI-TARS-desktop/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024-present Bytedance, Inc. and its affiliates. +ShortDescription: A GUI Agent application based on UI-TARS (Vision-Lanuage Model) that allows you to control your computer using natural language. +Tags: +- agent +- ai +- assistant +ReleaseNotes: |- + 🛠️ Improvements + - Added support for the Response API. + + Refer to the Responses API guide of VolcEngine to apply for a model that supports the Responses API. Once configuration is complete, turn on the “Use Response API” switch to start using this feature. + - Improved the stability of remote operators + - Fixed some UI issues + What's Changed + - remove await for non async function by @QuentinLowe in https://github.com/bytedance/UI-TARS-desktop/pull/707 + - fix(ui-tars): optimize VNC scaling by @skychx in https://github.com/bytedance/UI-TARS-desktop/pull/719 + - feat(ui-tars): Support Responses API by @ycjcl868 in https://github.com/bytedance/UI-TARS-desktop/pull/714 + - fix(ui-tars-sdk): add timeout for response api by @ZhaoHeh in https://github.com/bytedance/UI-TARS-desktop/pull/736 + - fix(ui-tars-sdk): add auth headers when delete response Id by @ZhaoHeh in https://github.com/bytedance/UI-TARS-desktop/pull/742 + - ci(all): bump @rslib@core to 0.10.0 by @cjraft in https://github.com/bytedance/UI-TARS-desktop/pull/737 + - fix(ui-tars): fix the UI flickering issue after importing preset config by @skychx in https://github.com/bytedance/UI-TARS-desktop/pull/749 + - fix(ui-tars): global settings dialog add ScrollArea component by @skychx in https://github.com/bytedance/UI-TARS-desktop/pull/787 + - feat(ui-tars-sdk): add remote api's request id into log and error by @ZhaoHeh in https://github.com/bytedance/UI-TARS-desktop/pull/788 + - fix(ui-tars): clear time cache when time expired by @skychx in https://github.com/bytedance/UI-TARS-desktop/pull/798 + - fix(ui-tars-sdk): fix the format of history messages by @ZhaoHeh in https://github.com/bytedance/UI-TARS-desktop/pull/799 + - fix(browser-operator): goto URL wait no events by @ZhaoHeh in https://github.com/bytedance/UI-TARS-desktop/pull/810 + - feat(ui-tars): update proxy server's endpoint by @ZhaoHeh in https://github.com/bytedance/UI-TARS-desktop/pull/811 + New Contributors + - @QuentinLowe made their first contribution in https://github.com/bytedance/UI-TARS-desktop/pull/707 + - @cjraft made their first contribution in https://github.com/bytedance/UI-TARS-desktop/pull/728 + Full Changelog: https://github.com/bytedance/UI-TARS-desktop/compare/v0.2.0...v0.2.1 +ReleaseNotesUrl: https://github.com/bytedance/UI-TARS-desktop/releases/tag/v0.2.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/UI-TARS/0.2.1/ByteDance.UI-TARS.locale.zh-CN.yaml b/manifests/b/ByteDance/UI-TARS/0.2.1/ByteDance.UI-TARS.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6b3762f76c3aa --- /dev/null +++ b/manifests/b/ByteDance/UI-TARS/0.2.1/ByteDance.UI-TARS.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: ByteDance.UI-TARS +PackageVersion: 0.2.1 +PackageLocale: zh-CN +ShortDescription: 一款基于 UI-TARS(视觉-语言模型)的智能体图形界面应用程序,让您使用自然语言控制计算机。 +Tags: +- 人工智能 +- 助手 +- 智能体 +ReleaseNotesUrl: https://github.com/bytedance/UI-TARS-desktop/releases/tag/v0.2.1 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/UI-TARS/0.2.1/ByteDance.UI-TARS.yaml b/manifests/b/ByteDance/UI-TARS/0.2.1/ByteDance.UI-TARS.yaml new file mode 100644 index 0000000000000..0dbc3bcd6aa1b --- /dev/null +++ b/manifests/b/ByteDance/UI-TARS/0.2.1/ByteDance.UI-TARS.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: ByteDance.UI-TARS +PackageVersion: 0.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/UI-TARS/0.2.2/ByteDance.UI-TARS.installer.yaml b/manifests/b/ByteDance/UI-TARS/0.2.2/ByteDance.UI-TARS.installer.yaml new file mode 100644 index 0000000000000..9285997ce5dda --- /dev/null +++ b/manifests/b/ByteDance/UI-TARS/0.2.2/ByteDance.UI-TARS.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: ByteDance.UI-TARS +PackageVersion: 0.2.2 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +ProductCode: UI-TARS +ReleaseDate: 2025-07-09 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bytedance/UI-TARS-desktop/releases/download/v0.2.2/UI-TARS-0.2.2-Setup.exe + InstallerSha256: CEA6594CFF6033580D7F4FC04A3C9265BC30615D2C2D2713CC6B70D57E0AE583 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/UI-TARS/0.2.2/ByteDance.UI-TARS.locale.en-US.yaml b/manifests/b/ByteDance/UI-TARS/0.2.2/ByteDance.UI-TARS.locale.en-US.yaml new file mode 100644 index 0000000000000..e26d7dcd0b7e4 --- /dev/null +++ b/manifests/b/ByteDance/UI-TARS/0.2.2/ByteDance.UI-TARS.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ByteDance.UI-TARS +PackageVersion: 0.2.2 +PackageLocale: en-US +Publisher: ByteDance +PublisherUrl: https://www.bytedance.com/ +PublisherSupportUrl: https://github.com/bytedance/UI-TARS-desktop/issues +Author: Bytedance Inc. +PackageName: UI TARS +PackageUrl: https://github.com/bytedance/UI-TARS-desktop +License: Apache-2.0 +LicenseUrl: https://github.com/bytedance/UI-TARS-desktop/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024-present Bytedance, Inc. and its affiliates. +ShortDescription: A GUI Agent application based on UI-TARS (Vision-Lanuage Model) that allows you to control your computer using natural language. +Tags: +- agent +- ai +- assistant +ReleaseNotes: |- + Key Changes + - support headful browser with VNC control + - add model availability check logic + Details + VNC Browser + In this update, we have replaced the remote browser operator's screen casting feature with VNC Browser. This version provides a more stable screen casting experience and supports displaying the full Chrome UI: + https://github.com/user-attachments/assets/b5ec662f-1185-46fc-b354-82d0a913cb18 + + Check Model Availability + After configuring the VLM Model Settings, users can proactively click the Check Model Availability button below to verify the availability of the VLM Model: + + What's Changed + - chore(ui-tars): update release version by @ZhaoHeh in https://github.com/bytedance/UI-TARS-desktop/pull/824 + - chore(mcp-browser): add custom logger and addMiddleware by @ycjcl868 in https://github.com/bytedance/UI-TARS-desktop/pull/813 + - fix(ui-tars): action parser edge case action Chinese colon by @ycjcl868 in https://github.com/bytedance/UI-TARS-desktop/pull/825 + - docs(agent-tars): new home page by @ulivz in https://github.com/bytedance/UI-TARS-desktop/pull/841 + - docs: refine readme by @ulivz in https://github.com/bytedance/UI-TARS-desktop/pull/843 + - feat(ui-tars): add model availability check logic by @skychx in https://github.com/bytedance/UI-TARS-desktop/pull/894 + - feat(ui-tars): update volcano engine FaaS url by @skychx in https://github.com/bytedance/UI-TARS-desktop/pull/895 + - feat(ui-tars): update model check logic by @skychx in https://github.com/bytedance/UI-TARS-desktop/pull/899 + - feat(remote-browser): support headful browser with VNC control by @ZhaoHeh in https://github.com/bytedance/UI-TARS-desktop/pull/898 + Full Changelog: https://github.com/bytedance/UI-TARS-desktop/compare/v0.2.1...v0.2.2 +ReleaseNotesUrl: https://github.com/bytedance/UI-TARS-desktop/releases/tag/v0.2.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/UI-TARS/0.2.2/ByteDance.UI-TARS.locale.zh-CN.yaml b/manifests/b/ByteDance/UI-TARS/0.2.2/ByteDance.UI-TARS.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a87c2020652f7 --- /dev/null +++ b/manifests/b/ByteDance/UI-TARS/0.2.2/ByteDance.UI-TARS.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: ByteDance.UI-TARS +PackageVersion: 0.2.2 +PackageLocale: zh-CN +ShortDescription: 一款基于 UI-TARS(视觉-语言模型)的智能体图形界面应用程序,让您使用自然语言控制计算机。 +Tags: +- 人工智能 +- 助手 +- 智能体 +ReleaseNotesUrl: https://github.com/bytedance/UI-TARS-desktop/releases/tag/v0.2.2 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/UI-TARS/0.2.2/ByteDance.UI-TARS.yaml b/manifests/b/ByteDance/UI-TARS/0.2.2/ByteDance.UI-TARS.yaml new file mode 100644 index 0000000000000..1aeb8d0849fc2 --- /dev/null +++ b/manifests/b/ByteDance/UI-TARS/0.2.2/ByteDance.UI-TARS.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: ByteDance.UI-TARS +PackageVersion: 0.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/tosutil/4.0.6/ByteDance.tosutil.installer.yaml b/manifests/b/ByteDance/tosutil/4.0.8/ByteDance.tosutil.installer.yaml similarity index 75% rename from manifests/b/ByteDance/tosutil/4.0.6/ByteDance.tosutil.installer.yaml rename to manifests/b/ByteDance/tosutil/4.0.8/ByteDance.tosutil.installer.yaml index 7ae4f0164803c..b5c93afe093e0 100644 --- a/manifests/b/ByteDance/tosutil/4.0.6/ByteDance.tosutil.installer.yaml +++ b/manifests/b/ByteDance/tosutil/4.0.8/ByteDance.tosutil.installer.yaml @@ -2,13 +2,13 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: ByteDance.tosutil -PackageVersion: 4.0.6 +PackageVersion: 4.0.8 InstallerType: portable Commands: - tosutil Installers: - Architecture: x64 InstallerUrl: https://tos-tools.tos-cn-beijing.volces.com/windows/tosutil - InstallerSha256: 7CE03688A412BF0F1B404C1002D161E6463BE4F52E9305F333D881775EBCFD21 + InstallerSha256: 5960EC47F4FDBB17FEBC7458E1691EEB292BAF7EA74674FC8B6D297FA2F5DA66 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/b/ByteDance/tosutil/4.0.6/ByteDance.tosutil.locale.en-US.yaml b/manifests/b/ByteDance/tosutil/4.0.8/ByteDance.tosutil.locale.en-US.yaml similarity index 96% rename from manifests/b/ByteDance/tosutil/4.0.6/ByteDance.tosutil.locale.en-US.yaml rename to manifests/b/ByteDance/tosutil/4.0.8/ByteDance.tosutil.locale.en-US.yaml index 2fff3f824716f..5f9bbe99b0487 100644 --- a/manifests/b/ByteDance/tosutil/4.0.6/ByteDance.tosutil.locale.en-US.yaml +++ b/manifests/b/ByteDance/tosutil/4.0.8/ByteDance.tosutil.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: ByteDance.tosutil -PackageVersion: 4.0.6 +PackageVersion: 4.0.8 PackageLocale: en-US Publisher: Beijing Volcano Engine Technology Co., Ltd. PublisherUrl: https://www.volcengine.com/ diff --git a/manifests/b/ByteDance/tosutil/4.0.6/ByteDance.tosutil.locale.zh-CN.yaml b/manifests/b/ByteDance/tosutil/4.0.8/ByteDance.tosutil.locale.zh-CN.yaml similarity index 96% rename from manifests/b/ByteDance/tosutil/4.0.6/ByteDance.tosutil.locale.zh-CN.yaml rename to manifests/b/ByteDance/tosutil/4.0.8/ByteDance.tosutil.locale.zh-CN.yaml index a98bd60afc740..3ae17fbbbee0b 100644 --- a/manifests/b/ByteDance/tosutil/4.0.6/ByteDance.tosutil.locale.zh-CN.yaml +++ b/manifests/b/ByteDance/tosutil/4.0.8/ByteDance.tosutil.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: ByteDance.tosutil -PackageVersion: 4.0.6 +PackageVersion: 4.0.8 PackageLocale: zh-CN Publisher: 北京火山引擎科技有限公司 PublisherUrl: https://www.volcengine.com/ diff --git a/manifests/b/ByteDance/tosutil/4.0.6/ByteDance.tosutil.yaml b/manifests/b/ByteDance/tosutil/4.0.8/ByteDance.tosutil.yaml similarity index 88% rename from manifests/b/ByteDance/tosutil/4.0.6/ByteDance.tosutil.yaml rename to manifests/b/ByteDance/tosutil/4.0.8/ByteDance.tosutil.yaml index 6b942c4e21f4d..317c6db35bfb5 100644 --- a/manifests/b/ByteDance/tosutil/4.0.6/ByteDance.tosutil.yaml +++ b/manifests/b/ByteDance/tosutil/4.0.8/ByteDance.tosutil.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: ByteDance.tosutil -PackageVersion: 4.0.6 +PackageVersion: 4.0.8 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/b/BytecodeAlliance/Wasmtime/34.0.1/BytecodeAlliance.Wasmtime.installer.yaml b/manifests/b/BytecodeAlliance/Wasmtime/34.0.1/BytecodeAlliance.Wasmtime.installer.yaml new file mode 100644 index 0000000000000..d543f9468f359 --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/34.0.1/BytecodeAlliance.Wasmtime.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: BytecodeAlliance.Wasmtime +PackageVersion: 34.0.1 +InstallerType: wix +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +Commands: +- wasmtime +FileExtensions: +- wasm +ProductCode: '{0BBBD8EB-EAF4-49F3-B5DC-CAE213A40BBA}' +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- ProductCode: '{0BBBD8EB-EAF4-49F3-B5DC-CAE213A40BBA}' + UpgradeCode: '{A00EBA3C-5C90-42DA-8176-3D46447D2211}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bytecodealliance/wasmtime/releases/download/v34.0.1/wasmtime-v34.0.1-x86_64-windows.msi + InstallerSha256: D6EE282C6440591EDFD70C0223055DF8D9D462A7F21477FA31E250EA0CD73113 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BytecodeAlliance/Wasmtime/34.0.1/BytecodeAlliance.Wasmtime.locale.en-US.yaml b/manifests/b/BytecodeAlliance/Wasmtime/34.0.1/BytecodeAlliance.Wasmtime.locale.en-US.yaml new file mode 100644 index 0000000000000..b431b23c19d7a --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/34.0.1/BytecodeAlliance.Wasmtime.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BytecodeAlliance.Wasmtime +PackageVersion: 34.0.1 +PackageLocale: en-US +Publisher: Crane Station +PublisherUrl: https://bytecodealliance.org/ +PublisherSupportUrl: https://github.com/bytecodealliance/wasmtime/issues +Author: Bytecode Alliance +PackageName: Wasmtime +PackageUrl: https://wasmtime.dev/ +License: Apache-2.0 +LicenseUrl: https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE +ShortDescription: A fast and secure runtime for WebAssembly +Tags: +- wasm +- webassembly +ReleaseNotes: |- + Fixed + - Fix a panic with host-defined tables/globals and concrete reference types. #11103 +ReleaseNotesUrl: https://github.com/bytecodealliance/wasmtime/blob/release-34.0.0/RELEASES.md#3401 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.wasmtime.dev/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BytecodeAlliance/Wasmtime/34.0.1/BytecodeAlliance.Wasmtime.locale.zh-CN.yaml b/manifests/b/BytecodeAlliance/Wasmtime/34.0.1/BytecodeAlliance.Wasmtime.locale.zh-CN.yaml new file mode 100644 index 0000000000000..bad92e8d34bb1 --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/34.0.1/BytecodeAlliance.Wasmtime.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: BytecodeAlliance.Wasmtime +PackageVersion: 34.0.1 +PackageLocale: zh-CN +Publisher: Crane Station +PublisherUrl: https://bytecodealliance.org/ +PublisherSupportUrl: https://github.com/bytecodealliance/wasmtime/issues +Author: Bytecode Alliance +PackageName: Wasmtime +PackageUrl: https://wasmtime.dev/ +License: Apache-2.0 +LicenseUrl: https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE +ShortDescription: 快速安全的 WebAssembly 运行时 +Tags: +- wasm +- webassembly +ReleaseNotesUrl: https://github.com/bytecodealliance/wasmtime/blob/release-34.0.0/RELEASES.md#3401 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.wasmtime.dev/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BytecodeAlliance/Wasmtime/34.0.1/BytecodeAlliance.Wasmtime.yaml b/manifests/b/BytecodeAlliance/Wasmtime/34.0.1/BytecodeAlliance.Wasmtime.yaml new file mode 100644 index 0000000000000..0973210d00b13 --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/34.0.1/BytecodeAlliance.Wasmtime.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: BytecodeAlliance.Wasmtime +PackageVersion: 34.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BytecodeAlliance/Wasmtime/Portable/32.0.1/BytecodeAlliance.Wasmtime.Portable.installer.yaml b/manifests/b/BytecodeAlliance/Wasmtime/Portable/32.0.1/BytecodeAlliance.Wasmtime.Portable.installer.yaml new file mode 100644 index 0000000000000..87f0229a219e9 --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/Portable/32.0.1/BytecodeAlliance.Wasmtime.Portable.installer.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BytecodeAlliance.Wasmtime.Portable +PackageVersion: 32.0.1 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: wasmtime-v32.0.1-x86_64-windows/wasmtime-min.exe + PortableCommandAlias: wasmtime-min +- RelativeFilePath: wasmtime-v32.0.1-x86_64-windows/wasmtime.exe + PortableCommandAlias: wasmtime +FileExtensions: +- wasm +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bytecodealliance/wasmtime/releases/download/v32.0.1/wasmtime-v32.0.1-x86_64-windows.zip + InstallerSha256: 3C277307EAD4876381CF3F5DA52463786D78C1EB0AA4C6C155FC1AEDB29C9424 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BytecodeAlliance/Wasmtime/Portable/32.0.1/BytecodeAlliance.Wasmtime.Portable.locale.en-US.yaml b/manifests/b/BytecodeAlliance/Wasmtime/Portable/32.0.1/BytecodeAlliance.Wasmtime.Portable.locale.en-US.yaml new file mode 100644 index 0000000000000..62e438099e4af --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/Portable/32.0.1/BytecodeAlliance.Wasmtime.Portable.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BytecodeAlliance.Wasmtime.Portable +PackageVersion: 32.0.1 +PackageLocale: en-US +Publisher: Bytecode Alliance +PublisherUrl: https://bytecodealliance.org/ +PublisherSupportUrl: https://github.com/bytecodealliance/wasmtime/issues +PackageName: Wasmtime +PackageUrl: https://wasmtime.dev/ +License: Apache-2.0 +LicenseUrl: https://github.com/bytecodealliance/wasmtime/blob/HEAD/LICENSE +Copyright: Copyright © 2019-2023 the Bytecode Alliance contributors. +ShortDescription: A fast and secure runtime for WebAssembly +Description: Wasmtime is a Bytecode Alliance project that is a standalone wasm-only optimizing runtime for WebAssembly and WASI. It runs WebAssembly code outside of the Web, and can be used both as a command-line utility or as a library embedded in a larger application. +Tags: +- aot +- cranelift +- jit +- runtime +- rust +- sandbox +- standalone +- wasi +- wasm +- wasmtime +- webassembly +ReleaseNotes: |- + 32.0.1 + Released 2025-06-24. + Fixed + - Fix a panic with host-defined tables/globals and concrete reference + types. + #11103 +ReleaseNotesUrl: https://github.com/bytecodealliance/wasmtime/releases/tag/v32.0.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BytecodeAlliance/Wasmtime/Portable/32.0.1/BytecodeAlliance.Wasmtime.Portable.yaml b/manifests/b/BytecodeAlliance/Wasmtime/Portable/32.0.1/BytecodeAlliance.Wasmtime.Portable.yaml new file mode 100644 index 0000000000000..3cf6b77d001b0 --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/Portable/32.0.1/BytecodeAlliance.Wasmtime.Portable.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: BytecodeAlliance.Wasmtime.Portable +PackageVersion: 32.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BytecodeAlliance/Wasmtime/Portable/34.0.1/BytecodeAlliance.Wasmtime.Portable.installer.yaml b/manifests/b/BytecodeAlliance/Wasmtime/Portable/34.0.1/BytecodeAlliance.Wasmtime.Portable.installer.yaml new file mode 100644 index 0000000000000..d10235045e822 --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/Portable/34.0.1/BytecodeAlliance.Wasmtime.Portable.installer.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BytecodeAlliance.Wasmtime.Portable +PackageVersion: 34.0.1 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: wasmtime-v34.0.1-x86_64-windows/wasmtime-min.exe + PortableCommandAlias: wasmtime-min +- RelativeFilePath: wasmtime-v34.0.1-x86_64-windows/wasmtime.exe + PortableCommandAlias: wasmtime +FileExtensions: +- wasm +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bytecodealliance/wasmtime/releases/download/v34.0.1/wasmtime-v34.0.1-x86_64-windows.zip + InstallerSha256: 5AC620948DCE08D61F66DC49196706244AE53486988FB06A09A43060F2BDEC90 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BytecodeAlliance/Wasmtime/Portable/34.0.1/BytecodeAlliance.Wasmtime.Portable.locale.en-US.yaml b/manifests/b/BytecodeAlliance/Wasmtime/Portable/34.0.1/BytecodeAlliance.Wasmtime.Portable.locale.en-US.yaml new file mode 100644 index 0000000000000..7724c39e4be02 --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/Portable/34.0.1/BytecodeAlliance.Wasmtime.Portable.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BytecodeAlliance.Wasmtime.Portable +PackageVersion: 34.0.1 +PackageLocale: en-US +Publisher: Bytecode Alliance +PublisherUrl: https://bytecodealliance.org/ +PublisherSupportUrl: https://github.com/bytecodealliance/wasmtime/issues +PackageName: Wasmtime +PackageUrl: https://wasmtime.dev/ +License: Apache-2.0 +LicenseUrl: https://github.com/bytecodealliance/wasmtime/blob/HEAD/LICENSE +Copyright: Copyright © 2019-2023 the Bytecode Alliance contributors. +ShortDescription: A fast and secure runtime for WebAssembly +Description: Wasmtime is a Bytecode Alliance project that is a standalone wasm-only optimizing runtime for WebAssembly and WASI. It runs WebAssembly code outside of the Web, and can be used both as a command-line utility or as a library embedded in a larger application. +Tags: +- aot +- cranelift +- jit +- runtime +- rust +- sandbox +- standalone +- wasi +- wasm +- wasmtime +- webassembly +ReleaseNotes: |- + 34.0.1 + Released 2025-06-24. + Fixed + - Fix a panic with host-defined tables/globals and concrete reference + types. + #11103 +ReleaseNotesUrl: https://github.com/bytecodealliance/wasmtime/releases/tag/v34.0.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BytecodeAlliance/Wasmtime/Portable/34.0.1/BytecodeAlliance.Wasmtime.Portable.yaml b/manifests/b/BytecodeAlliance/Wasmtime/Portable/34.0.1/BytecodeAlliance.Wasmtime.Portable.yaml new file mode 100644 index 0000000000000..2e5095e3fa84b --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/Portable/34.0.1/BytecodeAlliance.Wasmtime.Portable.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: BytecodeAlliance.Wasmtime.Portable +PackageVersion: 34.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/badboysm890/Clara/0.1.24/badboysm890.Clara.installer.yaml b/manifests/b/badboysm890/Clara/0.1.24/badboysm890.Clara.installer.yaml new file mode 100644 index 0000000000000..f5ee6ecdab45d --- /dev/null +++ b/manifests/b/badboysm890/Clara/0.1.24/badboysm890.Clara.installer.yaml @@ -0,0 +1,26 @@ +# Automatically updated by the winget bot at 2025/Jul/05 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: badboysm890.Clara +PackageVersion: 0.1.24 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: c7cf6c20-e497-5d8e-8995-15dd75c02013 +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/badboysm890/ClaraVerse/releases/download/0.1.24/Clara.Setup.0.1.24.exe + InstallerSha256: E5AE4200A6DB100773C09A15262EF5CDFD5AF5E1987AC1D8785E4F73CF8FCFE3 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/badboysm890/ClaraVerse/releases/download/0.1.24/Clara.Setup.0.1.24.exe + InstallerSha256: E5AE4200A6DB100773C09A15262EF5CDFD5AF5E1987AC1D8785E4F73CF8FCFE3 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/badboysm890/Clara/0.1.24/badboysm890.Clara.locale.en-US.yaml b/manifests/b/badboysm890/Clara/0.1.24/badboysm890.Clara.locale.en-US.yaml new file mode 100644 index 0000000000000..361cab679cbfc --- /dev/null +++ b/manifests/b/badboysm890/Clara/0.1.24/badboysm890.Clara.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Automatically updated by the winget bot at 2025/Jul/05 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: badboysm890.Clara +PackageVersion: 0.1.24 +PackageLocale: en-US +Publisher: badboysm890 +PublisherUrl: https://github.com/badboysm890 +PublisherSupportUrl: https://github.com/badboysm890/ClaraVerse/issues +PackageName: Clara +PackageUrl: https://github.com/badboysm890/ClaraVerse +License: GPL-3.0 +LicenseUrl: https://github.com/badboysm890/ClaraVerse/blob/HEAD/LICENSE +Copyright: Copyright © 2025 badboysm890 +ShortDescription: A privacy-first, client-side AI assistant WebUI for Ollama. +Tags: +- ai +- chatbot +- large-language-model +- llm +- ollama +ReleaseNotesUrl: https://github.com/badboysm890/ClaraVerse/releases/tag/0.1.24 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/badboysm890/Clara/0.1.24/badboysm890.Clara.locale.zh-CN.yaml b/manifests/b/badboysm890/Clara/0.1.24/badboysm890.Clara.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c2cab7baa2b89 --- /dev/null +++ b/manifests/b/badboysm890/Clara/0.1.24/badboysm890.Clara.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Automatically updated by the winget bot at 2025/Jul/05 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: badboysm890.Clara +PackageVersion: 0.1.24 +PackageLocale: zh-CN +ShortDescription: 一个基于 Ollama 的隐私优先、客户端 AI 助手的 WebUI。 +Tags: +- ollama +- 人工智能 +- 大语言模型 +- 聊天机器人 +ReleaseNotesUrl: https://github.com/badboysm890/ClaraVerse/releases/tag/0.1.24 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/badboysm890/Clara/0.1.24/badboysm890.Clara.yaml b/manifests/b/badboysm890/Clara/0.1.24/badboysm890.Clara.yaml new file mode 100644 index 0000000000000..c5155ec709e3f --- /dev/null +++ b/manifests/b/badboysm890/Clara/0.1.24/badboysm890.Clara.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/05 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: badboysm890.Clara +PackageVersion: 0.1.24 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/bcssov/IronyModManager/1.26.247/bcssov.IronyModManager.installer.yaml b/manifests/b/bcssov/IronyModManager/1.26.247/bcssov.IronyModManager.installer.yaml new file mode 100644 index 0000000000000..c342c33b303f0 --- /dev/null +++ b/manifests/b/bcssov/IronyModManager/1.26.247/bcssov.IronyModManager.installer.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: bcssov.IronyModManager +PackageVersion: 1.26.247 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: win-x64-setup.exe +ProductCode: '{8AAA7D9F-2192-4A6B-AAEE-EBB2A355EF75}_is1' +ReleaseDate: 2025-06-18 +AppsAndFeaturesEntries: +- Publisher: Mario + DisplayVersion: 1.26.247+ff41eea407 + ProductCode: '{8AAA7D9F-2192-4A6B-AAEE-EBB2A355EF75}_is1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/bcssov/IronyModManager/releases/download/v1.26.247/win-x64-setup.zip + InstallerSha256: 75CABD07D983422E45D0A3035E98E24A43D14B0A2F5C42316FAD6D7CC3FEF764 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/bcssov/IronyModManager/releases/download/v1.26.247/win-x64-setup.zip + InstallerSha256: 75CABD07D983422E45D0A3035E98E24A43D14B0A2F5C42316FAD6D7CC3FEF764 + InstallerSwitches: + Custom: /ALLUSERS + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Irony Mod Manager' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/bcssov/IronyModManager/1.26.247/bcssov.IronyModManager.locale.en-US.yaml b/manifests/b/bcssov/IronyModManager/1.26.247/bcssov.IronyModManager.locale.en-US.yaml new file mode 100644 index 0000000000000..59efe39771d8e --- /dev/null +++ b/manifests/b/bcssov/IronyModManager/1.26.247/bcssov.IronyModManager.locale.en-US.yaml @@ -0,0 +1,64 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: bcssov.IronyModManager +PackageVersion: 1.26.247 +PackageLocale: en-US +Publisher: bcssov +PublisherUrl: https://github.com/bcssov +PublisherSupportUrl: https://github.com/bcssov/IronyModManager/issues +PackageName: Irony Mod Manager +PackageUrl: https://github.com/bcssov/IronyModManager +License: MIT +LicenseUrl: https://github.com/bcssov/IronyModManager/blob/HEAD/LICENSE +ShortDescription: Mod Manager for Paradox Games. +Tags: +- ck3 +- crusader-kings-3 +- crusader-kings-iii +- eu4 +- europa-universalis-4 +- europa-universalis-iv +- hearts-of-iron-4 +- hearts-of-iron-iv +- hoi4 +- imperatorrome +- mod-manager +- paradox +- paradox-interactive +- stellaris +- victoria +- victoria3 +ReleaseNotes: |- + Current Release Notes + - Ensure that search parser cache handles whitespace + Release Notes 1.26 + - Update dependencies + - Bump to net8 which should grant some performance improvements (win7 might not work going forward) + - Remove ripple animation from Material themes (per #484) + - Irony is now single instance app + - Disable OSX update installation (online check only now) + - Added new diff viewer + - Stellaris 3.11 beta compatibility + - Added conflict solver option to skip parsing some languages + - Add conflict solver configuration to customize colors for new diff viewer + - Add templateable merge mod naming + Which file should I download? + Windows + - Portable version: win-x64.zip + - Installer version: win-x64-setup.zip + Mac + - Portable version: osx-x64.zip + Linux + - Portable version: linux-x64.zip + Run Instructions + Windows + - Portable version: Download and unpack somewhere win-x64.zip, locate in the folder IronyModManager.exe and double click it. + - Installer version: Unpack win-x64-setup.zip and double click win-x64-setup.exe and follow on screen instructions. + Mac + - Portable version: Extract the osx.zip file to a location you want Irony installed to. Open Terminal.app and cd to the directory you installed to. Run chmod +x IronyModManager. That will allow you to execute the app. Then you can either start the app in Terminal.app with the command ./IronyModManger (the ./ are important!) or double-click the file in Finder. + Linux + - Portable version: Extract the linux.zip file somewhere that you'd like to have Irony installed. Navigate to the folder where you extracted Irony and run the chmod +x IronyModManager command. That will allow you to execute the app. Finally you can run the app using the ./IronyModManager command. +ReleaseNotesUrl: https://github.com/bcssov/IronyModManager/releases/tag/v1.26.247 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/bcssov/IronyModManager/1.26.247/bcssov.IronyModManager.yaml b/manifests/b/bcssov/IronyModManager/1.26.247/bcssov.IronyModManager.yaml new file mode 100644 index 0000000000000..5efd594c32c36 --- /dev/null +++ b/manifests/b/bcssov/IronyModManager/1.26.247/bcssov.IronyModManager.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: bcssov.IronyModManager +PackageVersion: 1.26.247 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/bcssov/IronyModManager/1.26.248/bcssov.IronyModManager.installer.yaml b/manifests/b/bcssov/IronyModManager/1.26.248/bcssov.IronyModManager.installer.yaml new file mode 100644 index 0000000000000..e68c149839997 --- /dev/null +++ b/manifests/b/bcssov/IronyModManager/1.26.248/bcssov.IronyModManager.installer.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: bcssov.IronyModManager +PackageVersion: 1.26.248 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: win-x64-setup.exe +ProductCode: '{8AAA7D9F-2192-4A6B-AAEE-EBB2A355EF75}_is1' +ReleaseDate: 2025-06-26 +AppsAndFeaturesEntries: +- Publisher: Mario + DisplayVersion: 1.26.248+8be9928c4e + ProductCode: '{8AAA7D9F-2192-4A6B-AAEE-EBB2A355EF75}_is1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/bcssov/IronyModManager/releases/download/v1.26.248/win-x64-setup.zip + InstallerSha256: 435E61A1D605A5724129C2D32B45CAC7D8F83A59793225082CB973B37FBB31B4 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/bcssov/IronyModManager/releases/download/v1.26.248/win-x64-setup.zip + InstallerSha256: 435E61A1D605A5724129C2D32B45CAC7D8F83A59793225082CB973B37FBB31B4 + InstallerSwitches: + Custom: /ALLUSERS + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Irony Mod Manager' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/bcssov/IronyModManager/1.26.248/bcssov.IronyModManager.locale.en-US.yaml b/manifests/b/bcssov/IronyModManager/1.26.248/bcssov.IronyModManager.locale.en-US.yaml new file mode 100644 index 0000000000000..b09c298bd78c4 --- /dev/null +++ b/manifests/b/bcssov/IronyModManager/1.26.248/bcssov.IronyModManager.locale.en-US.yaml @@ -0,0 +1,64 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: bcssov.IronyModManager +PackageVersion: 1.26.248 +PackageLocale: en-US +Publisher: bcssov +PublisherUrl: https://github.com/bcssov +PublisherSupportUrl: https://github.com/bcssov/IronyModManager/issues +PackageName: Irony Mod Manager +PackageUrl: https://github.com/bcssov/IronyModManager +License: MIT +LicenseUrl: https://github.com/bcssov/IronyModManager/blob/HEAD/LICENSE +ShortDescription: Mod Manager for Paradox Games. +Tags: +- ck3 +- crusader-kings-3 +- crusader-kings-iii +- eu4 +- europa-universalis-4 +- europa-universalis-iv +- hearts-of-iron-4 +- hearts-of-iron-iv +- hoi4 +- imperatorrome +- mod-manager +- paradox +- paradox-interactive +- stellaris +- victoria +- victoria3 +ReleaseNotes: |- + Current Release Notes + - Added a workaround for Paradox’s brilliant new "Case Sensitivity on a Case-Insensitive Filesystem" feature. Turns out the game picks one mod path (seemingly at random, but probably the first with the lowest casing), then does strict case-sensitive string comparison against it… on Windows… where paths aren’t case-sensitive. Because who needs consistency, right? Irony now force-normalizes paths to avoid this latest episode of Paradox QA Theater. + Release Notes 1.26 + - Update dependencies + - Bump to net8 which should grant some performance improvements (win7 might not work going forward) + - Remove ripple animation from Material themes (per #484) + - Irony is now single instance app + - Disable OSX update installation (online check only now) + - Added new diff viewer + - Stellaris 3.11 beta compatibility + - Added conflict solver option to skip parsing some languages + - Add conflict solver configuration to customize colors for new diff viewer + - Add templateable merge mod naming + Which file should I download? + Windows + - Portable version: win-x64.zip + - Installer version: win-x64-setup.zip + Mac + - Portable version: osx-x64.zip + Linux + - Portable version: linux-x64.zip + Run Instructions + Windows + - Portable version: Download and unpack somewhere win-x64.zip, locate in the folder IronyModManager.exe and double click it. + - Installer version: Unpack win-x64-setup.zip and double click win-x64-setup.exe and follow on screen instructions. + Mac + - Portable version: Extract the osx.zip file to a location you want Irony installed to. Open Terminal.app and cd to the directory you installed to. Run chmod +x IronyModManager. That will allow you to execute the app. Then you can either start the app in Terminal.app with the command ./IronyModManger (the ./ are important!) or double-click the file in Finder. + Linux + - Portable version: Extract the linux.zip file somewhere that you'd like to have Irony installed. Navigate to the folder where you extracted Irony and run the chmod +x IronyModManager command. That will allow you to execute the app. Finally you can run the app using the ./IronyModManager command. +ReleaseNotesUrl: https://github.com/bcssov/IronyModManager/releases/tag/v1.26.248 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/bcssov/IronyModManager/1.26.248/bcssov.IronyModManager.yaml b/manifests/b/bcssov/IronyModManager/1.26.248/bcssov.IronyModManager.yaml new file mode 100644 index 0000000000000..dc4391bce5188 --- /dev/null +++ b/manifests/b/bcssov/IronyModManager/1.26.248/bcssov.IronyModManager.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: bcssov.IronyModManager +PackageVersion: 1.26.248 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/bkryza/clang-uml/0.6.2/bkryza.clang-uml.installer.yaml b/manifests/b/bkryza/clang-uml/0.6.2/bkryza.clang-uml.installer.yaml new file mode 100644 index 0000000000000..5548261dabbe2 --- /dev/null +++ b/manifests/b/bkryza/clang-uml/0.6.2/bkryza.clang-uml.installer.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: bkryza.clang-uml +PackageVersion: 0.6.2 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: clang-uml +ReleaseDate: 2025-06-29 +AppsAndFeaturesEntries: +- Publisher: Bartek Kryza + ProductCode: clang-uml +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\clang-uml' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bkryza/clang-uml/releases/download/0.6.2/clang-uml-0.6.2-win64.exe + InstallerSha256: AA76FC0580B74B32E321554C5E8CA227B3D5461B28625DEB7038DE2D49598AF7 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/bkryza/clang-uml/0.6.2/bkryza.clang-uml.locale.en-US.yaml b/manifests/b/bkryza/clang-uml/0.6.2/bkryza.clang-uml.locale.en-US.yaml new file mode 100644 index 0000000000000..9b370fd89e9ee --- /dev/null +++ b/manifests/b/bkryza/clang-uml/0.6.2/bkryza.clang-uml.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: bkryza.clang-uml +PackageVersion: 0.6.2 +PackageLocale: en-US +Publisher: bkryza +PublisherUrl: https://github.com/bkryza/clang-uml +PublisherSupportUrl: https://github.com/bkryza/clang-uml/issues +Author: Bartek Kryza +PackageName: clang-uml +PackageUrl: https://github.com/bkryza/clang-uml +License: Apache-2.0 +LicenseUrl: https://github.com/bkryza/clang-uml/blob/HEAD/LICENSE.md +Copyright: Copyright (c) Bartek Kryza +CopyrightUrl: https://github.com/bkryza/clang-uml/blob/master/LICENSE.md +ShortDescription: Customizable automatic UML diagram generator for C++ based on Clang. +Description: An automatic C++ to UML class, sequence, package and include diagram generator, driven by YAML configuration files. The main idea behind the project is to easily maintain up-to-date diagrams within a code-base or document legacy code. +Moniker: clang-uml +Tags: +- clang +- cplusplus +- cpp +- cpp17 +- libclang +- mermaidjs +- plantuml +- uml +ReleaseNotes: |- + - Added support for LLVM 21 (#419) + - Added generate_method_argument_names options for sequence diagrams (#404) + - Add fuzzy matching for sequence diagram start condition error message (#405) + - Fix mermaid double colon before member type (#397) + - Fixed message comments in sequence diagrams (#417) + - Added support for LLVM 20 (#398) +ReleaseNotesUrl: https://github.com/bkryza/clang-uml/releases/tag/0.6.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/bkryza/clang-uml/0.6.2/bkryza.clang-uml.yaml b/manifests/b/bkryza/clang-uml/0.6.2/bkryza.clang-uml.yaml new file mode 100644 index 0000000000000..27ac2465073fa --- /dev/null +++ b/manifests/b/bkryza/clang-uml/0.6.2/bkryza.clang-uml.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: bkryza.clang-uml +PackageVersion: 0.6.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipsw/3.1.617/blacktop.ipsw.installer.yaml b/manifests/b/blacktop/ipsw/3.1.617/blacktop.ipsw.installer.yaml new file mode 100644 index 0000000000000..43dbc0bed7840 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.617/blacktop.ipsw.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.617 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-06-28" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.617/ipsw_3.1.617_windows_arm64.zip + InstallerSha256: 2e209712fdf73f8d88eb74f950f9fa3b879d14778e2e861a0225a22c49ddbd65 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.617/ipsw_3.1.617_windows_x86_64.zip + InstallerSha256: 88e1ca97e06f6e56bdc53b3bd41533b49e6e5ea4f7300fbbdc764b048f769ce3 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipsw/3.1.617/blacktop.ipsw.locale.en-US.yaml b/manifests/b/blacktop/ipsw/3.1.617/blacktop.ipsw.locale.en-US.yaml new file mode 100644 index 0000000000000..ea2b85e4adb98 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.617/blacktop.ipsw.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.617 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipsw +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: iOS/macOS Research Swiss Army Knife +Moniker: ipsw +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipsw/3.1.617/blacktop.ipsw.yaml b/manifests/b/blacktop/ipsw/3.1.617/blacktop.ipsw.yaml new file mode 100644 index 0000000000000..2f63b38a1fcb9 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.617/blacktop.ipsw.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.617 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipsw/3.1.618/blacktop.ipsw.installer.yaml b/manifests/b/blacktop/ipsw/3.1.618/blacktop.ipsw.installer.yaml new file mode 100644 index 0000000000000..c81decdaea684 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.618/blacktop.ipsw.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.618 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-06-28" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.618/ipsw_3.1.618_windows_arm64.zip + InstallerSha256: b13cd6b0ca0ef0b30cdbecaf87929018811c52e174027bf928c3e6b1613ce3e6 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.618/ipsw_3.1.618_windows_x86_64.zip + InstallerSha256: ba3ea793cdb078b92aa1324fa10656c4c394cd26ebe2ee8ca929785d85419d0b + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipsw/3.1.618/blacktop.ipsw.locale.en-US.yaml b/manifests/b/blacktop/ipsw/3.1.618/blacktop.ipsw.locale.en-US.yaml new file mode 100644 index 0000000000000..f300df92de05d --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.618/blacktop.ipsw.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.618 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipsw +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: iOS/macOS Research Swiss Army Knife +Moniker: ipsw +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipsw/3.1.618/blacktop.ipsw.yaml b/manifests/b/blacktop/ipsw/3.1.618/blacktop.ipsw.yaml new file mode 100644 index 0000000000000..c08d033a234a6 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.618/blacktop.ipsw.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.618 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipsw/3.1.619/blacktop.ipsw.installer.yaml b/manifests/b/blacktop/ipsw/3.1.619/blacktop.ipsw.installer.yaml new file mode 100644 index 0000000000000..cc8692698b316 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.619/blacktop.ipsw.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.619 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-06-30" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.619/ipsw_3.1.619_windows_arm64.zip + InstallerSha256: 18061f27fc184c3439dc506a3f4bf1ec513f89c3ed8f4b9860e181f02cc3a95a + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.619/ipsw_3.1.619_windows_x86_64.zip + InstallerSha256: 1c51bae082d771ea71b99f1d1224ef39f232f8829e73fa527e51b19ebf952306 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipsw/3.1.619/blacktop.ipsw.locale.en-US.yaml b/manifests/b/blacktop/ipsw/3.1.619/blacktop.ipsw.locale.en-US.yaml new file mode 100644 index 0000000000000..71fdb365e1bf0 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.619/blacktop.ipsw.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.619 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipsw +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: iOS/macOS Research Swiss Army Knife +Moniker: ipsw +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipsw/3.1.619/blacktop.ipsw.yaml b/manifests/b/blacktop/ipsw/3.1.619/blacktop.ipsw.yaml new file mode 100644 index 0000000000000..f2a1b03c583ab --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.619/blacktop.ipsw.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.619 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipsw/3.1.620/blacktop.ipsw.installer.yaml b/manifests/b/blacktop/ipsw/3.1.620/blacktop.ipsw.installer.yaml new file mode 100644 index 0000000000000..bf04a1ed4538e --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.620/blacktop.ipsw.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.620 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-03" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.620/ipsw_3.1.620_windows_arm64.zip + InstallerSha256: 8483e82dbab0027d1bcb09bafd191c047a2d738567dcf084f12e4f2e2566dadb + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.620/ipsw_3.1.620_windows_x86_64.zip + InstallerSha256: ddc8b009e6e417eee33619d5aea7f422844e9369a0f91ff37de1ca7d2c011f67 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipsw/3.1.620/blacktop.ipsw.locale.en-US.yaml b/manifests/b/blacktop/ipsw/3.1.620/blacktop.ipsw.locale.en-US.yaml new file mode 100644 index 0000000000000..39f670f214fc3 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.620/blacktop.ipsw.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.620 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipsw +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: iOS/macOS Research Swiss Army Knife +Moniker: ipsw +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipsw/3.1.620/blacktop.ipsw.yaml b/manifests/b/blacktop/ipsw/3.1.620/blacktop.ipsw.yaml new file mode 100644 index 0000000000000..7e54385c5f87c --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.620/blacktop.ipsw.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.620 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipsw/3.1.621/blacktop.ipsw.installer.yaml b/manifests/b/blacktop/ipsw/3.1.621/blacktop.ipsw.installer.yaml new file mode 100644 index 0000000000000..8d94c2dba8589 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.621/blacktop.ipsw.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.621 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-03" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.621/ipsw_3.1.621_windows_arm64.zip + InstallerSha256: 58571a779637f939fd1577557b92814c4cab4e75bc8a35c14156da11bbc0fbb7 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.621/ipsw_3.1.621_windows_x86_64.zip + InstallerSha256: 34c31cfede4080fd1f9914aeb9b41545f8a0ddd909c76740af67e64ebab79a17 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipsw/3.1.621/blacktop.ipsw.locale.en-US.yaml b/manifests/b/blacktop/ipsw/3.1.621/blacktop.ipsw.locale.en-US.yaml new file mode 100644 index 0000000000000..d4bb1534a3e8e --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.621/blacktop.ipsw.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.621 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipsw +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: iOS/macOS Research Swiss Army Knife +Moniker: ipsw +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipsw/3.1.621/blacktop.ipsw.yaml b/manifests/b/blacktop/ipsw/3.1.621/blacktop.ipsw.yaml new file mode 100644 index 0000000000000..272f2490c0920 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.621/blacktop.ipsw.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.621 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipswd/3.1.617/blacktop.ipswd.installer.yaml b/manifests/b/blacktop/ipswd/3.1.617/blacktop.ipswd.installer.yaml new file mode 100644 index 0000000000000..2307381bb58e6 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.617/blacktop.ipswd.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: blacktop.ipswd +PackageVersion: 3.1.617 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-06-28" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.617/ipswd_3.1.617_windows_x86_64.zip + InstallerSha256: 46da1837f0499e75dbb1e7b78157dcbd06b73ec59c0613812fe106fab20a7274 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.617/ipswd_3.1.617_windows_arm64.zip + InstallerSha256: ffbaa7e38bd9891ef40c4e85c1870387791a1c2139df7b6958dce5cfb5aa72e5 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipswd/3.1.617/blacktop.ipswd.locale.en-US.yaml b/manifests/b/blacktop/ipswd/3.1.617/blacktop.ipswd.locale.en-US.yaml new file mode 100644 index 0000000000000..7ba9fb6b84835 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.617/blacktop.ipswd.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.617 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipswd +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: ipsw - Daemon +Moniker: ipswd +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipswd/3.1.617/blacktop.ipswd.yaml b/manifests/b/blacktop/ipswd/3.1.617/blacktop.ipswd.yaml new file mode 100644 index 0000000000000..92549868de180 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.617/blacktop.ipswd.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: blacktop.ipswd +PackageVersion: 3.1.617 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipswd/3.1.618/blacktop.ipswd.installer.yaml b/manifests/b/blacktop/ipswd/3.1.618/blacktop.ipswd.installer.yaml new file mode 100644 index 0000000000000..dfc5168276c51 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.618/blacktop.ipswd.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: blacktop.ipswd +PackageVersion: 3.1.618 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-06-28" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.618/ipswd_3.1.618_windows_arm64.zip + InstallerSha256: efed99373fdbc84497a75eeb84d544600ccdaf97a74bbd0c999be24ea52b2126 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.618/ipswd_3.1.618_windows_x86_64.zip + InstallerSha256: d69b9e9f7d980fa9e19b686944521b83bb24258c28f7b26c1bbdd6312b0a84a4 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipswd/3.1.618/blacktop.ipswd.locale.en-US.yaml b/manifests/b/blacktop/ipswd/3.1.618/blacktop.ipswd.locale.en-US.yaml new file mode 100644 index 0000000000000..36157ab0e65ae --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.618/blacktop.ipswd.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.618 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipswd +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: ipsw - Daemon +Moniker: ipswd +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipswd/3.1.618/blacktop.ipswd.yaml b/manifests/b/blacktop/ipswd/3.1.618/blacktop.ipswd.yaml new file mode 100644 index 0000000000000..0ece2395523fe --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.618/blacktop.ipswd.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: blacktop.ipswd +PackageVersion: 3.1.618 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipswd/3.1.619/blacktop.ipswd.installer.yaml b/manifests/b/blacktop/ipswd/3.1.619/blacktop.ipswd.installer.yaml new file mode 100644 index 0000000000000..3278b417b49a7 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.619/blacktop.ipswd.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: blacktop.ipswd +PackageVersion: 3.1.619 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-06-30" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.619/ipswd_3.1.619_windows_x86_64.zip + InstallerSha256: 3af154f44a283d6523ef16423b5765c970828766896fefe79e30185c1c30af26 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.619/ipswd_3.1.619_windows_arm64.zip + InstallerSha256: aea335c5d8f6117bf49faf6767f28ac79ee7a04980c5f40f1c8e74e3d36d6445 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipswd/3.1.619/blacktop.ipswd.locale.en-US.yaml b/manifests/b/blacktop/ipswd/3.1.619/blacktop.ipswd.locale.en-US.yaml new file mode 100644 index 0000000000000..71c4ebff0b036 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.619/blacktop.ipswd.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.619 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipswd +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: ipsw - Daemon +Moniker: ipswd +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipswd/3.1.619/blacktop.ipswd.yaml b/manifests/b/blacktop/ipswd/3.1.619/blacktop.ipswd.yaml new file mode 100644 index 0000000000000..f23d439d9ce6a --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.619/blacktop.ipswd.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: blacktop.ipswd +PackageVersion: 3.1.619 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipswd/3.1.620/blacktop.ipswd.installer.yaml b/manifests/b/blacktop/ipswd/3.1.620/blacktop.ipswd.installer.yaml new file mode 100644 index 0000000000000..8541490091c56 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.620/blacktop.ipswd.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: blacktop.ipswd +PackageVersion: 3.1.620 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-03" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.620/ipswd_3.1.620_windows_arm64.zip + InstallerSha256: 24a9c500a932643feaffc37444dfe3b7c87b846725dc01f659038215ab6b0127 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.620/ipswd_3.1.620_windows_x86_64.zip + InstallerSha256: 9192180a5408a627367b131f7a4b9bc35e82b07d2a6a19c288772b02b5163bbf + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipswd/3.1.620/blacktop.ipswd.locale.en-US.yaml b/manifests/b/blacktop/ipswd/3.1.620/blacktop.ipswd.locale.en-US.yaml new file mode 100644 index 0000000000000..afaf7ffc481cf --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.620/blacktop.ipswd.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.620 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipswd +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: ipsw - Daemon +Moniker: ipswd +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipswd/3.1.620/blacktop.ipswd.yaml b/manifests/b/blacktop/ipswd/3.1.620/blacktop.ipswd.yaml new file mode 100644 index 0000000000000..cea0fdd493c18 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.620/blacktop.ipswd.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: blacktop.ipswd +PackageVersion: 3.1.620 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipswd/3.1.621/blacktop.ipswd.installer.yaml b/manifests/b/blacktop/ipswd/3.1.621/blacktop.ipswd.installer.yaml new file mode 100644 index 0000000000000..aa9345027ecaf --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.621/blacktop.ipswd.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: blacktop.ipswd +PackageVersion: 3.1.621 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-03" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.621/ipswd_3.1.621_windows_arm64.zip + InstallerSha256: 3eea00755bf113c5a708698bff62426fd3fcfaf432efcc918b24e1cb6993bb18 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.621/ipswd_3.1.621_windows_x86_64.zip + InstallerSha256: 8db5ec33cb99e1c09a1712a60d42f673eecfa2296a8fa0cfe22625f5a327b9f3 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipswd/3.1.621/blacktop.ipswd.locale.en-US.yaml b/manifests/b/blacktop/ipswd/3.1.621/blacktop.ipswd.locale.en-US.yaml new file mode 100644 index 0000000000000..6cdc8b9680597 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.621/blacktop.ipswd.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.621 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipswd +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: ipsw - Daemon +Moniker: ipswd +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/blacktop/ipswd/3.1.621/blacktop.ipswd.yaml b/manifests/b/blacktop/ipswd/3.1.621/blacktop.ipswd.yaml new file mode 100644 index 0000000000000..73b54748323aa --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.621/blacktop.ipswd.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: blacktop.ipswd +PackageVersion: 3.1.621 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/bluenviron/mediamtx/1.13.0/bluenviron.mediamtx.installer.yaml b/manifests/b/bluenviron/mediamtx/1.13.0/bluenviron.mediamtx.installer.yaml new file mode 100644 index 0000000000000..625fd67e6673b --- /dev/null +++ b/manifests/b/bluenviron/mediamtx/1.13.0/bluenviron.mediamtx.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: bluenviron.mediamtx +PackageVersion: 1.13.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: mediamtx.exe +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-07-06 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bluenviron/mediamtx/releases/download/v1.13.0/mediamtx_v1.13.0_windows_amd64.zip + InstallerSha256: 19C88EE17D012CA04F77F95F16BD5EFDDBF91EFFBD3BC603FEBA179FA6C014E8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/bluenviron/mediamtx/1.13.0/bluenviron.mediamtx.locale.en-US.yaml b/manifests/b/bluenviron/mediamtx/1.13.0/bluenviron.mediamtx.locale.en-US.yaml new file mode 100644 index 0000000000000..ce8ac7040f165 --- /dev/null +++ b/manifests/b/bluenviron/mediamtx/1.13.0/bluenviron.mediamtx.locale.en-US.yaml @@ -0,0 +1,101 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: bluenviron.mediamtx +PackageVersion: 1.13.0 +PackageLocale: en-US +Publisher: bluenviron +PublisherUrl: https://github.com/bluenviron +PublisherSupportUrl: https://github.com/bluenviron/mediamtx/issues +Author: aler9 +PackageName: mediamtx +PackageUrl: https://github.com/bluenviron/mediamtx +License: MIT +LicenseUrl: https://github.com/bluenviron/mediamtx/blob/HEAD/LICENSE +Copyright: Copyright (c) 2019 aler9 +CopyrightUrl: https://github.com/bluenviron/mediamtx/blob/main/LICENSE +ShortDescription: |- + Ready-to-use SRT / WebRTC / RTSP / RTMP / LL-HLS media server and media proxy that allows to read, + publish, proxy, record and playback video and audio streams. +Description: |- + MediaMTX is a ready-to-use and zero-dependency real-time media server and media proxy that allows + to publish, read, proxy, record and playback video and audio streams. It has been conceived as a + "media router" that routes media streams from one end to the other. +Tags: +- go +- golang +- hls +- media-server +- obs-studio +- rtcp +- rtmp +- rtmp-proxy +- rtmp-server +- rtp +- rtsp +- rtsp-proxy +- rtsp-relay +- rtsp-server +- streaming +- webrtc +ReleaseNotes: |- + New major features + RTSP + - support encrypting UDP and UDP-multicast streams (#4690) + General + - support routing KLV metadata (#2693) (#4670) + Fixes and improvements + General + - recorder, playback: support changing codec parameters without switching segment (#4262) (#4582) + - record: support storing timezone in recording segments (#3566) (#4597) + - support assigning paths to different configurations without closing stream (#4576) + - add attestation system to protect binaries (#4012) (#4629) this allows to prove that binaries were produced by GitHub Actions. + - fix crash when ConfWatcher fails to initialize (#4689) + RTSP + - support encrypted streams with SRTP and MIKEY (bluenviron/gortsplib#520) (bluenviron/gortsplib#809) + - make RTP packet size compatible with RTSP/SRTP (#4692) when RTSP encryption is enabled, maximum RTP packet size is slightly decreased to make room for SRTP. + - client: fix reading sources without server ports (#4253) (bluenviron/gortsplib#796) RTCP packets were sent out to nil addresses, due to the lack of server ports, causing an error. + - client: prevent downgrading from RTSPS to RTSP during redirect (bluenviron/gortsplib#816) + - client: when reading multicast streams, write unicast reports (bluenviron/gortsplib#817) Previously, receiver reports were broadcasted to all connected clients. Now they are sent to the server only. + - client: when reading UDP streams, write reports to right IP (bluenviron/gortsplib#818) source IPs sent by the server were not taken into consideration. Thisfixes the issue. + - set SSRC of outgoing packets (bluenviron/gortsplib#803) In client and server, each format now has a fixed, unique, known in advance SSRC, that is applied to outgoing packets belonging to each format. This is needed to support SRTP/MIKEY, that require each format to have a fixed, unique, and known in advance SSRC. + - client: open firewall before sending PLAY request (bluenviron/gortsplib#821) this prevents losing some initial packets. + - support KLV tracks (bluenviron/gortsplib#808) + RTMP + - fix timeout when publishing with GLive T80 (#4002) (#4583) + HLS + - muxer: fix race condition when closing (bluenviron/gohlslib#236) + - client: fix race condition with non-low-latency streams (bluenviron/gohlslib#237) + - Support Verkada EXTINF Tags (bluenviron/gohlslib#244) + WebRTC + - fix writing tracks to some clients (#4602) some clients require PayloadType to be unique among all tracks, not only among tracks of same kind. + RPI Camera + - fix RTP packet size (#4691) UDP max payload size was not applied. + Dependencies + - code.cloudfoundry.org/bytefmt updated from v0.40.0 to v0.43.0 + - github.com/MicahParks/keyfunc/v3 updated from v3.3.11 to v3.4.0 + - github.com/alecthomas/kong updated from v1.11.0 to v1.12.0 + - github.com/bluenviron/gohlslib/v2 updated from v2.1.5 to v2.2.1 + - github.com/bluenviron/gortsplib/v4 updated from v4.14.1 to v4.15.0 + - github.com/bluenviron/mediacommon/v2 updated from v2.2.0 to v2.3.0 + - github.com/go-git/go-git/v5 updated from v5.16.0 to v5.16.2 + - github.com/matthewhartstonge/argon2 updated from v1.3.1 to v1.3.2 + - github.com/pion/interceptor updated from v0.1.38 to v0.1.40 + - github.com/pion/logging updated from v0.2.3 to v0.2.4 + - github.com/pion/rtp updated from v1.8.16 to v1.8.20 + - github.com/pion/sdp/v3 updated from v3.0.13 to v3.0.14 + - golang.org/x/crypto updated from v0.38.0 to v0.39.0 + - github.com/pion/srtp/v3 updated from v3.0.4 to v3.0.6 + - golang.org/x/net updated from v0.40.0 to v0.41.0 + - golang.org/x/text updated from v0.25.0 to v0.26.0 + - github.com/bluenviron/mediamtx-rpicamera updated from v2.4.2 to v2.4.3 + - hls.js updated from v1.6.2 to v1.6.6 + Security + Binaries have been produced by the Release workflow without human intervention. + You can verify that binaries have been produced by the workflow by using GitHub Attestations: + ls mediamtx_* | xargs -L1 gh attestation verify --repo bluenviron/mediamtx + You can verify the binaries checksum by downloading checksums.sha256 and running: + cat checksums.sha256 | grep "$(ls mediamtx_*)" | sha256sum --check +ReleaseNotesUrl: https://github.com/bluenviron/mediamtx/releases/tag/v1.13.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/bluenviron/mediamtx/1.13.0/bluenviron.mediamtx.yaml b/manifests/b/bluenviron/mediamtx/1.13.0/bluenviron.mediamtx.yaml new file mode 100644 index 0000000000000..9d80e6fad54fc --- /dev/null +++ b/manifests/b/bluenviron/mediamtx/1.13.0/bluenviron.mediamtx.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: bluenviron.mediamtx +PackageVersion: 1.13.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/bootandy/dust/1.2.2/bootandy.dust.installer.yaml b/manifests/b/bootandy/dust/1.2.2/bootandy.dust.installer.yaml new file mode 100644 index 0000000000000..f2f6098e4fc09 --- /dev/null +++ b/manifests/b/bootandy/dust/1.2.2/bootandy.dust.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: bootandy.dust +PackageVersion: 1.2.2 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2025-07-06 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: dust-v1.2.2-i686-pc-windows-gnu/dust.exe + InstallerUrl: https://github.com/bootandy/dust/releases/download/v1.2.2/dust-v1.2.2-i686-pc-windows-gnu.zip + InstallerSha256: FBF32EACA9E50FC063FCF9C2B434098CA5CF6F24A647CFDADF2F49B29C81C7E8 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: dust-v1.2.2-x86_64-pc-windows-gnu/dust.exe + InstallerUrl: https://github.com/bootandy/dust/releases/download/v1.2.2/dust-v1.2.2-x86_64-pc-windows-gnu.zip + InstallerSha256: E69649DFC111ECCAB00AA12B5BED580B97C6F42AE6370449CFFBB9F228F7F118 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/bootandy/dust/1.2.2/bootandy.dust.locale.en-US.yaml b/manifests/b/bootandy/dust/1.2.2/bootandy.dust.locale.en-US.yaml new file mode 100644 index 0000000000000..0e9f6e13e891a --- /dev/null +++ b/manifests/b/bootandy/dust/1.2.2/bootandy.dust.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: bootandy.dust +PackageVersion: 1.2.2 +PackageLocale: en-US +Publisher: andy.boot +PublisherUrl: https://github.com/bootandy +PublisherSupportUrl: https://github.com/bootandy/dust/issues +PackageName: Dust +PackageUrl: https://github.com/bootandy/dust +License: Apache-2.0 +LicenseUrl: https://github.com/bootandy/dust/blob/HEAD/LICENSE +ShortDescription: A more intuitive version of du in rust +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/bootandy/dust/1.2.2/bootandy.dust.yaml b/manifests/b/bootandy/dust/1.2.2/bootandy.dust.yaml new file mode 100644 index 0000000000000..cf89894b0b26c --- /dev/null +++ b/manifests/b/bootandy/dust/1.2.2/bootandy.dust.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: bootandy.dust +PackageVersion: 1.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/bornova/numara/6.2.0/bornova.numara.installer.yaml b/manifests/b/bornova/numara/6.2.0/bornova.numara.installer.yaml new file mode 100644 index 0000000000000..40378711ddef9 --- /dev/null +++ b/manifests/b/bornova/numara/6.2.0/bornova.numara.installer.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: bornova.numara +PackageVersion: 6.2.0 +InstallerLocale: en-US +InstallerType: nullsoft +InstallerSwitches: + Custom: /CURRENTUSER +ProductCode: ac09ce37-d72b-50c0-993e-330c1d08c0e0 +ReleaseDate: 2025-06-26 +AppsAndFeaturesEntries: +- DisplayName: Numara 6.2.0 + ProductCode: ac09ce37-d72b-50c0-993e-330c1d08c0e0 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/bornova/numara-calculator/releases/download/v6.2.0/Numara-6.2.0.exe + InstallerSha256: 03148E816E6137064315FCAEBBBEEB8D79166F91694F07513F8DEDF4155C1BE4 +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/bornova/numara-calculator/releases/download/v6.2.0/Numara-6.2.0.exe + InstallerSha256: 03148E816E6137064315FCAEBBBEEB8D79166F91694F07513F8DEDF4155C1BE4 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/bornova/numara/6.2.0/bornova.numara.locale.en-US.yaml b/manifests/b/bornova/numara/6.2.0/bornova.numara.locale.en-US.yaml new file mode 100644 index 0000000000000..f843234d35c43 --- /dev/null +++ b/manifests/b/bornova/numara/6.2.0/bornova.numara.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: bornova.numara +PackageVersion: 6.2.0 +PackageLocale: en-US +Publisher: Timur Atalay +PublisherUrl: https://github.com/bornova +PublisherSupportUrl: https://github.com/bornova/numara-calculator/issues +Author: borova +PackageName: Numara +PackageUrl: https://github.com/bornova/numara-calculator +License: MIT +LicenseUrl: https://github.com/bornova/numara-calculator/blob/HEAD/LICENSE +Copyright: Copyright (c) 2021 Timur Atalay +CopyrightUrl: https://github.com/bornova/numara-calculator/blob/master/LICENSE +ShortDescription: Simple notepad calculator built on Electron, powered by Math.js +Tags: +- calculator +- electron +- math +ReleaseNotes: |- + - Added user defined variables to the autocomplete hints. (#178) Thanks @colinricardo! + - Added commenting shortcut with cmd+/ or ctrl+/. (#177) Thanks @colinricardo! + - Enhanced error handling in the editor by displaying error messages for problematic lines on line numbers. (#176) Thanks @colinricardo! + - Line errors are now indicated on the line numbers by default instead of showing 'Error' message as answer to reduce clutter caused by error messages while typing. This can be re-enabled in settings (previous default). + - Minor bug fixes and improvements + - Updated dependencies +ReleaseNotesUrl: https://github.com/bornova/numara-calculator/releases/tag/v6.2.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/bornova/numara/6.2.0/bornova.numara.yaml b/manifests/b/bornova/numara/6.2.0/bornova.numara.yaml new file mode 100644 index 0000000000000..b63fb9473948d --- /dev/null +++ b/manifests/b/bornova/numara/6.2.0/bornova.numara.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: bornova.numara +PackageVersion: 6.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buchen/portfolio/0.77.2/buchen.portfolio.installer.yaml b/manifests/b/buchen/portfolio/0.77.2/buchen.portfolio.installer.yaml new file mode 100644 index 0000000000000..fb508817dffc3 --- /dev/null +++ b/manifests/b/buchen/portfolio/0.77.2/buchen.portfolio.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: buchen.portfolio +PackageVersion: 0.77.2 +InstallerType: nullsoft +Scope: machine +ProductCode: Portfolio Performance +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/portfolio-performance/portfolio/releases/download/0.77.2/PortfolioPerformance-0.77.2-setup.exe + InstallerSha256: 137533d09edf8aa52dbadd0c84431227896971fbcf8b3b5513b8160038c2e262 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-06-22 diff --git a/manifests/b/buchen/portfolio/0.77.2/buchen.portfolio.locale.de-DE.yaml b/manifests/b/buchen/portfolio/0.77.2/buchen.portfolio.locale.de-DE.yaml new file mode 100644 index 0000000000000..720b9db7ca047 --- /dev/null +++ b/manifests/b/buchen/portfolio/0.77.2/buchen.portfolio.locale.de-DE.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buchen.portfolio +PackageVersion: 0.77.2 +PackageLocale: de-DE +Publisher: Andreas Buchen +PublisherUrl: http://abuchen.name +PublisherSupportUrl: https://github.com/buchen/portfolio/issues +PackageName: Portfolio Performance +PackageUrl: https://github.com/buchen/portfolio +License: EPL-1.0 +LicenseUrl: https://github.com/buchen/portfolio/blob/master/LICENSE +ShortDescription: Portfolio Performance berechnet die Gesamtperformance Ihres Anlageportfolios. +ReleaseNotes: |- + - Neu: Unterstützung für den Demo-Account von CoinGecko – damit sind stabilere 30 Abrufe pro Minute möglich. + - Neu: Mit gedrückter Alt-Taste (auf macOS: Option) und Doppelklick auf eine Zelle wird deren Inhalt in die Zwischenablage kopiert. + - Neu: Neue Spalte mit Kursen in der Berichtswährung in der Vermögensaufstellung und der Wertpapier-Performance. + - Neu: Die Trades-Ansicht zeigt nun zusätzliche Spalten mit Kennzahlen ohne Steuern und Gebühren. Zusätzlich kannst du dir die Kennzahlen alternativ in der Währung des Wertpapiers anzeigen lassen. + - Verbesserung: Die Java Virtual Machine verwendet jetzt keine hartkodierte Maximalgröße mehr, sondern ihre eigene Heuristik – typischerweise ein Viertel des physischen Speichers. + - Verbesserung: Die gewählte Farbgebung der Baumkarte – nach Kategorie oder Performance – wird jetzt gespeichert. + - Verbesserung: Die letzte Größe und Position einiger Dialoge werden jetzt gespeichert. + - Verbesserung: Suchergebnisse lassen sich nach „Rohstoffen“ filtern, um Kurse von edelkurs.de schneller zu finden. + - Verbesserung: Der JSON-Kurslieferant kann jetzt mit einer Zeitzone für die Kursdaten konfiguriert werden. + - Verbesserung: PDF-Importe aktualisiert für GENO Broker, KFintech, Scalable Capital und Saxo. + - Fix: Das Zahlenformat im Tooltip war fehlerhaft, wenn Kurse mehrerer Wertpapiere im Diagramm angezeigt wurden. + - Fix: Der IBFlex-Importer hat die Richtung eines Währungstauschs falsch importiert – z. B. USD nach EUR statt EUR nach USD. + - Fix: In der Vermögensaufstellung konnte es zu übermäßigem Speicherverbrauch und Out-of-Memory-Fehlern kommen. +ReleaseNotesUrl: https://github.com/buchen/portfolio/releases/tag/0.77.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buchen/portfolio/0.77.2/buchen.portfolio.locale.en-US.yaml b/manifests/b/buchen/portfolio/0.77.2/buchen.portfolio.locale.en-US.yaml new file mode 100644 index 0000000000000..47a0930156fdd --- /dev/null +++ b/manifests/b/buchen/portfolio/0.77.2/buchen.portfolio.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buchen.portfolio +PackageVersion: 0.77.2 +PackageLocale: en-US +Publisher: Andreas Buchen +PublisherUrl: http://abuchen.name +PublisherSupportUrl: https://github.com/buchen/portfolio/issues +PackageName: Portfolio Performance +PackageUrl: https://github.com/buchen/portfolio +License: EPL-1.0 +LicenseUrl: https://github.com/buchen/portfolio/blob/master/LICENSE +ShortDescription: Track and evaluate the performance of your investment portfolio across stocks, cryptocurrencies, and other assets. +ReleaseNotes: |- + - New: Support for CoinGecko demo account – allows for a stable rate limit of 30 requests per minute. + - New: Hold the Alt key (on macOS: Option) and double-click a cell to copy its content to the clipboard. + - New: New column showing prices in the reporting currency in the assets and securities performance views. + - New: The Trades view now shows additional columns with metrics excluding taxes and fees. You can also view these metrics in the currency of the security. + - Improvement: The Java Virtual Machine no longer uses a hardcoded memory limit but relies on its own heuristics – typically one quarter of the physical memory. + - Improvement: The selected coloring – by category or performance – of the tree map is now saved. + - Improvement: The last size and position of some dialogs are now remembered. + - Improvement: Search results can now be filtered by "Commodities" to find prices from edelkurs.de more easily. + - Improvement: The JSON price feed can now be configured with a time zone for the price data. + - Improvement: PDF imports updated for GENO Broker, KFintech, Scalable Capital, and Saxo. + - Fix: Number format in tooltip was incorrect when displaying prices of multiple securities in a chart. + - Fix: The IBFlex importer incorrectly imported the direction of currency exchanges – e.g., USD to EUR instead of EUR to USD. + - Fix: The portfolio view could consume excessive memory, leading to out-of-memory errors. +ReleaseNotesUrl: https://github.com/buchen/portfolio/releases/tag/0.77.2 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buchen/portfolio/0.77.2/buchen.portfolio.yaml b/manifests/b/buchen/portfolio/0.77.2/buchen.portfolio.yaml new file mode 100644 index 0000000000000..02c4d38ef259b --- /dev/null +++ b/manifests/b/buchen/portfolio/0.77.2/buchen.portfolio.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: buchen.portfolio +PackageVersion: 0.77.2 +DefaultLocale: de-DE +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buchen/portfolio/0.77.3/buchen.portfolio.installer.yaml b/manifests/b/buchen/portfolio/0.77.3/buchen.portfolio.installer.yaml new file mode 100644 index 0000000000000..cea6476d6ee57 --- /dev/null +++ b/manifests/b/buchen/portfolio/0.77.3/buchen.portfolio.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: buchen.portfolio +PackageVersion: 0.77.3 +InstallerType: nullsoft +Scope: machine +ProductCode: Portfolio Performance +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/portfolio-performance/portfolio/releases/download/0.77.3/PortfolioPerformance-0.77.3-setup.exe + InstallerSha256: a1b8185737e6b23b68cba300062f26d2e987a5b5b18164010cac893532baba7c +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-06-25 diff --git a/manifests/b/buchen/portfolio/0.77.3/buchen.portfolio.locale.de-DE.yaml b/manifests/b/buchen/portfolio/0.77.3/buchen.portfolio.locale.de-DE.yaml new file mode 100644 index 0000000000000..5c383d1936a14 --- /dev/null +++ b/manifests/b/buchen/portfolio/0.77.3/buchen.portfolio.locale.de-DE.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buchen.portfolio +PackageVersion: 0.77.3 +PackageLocale: de-DE +Publisher: Andreas Buchen +PublisherUrl: http://abuchen.name +PublisherSupportUrl: https://github.com/buchen/portfolio/issues +PackageName: Portfolio Performance +PackageUrl: https://github.com/buchen/portfolio +License: EPL-1.0 +LicenseUrl: https://github.com/buchen/portfolio/blob/master/LICENSE +ShortDescription: Portfolio Performance berechnet die Gesamtperformance Ihres Anlageportfolios. +ReleaseNotes: |- + - Verbesserung: Zahlenwerte werden ohne Sonderzeichen wie geschützte Leerzeichen (non-breaking spaces) in die Zwischenablage kopiert. + - Verbesserung: PDF-Importe aktualisiert für Scalable Capital, Consorsbank und FlatEx. +ReleaseNotesUrl: https://github.com/buchen/portfolio/releases/tag/0.77.3 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buchen/portfolio/0.77.3/buchen.portfolio.locale.en-US.yaml b/manifests/b/buchen/portfolio/0.77.3/buchen.portfolio.locale.en-US.yaml new file mode 100644 index 0000000000000..28eda7a108965 --- /dev/null +++ b/manifests/b/buchen/portfolio/0.77.3/buchen.portfolio.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buchen.portfolio +PackageVersion: 0.77.3 +PackageLocale: en-US +Publisher: Andreas Buchen +PublisherUrl: http://abuchen.name +PublisherSupportUrl: https://github.com/buchen/portfolio/issues +PackageName: Portfolio Performance +PackageUrl: https://github.com/buchen/portfolio +License: EPL-1.0 +LicenseUrl: https://github.com/buchen/portfolio/blob/master/LICENSE +ShortDescription: Track and evaluate the performance of your investment portfolio across stocks, cryptocurrencies, and other assets. +ReleaseNotes: |- + - Improvement: Numeric values are copied to the clipboard without special characters such as non-breaking spaces. + - Improvement: PDF imports updated for Scalable Capital, Consorsbank, and Flatex. +ReleaseNotesUrl: https://github.com/buchen/portfolio/releases/tag/0.77.3 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buchen/portfolio/0.77.3/buchen.portfolio.yaml b/manifests/b/buchen/portfolio/0.77.3/buchen.portfolio.yaml new file mode 100644 index 0000000000000..cd11dfcd9c984 --- /dev/null +++ b/manifests/b/buchen/portfolio/0.77.3/buchen.portfolio.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: buchen.portfolio +PackageVersion: 0.77.3 +DefaultLocale: de-DE +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buildpacks/pack/0.38.2/buildpacks.pack.installer.yaml b/manifests/b/buildpacks/pack/0.38.2/buildpacks.pack.installer.yaml new file mode 100644 index 0000000000000..058fcf4d05b78 --- /dev/null +++ b/manifests/b/buildpacks/pack/0.38.2/buildpacks.pack.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: buildpacks.pack +PackageVersion: 0.38.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: pack.exe +ReleaseDate: 2025-06-28 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/buildpacks/pack/releases/download/v0.38.2/pack-v0.38.2-windows.zip + InstallerSha256: 6FF9C41205182DC8BEB434C89AED6A101E5E2C43EA43DAB792BA5F8F8150458A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/buildpacks/pack/0.38.2/buildpacks.pack.locale.en-US.yaml b/manifests/b/buildpacks/pack/0.38.2/buildpacks.pack.locale.en-US.yaml new file mode 100644 index 0000000000000..35c3a91cc6266 --- /dev/null +++ b/manifests/b/buildpacks/pack/0.38.2/buildpacks.pack.locale.en-US.yaml @@ -0,0 +1,63 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buildpacks.pack +PackageVersion: 0.38.2 +PackageLocale: en-US +Publisher: buildpacks +PublisherUrl: https://github.com/buildpacks +PublisherSupportUrl: https://github.com/buildpacks/pack/issues +PackageName: pack +PackageUrl: https://github.com/buildpacks/pack +License: Apache-2.0 +LicenseUrl: https://github.com/buildpacks/pack/blob/HEAD/LICENSE +ShortDescription: CLI for building apps using Cloud Native Buildpacks +Tags: +- buildpacks +- cloud-native-buildpacks +- cncf +ReleaseNotes: |- + Prerequisites + - A container runtime such as Docker or podman must be available to execute builds. + Install + For instructions on installing pack, see our installation docs. + Run + Run the command pack. + You should see the following output + CLI for building apps using Cloud Native Buildpacks + Usage: + pack [command] + Available Commands: + build Generate app image from source code + builder Interact with builders + buildpack Interact with buildpacks + extension Interact with extensions + config Interact with your local pack config file + inspect Show information about a built app image + stack (deprecated) Interact with stacks + rebase Rebase app image with latest run image + sbom Interact with SBoM + completion Outputs completion script location + report Display useful information for reporting an issue + version Show current 'pack' version + help Help about any command + Flags: + --force-color Force color output + -h, --help Help for 'pack' + --no-color Disable color output + -q, --quiet Show less output + --timestamps Enable timestamps in output + -v, --verbose Show more output + --version Show current 'pack' version + Use "pack [command] --help" for more information about a command. + Info + Builders created with this release of the pack CLI contain lifecycle v0.20.11 by default. + Changelog + - Updating lifecycle version to v0.20.11 (#2411 by @jjbustamante) + - Updating dependencies including migrating to Docker v28.3.0 + Contributors + We'd like to acknowledge that this release wouldn't be as good without the help of the following amazing contributors: + @dependabot[bot], @jericop, @jjbustamante +ReleaseNotesUrl: https://github.com/buildpacks/pack/releases/tag/v0.38.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buildpacks/pack/0.38.2/buildpacks.pack.yaml b/manifests/b/buildpacks/pack/0.38.2/buildpacks.pack.yaml new file mode 100644 index 0000000000000..9bba3989fd328 --- /dev/null +++ b/manifests/b/buildpacks/pack/0.38.2/buildpacks.pack.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: buildpacks.pack +PackageVersion: 0.38.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/busylight/Teams/2.4.17/busylight.Teams.installer.yaml b/manifests/b/busylight/Teams/2.4.17/busylight.Teams.installer.yaml new file mode 100644 index 0000000000000..83fd313ad2393 --- /dev/null +++ b/manifests/b/busylight/Teams/2.4.17/busylight.Teams.installer.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: busylight.Teams +PackageVersion: 2.4.17 +InstallerType: zip +NestedInstallerType: wix +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: Busylight4MS_Teams_Setup.msi + InstallerUrl: https://www.plenom.com/download/70652 + InstallerSha256: AD9FDD9158749854B8313887B5D50CA16A96D28383674F1E644F76C7EA848CCE +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: Busylight4MS_Teams_Setup64.msi + InstallerUrl: https://www.plenom.com/download/70652 + InstallerSha256: AD9FDD9158749854B8313887B5D50CA16A96D28383674F1E644F76C7EA848CCE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/busylight/Teams/2.4.17/busylight.Teams.locale.en-US.yaml b/manifests/b/busylight/Teams/2.4.17/busylight.Teams.locale.en-US.yaml new file mode 100644 index 0000000000000..1138067ba696b --- /dev/null +++ b/manifests/b/busylight/Teams/2.4.17/busylight.Teams.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: busylight.Teams +PackageVersion: 2.4.17 +PackageLocale: en-US +Publisher: Plenom +Author: Plenom +PackageName: Busylight for Microsoft Teams +License: Proprietary +Copyright: Copyright (C) Plenom A/S. All rights reserved. +ShortDescription: Busylight is a USB-connected visual indicator device designed to show user availability and reduce interruptions in office environments. It integrates with platforms like Microsoft Teams to display status information. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/busylight/Teams/2.4.17/busylight.Teams.yaml b/manifests/b/busylight/Teams/2.4.17/busylight.Teams.yaml new file mode 100644 index 0000000000000..2d87e07cbf117 --- /dev/null +++ b/manifests/b/busylight/Teams/2.4.17/busylight.Teams.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: busylight.Teams +PackageVersion: 2.4.17 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CPU/2.5.1/buxuku.SmartSub.CPU.installer.yaml b/manifests/b/buxuku/SmartSub/CPU/2.5.1/buxuku.SmartSub.CPU.installer.yaml new file mode 100644 index 0000000000000..f91cf7e4cb60f --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CPU/2.5.1/buxuku.SmartSub.CPU.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: buxuku.SmartSub.CPU +PackageVersion: 2.5.1 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 31347239-13ac-5ed1-97a4-da01e9165cf8 +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.1/SmartSub_Windows_2.5.1_x64_no-cuda_generic.exe + InstallerSha256: 284952CE87B3B1FBC8C34E611F218F3BEAF4327F02B2DA068A02A4FA0E368087 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.1/SmartSub_Windows_2.5.1_x64_no-cuda_generic.exe + InstallerSha256: 284952CE87B3B1FBC8C34E611F218F3BEAF4327F02B2DA068A02A4FA0E368087 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CPU/2.5.1/buxuku.SmartSub.CPU.locale.en-US.yaml b/manifests/b/buxuku/SmartSub/CPU/2.5.1/buxuku.SmartSub.CPU.locale.en-US.yaml new file mode 100644 index 0000000000000..05a7c5531f8b8 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CPU/2.5.1/buxuku.SmartSub.CPU.locale.en-US.yaml @@ -0,0 +1,65 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CPU +PackageVersion: 2.5.1 +PackageLocale: en-US +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: Lin Xiaodong +PackageName: Video Subtitle Master +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: A powerful desktop application for batch generating subtitles for videos and translating them into other languages. +Description: |- + Video Subtitle Master is a powerful desktop application for batch generating subtitles for videos and translating them into other languages. This project is an enhanced version of the open-source VideoSubtitleGenerator, redesigned as a user-friendly client tool. + This application retains all the features of the original VideoSubtitleGenerator command-line tool, with the following enhancements: + - Graphical user interface for easier operation + - Source and target language subtitle files are saved in the same directory as the video for convenient subtitle attachment during playback + - Batch processing of video/audio/subtitle files + - Support for generating subtitles from video or audio files + - Ability to translate generated or imported subtitles + - Multiple translation services supported: + - Volcano Engine Translation + - Baidu Translation + - DeepLX Translation (Note: Batch translation may be rate-limited) + - Local Ollama model translation + - Support for OpenAI-style API translations (e.g., deepseek, azure) + - Customizable subtitle file naming for compatibility with various media players + - Flexible translated subtitle content: choose between pure translation or original + translated subtitles + - Integrated whisper.cpp with optimization for Apple Silicon, offering faster generation speeds + - Built-in fluent-ffmpeg, eliminating the need for separate ffmpeg installation + - Support for running locally installed whisper command + - Option to choose model download source (domestic mirror or official source) + - Customizable number of concurrent tasks +Tags: +- audio +- caption +- subtitle +- translate +- translation +- video +ReleaseNotes: |- + [!IMPORTANT] + Windows 2019 已经停止支持,当前版本在 Windows 2022 系统中完成编译,如果存在运行相关问题,欢迎反馈。 + Windows 2019 has been discontinued. The current version was compiled in the Windows 2022 system. If there are any running-related issues, please feel free to provide feedback. + feat + - 支持 VAD,可有效提高字幕生成速度,以及解决静音导致的一些幻觉问题 + Support for VAD can effectively improve the speed of subtitle generation and solve some illusion problems caused by mute + - 新增支持谷歌翻译 #205 + Added support for Google Translate #205 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CPU/2.5.1/buxuku.SmartSub.CPU.locale.zh-CN.yaml b/manifests/b/buxuku/SmartSub/CPU/2.5.1/buxuku.SmartSub.CPU.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e382f20b17d1d --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CPU/2.5.1/buxuku.SmartSub.CPU.locale.zh-CN.yaml @@ -0,0 +1,63 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CPU +PackageVersion: 2.5.1 +PackageLocale: zh-CN +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: 林晓东 +PackageName: Video Subtitle Master +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: 批量为视频生成字幕,并将字幕翻译成其它语言。 +Description: |- + 批量为视频生成字幕,并可将字幕翻译成其它语言。这是在之前的一个开源项目 VideoSubtitleGenerator 的基础上,制作成的一个客户端工具,以方便更多朋友们的使用。 + 它保留了之前 VideoSubtitleGenerator 这个命令行工具的全部特性,并新增了以下功能: + - 图形用户界面,操作更加便捷 + - 源语言字幕文件和目标语言字幕文件放在视频同目录下,方便播放时任意挂载字幕文件 + - 批量处理视频/音频/字幕文件 + - 支持视频/音频生成字幕 + - 支持对生成的字幕,或者导入的字幕进行翻译 + - 支持多种翻译服务: + - 火山引擎翻译 + - 百度翻译 + - DeepLX 翻译(批量翻译容易存在被限流的情况) + - 本地模型 Ollama 翻译 + - 支持 OpenAI 风格 API 翻译,如 deepseek, azure 等 + - 自定义字幕文件名,方便兼容不同的播放器挂载字幕识别 + - 自定义翻译后的字幕文件内容,支持纯翻译结果或原字幕+翻译结果 + - 项目集成 whisper.cpp,对 Apple Silicon 进行了优化,有较快的生成速度 + - 项目集成了 fluent-ffmpeg,无须单独安装 ffmpeg + - 支持运行本地安装的 whisper 命令 + - 支持选择模型下载源(国内镜像源或官方源) + - 支持自定义并发任务数量 +Tags: +- 字幕 +- 视频 +- 翻译 +- 音频 +ReleaseNotes: |- + [!IMPORTANT] + Windows 2019 已经停止支持,当前版本在 Windows 2022 系统中完成编译,如果存在运行相关问题,欢迎反馈。 + Windows 2019 has been discontinued. The current version was compiled in the Windows 2022 system. If there are any running-related issues, please feel free to provide feedback. + feat + - 支持 VAD,可有效提高字幕生成速度,以及解决静音导致的一些幻觉问题 + Support for VAD can effectively improve the speed of subtitle generation and solve some illusion problems caused by mute + - 新增支持谷歌翻译 #205 + Added support for Google Translate #205 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.1 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CPU/2.5.1/buxuku.SmartSub.CPU.yaml b/manifests/b/buxuku/SmartSub/CPU/2.5.1/buxuku.SmartSub.CPU.yaml new file mode 100644 index 0000000000000..692356ad09579 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CPU/2.5.1/buxuku.SmartSub.CPU.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: buxuku.SmartSub.CPU +PackageVersion: 2.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CPU/2.5.2/buxuku.SmartSub.CPU.installer.yaml b/manifests/b/buxuku/SmartSub/CPU/2.5.2/buxuku.SmartSub.CPU.installer.yaml new file mode 100644 index 0000000000000..3d61241ef1728 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CPU/2.5.2/buxuku.SmartSub.CPU.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: buxuku.SmartSub.CPU +PackageVersion: 2.5.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 31347239-13ac-5ed1-97a4-da01e9165cf8 +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.2/SmartSub_Windows_2.5.2_x64_no-cuda_generic.exe + InstallerSha256: B720416417C8ED72E9EE51351A55252FD2A29394B185A275578311C38D355A8A + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.2/SmartSub_Windows_2.5.2_x64_no-cuda_generic.exe + InstallerSha256: B720416417C8ED72E9EE51351A55252FD2A29394B185A275578311C38D355A8A + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CPU/2.5.2/buxuku.SmartSub.CPU.locale.en-US.yaml b/manifests/b/buxuku/SmartSub/CPU/2.5.2/buxuku.SmartSub.CPU.locale.en-US.yaml new file mode 100644 index 0000000000000..4f1b60a834b18 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CPU/2.5.2/buxuku.SmartSub.CPU.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CPU +PackageVersion: 2.5.2 +PackageLocale: en-US +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: Lin Xiaodong +PackageName: Video Subtitle Master +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: A powerful desktop application for batch generating subtitles for videos and translating them into other languages. +Description: |- + Video Subtitle Master is a powerful desktop application for batch generating subtitles for videos and translating them into other languages. This project is an enhanced version of the open-source VideoSubtitleGenerator, redesigned as a user-friendly client tool. + This application retains all the features of the original VideoSubtitleGenerator command-line tool, with the following enhancements: + - Graphical user interface for easier operation + - Source and target language subtitle files are saved in the same directory as the video for convenient subtitle attachment during playback + - Batch processing of video/audio/subtitle files + - Support for generating subtitles from video or audio files + - Ability to translate generated or imported subtitles + - Multiple translation services supported: + - Volcano Engine Translation + - Baidu Translation + - DeepLX Translation (Note: Batch translation may be rate-limited) + - Local Ollama model translation + - Support for OpenAI-style API translations (e.g., deepseek, azure) + - Customizable subtitle file naming for compatibility with various media players + - Flexible translated subtitle content: choose between pure translation or original + translated subtitles + - Integrated whisper.cpp with optimization for Apple Silicon, offering faster generation speeds + - Built-in fluent-ffmpeg, eliminating the need for separate ffmpeg installation + - Support for running locally installed whisper command + - Option to choose model download source (domestic mirror or official source) + - Customizable number of concurrent tasks +Tags: +- audio +- caption +- subtitle +- translate +- translation +- video +ReleaseNotes: |- + fix + - 修复 2.5.1 版本缺失 VAD 模型导致 VAD 失效的问题,请重新下载 2.5.2 版本 #208 + To fix the issue where the VAD model was missing in version 2.5.1, causing VAD to fail, please re-download version 2.5.2 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CPU/2.5.2/buxuku.SmartSub.CPU.locale.zh-CN.yaml b/manifests/b/buxuku/SmartSub/CPU/2.5.2/buxuku.SmartSub.CPU.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b19d616ad1367 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CPU/2.5.2/buxuku.SmartSub.CPU.locale.zh-CN.yaml @@ -0,0 +1,58 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CPU +PackageVersion: 2.5.2 +PackageLocale: zh-CN +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: 林晓东 +PackageName: Video Subtitle Master +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: 批量为视频生成字幕,并将字幕翻译成其它语言。 +Description: |- + 批量为视频生成字幕,并可将字幕翻译成其它语言。这是在之前的一个开源项目 VideoSubtitleGenerator 的基础上,制作成的一个客户端工具,以方便更多朋友们的使用。 + 它保留了之前 VideoSubtitleGenerator 这个命令行工具的全部特性,并新增了以下功能: + - 图形用户界面,操作更加便捷 + - 源语言字幕文件和目标语言字幕文件放在视频同目录下,方便播放时任意挂载字幕文件 + - 批量处理视频/音频/字幕文件 + - 支持视频/音频生成字幕 + - 支持对生成的字幕,或者导入的字幕进行翻译 + - 支持多种翻译服务: + - 火山引擎翻译 + - 百度翻译 + - DeepLX 翻译(批量翻译容易存在被限流的情况) + - 本地模型 Ollama 翻译 + - 支持 OpenAI 风格 API 翻译,如 deepseek, azure 等 + - 自定义字幕文件名,方便兼容不同的播放器挂载字幕识别 + - 自定义翻译后的字幕文件内容,支持纯翻译结果或原字幕+翻译结果 + - 项目集成 whisper.cpp,对 Apple Silicon 进行了优化,有较快的生成速度 + - 项目集成了 fluent-ffmpeg,无须单独安装 ffmpeg + - 支持运行本地安装的 whisper 命令 + - 支持选择模型下载源(国内镜像源或官方源) + - 支持自定义并发任务数量 +Tags: +- 字幕 +- 视频 +- 翻译 +- 音频 +ReleaseNotes: |- + fix + - 修复 2.5.1 版本缺失 VAD 模型导致 VAD 失效的问题,请重新下载 2.5.2 版本 #208 + To fix the issue where the VAD model was missing in version 2.5.1, causing VAD to fail, please re-download version 2.5.2 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.2 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CPU/2.5.2/buxuku.SmartSub.CPU.yaml b/manifests/b/buxuku/SmartSub/CPU/2.5.2/buxuku.SmartSub.CPU.yaml new file mode 100644 index 0000000000000..3adf8c09e187a --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CPU/2.5.2/buxuku.SmartSub.CPU.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: buxuku.SmartSub.CPU +PackageVersion: 2.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.1/buxuku.SmartSub.CUDA.11.8.installer.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.1/buxuku.SmartSub.CUDA.11.8.installer.yaml new file mode 100644 index 0000000000000..23e15373d9f42 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.1/buxuku.SmartSub.CUDA.11.8.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: buxuku.SmartSub.CUDA.11.8 +PackageVersion: 2.5.1 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 31347239-13ac-5ed1-97a4-da01e9165cf8 +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.1/SmartSub_Windows_2.5.1_x64_11.8.0_generic.exe + InstallerSha256: D26AA603CDCBCD43D636F3EA60CD6E978FAAB889899F2B9778646957B049948F + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.1/SmartSub_Windows_2.5.1_x64_11.8.0_generic.exe + InstallerSha256: D26AA603CDCBCD43D636F3EA60CD6E978FAAB889899F2B9778646957B049948F + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.1/buxuku.SmartSub.CUDA.11.8.locale.en-US.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.1/buxuku.SmartSub.CUDA.11.8.locale.en-US.yaml new file mode 100644 index 0000000000000..03e9f90d4185d --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.1/buxuku.SmartSub.CUDA.11.8.locale.en-US.yaml @@ -0,0 +1,65 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.11.8 +PackageVersion: 2.5.1 +PackageLocale: en-US +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: Lin Xiaodong +PackageName: Video Subtitle Master (CUDA 11.8) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: A powerful desktop application for batch generating subtitles for videos and translating them into other languages. +Description: |- + Video Subtitle Master is a powerful desktop application for batch generating subtitles for videos and translating them into other languages. This project is an enhanced version of the open-source VideoSubtitleGenerator, redesigned as a user-friendly client tool. + This application retains all the features of the original VideoSubtitleGenerator command-line tool, with the following enhancements: + - Graphical user interface for easier operation + - Source and target language subtitle files are saved in the same directory as the video for convenient subtitle attachment during playback + - Batch processing of video/audio/subtitle files + - Support for generating subtitles from video or audio files + - Ability to translate generated or imported subtitles + - Multiple translation services supported: + - Volcano Engine Translation + - Baidu Translation + - DeepLX Translation (Note: Batch translation may be rate-limited) + - Local Ollama model translation + - Support for OpenAI-style API translations (e.g., deepseek, azure) + - Customizable subtitle file naming for compatibility with various media players + - Flexible translated subtitle content: choose between pure translation or original + translated subtitles + - Integrated whisper.cpp with optimization for Apple Silicon, offering faster generation speeds + - Built-in fluent-ffmpeg, eliminating the need for separate ffmpeg installation + - Support for running locally installed whisper command + - Option to choose model download source (domestic mirror or official source) + - Customizable number of concurrent tasks +Tags: +- audio +- caption +- subtitle +- translate +- translation +- video +ReleaseNotes: |- + [!IMPORTANT] + Windows 2019 已经停止支持,当前版本在 Windows 2022 系统中完成编译,如果存在运行相关问题,欢迎反馈。 + Windows 2019 has been discontinued. The current version was compiled in the Windows 2022 system. If there are any running-related issues, please feel free to provide feedback. + feat + - 支持 VAD,可有效提高字幕生成速度,以及解决静音导致的一些幻觉问题 + Support for VAD can effectively improve the speed of subtitle generation and solve some illusion problems caused by mute + - 新增支持谷歌翻译 #205 + Added support for Google Translate #205 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.1/buxuku.SmartSub.CUDA.11.8.locale.zh-CN.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.1/buxuku.SmartSub.CUDA.11.8.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6ba690191b00a --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.1/buxuku.SmartSub.CUDA.11.8.locale.zh-CN.yaml @@ -0,0 +1,63 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.11.8 +PackageVersion: 2.5.1 +PackageLocale: zh-CN +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: 林晓东 +PackageName: Video Subtitle Master (CUDA 11.8) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: 批量为视频生成字幕,并将字幕翻译成其它语言。 +Description: |- + 批量为视频生成字幕,并可将字幕翻译成其它语言。这是在之前的一个开源项目 VideoSubtitleGenerator 的基础上,制作成的一个客户端工具,以方便更多朋友们的使用。 + 它保留了之前 VideoSubtitleGenerator 这个命令行工具的全部特性,并新增了以下功能: + - 图形用户界面,操作更加便捷 + - 源语言字幕文件和目标语言字幕文件放在视频同目录下,方便播放时任意挂载字幕文件 + - 批量处理视频/音频/字幕文件 + - 支持视频/音频生成字幕 + - 支持对生成的字幕,或者导入的字幕进行翻译 + - 支持多种翻译服务: + - 火山引擎翻译 + - 百度翻译 + - DeepLX 翻译(批量翻译容易存在被限流的情况) + - 本地模型 Ollama 翻译 + - 支持 OpenAI 风格 API 翻译,如 deepseek, azure 等 + - 自定义字幕文件名,方便兼容不同的播放器挂载字幕识别 + - 自定义翻译后的字幕文件内容,支持纯翻译结果或原字幕+翻译结果 + - 项目集成 whisper.cpp,对 Apple Silicon 进行了优化,有较快的生成速度 + - 项目集成了 fluent-ffmpeg,无须单独安装 ffmpeg + - 支持运行本地安装的 whisper 命令 + - 支持选择模型下载源(国内镜像源或官方源) + - 支持自定义并发任务数量 +Tags: +- 字幕 +- 视频 +- 翻译 +- 音频 +ReleaseNotes: |- + [!IMPORTANT] + Windows 2019 已经停止支持,当前版本在 Windows 2022 系统中完成编译,如果存在运行相关问题,欢迎反馈。 + Windows 2019 has been discontinued. The current version was compiled in the Windows 2022 system. If there are any running-related issues, please feel free to provide feedback. + feat + - 支持 VAD,可有效提高字幕生成速度,以及解决静音导致的一些幻觉问题 + Support for VAD can effectively improve the speed of subtitle generation and solve some illusion problems caused by mute + - 新增支持谷歌翻译 #205 + Added support for Google Translate #205 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.1 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.1/buxuku.SmartSub.CUDA.11.8.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.1/buxuku.SmartSub.CUDA.11.8.yaml new file mode 100644 index 0000000000000..8c8359a3d6ab4 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.1/buxuku.SmartSub.CUDA.11.8.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: buxuku.SmartSub.CUDA.11.8 +PackageVersion: 2.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.2/buxuku.SmartSub.CUDA.11.8.installer.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.2/buxuku.SmartSub.CUDA.11.8.installer.yaml new file mode 100644 index 0000000000000..9f61e06b789d8 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.2/buxuku.SmartSub.CUDA.11.8.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: buxuku.SmartSub.CUDA.11.8 +PackageVersion: 2.5.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 31347239-13ac-5ed1-97a4-da01e9165cf8 +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.2/SmartSub_Windows_2.5.2_x64_11.8.0_generic.exe + InstallerSha256: 87480F77DCB94C1D1056070E1A6B9EFB4750918E6F0FDDBE8359E1B9B0236A41 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.2/SmartSub_Windows_2.5.2_x64_11.8.0_generic.exe + InstallerSha256: 87480F77DCB94C1D1056070E1A6B9EFB4750918E6F0FDDBE8359E1B9B0236A41 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.2/buxuku.SmartSub.CUDA.11.8.locale.en-US.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.2/buxuku.SmartSub.CUDA.11.8.locale.en-US.yaml new file mode 100644 index 0000000000000..f08dd03d9dda3 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.2/buxuku.SmartSub.CUDA.11.8.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.11.8 +PackageVersion: 2.5.2 +PackageLocale: en-US +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: Lin Xiaodong +PackageName: Video Subtitle Master (CUDA 11.8) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: A powerful desktop application for batch generating subtitles for videos and translating them into other languages. +Description: |- + Video Subtitle Master is a powerful desktop application for batch generating subtitles for videos and translating them into other languages. This project is an enhanced version of the open-source VideoSubtitleGenerator, redesigned as a user-friendly client tool. + This application retains all the features of the original VideoSubtitleGenerator command-line tool, with the following enhancements: + - Graphical user interface for easier operation + - Source and target language subtitle files are saved in the same directory as the video for convenient subtitle attachment during playback + - Batch processing of video/audio/subtitle files + - Support for generating subtitles from video or audio files + - Ability to translate generated or imported subtitles + - Multiple translation services supported: + - Volcano Engine Translation + - Baidu Translation + - DeepLX Translation (Note: Batch translation may be rate-limited) + - Local Ollama model translation + - Support for OpenAI-style API translations (e.g., deepseek, azure) + - Customizable subtitle file naming for compatibility with various media players + - Flexible translated subtitle content: choose between pure translation or original + translated subtitles + - Integrated whisper.cpp with optimization for Apple Silicon, offering faster generation speeds + - Built-in fluent-ffmpeg, eliminating the need for separate ffmpeg installation + - Support for running locally installed whisper command + - Option to choose model download source (domestic mirror or official source) + - Customizable number of concurrent tasks +Tags: +- audio +- caption +- subtitle +- translate +- translation +- video +ReleaseNotes: |- + fix + - 修复 2.5.1 版本缺失 VAD 模型导致 VAD 失效的问题,请重新下载 2.5.2 版本 #208 + To fix the issue where the VAD model was missing in version 2.5.1, causing VAD to fail, please re-download version 2.5.2 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.2/buxuku.SmartSub.CUDA.11.8.locale.zh-CN.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.2/buxuku.SmartSub.CUDA.11.8.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c64f54ba51a44 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.2/buxuku.SmartSub.CUDA.11.8.locale.zh-CN.yaml @@ -0,0 +1,58 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.11.8 +PackageVersion: 2.5.2 +PackageLocale: zh-CN +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: 林晓东 +PackageName: Video Subtitle Master (CUDA 11.8) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: 批量为视频生成字幕,并将字幕翻译成其它语言。 +Description: |- + 批量为视频生成字幕,并可将字幕翻译成其它语言。这是在之前的一个开源项目 VideoSubtitleGenerator 的基础上,制作成的一个客户端工具,以方便更多朋友们的使用。 + 它保留了之前 VideoSubtitleGenerator 这个命令行工具的全部特性,并新增了以下功能: + - 图形用户界面,操作更加便捷 + - 源语言字幕文件和目标语言字幕文件放在视频同目录下,方便播放时任意挂载字幕文件 + - 批量处理视频/音频/字幕文件 + - 支持视频/音频生成字幕 + - 支持对生成的字幕,或者导入的字幕进行翻译 + - 支持多种翻译服务: + - 火山引擎翻译 + - 百度翻译 + - DeepLX 翻译(批量翻译容易存在被限流的情况) + - 本地模型 Ollama 翻译 + - 支持 OpenAI 风格 API 翻译,如 deepseek, azure 等 + - 自定义字幕文件名,方便兼容不同的播放器挂载字幕识别 + - 自定义翻译后的字幕文件内容,支持纯翻译结果或原字幕+翻译结果 + - 项目集成 whisper.cpp,对 Apple Silicon 进行了优化,有较快的生成速度 + - 项目集成了 fluent-ffmpeg,无须单独安装 ffmpeg + - 支持运行本地安装的 whisper 命令 + - 支持选择模型下载源(国内镜像源或官方源) + - 支持自定义并发任务数量 +Tags: +- 字幕 +- 视频 +- 翻译 +- 音频 +ReleaseNotes: |- + fix + - 修复 2.5.1 版本缺失 VAD 模型导致 VAD 失效的问题,请重新下载 2.5.2 版本 #208 + To fix the issue where the VAD model was missing in version 2.5.1, causing VAD to fail, please re-download version 2.5.2 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.2 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.2/buxuku.SmartSub.CUDA.11.8.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.2/buxuku.SmartSub.CUDA.11.8.yaml new file mode 100644 index 0000000000000..ed0f01f163f5b --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/2.5.2/buxuku.SmartSub.CUDA.11.8.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: buxuku.SmartSub.CUDA.11.8 +PackageVersion: 2.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.1/buxuku.SmartSub.CUDA.11.8.Optimized.installer.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.1/buxuku.SmartSub.CUDA.11.8.Optimized.installer.yaml new file mode 100644 index 0000000000000..7b54b9905485e --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.1/buxuku.SmartSub.CUDA.11.8.Optimized.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: buxuku.SmartSub.CUDA.11.8.Optimized +PackageVersion: 2.5.1 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 31347239-13ac-5ed1-97a4-da01e9165cf8 +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.1/SmartSub_Windows_2.5.1_x64_11.8.0_optimized.exe + InstallerSha256: CBE91FBDD637661F5CBC367221F8463ECCE0B06AA28B7CF7BE0EE6DFEA3F991B + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.1/SmartSub_Windows_2.5.1_x64_11.8.0_optimized.exe + InstallerSha256: CBE91FBDD637661F5CBC367221F8463ECCE0B06AA28B7CF7BE0EE6DFEA3F991B + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.1/buxuku.SmartSub.CUDA.11.8.Optimized.locale.en-US.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.1/buxuku.SmartSub.CUDA.11.8.Optimized.locale.en-US.yaml new file mode 100644 index 0000000000000..ddb4ff7c6ab93 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.1/buxuku.SmartSub.CUDA.11.8.Optimized.locale.en-US.yaml @@ -0,0 +1,65 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.11.8.Optimized +PackageVersion: 2.5.1 +PackageLocale: en-US +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: Lin Xiaodong +PackageName: Video Subtitle Master (CUDA 11.8 Optimized) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: A powerful desktop application for batch generating subtitles for videos and translating them into other languages. +Description: |- + Video Subtitle Master is a powerful desktop application for batch generating subtitles for videos and translating them into other languages. This project is an enhanced version of the open-source VideoSubtitleGenerator, redesigned as a user-friendly client tool. + This application retains all the features of the original VideoSubtitleGenerator command-line tool, with the following enhancements: + - Graphical user interface for easier operation + - Source and target language subtitle files are saved in the same directory as the video for convenient subtitle attachment during playback + - Batch processing of video/audio/subtitle files + - Support for generating subtitles from video or audio files + - Ability to translate generated or imported subtitles + - Multiple translation services supported: + - Volcano Engine Translation + - Baidu Translation + - DeepLX Translation (Note: Batch translation may be rate-limited) + - Local Ollama model translation + - Support for OpenAI-style API translations (e.g., deepseek, azure) + - Customizable subtitle file naming for compatibility with various media players + - Flexible translated subtitle content: choose between pure translation or original + translated subtitles + - Integrated whisper.cpp with optimization for Apple Silicon, offering faster generation speeds + - Built-in fluent-ffmpeg, eliminating the need for separate ffmpeg installation + - Support for running locally installed whisper command + - Option to choose model download source (domestic mirror or official source) + - Customizable number of concurrent tasks +Tags: +- audio +- caption +- subtitle +- translate +- translation +- video +ReleaseNotes: |- + [!IMPORTANT] + Windows 2019 已经停止支持,当前版本在 Windows 2022 系统中完成编译,如果存在运行相关问题,欢迎反馈。 + Windows 2019 has been discontinued. The current version was compiled in the Windows 2022 system. If there are any running-related issues, please feel free to provide feedback. + feat + - 支持 VAD,可有效提高字幕生成速度,以及解决静音导致的一些幻觉问题 + Support for VAD can effectively improve the speed of subtitle generation and solve some illusion problems caused by mute + - 新增支持谷歌翻译 #205 + Added support for Google Translate #205 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.1/buxuku.SmartSub.CUDA.11.8.Optimized.locale.zh-CN.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.1/buxuku.SmartSub.CUDA.11.8.Optimized.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e2a94aedb9621 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.1/buxuku.SmartSub.CUDA.11.8.Optimized.locale.zh-CN.yaml @@ -0,0 +1,63 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.11.8.Optimized +PackageVersion: 2.5.1 +PackageLocale: zh-CN +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: 林晓东 +PackageName: Video Subtitle Master (CUDA 11.8 Optimized) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: 批量为视频生成字幕,并将字幕翻译成其它语言。 +Description: |- + 批量为视频生成字幕,并可将字幕翻译成其它语言。这是在之前的一个开源项目 VideoSubtitleGenerator 的基础上,制作成的一个客户端工具,以方便更多朋友们的使用。 + 它保留了之前 VideoSubtitleGenerator 这个命令行工具的全部特性,并新增了以下功能: + - 图形用户界面,操作更加便捷 + - 源语言字幕文件和目标语言字幕文件放在视频同目录下,方便播放时任意挂载字幕文件 + - 批量处理视频/音频/字幕文件 + - 支持视频/音频生成字幕 + - 支持对生成的字幕,或者导入的字幕进行翻译 + - 支持多种翻译服务: + - 火山引擎翻译 + - 百度翻译 + - DeepLX 翻译(批量翻译容易存在被限流的情况) + - 本地模型 Ollama 翻译 + - 支持 OpenAI 风格 API 翻译,如 deepseek, azure 等 + - 自定义字幕文件名,方便兼容不同的播放器挂载字幕识别 + - 自定义翻译后的字幕文件内容,支持纯翻译结果或原字幕+翻译结果 + - 项目集成 whisper.cpp,对 Apple Silicon 进行了优化,有较快的生成速度 + - 项目集成了 fluent-ffmpeg,无须单独安装 ffmpeg + - 支持运行本地安装的 whisper 命令 + - 支持选择模型下载源(国内镜像源或官方源) + - 支持自定义并发任务数量 +Tags: +- 字幕 +- 视频 +- 翻译 +- 音频 +ReleaseNotes: |- + [!IMPORTANT] + Windows 2019 已经停止支持,当前版本在 Windows 2022 系统中完成编译,如果存在运行相关问题,欢迎反馈。 + Windows 2019 has been discontinued. The current version was compiled in the Windows 2022 system. If there are any running-related issues, please feel free to provide feedback. + feat + - 支持 VAD,可有效提高字幕生成速度,以及解决静音导致的一些幻觉问题 + Support for VAD can effectively improve the speed of subtitle generation and solve some illusion problems caused by mute + - 新增支持谷歌翻译 #205 + Added support for Google Translate #205 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.1 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.1/buxuku.SmartSub.CUDA.11.8.Optimized.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.1/buxuku.SmartSub.CUDA.11.8.Optimized.yaml new file mode 100644 index 0000000000000..3d16e72195b57 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.1/buxuku.SmartSub.CUDA.11.8.Optimized.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: buxuku.SmartSub.CUDA.11.8.Optimized +PackageVersion: 2.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.2/buxuku.SmartSub.CUDA.11.8.Optimized.installer.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.2/buxuku.SmartSub.CUDA.11.8.Optimized.installer.yaml new file mode 100644 index 0000000000000..4b3d3ab67e94c --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.2/buxuku.SmartSub.CUDA.11.8.Optimized.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: buxuku.SmartSub.CUDA.11.8.Optimized +PackageVersion: 2.5.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 31347239-13ac-5ed1-97a4-da01e9165cf8 +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.2/SmartSub_Windows_2.5.2_x64_11.8.0_optimized.exe + InstallerSha256: 8FE03141A1B61B81E1D5958F470929133232D0AC865542D7A85F850020BCCD0D + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.2/SmartSub_Windows_2.5.2_x64_11.8.0_optimized.exe + InstallerSha256: 8FE03141A1B61B81E1D5958F470929133232D0AC865542D7A85F850020BCCD0D + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.2/buxuku.SmartSub.CUDA.11.8.Optimized.locale.en-US.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.2/buxuku.SmartSub.CUDA.11.8.Optimized.locale.en-US.yaml new file mode 100644 index 0000000000000..6abb548d3b347 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.2/buxuku.SmartSub.CUDA.11.8.Optimized.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.11.8.Optimized +PackageVersion: 2.5.2 +PackageLocale: en-US +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: Lin Xiaodong +PackageName: Video Subtitle Master (CUDA 11.8 Optimized) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: A powerful desktop application for batch generating subtitles for videos and translating them into other languages. +Description: |- + Video Subtitle Master is a powerful desktop application for batch generating subtitles for videos and translating them into other languages. This project is an enhanced version of the open-source VideoSubtitleGenerator, redesigned as a user-friendly client tool. + This application retains all the features of the original VideoSubtitleGenerator command-line tool, with the following enhancements: + - Graphical user interface for easier operation + - Source and target language subtitle files are saved in the same directory as the video for convenient subtitle attachment during playback + - Batch processing of video/audio/subtitle files + - Support for generating subtitles from video or audio files + - Ability to translate generated or imported subtitles + - Multiple translation services supported: + - Volcano Engine Translation + - Baidu Translation + - DeepLX Translation (Note: Batch translation may be rate-limited) + - Local Ollama model translation + - Support for OpenAI-style API translations (e.g., deepseek, azure) + - Customizable subtitle file naming for compatibility with various media players + - Flexible translated subtitle content: choose between pure translation or original + translated subtitles + - Integrated whisper.cpp with optimization for Apple Silicon, offering faster generation speeds + - Built-in fluent-ffmpeg, eliminating the need for separate ffmpeg installation + - Support for running locally installed whisper command + - Option to choose model download source (domestic mirror or official source) + - Customizable number of concurrent tasks +Tags: +- audio +- caption +- subtitle +- translate +- translation +- video +ReleaseNotes: |- + fix + - 修复 2.5.1 版本缺失 VAD 模型导致 VAD 失效的问题,请重新下载 2.5.2 版本 #208 + To fix the issue where the VAD model was missing in version 2.5.1, causing VAD to fail, please re-download version 2.5.2 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.2/buxuku.SmartSub.CUDA.11.8.Optimized.locale.zh-CN.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.2/buxuku.SmartSub.CUDA.11.8.Optimized.locale.zh-CN.yaml new file mode 100644 index 0000000000000..52a81b78f5bbe --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.2/buxuku.SmartSub.CUDA.11.8.Optimized.locale.zh-CN.yaml @@ -0,0 +1,58 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.11.8.Optimized +PackageVersion: 2.5.2 +PackageLocale: zh-CN +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: 林晓东 +PackageName: Video Subtitle Master (CUDA 11.8 Optimized) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: 批量为视频生成字幕,并将字幕翻译成其它语言。 +Description: |- + 批量为视频生成字幕,并可将字幕翻译成其它语言。这是在之前的一个开源项目 VideoSubtitleGenerator 的基础上,制作成的一个客户端工具,以方便更多朋友们的使用。 + 它保留了之前 VideoSubtitleGenerator 这个命令行工具的全部特性,并新增了以下功能: + - 图形用户界面,操作更加便捷 + - 源语言字幕文件和目标语言字幕文件放在视频同目录下,方便播放时任意挂载字幕文件 + - 批量处理视频/音频/字幕文件 + - 支持视频/音频生成字幕 + - 支持对生成的字幕,或者导入的字幕进行翻译 + - 支持多种翻译服务: + - 火山引擎翻译 + - 百度翻译 + - DeepLX 翻译(批量翻译容易存在被限流的情况) + - 本地模型 Ollama 翻译 + - 支持 OpenAI 风格 API 翻译,如 deepseek, azure 等 + - 自定义字幕文件名,方便兼容不同的播放器挂载字幕识别 + - 自定义翻译后的字幕文件内容,支持纯翻译结果或原字幕+翻译结果 + - 项目集成 whisper.cpp,对 Apple Silicon 进行了优化,有较快的生成速度 + - 项目集成了 fluent-ffmpeg,无须单独安装 ffmpeg + - 支持运行本地安装的 whisper 命令 + - 支持选择模型下载源(国内镜像源或官方源) + - 支持自定义并发任务数量 +Tags: +- 字幕 +- 视频 +- 翻译 +- 音频 +ReleaseNotes: |- + fix + - 修复 2.5.1 版本缺失 VAD 模型导致 VAD 失效的问题,请重新下载 2.5.2 版本 #208 + To fix the issue where the VAD model was missing in version 2.5.1, causing VAD to fail, please re-download version 2.5.2 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.2 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.2/buxuku.SmartSub.CUDA.11.8.Optimized.yaml b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.2/buxuku.SmartSub.CUDA.11.8.Optimized.yaml new file mode 100644 index 0000000000000..0670aff8d18be --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/11/8/Optimized/2.5.2/buxuku.SmartSub.CUDA.11.8.Optimized.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: buxuku.SmartSub.CUDA.11.8.Optimized +PackageVersion: 2.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.1/buxuku.SmartSub.CUDA.12.2.installer.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.1/buxuku.SmartSub.CUDA.12.2.installer.yaml new file mode 100644 index 0000000000000..e8713f18d3562 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.1/buxuku.SmartSub.CUDA.12.2.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: buxuku.SmartSub.CUDA.12.2 +PackageVersion: 2.5.1 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 31347239-13ac-5ed1-97a4-da01e9165cf8 +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.1/SmartSub_Windows_2.5.1_x64_12.2.0_generic.exe + InstallerSha256: D93F5D3114E9696FC4A11480E857EC6F8A02B1092A0D2F86B32D09721491DA03 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.1/SmartSub_Windows_2.5.1_x64_12.2.0_generic.exe + InstallerSha256: D93F5D3114E9696FC4A11480E857EC6F8A02B1092A0D2F86B32D09721491DA03 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.1/buxuku.SmartSub.CUDA.12.2.locale.en-US.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.1/buxuku.SmartSub.CUDA.12.2.locale.en-US.yaml new file mode 100644 index 0000000000000..8fc404cc336e0 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.1/buxuku.SmartSub.CUDA.12.2.locale.en-US.yaml @@ -0,0 +1,65 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.2 +PackageVersion: 2.5.1 +PackageLocale: en-US +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: Lin Xiaodong +PackageName: Video Subtitle Master (CUDA 12.2) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: A powerful desktop application for batch generating subtitles for videos and translating them into other languages. +Description: |- + Video Subtitle Master is a powerful desktop application for batch generating subtitles for videos and translating them into other languages. This project is an enhanced version of the open-source VideoSubtitleGenerator, redesigned as a user-friendly client tool. + This application retains all the features of the original VideoSubtitleGenerator command-line tool, with the following enhancements: + - Graphical user interface for easier operation + - Source and target language subtitle files are saved in the same directory as the video for convenient subtitle attachment during playback + - Batch processing of video/audio/subtitle files + - Support for generating subtitles from video or audio files + - Ability to translate generated or imported subtitles + - Multiple translation services supported: + - Volcano Engine Translation + - Baidu Translation + - DeepLX Translation (Note: Batch translation may be rate-limited) + - Local Ollama model translation + - Support for OpenAI-style API translations (e.g., deepseek, azure) + - Customizable subtitle file naming for compatibility with various media players + - Flexible translated subtitle content: choose between pure translation or original + translated subtitles + - Integrated whisper.cpp with optimization for Apple Silicon, offering faster generation speeds + - Built-in fluent-ffmpeg, eliminating the need for separate ffmpeg installation + - Support for running locally installed whisper command + - Option to choose model download source (domestic mirror or official source) + - Customizable number of concurrent tasks +Tags: +- audio +- caption +- subtitle +- translate +- translation +- video +ReleaseNotes: |- + [!IMPORTANT] + Windows 2019 已经停止支持,当前版本在 Windows 2022 系统中完成编译,如果存在运行相关问题,欢迎反馈。 + Windows 2019 has been discontinued. The current version was compiled in the Windows 2022 system. If there are any running-related issues, please feel free to provide feedback. + feat + - 支持 VAD,可有效提高字幕生成速度,以及解决静音导致的一些幻觉问题 + Support for VAD can effectively improve the speed of subtitle generation and solve some illusion problems caused by mute + - 新增支持谷歌翻译 #205 + Added support for Google Translate #205 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.1/buxuku.SmartSub.CUDA.12.2.locale.zh-CN.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.1/buxuku.SmartSub.CUDA.12.2.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b343a434fb78b --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.1/buxuku.SmartSub.CUDA.12.2.locale.zh-CN.yaml @@ -0,0 +1,63 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.2 +PackageVersion: 2.5.1 +PackageLocale: zh-CN +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: 林晓东 +PackageName: Video Subtitle Master (CUDA 12.2) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: 批量为视频生成字幕,并将字幕翻译成其它语言。 +Description: |- + 批量为视频生成字幕,并可将字幕翻译成其它语言。这是在之前的一个开源项目 VideoSubtitleGenerator 的基础上,制作成的一个客户端工具,以方便更多朋友们的使用。 + 它保留了之前 VideoSubtitleGenerator 这个命令行工具的全部特性,并新增了以下功能: + - 图形用户界面,操作更加便捷 + - 源语言字幕文件和目标语言字幕文件放在视频同目录下,方便播放时任意挂载字幕文件 + - 批量处理视频/音频/字幕文件 + - 支持视频/音频生成字幕 + - 支持对生成的字幕,或者导入的字幕进行翻译 + - 支持多种翻译服务: + - 火山引擎翻译 + - 百度翻译 + - DeepLX 翻译(批量翻译容易存在被限流的情况) + - 本地模型 Ollama 翻译 + - 支持 OpenAI 风格 API 翻译,如 deepseek, azure 等 + - 自定义字幕文件名,方便兼容不同的播放器挂载字幕识别 + - 自定义翻译后的字幕文件内容,支持纯翻译结果或原字幕+翻译结果 + - 项目集成 whisper.cpp,对 Apple Silicon 进行了优化,有较快的生成速度 + - 项目集成了 fluent-ffmpeg,无须单独安装 ffmpeg + - 支持运行本地安装的 whisper 命令 + - 支持选择模型下载源(国内镜像源或官方源) + - 支持自定义并发任务数量 +Tags: +- 字幕 +- 视频 +- 翻译 +- 音频 +ReleaseNotes: |- + [!IMPORTANT] + Windows 2019 已经停止支持,当前版本在 Windows 2022 系统中完成编译,如果存在运行相关问题,欢迎反馈。 + Windows 2019 has been discontinued. The current version was compiled in the Windows 2022 system. If there are any running-related issues, please feel free to provide feedback. + feat + - 支持 VAD,可有效提高字幕生成速度,以及解决静音导致的一些幻觉问题 + Support for VAD can effectively improve the speed of subtitle generation and solve some illusion problems caused by mute + - 新增支持谷歌翻译 #205 + Added support for Google Translate #205 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.1 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.1/buxuku.SmartSub.CUDA.12.2.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.1/buxuku.SmartSub.CUDA.12.2.yaml new file mode 100644 index 0000000000000..84908ce66be89 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.1/buxuku.SmartSub.CUDA.12.2.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: buxuku.SmartSub.CUDA.12.2 +PackageVersion: 2.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.2/buxuku.SmartSub.CUDA.12.2.installer.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.2/buxuku.SmartSub.CUDA.12.2.installer.yaml new file mode 100644 index 0000000000000..f3272daddf883 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.2/buxuku.SmartSub.CUDA.12.2.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: buxuku.SmartSub.CUDA.12.2 +PackageVersion: 2.5.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 31347239-13ac-5ed1-97a4-da01e9165cf8 +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.2/SmartSub_Windows_2.5.2_x64_12.2.0_generic.exe + InstallerSha256: A77D7A013BC0B8A4BED3F4D17788E816B574667FB93E673254B994519F248797 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.2/SmartSub_Windows_2.5.2_x64_12.2.0_generic.exe + InstallerSha256: A77D7A013BC0B8A4BED3F4D17788E816B574667FB93E673254B994519F248797 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.2/buxuku.SmartSub.CUDA.12.2.locale.en-US.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.2/buxuku.SmartSub.CUDA.12.2.locale.en-US.yaml new file mode 100644 index 0000000000000..fd5644e3531a1 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.2/buxuku.SmartSub.CUDA.12.2.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.2 +PackageVersion: 2.5.2 +PackageLocale: en-US +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: Lin Xiaodong +PackageName: Video Subtitle Master (CUDA 12.2) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: A powerful desktop application for batch generating subtitles for videos and translating them into other languages. +Description: |- + Video Subtitle Master is a powerful desktop application for batch generating subtitles for videos and translating them into other languages. This project is an enhanced version of the open-source VideoSubtitleGenerator, redesigned as a user-friendly client tool. + This application retains all the features of the original VideoSubtitleGenerator command-line tool, with the following enhancements: + - Graphical user interface for easier operation + - Source and target language subtitle files are saved in the same directory as the video for convenient subtitle attachment during playback + - Batch processing of video/audio/subtitle files + - Support for generating subtitles from video or audio files + - Ability to translate generated or imported subtitles + - Multiple translation services supported: + - Volcano Engine Translation + - Baidu Translation + - DeepLX Translation (Note: Batch translation may be rate-limited) + - Local Ollama model translation + - Support for OpenAI-style API translations (e.g., deepseek, azure) + - Customizable subtitle file naming for compatibility with various media players + - Flexible translated subtitle content: choose between pure translation or original + translated subtitles + - Integrated whisper.cpp with optimization for Apple Silicon, offering faster generation speeds + - Built-in fluent-ffmpeg, eliminating the need for separate ffmpeg installation + - Support for running locally installed whisper command + - Option to choose model download source (domestic mirror or official source) + - Customizable number of concurrent tasks +Tags: +- audio +- caption +- subtitle +- translate +- translation +- video +ReleaseNotes: |- + fix + - 修复 2.5.1 版本缺失 VAD 模型导致 VAD 失效的问题,请重新下载 2.5.2 版本 #208 + To fix the issue where the VAD model was missing in version 2.5.1, causing VAD to fail, please re-download version 2.5.2 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.2/buxuku.SmartSub.CUDA.12.2.locale.zh-CN.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.2/buxuku.SmartSub.CUDA.12.2.locale.zh-CN.yaml new file mode 100644 index 0000000000000..bc8dcf565181a --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.2/buxuku.SmartSub.CUDA.12.2.locale.zh-CN.yaml @@ -0,0 +1,58 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.2 +PackageVersion: 2.5.2 +PackageLocale: zh-CN +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: 林晓东 +PackageName: Video Subtitle Master (CUDA 12.2) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: 批量为视频生成字幕,并将字幕翻译成其它语言。 +Description: |- + 批量为视频生成字幕,并可将字幕翻译成其它语言。这是在之前的一个开源项目 VideoSubtitleGenerator 的基础上,制作成的一个客户端工具,以方便更多朋友们的使用。 + 它保留了之前 VideoSubtitleGenerator 这个命令行工具的全部特性,并新增了以下功能: + - 图形用户界面,操作更加便捷 + - 源语言字幕文件和目标语言字幕文件放在视频同目录下,方便播放时任意挂载字幕文件 + - 批量处理视频/音频/字幕文件 + - 支持视频/音频生成字幕 + - 支持对生成的字幕,或者导入的字幕进行翻译 + - 支持多种翻译服务: + - 火山引擎翻译 + - 百度翻译 + - DeepLX 翻译(批量翻译容易存在被限流的情况) + - 本地模型 Ollama 翻译 + - 支持 OpenAI 风格 API 翻译,如 deepseek, azure 等 + - 自定义字幕文件名,方便兼容不同的播放器挂载字幕识别 + - 自定义翻译后的字幕文件内容,支持纯翻译结果或原字幕+翻译结果 + - 项目集成 whisper.cpp,对 Apple Silicon 进行了优化,有较快的生成速度 + - 项目集成了 fluent-ffmpeg,无须单独安装 ffmpeg + - 支持运行本地安装的 whisper 命令 + - 支持选择模型下载源(国内镜像源或官方源) + - 支持自定义并发任务数量 +Tags: +- 字幕 +- 视频 +- 翻译 +- 音频 +ReleaseNotes: |- + fix + - 修复 2.5.1 版本缺失 VAD 模型导致 VAD 失效的问题,请重新下载 2.5.2 版本 #208 + To fix the issue where the VAD model was missing in version 2.5.1, causing VAD to fail, please re-download version 2.5.2 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.2 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.2/buxuku.SmartSub.CUDA.12.2.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.2/buxuku.SmartSub.CUDA.12.2.yaml new file mode 100644 index 0000000000000..04bd448ccaeb0 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/2.5.2/buxuku.SmartSub.CUDA.12.2.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: buxuku.SmartSub.CUDA.12.2 +PackageVersion: 2.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.2.Optimized.installer.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.2.Optimized.installer.yaml new file mode 100644 index 0000000000000..cbc8613e61d6f --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.2.Optimized.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: buxuku.SmartSub.CUDA.12.2.Optimized +PackageVersion: 2.5.1 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 31347239-13ac-5ed1-97a4-da01e9165cf8 +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.1/SmartSub_Windows_2.5.1_x64_12.2.0_optimized.exe + InstallerSha256: F52FF177065B1F7DCEDCC9C2E2876EADEDDB57CBDD270213D9DEA417496C3D51 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.1/SmartSub_Windows_2.5.1_x64_12.2.0_optimized.exe + InstallerSha256: F52FF177065B1F7DCEDCC9C2E2876EADEDDB57CBDD270213D9DEA417496C3D51 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.2.Optimized.locale.en-US.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.2.Optimized.locale.en-US.yaml new file mode 100644 index 0000000000000..a6358b3157b06 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.2.Optimized.locale.en-US.yaml @@ -0,0 +1,65 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.2.Optimized +PackageVersion: 2.5.1 +PackageLocale: en-US +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: Lin Xiaodong +PackageName: Video Subtitle Master (CUDA 12.2 Optimized) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: A powerful desktop application for batch generating subtitles for videos and translating them into other languages. +Description: |- + Video Subtitle Master is a powerful desktop application for batch generating subtitles for videos and translating them into other languages. This project is an enhanced version of the open-source VideoSubtitleGenerator, redesigned as a user-friendly client tool. + This application retains all the features of the original VideoSubtitleGenerator command-line tool, with the following enhancements: + - Graphical user interface for easier operation + - Source and target language subtitle files are saved in the same directory as the video for convenient subtitle attachment during playback + - Batch processing of video/audio/subtitle files + - Support for generating subtitles from video or audio files + - Ability to translate generated or imported subtitles + - Multiple translation services supported: + - Volcano Engine Translation + - Baidu Translation + - DeepLX Translation (Note: Batch translation may be rate-limited) + - Local Ollama model translation + - Support for OpenAI-style API translations (e.g., deepseek, azure) + - Customizable subtitle file naming for compatibility with various media players + - Flexible translated subtitle content: choose between pure translation or original + translated subtitles + - Integrated whisper.cpp with optimization for Apple Silicon, offering faster generation speeds + - Built-in fluent-ffmpeg, eliminating the need for separate ffmpeg installation + - Support for running locally installed whisper command + - Option to choose model download source (domestic mirror or official source) + - Customizable number of concurrent tasks +Tags: +- audio +- caption +- subtitle +- translate +- translation +- video +ReleaseNotes: |- + [!IMPORTANT] + Windows 2019 已经停止支持,当前版本在 Windows 2022 系统中完成编译,如果存在运行相关问题,欢迎反馈。 + Windows 2019 has been discontinued. The current version was compiled in the Windows 2022 system. If there are any running-related issues, please feel free to provide feedback. + feat + - 支持 VAD,可有效提高字幕生成速度,以及解决静音导致的一些幻觉问题 + Support for VAD can effectively improve the speed of subtitle generation and solve some illusion problems caused by mute + - 新增支持谷歌翻译 #205 + Added support for Google Translate #205 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.2.Optimized.locale.zh-CN.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.2.Optimized.locale.zh-CN.yaml new file mode 100644 index 0000000000000..767878c1281d4 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.2.Optimized.locale.zh-CN.yaml @@ -0,0 +1,63 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.2.Optimized +PackageVersion: 2.5.1 +PackageLocale: zh-CN +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: 林晓东 +PackageName: Video Subtitle Master (CUDA 12.2 Optimized) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: 批量为视频生成字幕,并将字幕翻译成其它语言。 +Description: |- + 批量为视频生成字幕,并可将字幕翻译成其它语言。这是在之前的一个开源项目 VideoSubtitleGenerator 的基础上,制作成的一个客户端工具,以方便更多朋友们的使用。 + 它保留了之前 VideoSubtitleGenerator 这个命令行工具的全部特性,并新增了以下功能: + - 图形用户界面,操作更加便捷 + - 源语言字幕文件和目标语言字幕文件放在视频同目录下,方便播放时任意挂载字幕文件 + - 批量处理视频/音频/字幕文件 + - 支持视频/音频生成字幕 + - 支持对生成的字幕,或者导入的字幕进行翻译 + - 支持多种翻译服务: + - 火山引擎翻译 + - 百度翻译 + - DeepLX 翻译(批量翻译容易存在被限流的情况) + - 本地模型 Ollama 翻译 + - 支持 OpenAI 风格 API 翻译,如 deepseek, azure 等 + - 自定义字幕文件名,方便兼容不同的播放器挂载字幕识别 + - 自定义翻译后的字幕文件内容,支持纯翻译结果或原字幕+翻译结果 + - 项目集成 whisper.cpp,对 Apple Silicon 进行了优化,有较快的生成速度 + - 项目集成了 fluent-ffmpeg,无须单独安装 ffmpeg + - 支持运行本地安装的 whisper 命令 + - 支持选择模型下载源(国内镜像源或官方源) + - 支持自定义并发任务数量 +Tags: +- 字幕 +- 视频 +- 翻译 +- 音频 +ReleaseNotes: |- + [!IMPORTANT] + Windows 2019 已经停止支持,当前版本在 Windows 2022 系统中完成编译,如果存在运行相关问题,欢迎反馈。 + Windows 2019 has been discontinued. The current version was compiled in the Windows 2022 system. If there are any running-related issues, please feel free to provide feedback. + feat + - 支持 VAD,可有效提高字幕生成速度,以及解决静音导致的一些幻觉问题 + Support for VAD can effectively improve the speed of subtitle generation and solve some illusion problems caused by mute + - 新增支持谷歌翻译 #205 + Added support for Google Translate #205 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.1 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.2.Optimized.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.2.Optimized.yaml new file mode 100644 index 0000000000000..190d9ca696283 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.2.Optimized.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: buxuku.SmartSub.CUDA.12.2.Optimized +PackageVersion: 2.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.2.Optimized.installer.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.2.Optimized.installer.yaml new file mode 100644 index 0000000000000..1da72be403e69 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.2.Optimized.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: buxuku.SmartSub.CUDA.12.2.Optimized +PackageVersion: 2.5.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 31347239-13ac-5ed1-97a4-da01e9165cf8 +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.2/SmartSub_Windows_2.5.2_x64_12.2.0_optimized.exe + InstallerSha256: 7DEEC70B3B9DC6B6C25A8205A9C629A8DA90692E6B547593BEFBC2110F70AF6D + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.2/SmartSub_Windows_2.5.2_x64_12.2.0_optimized.exe + InstallerSha256: 7DEEC70B3B9DC6B6C25A8205A9C629A8DA90692E6B547593BEFBC2110F70AF6D + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.2.Optimized.locale.en-US.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.2.Optimized.locale.en-US.yaml new file mode 100644 index 0000000000000..5a2aa7ad698e8 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.2.Optimized.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.2.Optimized +PackageVersion: 2.5.2 +PackageLocale: en-US +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: Lin Xiaodong +PackageName: Video Subtitle Master (CUDA 12.2 Optimized) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: A powerful desktop application for batch generating subtitles for videos and translating them into other languages. +Description: |- + Video Subtitle Master is a powerful desktop application for batch generating subtitles for videos and translating them into other languages. This project is an enhanced version of the open-source VideoSubtitleGenerator, redesigned as a user-friendly client tool. + This application retains all the features of the original VideoSubtitleGenerator command-line tool, with the following enhancements: + - Graphical user interface for easier operation + - Source and target language subtitle files are saved in the same directory as the video for convenient subtitle attachment during playback + - Batch processing of video/audio/subtitle files + - Support for generating subtitles from video or audio files + - Ability to translate generated or imported subtitles + - Multiple translation services supported: + - Volcano Engine Translation + - Baidu Translation + - DeepLX Translation (Note: Batch translation may be rate-limited) + - Local Ollama model translation + - Support for OpenAI-style API translations (e.g., deepseek, azure) + - Customizable subtitle file naming for compatibility with various media players + - Flexible translated subtitle content: choose between pure translation or original + translated subtitles + - Integrated whisper.cpp with optimization for Apple Silicon, offering faster generation speeds + - Built-in fluent-ffmpeg, eliminating the need for separate ffmpeg installation + - Support for running locally installed whisper command + - Option to choose model download source (domestic mirror or official source) + - Customizable number of concurrent tasks +Tags: +- audio +- caption +- subtitle +- translate +- translation +- video +ReleaseNotes: |- + fix + - 修复 2.5.1 版本缺失 VAD 模型导致 VAD 失效的问题,请重新下载 2.5.2 版本 #208 + To fix the issue where the VAD model was missing in version 2.5.1, causing VAD to fail, please re-download version 2.5.2 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.2.Optimized.locale.zh-CN.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.2.Optimized.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c82ce5793b9f6 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.2.Optimized.locale.zh-CN.yaml @@ -0,0 +1,58 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.2.Optimized +PackageVersion: 2.5.2 +PackageLocale: zh-CN +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: 林晓东 +PackageName: Video Subtitle Master (CUDA 12.2 Optimized) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: 批量为视频生成字幕,并将字幕翻译成其它语言。 +Description: |- + 批量为视频生成字幕,并可将字幕翻译成其它语言。这是在之前的一个开源项目 VideoSubtitleGenerator 的基础上,制作成的一个客户端工具,以方便更多朋友们的使用。 + 它保留了之前 VideoSubtitleGenerator 这个命令行工具的全部特性,并新增了以下功能: + - 图形用户界面,操作更加便捷 + - 源语言字幕文件和目标语言字幕文件放在视频同目录下,方便播放时任意挂载字幕文件 + - 批量处理视频/音频/字幕文件 + - 支持视频/音频生成字幕 + - 支持对生成的字幕,或者导入的字幕进行翻译 + - 支持多种翻译服务: + - 火山引擎翻译 + - 百度翻译 + - DeepLX 翻译(批量翻译容易存在被限流的情况) + - 本地模型 Ollama 翻译 + - 支持 OpenAI 风格 API 翻译,如 deepseek, azure 等 + - 自定义字幕文件名,方便兼容不同的播放器挂载字幕识别 + - 自定义翻译后的字幕文件内容,支持纯翻译结果或原字幕+翻译结果 + - 项目集成 whisper.cpp,对 Apple Silicon 进行了优化,有较快的生成速度 + - 项目集成了 fluent-ffmpeg,无须单独安装 ffmpeg + - 支持运行本地安装的 whisper 命令 + - 支持选择模型下载源(国内镜像源或官方源) + - 支持自定义并发任务数量 +Tags: +- 字幕 +- 视频 +- 翻译 +- 音频 +ReleaseNotes: |- + fix + - 修复 2.5.1 版本缺失 VAD 模型导致 VAD 失效的问题,请重新下载 2.5.2 版本 #208 + To fix the issue where the VAD model was missing in version 2.5.1, causing VAD to fail, please re-download version 2.5.2 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.2 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.2.Optimized.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.2.Optimized.yaml new file mode 100644 index 0000000000000..ed1f4f9f9c2b9 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/2/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.2.Optimized.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: buxuku.SmartSub.CUDA.12.2.Optimized +PackageVersion: 2.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.1/buxuku.SmartSub.CUDA.12.4.installer.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.1/buxuku.SmartSub.CUDA.12.4.installer.yaml new file mode 100644 index 0000000000000..be47081420797 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.1/buxuku.SmartSub.CUDA.12.4.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: buxuku.SmartSub.CUDA.12.4 +PackageVersion: 2.5.1 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 31347239-13ac-5ed1-97a4-da01e9165cf8 +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.1/SmartSub_Windows_2.5.1_x64_12.4.1_generic.exe + InstallerSha256: 910814A94E5661523DBF10F28EB9E5D6EC3ED8145AD64083ED110F512A351EF2 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.1/SmartSub_Windows_2.5.1_x64_12.4.1_generic.exe + InstallerSha256: 910814A94E5661523DBF10F28EB9E5D6EC3ED8145AD64083ED110F512A351EF2 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.1/buxuku.SmartSub.CUDA.12.4.locale.en-US.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.1/buxuku.SmartSub.CUDA.12.4.locale.en-US.yaml new file mode 100644 index 0000000000000..bce152e97565a --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.1/buxuku.SmartSub.CUDA.12.4.locale.en-US.yaml @@ -0,0 +1,65 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.4 +PackageVersion: 2.5.1 +PackageLocale: en-US +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: Lin Xiaodong +PackageName: Video Subtitle Master (CUDA 12.4) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: A powerful desktop application for batch generating subtitles for videos and translating them into other languages. +Description: |- + Video Subtitle Master is a powerful desktop application for batch generating subtitles for videos and translating them into other languages. This project is an enhanced version of the open-source VideoSubtitleGenerator, redesigned as a user-friendly client tool. + This application retains all the features of the original VideoSubtitleGenerator command-line tool, with the following enhancements: + - Graphical user interface for easier operation + - Source and target language subtitle files are saved in the same directory as the video for convenient subtitle attachment during playback + - Batch processing of video/audio/subtitle files + - Support for generating subtitles from video or audio files + - Ability to translate generated or imported subtitles + - Multiple translation services supported: + - Volcano Engine Translation + - Baidu Translation + - DeepLX Translation (Note: Batch translation may be rate-limited) + - Local Ollama model translation + - Support for OpenAI-style API translations (e.g., deepseek, azure) + - Customizable subtitle file naming for compatibility with various media players + - Flexible translated subtitle content: choose between pure translation or original + translated subtitles + - Integrated whisper.cpp with optimization for Apple Silicon, offering faster generation speeds + - Built-in fluent-ffmpeg, eliminating the need for separate ffmpeg installation + - Support for running locally installed whisper command + - Option to choose model download source (domestic mirror or official source) + - Customizable number of concurrent tasks +Tags: +- audio +- caption +- subtitle +- translate +- translation +- video +ReleaseNotes: |- + [!IMPORTANT] + Windows 2019 已经停止支持,当前版本在 Windows 2022 系统中完成编译,如果存在运行相关问题,欢迎反馈。 + Windows 2019 has been discontinued. The current version was compiled in the Windows 2022 system. If there are any running-related issues, please feel free to provide feedback. + feat + - 支持 VAD,可有效提高字幕生成速度,以及解决静音导致的一些幻觉问题 + Support for VAD can effectively improve the speed of subtitle generation and solve some illusion problems caused by mute + - 新增支持谷歌翻译 #205 + Added support for Google Translate #205 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.1/buxuku.SmartSub.CUDA.12.4.locale.zh-CN.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.1/buxuku.SmartSub.CUDA.12.4.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6b0c5cc1d9e2c --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.1/buxuku.SmartSub.CUDA.12.4.locale.zh-CN.yaml @@ -0,0 +1,63 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.4 +PackageVersion: 2.5.1 +PackageLocale: zh-CN +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: 林晓东 +PackageName: Video Subtitle Master (CUDA 12.4) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: 批量为视频生成字幕,并将字幕翻译成其它语言。 +Description: |- + 批量为视频生成字幕,并可将字幕翻译成其它语言。这是在之前的一个开源项目 VideoSubtitleGenerator 的基础上,制作成的一个客户端工具,以方便更多朋友们的使用。 + 它保留了之前 VideoSubtitleGenerator 这个命令行工具的全部特性,并新增了以下功能: + - 图形用户界面,操作更加便捷 + - 源语言字幕文件和目标语言字幕文件放在视频同目录下,方便播放时任意挂载字幕文件 + - 批量处理视频/音频/字幕文件 + - 支持视频/音频生成字幕 + - 支持对生成的字幕,或者导入的字幕进行翻译 + - 支持多种翻译服务: + - 火山引擎翻译 + - 百度翻译 + - DeepLX 翻译(批量翻译容易存在被限流的情况) + - 本地模型 Ollama 翻译 + - 支持 OpenAI 风格 API 翻译,如 deepseek, azure 等 + - 自定义字幕文件名,方便兼容不同的播放器挂载字幕识别 + - 自定义翻译后的字幕文件内容,支持纯翻译结果或原字幕+翻译结果 + - 项目集成 whisper.cpp,对 Apple Silicon 进行了优化,有较快的生成速度 + - 项目集成了 fluent-ffmpeg,无须单独安装 ffmpeg + - 支持运行本地安装的 whisper 命令 + - 支持选择模型下载源(国内镜像源或官方源) + - 支持自定义并发任务数量 +Tags: +- 字幕 +- 视频 +- 翻译 +- 音频 +ReleaseNotes: |- + [!IMPORTANT] + Windows 2019 已经停止支持,当前版本在 Windows 2022 系统中完成编译,如果存在运行相关问题,欢迎反馈。 + Windows 2019 has been discontinued. The current version was compiled in the Windows 2022 system. If there are any running-related issues, please feel free to provide feedback. + feat + - 支持 VAD,可有效提高字幕生成速度,以及解决静音导致的一些幻觉问题 + Support for VAD can effectively improve the speed of subtitle generation and solve some illusion problems caused by mute + - 新增支持谷歌翻译 #205 + Added support for Google Translate #205 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.1 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.1/buxuku.SmartSub.CUDA.12.4.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.1/buxuku.SmartSub.CUDA.12.4.yaml new file mode 100644 index 0000000000000..df2617e217162 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.1/buxuku.SmartSub.CUDA.12.4.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: buxuku.SmartSub.CUDA.12.4 +PackageVersion: 2.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.2/buxuku.SmartSub.CUDA.12.4.installer.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.2/buxuku.SmartSub.CUDA.12.4.installer.yaml new file mode 100644 index 0000000000000..06321ecd11e72 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.2/buxuku.SmartSub.CUDA.12.4.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: buxuku.SmartSub.CUDA.12.4 +PackageVersion: 2.5.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 31347239-13ac-5ed1-97a4-da01e9165cf8 +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.2/SmartSub_Windows_2.5.2_x64_12.4.1_generic.exe + InstallerSha256: ED8518AA139CEFF3210AAA1C963F365A68CBA99D17F7F46EF8B4891D5013836D + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.2/SmartSub_Windows_2.5.2_x64_12.4.1_generic.exe + InstallerSha256: ED8518AA139CEFF3210AAA1C963F365A68CBA99D17F7F46EF8B4891D5013836D + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.2/buxuku.SmartSub.CUDA.12.4.locale.en-US.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.2/buxuku.SmartSub.CUDA.12.4.locale.en-US.yaml new file mode 100644 index 0000000000000..cf6a4936dbd3a --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.2/buxuku.SmartSub.CUDA.12.4.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.4 +PackageVersion: 2.5.2 +PackageLocale: en-US +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: Lin Xiaodong +PackageName: Video Subtitle Master (CUDA 12.4) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: A powerful desktop application for batch generating subtitles for videos and translating them into other languages. +Description: |- + Video Subtitle Master is a powerful desktop application for batch generating subtitles for videos and translating them into other languages. This project is an enhanced version of the open-source VideoSubtitleGenerator, redesigned as a user-friendly client tool. + This application retains all the features of the original VideoSubtitleGenerator command-line tool, with the following enhancements: + - Graphical user interface for easier operation + - Source and target language subtitle files are saved in the same directory as the video for convenient subtitle attachment during playback + - Batch processing of video/audio/subtitle files + - Support for generating subtitles from video or audio files + - Ability to translate generated or imported subtitles + - Multiple translation services supported: + - Volcano Engine Translation + - Baidu Translation + - DeepLX Translation (Note: Batch translation may be rate-limited) + - Local Ollama model translation + - Support for OpenAI-style API translations (e.g., deepseek, azure) + - Customizable subtitle file naming for compatibility with various media players + - Flexible translated subtitle content: choose between pure translation or original + translated subtitles + - Integrated whisper.cpp with optimization for Apple Silicon, offering faster generation speeds + - Built-in fluent-ffmpeg, eliminating the need for separate ffmpeg installation + - Support for running locally installed whisper command + - Option to choose model download source (domestic mirror or official source) + - Customizable number of concurrent tasks +Tags: +- audio +- caption +- subtitle +- translate +- translation +- video +ReleaseNotes: |- + fix + - 修复 2.5.1 版本缺失 VAD 模型导致 VAD 失效的问题,请重新下载 2.5.2 版本 #208 + To fix the issue where the VAD model was missing in version 2.5.1, causing VAD to fail, please re-download version 2.5.2 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.2/buxuku.SmartSub.CUDA.12.4.locale.zh-CN.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.2/buxuku.SmartSub.CUDA.12.4.locale.zh-CN.yaml new file mode 100644 index 0000000000000..004b0a327d508 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.2/buxuku.SmartSub.CUDA.12.4.locale.zh-CN.yaml @@ -0,0 +1,58 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.4 +PackageVersion: 2.5.2 +PackageLocale: zh-CN +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: 林晓东 +PackageName: Video Subtitle Master (CUDA 12.4) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: 批量为视频生成字幕,并将字幕翻译成其它语言。 +Description: |- + 批量为视频生成字幕,并可将字幕翻译成其它语言。这是在之前的一个开源项目 VideoSubtitleGenerator 的基础上,制作成的一个客户端工具,以方便更多朋友们的使用。 + 它保留了之前 VideoSubtitleGenerator 这个命令行工具的全部特性,并新增了以下功能: + - 图形用户界面,操作更加便捷 + - 源语言字幕文件和目标语言字幕文件放在视频同目录下,方便播放时任意挂载字幕文件 + - 批量处理视频/音频/字幕文件 + - 支持视频/音频生成字幕 + - 支持对生成的字幕,或者导入的字幕进行翻译 + - 支持多种翻译服务: + - 火山引擎翻译 + - 百度翻译 + - DeepLX 翻译(批量翻译容易存在被限流的情况) + - 本地模型 Ollama 翻译 + - 支持 OpenAI 风格 API 翻译,如 deepseek, azure 等 + - 自定义字幕文件名,方便兼容不同的播放器挂载字幕识别 + - 自定义翻译后的字幕文件内容,支持纯翻译结果或原字幕+翻译结果 + - 项目集成 whisper.cpp,对 Apple Silicon 进行了优化,有较快的生成速度 + - 项目集成了 fluent-ffmpeg,无须单独安装 ffmpeg + - 支持运行本地安装的 whisper 命令 + - 支持选择模型下载源(国内镜像源或官方源) + - 支持自定义并发任务数量 +Tags: +- 字幕 +- 视频 +- 翻译 +- 音频 +ReleaseNotes: |- + fix + - 修复 2.5.1 版本缺失 VAD 模型导致 VAD 失效的问题,请重新下载 2.5.2 版本 #208 + To fix the issue where the VAD model was missing in version 2.5.1, causing VAD to fail, please re-download version 2.5.2 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.2 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.2/buxuku.SmartSub.CUDA.12.4.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.2/buxuku.SmartSub.CUDA.12.4.yaml new file mode 100644 index 0000000000000..159238c02978d --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/2.5.2/buxuku.SmartSub.CUDA.12.4.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: buxuku.SmartSub.CUDA.12.4 +PackageVersion: 2.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.4.Optimized.installer.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.4.Optimized.installer.yaml new file mode 100644 index 0000000000000..073d736f5efcb --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.4.Optimized.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: buxuku.SmartSub.CUDA.12.4.Optimized +PackageVersion: 2.5.1 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 31347239-13ac-5ed1-97a4-da01e9165cf8 +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.1/SmartSub_Windows_2.5.1_x64_12.4.1_optimized.exe + InstallerSha256: 8BF492DF405D9CC985848FF3351ECCBB48DA2A253ABF5317CD754EBB3A04764E + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.1/SmartSub_Windows_2.5.1_x64_12.4.1_optimized.exe + InstallerSha256: 8BF492DF405D9CC985848FF3351ECCBB48DA2A253ABF5317CD754EBB3A04764E + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.4.Optimized.locale.en-US.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.4.Optimized.locale.en-US.yaml new file mode 100644 index 0000000000000..c039dcc3f66ca --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.4.Optimized.locale.en-US.yaml @@ -0,0 +1,65 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.4.Optimized +PackageVersion: 2.5.1 +PackageLocale: en-US +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: Lin Xiaodong +PackageName: Video Subtitle Master (CUDA 12.4 Optimized) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: A powerful desktop application for batch generating subtitles for videos and translating them into other languages. +Description: |- + Video Subtitle Master is a powerful desktop application for batch generating subtitles for videos and translating them into other languages. This project is an enhanced version of the open-source VideoSubtitleGenerator, redesigned as a user-friendly client tool. + This application retains all the features of the original VideoSubtitleGenerator command-line tool, with the following enhancements: + - Graphical user interface for easier operation + - Source and target language subtitle files are saved in the same directory as the video for convenient subtitle attachment during playback + - Batch processing of video/audio/subtitle files + - Support for generating subtitles from video or audio files + - Ability to translate generated or imported subtitles + - Multiple translation services supported: + - Volcano Engine Translation + - Baidu Translation + - DeepLX Translation (Note: Batch translation may be rate-limited) + - Local Ollama model translation + - Support for OpenAI-style API translations (e.g., deepseek, azure) + - Customizable subtitle file naming for compatibility with various media players + - Flexible translated subtitle content: choose between pure translation or original + translated subtitles + - Integrated whisper.cpp with optimization for Apple Silicon, offering faster generation speeds + - Built-in fluent-ffmpeg, eliminating the need for separate ffmpeg installation + - Support for running locally installed whisper command + - Option to choose model download source (domestic mirror or official source) + - Customizable number of concurrent tasks +Tags: +- audio +- caption +- subtitle +- translate +- translation +- video +ReleaseNotes: |- + [!IMPORTANT] + Windows 2019 已经停止支持,当前版本在 Windows 2022 系统中完成编译,如果存在运行相关问题,欢迎反馈。 + Windows 2019 has been discontinued. The current version was compiled in the Windows 2022 system. If there are any running-related issues, please feel free to provide feedback. + feat + - 支持 VAD,可有效提高字幕生成速度,以及解决静音导致的一些幻觉问题 + Support for VAD can effectively improve the speed of subtitle generation and solve some illusion problems caused by mute + - 新增支持谷歌翻译 #205 + Added support for Google Translate #205 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.4.Optimized.locale.zh-CN.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.4.Optimized.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6754ee2de83d6 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.4.Optimized.locale.zh-CN.yaml @@ -0,0 +1,63 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.4.Optimized +PackageVersion: 2.5.1 +PackageLocale: zh-CN +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: 林晓东 +PackageName: Video Subtitle Master (CUDA 12.4 Optimized) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: 批量为视频生成字幕,并将字幕翻译成其它语言。 +Description: |- + 批量为视频生成字幕,并可将字幕翻译成其它语言。这是在之前的一个开源项目 VideoSubtitleGenerator 的基础上,制作成的一个客户端工具,以方便更多朋友们的使用。 + 它保留了之前 VideoSubtitleGenerator 这个命令行工具的全部特性,并新增了以下功能: + - 图形用户界面,操作更加便捷 + - 源语言字幕文件和目标语言字幕文件放在视频同目录下,方便播放时任意挂载字幕文件 + - 批量处理视频/音频/字幕文件 + - 支持视频/音频生成字幕 + - 支持对生成的字幕,或者导入的字幕进行翻译 + - 支持多种翻译服务: + - 火山引擎翻译 + - 百度翻译 + - DeepLX 翻译(批量翻译容易存在被限流的情况) + - 本地模型 Ollama 翻译 + - 支持 OpenAI 风格 API 翻译,如 deepseek, azure 等 + - 自定义字幕文件名,方便兼容不同的播放器挂载字幕识别 + - 自定义翻译后的字幕文件内容,支持纯翻译结果或原字幕+翻译结果 + - 项目集成 whisper.cpp,对 Apple Silicon 进行了优化,有较快的生成速度 + - 项目集成了 fluent-ffmpeg,无须单独安装 ffmpeg + - 支持运行本地安装的 whisper 命令 + - 支持选择模型下载源(国内镜像源或官方源) + - 支持自定义并发任务数量 +Tags: +- 字幕 +- 视频 +- 翻译 +- 音频 +ReleaseNotes: |- + [!IMPORTANT] + Windows 2019 已经停止支持,当前版本在 Windows 2022 系统中完成编译,如果存在运行相关问题,欢迎反馈。 + Windows 2019 has been discontinued. The current version was compiled in the Windows 2022 system. If there are any running-related issues, please feel free to provide feedback. + feat + - 支持 VAD,可有效提高字幕生成速度,以及解决静音导致的一些幻觉问题 + Support for VAD can effectively improve the speed of subtitle generation and solve some illusion problems caused by mute + - 新增支持谷歌翻译 #205 + Added support for Google Translate #205 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.1 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.4.Optimized.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.4.Optimized.yaml new file mode 100644 index 0000000000000..41798b9ec1a1f --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.1/buxuku.SmartSub.CUDA.12.4.Optimized.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: buxuku.SmartSub.CUDA.12.4.Optimized +PackageVersion: 2.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.4.Optimized.installer.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.4.Optimized.installer.yaml new file mode 100644 index 0000000000000..1194aa37fb31f --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.4.Optimized.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: buxuku.SmartSub.CUDA.12.4.Optimized +PackageVersion: 2.5.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 31347239-13ac-5ed1-97a4-da01e9165cf8 +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.2/SmartSub_Windows_2.5.2_x64_12.4.1_optimized.exe + InstallerSha256: 5BFF7A353C3214BBF8E0B3C6C00A974305C6B86F70D9A35AFEFF75905232B63A + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/buxuku/SmartSub/releases/download/v2.5.2/SmartSub_Windows_2.5.2_x64_12.4.1_optimized.exe + InstallerSha256: 5BFF7A353C3214BBF8E0B3C6C00A974305C6B86F70D9A35AFEFF75905232B63A + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.4.Optimized.locale.en-US.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.4.Optimized.locale.en-US.yaml new file mode 100644 index 0000000000000..7de4a9e29a555 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.4.Optimized.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.4.Optimized +PackageVersion: 2.5.2 +PackageLocale: en-US +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: Lin Xiaodong +PackageName: Video Subtitle Master (CUDA 12.4 Optimized) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: A powerful desktop application for batch generating subtitles for videos and translating them into other languages. +Description: |- + Video Subtitle Master is a powerful desktop application for batch generating subtitles for videos and translating them into other languages. This project is an enhanced version of the open-source VideoSubtitleGenerator, redesigned as a user-friendly client tool. + This application retains all the features of the original VideoSubtitleGenerator command-line tool, with the following enhancements: + - Graphical user interface for easier operation + - Source and target language subtitle files are saved in the same directory as the video for convenient subtitle attachment during playback + - Batch processing of video/audio/subtitle files + - Support for generating subtitles from video or audio files + - Ability to translate generated or imported subtitles + - Multiple translation services supported: + - Volcano Engine Translation + - Baidu Translation + - DeepLX Translation (Note: Batch translation may be rate-limited) + - Local Ollama model translation + - Support for OpenAI-style API translations (e.g., deepseek, azure) + - Customizable subtitle file naming for compatibility with various media players + - Flexible translated subtitle content: choose between pure translation or original + translated subtitles + - Integrated whisper.cpp with optimization for Apple Silicon, offering faster generation speeds + - Built-in fluent-ffmpeg, eliminating the need for separate ffmpeg installation + - Support for running locally installed whisper command + - Option to choose model download source (domestic mirror or official source) + - Customizable number of concurrent tasks +Tags: +- audio +- caption +- subtitle +- translate +- translation +- video +ReleaseNotes: |- + fix + - 修复 2.5.1 版本缺失 VAD 模型导致 VAD 失效的问题,请重新下载 2.5.2 版本 #208 + To fix the issue where the VAD model was missing in version 2.5.1, causing VAD to fail, please re-download version 2.5.2 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.4.Optimized.locale.zh-CN.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.4.Optimized.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3f4cbc7fdc8a7 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.4.Optimized.locale.zh-CN.yaml @@ -0,0 +1,58 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: buxuku.SmartSub.CUDA.12.4.Optimized +PackageVersion: 2.5.2 +PackageLocale: zh-CN +Publisher: buxuku +PublisherUrl: https://blog.linxiaodong.com/ +PublisherSupportUrl: https://github.com/buxuku/SmartSub/issues +Author: 林晓东 +PackageName: Video Subtitle Master (CUDA 12.4 Optimized) +PackageUrl: https://github.com/buxuku/SmartSub +License: MIT +LicenseUrl: https://github.com/buxuku/SmartSub/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Lin Xiaodong +ShortDescription: 批量为视频生成字幕,并将字幕翻译成其它语言。 +Description: |- + 批量为视频生成字幕,并可将字幕翻译成其它语言。这是在之前的一个开源项目 VideoSubtitleGenerator 的基础上,制作成的一个客户端工具,以方便更多朋友们的使用。 + 它保留了之前 VideoSubtitleGenerator 这个命令行工具的全部特性,并新增了以下功能: + - 图形用户界面,操作更加便捷 + - 源语言字幕文件和目标语言字幕文件放在视频同目录下,方便播放时任意挂载字幕文件 + - 批量处理视频/音频/字幕文件 + - 支持视频/音频生成字幕 + - 支持对生成的字幕,或者导入的字幕进行翻译 + - 支持多种翻译服务: + - 火山引擎翻译 + - 百度翻译 + - DeepLX 翻译(批量翻译容易存在被限流的情况) + - 本地模型 Ollama 翻译 + - 支持 OpenAI 风格 API 翻译,如 deepseek, azure 等 + - 自定义字幕文件名,方便兼容不同的播放器挂载字幕识别 + - 自定义翻译后的字幕文件内容,支持纯翻译结果或原字幕+翻译结果 + - 项目集成 whisper.cpp,对 Apple Silicon 进行了优化,有较快的生成速度 + - 项目集成了 fluent-ffmpeg,无须单独安装 ffmpeg + - 支持运行本地安装的 whisper 命令 + - 支持选择模型下载源(国内镜像源或官方源) + - 支持自定义并发任务数量 +Tags: +- 字幕 +- 视频 +- 翻译 +- 音频 +ReleaseNotes: |- + fix + - 修复 2.5.1 版本缺失 VAD 模型导致 VAD 失效的问题,请重新下载 2.5.2 版本 #208 + To fix the issue where the VAD model was missing in version 2.5.1, causing VAD to fail, please re-download version 2.5.2 + 下载地址 Download link + 夸克网盘 https://pan.quark.cn/s/0b16479b40ca + 系统 System 芯片 Chip 显卡 Graphics 下载链接 Download link + Windows x64 无 CUDA windows-x64_no_cuda + Windows x64 CUDA >= 11.8.0 < 12.0.0 windows-x64_cuda11.8.0 + Windows x64 CUDA >= 12.2.2 windows-x64_cuda12.2.0 + Windows x64 CUDA >= 12.4.1 windows-x64_cuda12.4.1 + Mac Apple 支持 CoreML mac-arm64 + Mac Intel 不支持 CoreML mac-x64 +ReleaseNotesUrl: https://github.com/buxuku/SmartSub/releases/tag/v2.5.2 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.4.Optimized.yaml b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.4.Optimized.yaml new file mode 100644 index 0000000000000..485a928b17c11 --- /dev/null +++ b/manifests/b/buxuku/SmartSub/CUDA/12/4/Optimized/2.5.2/buxuku.SmartSub.CUDA.12.4.Optimized.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: buxuku.SmartSub.CUDA.12.4.Optimized +PackageVersion: 2.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/byte-physics/ipt/0.9.0/byte-physics.ipt.installer.yaml b/manifests/b/byte-physics/ipt/0.9.0/byte-physics.ipt.installer.yaml new file mode 100644 index 0000000000000..33041f21b54d6 --- /dev/null +++ b/manifests/b/byte-physics/ipt/0.9.0/byte-physics.ipt.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: byte-physics.ipt +PackageVersion: 0.9.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\byte physics e.K.\IPT' + Files: + - RelativeFilePath: bin\ipt.exe + FileType: launch + DisplayName: ipt.exe + - RelativeFilePath: Uninstall.exe + FileType: uninstall +Installers: +- Architecture: x64 + InstallerUrl: https://docs.byte-physics.de/ipt-static/installer/0.9.0/ipt-installer-0.9.0-win64.exe + InstallerSha256: 81a137c76bbe03a958aec2a313bcaff196cd06e89ddb02b4d283255643c5a162 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-25 diff --git a/manifests/b/byte-physics/ipt/0.9.0/byte-physics.ipt.locale.en-US.yaml b/manifests/b/byte-physics/ipt/0.9.0/byte-physics.ipt.locale.en-US.yaml new file mode 100644 index 0000000000000..d48c6682b4275 --- /dev/null +++ b/manifests/b/byte-physics/ipt/0.9.0/byte-physics.ipt.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: byte-physics.ipt +PackageVersion: 0.9.0 +PackageLocale: en-US +Publisher: byte physics e.K. +PublisherUrl: https://www.byte-physics.de/ +PackageName: ipt +PackageUrl: https://docs.byte-physics.de/ipt/ +License: Creative Commons Attribution-NoDerivatives 4.0 International +Copyright: byte physics e.K. +ShortDescription: A collection of tools to help develop and maintain projects written for Igor Pro. +Tags: +- command-line +- igor-pro +- developer-tools +- utilities +- cli +- cmd +ReleaseNotesUrl: https://docs.byte-physics.de/ipt/changelog.html +Documentations: +- DocumentLabel: Main Documentation + DocumentUrl: https://docs.byte-physics.de/ipt/ +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/b/byte-physics/ipt/0.9.0/byte-physics.ipt.yaml b/manifests/b/byte-physics/ipt/0.9.0/byte-physics.ipt.yaml new file mode 100644 index 0000000000000..96408b94e2874 --- /dev/null +++ b/manifests/b/byte-physics/ipt/0.9.0/byte-physics.ipt.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: byte-physics.ipt +PackageVersion: 0.9.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/c/C-PartnerSystemhausGmbH/DocuToolbox/4.4.42/C-PartnerSystemhausGmbH.DocuToolbox.installer.yaml b/manifests/c/C-PartnerSystemhausGmbH/DocuToolbox/4.4.42/C-PartnerSystemhausGmbH.DocuToolbox.installer.yaml new file mode 100644 index 0000000000000..05159de0ae4f2 --- /dev/null +++ b/manifests/c/C-PartnerSystemhausGmbH/DocuToolbox/4.4.42/C-PartnerSystemhausGmbH.DocuToolbox.installer.yaml @@ -0,0 +1,18 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: C-PartnerSystemhausGmbH.DocuToolbox +PackageVersion: 4.4.42 +InstallerLocale: de-DE +InstallerType: zip +NestedInstallerType: msi +NestedInstallerFiles: +- RelativeFilePath: setup.msi +InstallerSwitches: + Silent: /qn +ProductCode: '{ECB8B65A-F4FF-4815-8CE1-40A9FF881290}' +Installers: +- Architecture: x86 + InstallerUrl: https://download.c-partner.com/winget/4.4.42/DocuToolbox.zip + InstallerSha256: dbd8dabed0db2138191cbe00e6db7d745898d65f7d217070007d97c953215874 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/C-PartnerSystemhausGmbH/DocuToolbox/4.4.42/C-PartnerSystemhausGmbH.DocuToolbox.locale.de-DE.yaml b/manifests/c/C-PartnerSystemhausGmbH/DocuToolbox/4.4.42/C-PartnerSystemhausGmbH.DocuToolbox.locale.de-DE.yaml new file mode 100644 index 0000000000000..dbbdfd13cf863 --- /dev/null +++ b/manifests/c/C-PartnerSystemhausGmbH/DocuToolbox/4.4.42/C-PartnerSystemhausGmbH.DocuToolbox.locale.de-DE.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: C-PartnerSystemhausGmbH.DocuToolbox +PackageVersion: 4.4.42 +PackageLocale: de-DE +Publisher: C-Partner Systemhaus GmbH +PublisherUrl: https://www.c-partner.com +PublisherSupportUrl: https://www.c-partner.com/kontakt/ +PrivacyUrl: https://www.c-partner.com/datenschutzerklaerung/ +Author: C-Partner Systemhaus GmbH +PackageName: DocuToolbox +License: Proprietary +Copyright: Copyright (C) 2013-2025 C-Partner Systemhaus GmbH – Alle Rechte vorbehalten. +ShortDescription: DocuToolbox +Tags: +- DocuWare +- Barcode +- Indexing +- Import +Documentations: +- DocumentLabel: Anwenderhandbuch – DocuToolbox Version 4.4 + DocumentUrl: https://download.c-partner.com/WinGet/4.4.42/Handbuch.pdf +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/C-PartnerSystemhausGmbH/DocuToolbox/4.4.42/C-PartnerSystemhausGmbH.DocuToolbox.yaml b/manifests/c/C-PartnerSystemhausGmbH/DocuToolbox/4.4.42/C-PartnerSystemhausGmbH.DocuToolbox.yaml new file mode 100644 index 0000000000000..be77af3dbb71d --- /dev/null +++ b/manifests/c/C-PartnerSystemhausGmbH/DocuToolbox/4.4.42/C-PartnerSystemhausGmbH.DocuToolbox.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: C-PartnerSystemhausGmbH.DocuToolbox +PackageVersion: 4.4.42 +DefaultLocale: de-DE +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/C-PartnerSystemhausGmbH/QuickFinder/4.4.42/C-PartnerSystemhausGmbH.QuickFinder.installer.yaml b/manifests/c/C-PartnerSystemhausGmbH/QuickFinder/4.4.42/C-PartnerSystemhausGmbH.QuickFinder.installer.yaml new file mode 100644 index 0000000000000..0186cd9221b1a --- /dev/null +++ b/manifests/c/C-PartnerSystemhausGmbH/QuickFinder/4.4.42/C-PartnerSystemhausGmbH.QuickFinder.installer.yaml @@ -0,0 +1,18 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: C-PartnerSystemhausGmbH.QuickFinder +PackageVersion: 4.4.42 +InstallerLocale: de-DE +InstallerType: zip +NestedInstallerType: msi +NestedInstallerFiles: +- RelativeFilePath: setup.msi +InstallerSwitches: + Silent: /qn +ProductCode: '{00F1D675-B50D-4BAF-85ED-3E6C4447B1C3}' +Installers: +- Architecture: x86 + InstallerUrl: https://download.c-partner.com/winget/4.4.42/QuickFinder.zip + InstallerSha256: e8ebbc236a87cabb64c3713d8229c71e4a20181a5c99ee9f24f47a8e2cd3aff9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/C-PartnerSystemhausGmbH/QuickFinder/4.4.42/C-PartnerSystemhausGmbH.QuickFinder.locale.de-DE.yaml b/manifests/c/C-PartnerSystemhausGmbH/QuickFinder/4.4.42/C-PartnerSystemhausGmbH.QuickFinder.locale.de-DE.yaml new file mode 100644 index 0000000000000..e06abfbecec33 --- /dev/null +++ b/manifests/c/C-PartnerSystemhausGmbH/QuickFinder/4.4.42/C-PartnerSystemhausGmbH.QuickFinder.locale.de-DE.yaml @@ -0,0 +1,23 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: C-PartnerSystemhausGmbH.QuickFinder +PackageVersion: 4.4.42 +PackageLocale: de-DE +Publisher: C-Partner Systemhaus GmbH +PublisherUrl: https://www.c-partner.com +PublisherSupportUrl: https://www.c-partner.com/kontakt/ +PrivacyUrl: https://www.c-partner.com/datenschutzerklaerung/ +Author: C-Partner Systemhaus GmbH +PackageName: QuickFinder +License: Proprietary +Copyright: Copyright (C) 2013-2025 C-Partner Systemhaus GmbH – Alle Rechte vorbehalten. +ShortDescription: QuickFinder +Tags: +- DocuWare +- OCR +- Hotkey +Documentations: +- DocumentLabel: Anwenderhandbuch – DocuToolbox Version 4.4 + DocumentUrl: https://download.c-partner.com/WinGet/4.4.42/Handbuch.pdf +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/C-PartnerSystemhausGmbH/QuickFinder/4.4.42/C-PartnerSystemhausGmbH.QuickFinder.yaml b/manifests/c/C-PartnerSystemhausGmbH/QuickFinder/4.4.42/C-PartnerSystemhausGmbH.QuickFinder.yaml new file mode 100644 index 0000000000000..5103265113563 --- /dev/null +++ b/manifests/c/C-PartnerSystemhausGmbH/QuickFinder/4.4.42/C-PartnerSystemhausGmbH.QuickFinder.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: C-PartnerSystemhausGmbH.QuickFinder +PackageVersion: 4.4.42 +DefaultLocale: de-DE +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CABS/SalesPrix/6.21.0/CABS.SalesPrix.installer.yaml b/manifests/c/CABS/SalesPrix/6.21.0/CABS.SalesPrix.installer.yaml deleted file mode 100644 index 47e15452875bb..0000000000000 --- a/manifests/c/CABS/SalesPrix/6.21.0/CABS.SalesPrix.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/23 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: CABS.SalesPrix -PackageVersion: 6.21.0 -InstallerType: nullsoft -Installers: -- Architecture: x86 - InstallerUrl: https://www.scanprix.de/Setup/Setup_SalesPrix.exe - InstallerSha256: 271745EF7F1A4FCA361239CAC93B84A4A802EDC3E08DF1E57CEEC9BA67A32E9E - AppsAndFeaturesEntries: - - DisplayName: CABS-Deinstaller - ProductCode: ScanPrix-Programme -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/c/CABS/SalesPrix/6.21.0/CABS.SalesPrix.yaml b/manifests/c/CABS/SalesPrix/6.21.0/CABS.SalesPrix.yaml deleted file mode 100644 index 0a5a7e6edcd57..0000000000000 --- a/manifests/c/CABS/SalesPrix/6.21.0/CABS.SalesPrix.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/23 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: CABS.SalesPrix -PackageVersion: 6.21.0 -DefaultLocale: de-DE -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/c/CABS/SalesPrix/6.22.0/CABS.SalesPrix.installer.yaml b/manifests/c/CABS/SalesPrix/6.22.0/CABS.SalesPrix.installer.yaml new file mode 100644 index 0000000000000..4463c15946953 --- /dev/null +++ b/manifests/c/CABS/SalesPrix/6.22.0/CABS.SalesPrix.installer.yaml @@ -0,0 +1,15 @@ +# 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: CABS.SalesPrix +PackageVersion: 6.22.0 +InstallerType: nullsoft +Installers: +- Architecture: x86 + InstallerUrl: https://www.scanprix.de/Setup/Setup_SalesPrix.exe + InstallerSha256: 39F75EF7B589B65555BDC71B353C5348A0772E29FBF9DF558F3DB9C166B52F7C + AppsAndFeaturesEntries: + - DisplayName: CABS-Deinstaller + ProductCode: ScanPrix-Programme +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CABS/SalesPrix/6.21.0/CABS.SalesPrix.locale.de-DE.yaml b/manifests/c/CABS/SalesPrix/6.22.0/CABS.SalesPrix.locale.de-DE.yaml similarity index 79% rename from manifests/c/CABS/SalesPrix/6.21.0/CABS.SalesPrix.locale.de-DE.yaml rename to manifests/c/CABS/SalesPrix/6.22.0/CABS.SalesPrix.locale.de-DE.yaml index afd65a856c86a..ed1870b3e24bf 100644 --- a/manifests/c/CABS/SalesPrix/6.21.0/CABS.SalesPrix.locale.de-DE.yaml +++ b/manifests/c/CABS/SalesPrix/6.22.0/CABS.SalesPrix.locale.de-DE.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/May/23 +# 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: CABS.SalesPrix -PackageVersion: 6.21.0 +PackageVersion: 6.22.0 PackageLocale: de-DE Publisher: CAB+S GmbH PackageName: SalesPrix diff --git a/manifests/c/CABS/SalesPrix/6.22.0/CABS.SalesPrix.yaml b/manifests/c/CABS/SalesPrix/6.22.0/CABS.SalesPrix.yaml new file mode 100644 index 0000000000000..0114484ed41d2 --- /dev/null +++ b/manifests/c/CABS/SalesPrix/6.22.0/CABS.SalesPrix.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: CABS.SalesPrix +PackageVersion: 6.22.0 +DefaultLocale: de-DE +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CABS/ScanPrix/6.21.0/CABS.ScanPrix.installer.yaml b/manifests/c/CABS/ScanPrix/6.21.0/CABS.ScanPrix.installer.yaml deleted file mode 100644 index d3bdf4ccc33b4..0000000000000 --- a/manifests/c/CABS/ScanPrix/6.21.0/CABS.ScanPrix.installer.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/23 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: CABS.ScanPrix -PackageVersion: 6.21.0 -InstallerType: nullsoft -Installers: -- Architecture: x86 - InstallerUrl: https://www.scanprix.de/Setup/Setup_ScanPrix.exe - InstallerSha256: 39A3C5C0636F23990E01420CAA58D152320B9CEDDFFDC604FC35D907753A0B46 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/c/CABS/ScanPrix/6.21.0/CABS.ScanPrix.yaml b/manifests/c/CABS/ScanPrix/6.21.0/CABS.ScanPrix.yaml deleted file mode 100644 index 9845920d958f4..0000000000000 --- a/manifests/c/CABS/ScanPrix/6.21.0/CABS.ScanPrix.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/23 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: CABS.ScanPrix -PackageVersion: 6.21.0 -DefaultLocale: de-DE -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/c/CABS/ScanPrix/6.22.0/CABS.ScanPrix.installer.yaml b/manifests/c/CABS/ScanPrix/6.22.0/CABS.ScanPrix.installer.yaml new file mode 100644 index 0000000000000..dbfcf2bba49d3 --- /dev/null +++ b/manifests/c/CABS/ScanPrix/6.22.0/CABS.ScanPrix.installer.yaml @@ -0,0 +1,12 @@ +# 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: CABS.ScanPrix +PackageVersion: 6.22.0 +InstallerType: nullsoft +Installers: +- Architecture: x86 + InstallerUrl: https://www.scanprix.de/Setup/Setup_ScanPrix.exe + InstallerSha256: 4FD66CADE5A755A836C3E5FD662D2798F0083928851ED5AA01DE87BB3DCF089F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CABS/ScanPrix/6.21.0/CABS.ScanPrix.locale.de-DE.yaml b/manifests/c/CABS/ScanPrix/6.22.0/CABS.ScanPrix.locale.de-DE.yaml similarity index 84% rename from manifests/c/CABS/ScanPrix/6.21.0/CABS.ScanPrix.locale.de-DE.yaml rename to manifests/c/CABS/ScanPrix/6.22.0/CABS.ScanPrix.locale.de-DE.yaml index 308692695fdaa..b25abc3656f80 100644 --- a/manifests/c/CABS/ScanPrix/6.21.0/CABS.ScanPrix.locale.de-DE.yaml +++ b/manifests/c/CABS/ScanPrix/6.22.0/CABS.ScanPrix.locale.de-DE.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/May/23 +# 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: CABS.ScanPrix -PackageVersion: 6.21.0 +PackageVersion: 6.22.0 PackageLocale: de-DE Publisher: CAB+S GmbH PublisherUrl: https://www.scanprix.de diff --git a/manifests/c/CABS/ScanPrix/6.22.0/CABS.ScanPrix.yaml b/manifests/c/CABS/ScanPrix/6.22.0/CABS.ScanPrix.yaml new file mode 100644 index 0000000000000..db2966822fb8b --- /dev/null +++ b/manifests/c/CABS/ScanPrix/6.22.0/CABS.ScanPrix.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: CABS.ScanPrix +PackageVersion: 6.22.0 +DefaultLocale: de-DE +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.10.1/CCPGames.EVEOnline.installer.yaml b/manifests/c/CCPGames/EVEOnline/1.10.1/CCPGames.EVEOnline.installer.yaml deleted file mode 100644 index 1f898647526d9..0000000000000 --- a/manifests/c/CCPGames/EVEOnline/1.10.1/CCPGames.EVEOnline.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/27 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: CCPGames.EVEOnline -PackageVersion: 1.10.1 -InstallerType: exe -Scope: user -UpgradeBehavior: install -Installers: -- Architecture: x64 - InstallerUrl: https://launcher.ccpgames.com/eve-online/release/win32/x64/eve-online-latest+Setup.exe - InstallerSha256: 4E58CEC94C849F54681E715F5CA6471108C40F6ABAC8081E67A7AC89428F9B0E - ProductCode: "eve-online" -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.10.1/CCPGames.EVEOnline.yaml b/manifests/c/CCPGames/EVEOnline/1.10.1/CCPGames.EVEOnline.yaml deleted file mode 100644 index 5ec9c97d6eda9..0000000000000 --- a/manifests/c/CCPGames/EVEOnline/1.10.1/CCPGames.EVEOnline.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/27 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: CCPGames.EVEOnline -PackageVersion: 1.10.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.11.0/CCPGames.EVEOnline.installer.yaml b/manifests/c/CCPGames/EVEOnline/1.11.0/CCPGames.EVEOnline.installer.yaml new file mode 100644 index 0000000000000..5abfa34176636 --- /dev/null +++ b/manifests/c/CCPGames/EVEOnline/1.11.0/CCPGames.EVEOnline.installer.yaml @@ -0,0 +1,15 @@ +# Automatically updated by the winget bot at 2025/Jul/02 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CCPGames.EVEOnline +PackageVersion: 1.11.0 +InstallerType: exe +Scope: user +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://launcher.ccpgames.com/eve-online/release/win32/x64/eve-online-latest+Setup.exe + InstallerSha256: 622DBBE888BF2E954512F9F7604D46AF94F044ED4614F57277965D274C8A9F9A + ProductCode: "eve-online" +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.10.1/CCPGames.EVEOnline.locale.en-US.yaml b/manifests/c/CCPGames/EVEOnline/1.11.0/CCPGames.EVEOnline.locale.en-US.yaml similarity index 82% rename from manifests/c/CCPGames/EVEOnline/1.10.1/CCPGames.EVEOnline.locale.en-US.yaml rename to manifests/c/CCPGames/EVEOnline/1.11.0/CCPGames.EVEOnline.locale.en-US.yaml index bf750c3b6839d..562f8735ba774 100644 --- a/manifests/c/CCPGames/EVEOnline/1.10.1/CCPGames.EVEOnline.locale.en-US.yaml +++ b/manifests/c/CCPGames/EVEOnline/1.11.0/CCPGames.EVEOnline.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/May/27 +# Automatically updated by the winget bot at 2025/Jul/02 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CCPGames.EVEOnline -PackageVersion: "1.10.1" +PackageVersion: "1.11.0" PackageLocale: en-US Publisher: "CCP ehf" PackageName: "eve-online" diff --git a/manifests/c/CCPGames/EVEOnline/1.11.0/CCPGames.EVEOnline.yaml b/manifests/c/CCPGames/EVEOnline/1.11.0/CCPGames.EVEOnline.yaml new file mode 100644 index 0000000000000..53bcfbf64a644 --- /dev/null +++ b/manifests/c/CCPGames/EVEOnline/1.11.0/CCPGames.EVEOnline.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/02 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CCPGames.EVEOnline +PackageVersion: 1.11.0 +DefaultLocale: en-US +ManifestType: version +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.yaml b/manifests/c/CDESoftware/BTM-2023/23.04.0003/CDESoftware.BTM-2023.yaml deleted file mode 100644 index 395eb6653d7a8..0000000000000 --- a/manifests/c/CDESoftware/BTM-2023/23.04.0003/CDESoftware.BTM-2023.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/28 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: CDESoftware.BTM-2023 -PackageVersion: 23.04.0003 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/c/CDESoftware/BTM-2023/23.04.0004/CDESoftware.BTM-2023.installer.yaml b/manifests/c/CDESoftware/BTM-2023/23.04.0004/CDESoftware.BTM-2023.installer.yaml new file mode 100644 index 0000000000000..aed0b623f6116 --- /dev/null +++ b/manifests/c/CDESoftware/BTM-2023/23.04.0004/CDESoftware.BTM-2023.installer.yaml @@ -0,0 +1,15 @@ +# 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: CDESoftware.BTM-2023 +PackageVersion: 23.04.0004 +InstallerType: exe +InstallerSwitches: + Silent: /exenoui /qn /norestart + SilentWithProgress: /exenoui /qn /norestart +Installers: +- Architecture: x86 + InstallerUrl: https://static.cdesoftware.com/btm2023/BTM2023INSTALLER.EXE + InstallerSha256: 6949864A4CE16F5872341F26EFBE6C88216E5F885DCB8ACCA258B6009BF2E264 +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.0004/CDESoftware.BTM-2023.locale.en-US.yaml similarity index 78% rename from manifests/c/CDESoftware/BTM-2023/23.04.0003/CDESoftware.BTM-2023.locale.en-US.yaml rename to manifests/c/CDESoftware/BTM-2023/23.04.0004/CDESoftware.BTM-2023.locale.en-US.yaml index c1546d286c693..5910c1d6b3e0a 100644 --- a/manifests/c/CDESoftware/BTM-2023/23.04.0003/CDESoftware.BTM-2023.locale.en-US.yaml +++ b/manifests/c/CDESoftware/BTM-2023/23.04.0004/CDESoftware.BTM-2023.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/May/28 +# 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: CDESoftware.BTM-2023 -PackageVersion: 23.04.0003 +PackageVersion: 23.04.0004 PackageLocale: en-US Publisher: CDE Software PackageName: BTM-2023 diff --git a/manifests/c/CDESoftware/BTM-2023/23.04.0004/CDESoftware.BTM-2023.yaml b/manifests/c/CDESoftware/BTM-2023/23.04.0004/CDESoftware.BTM-2023.yaml new file mode 100644 index 0000000000000..b24df999cfe55 --- /dev/null +++ b/manifests/c/CDESoftware/BTM-2023/23.04.0004/CDESoftware.BTM-2023.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: CDESoftware.BTM-2023 +PackageVersion: 23.04.0004 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CISDI/Qingtui/7.5.1/CISDI.Qingtui.installer.yaml b/manifests/c/CISDI/Qingtui/7.5.1/CISDI.Qingtui.installer.yaml new file mode 100644 index 0000000000000..efa1ef4f23339 --- /dev/null +++ b/manifests/c/CISDI/Qingtui/7.5.1/CISDI.Qingtui.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: CISDI.Qingtui +PackageVersion: 7.5.1 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: '{2D1C8316-3A63-4243-BCBA-589E43482AC7}_is1' +Installers: +- Architecture: x86 + InstallerUrl: https://qtstatic.oss-cn-hangzhou.aliyuncs.com/download/win/setup/QingtuiSetup_prod_v7.5.1.exe + InstallerSha256: 9F47B7F896B3D1F5C4A47D55A2912D94CA0AE94DC90222B1EC2E39BBF5C73EDA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CISDI/Qingtui/7.5.1/CISDI.Qingtui.locale.en-US.yaml b/manifests/c/CISDI/Qingtui/7.5.1/CISDI.Qingtui.locale.en-US.yaml new file mode 100644 index 0000000000000..02cdb43d44bcb --- /dev/null +++ b/manifests/c/CISDI/Qingtui/7.5.1/CISDI.Qingtui.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: CISDI.Qingtui +PackageVersion: 7.5.1 +PackageLocale: en-US +Publisher: 中冶赛迪信息技术(重庆)有限公司 +PublisherUrl: https://www.cisdigroup.com.cn/ +PublisherSupportUrl: https://help.qingtui.com/ +Author: Zhongye Saidi Chongqing Information Technology Co., Ltd. +PackageName: 轻推 +PackageUrl: https://www.qingtui.com/ +License: Proprietary +LicenseUrl: https://www.qingtui.com/agreement/ +Copyright: Copyright © 2014-2024 CISDI Info. All rights reserved. +CopyrightUrl: https://www.qingtui.com/agreement/ +ShortDescription: Qingtui, an intelligent way to work +Description: Qingtui, produced by CISDI, a subsidiary of China Minmetals Corporation, is an intelligent office platform that combines instant messaging, office collaboration, enterprise management, connectivity and integration, intelligent hardware, domain informationization solutions and more capabilities. +Tags: +- attendance +- bussiness +- check-in +- collaboration +- comunication +- conference +- docs +- document +- enterprise +- meeting +- oa +- office +- saas +- team +- work +- working +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CISDI/Qingtui/7.5.1/CISDI.Qingtui.locale.zh-CN.yaml b/manifests/c/CISDI/Qingtui/7.5.1/CISDI.Qingtui.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c93c9fafec29f --- /dev/null +++ b/manifests/c/CISDI/Qingtui/7.5.1/CISDI.Qingtui.locale.zh-CN.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CISDI.Qingtui +PackageVersion: 7.5.1 +PackageLocale: zh-CN +Publisher: 中冶赛迪信息技术(重庆)有限公司 +PublisherUrl: https://www.cisdigroup.com.cn/ +PublisherSupportUrl: https://help.qingtui.com/ +Author: 中冶赛迪信息技术(重庆)有限公司 +PackageName: 轻推 +PackageUrl: https://www.qingtui.com/ +License: 专有软件 +LicenseUrl: https://www.qingtui.com/agreement/ +Copyright: 中冶赛迪信息技术(重庆)有限公司 版权所有 +CopyrightUrl: https://www.qingtui.com/agreement/ +ShortDescription: 轻推,一种智能工作方式 +Description: 轻推由中国五矿集团旗下企业中冶赛迪集团倾力出品,是一款集即时通讯、办公协同、企业管理、连接集成、智能硬件、领域信息化解决方案等多项能力于一体的智能工作平台。 +Tags: +- oa +- saas +- 企业 +- 会议 +- 公司 +- 办公 +- 协作 +- 协同 +- 商务 +- 团队 +- 工作 +- 打卡 +- 文档 +- 沟通 +- 签到 +- 考勤 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CISDI/Qingtui/7.5.1/CISDI.Qingtui.yaml b/manifests/c/CISDI/Qingtui/7.5.1/CISDI.Qingtui.yaml new file mode 100644 index 0000000000000..e0512ab461495 --- /dev/null +++ b/manifests/c/CISDI/Qingtui/7.5.1/CISDI.Qingtui.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: CISDI.Qingtui +PackageVersion: 7.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CMU/CLAN/.validation b/manifests/c/CMU/CLAN/.validation deleted file mode 100644 index 4477010bf7d4d..0000000000000 --- a/manifests/c/CMU/CLAN/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"3da85851-a7bf-486b-a1d6-50e37c8f9669","TestPlan":"Validation-Domain","PackagePath":"manifests/c/CMU/CLAN/7.50.00","CommitId":"347b4d2b4278a0cf93f65b990631fca1cbc37e72"},{"WaiverId":"64f56feb-25c1-444d-83a5-59231ef92f85","TestPlan":"Policy-Test-1.8","PackagePath":"manifests/c/CMU/CLAN/7.50.00","CommitId":"347b4d2b4278a0cf93f65b990631fca1cbc37e72"}]} \ No newline at end of file diff --git a/manifests/c/CMU/CLAN/8.30.00/CMU.CLAN.installer.yaml b/manifests/c/CMU/CLAN/8.30.00/CMU.CLAN.installer.yaml deleted file mode 100644 index 4d58784e86855..0000000000000 --- a/manifests/c/CMU/CLAN/8.30.00/CMU.CLAN.installer.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: CMU.CLAN -PackageVersion: 8.30.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-05-01 -AppsAndFeaturesEntries: -- InstallerType: msi -Installers: -- Architecture: x86 - InstallerUrl: https://dali.talkbank.org/clan/clanwin.exe - InstallerSha256: 1FAF810AF15915DAB28CB62568C6A1B5ABFC1360A320C90C2C7BECB9D171926F -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/c/CMU/CLAN/8.30.00/CMU.CLAN.locale.en-US.yaml b/manifests/c/CMU/CLAN/8.30.00/CMU.CLAN.locale.en-US.yaml deleted file mode 100644 index 4c3bf670b6fbc..0000000000000 --- a/manifests/c/CMU/CLAN/8.30.00/CMU.CLAN.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: CMU.CLAN -PackageVersion: 8.30.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 -InstallationNotes: https://dali.talkbank.org/clan/ -Documentations: -- DocumentLabel: Manual - DocumentUrl: https://talkbank.org/manuals/CLAN.pdf -- DocumentLabel: Screencasts - DocumentUrl: https://talkbank.org/screencasts/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/c/CMU/CLAN/8.30.00/CMU.CLAN.yaml b/manifests/c/CMU/CLAN/8.30.00/CMU.CLAN.yaml deleted file mode 100644 index e351ff418c163..0000000000000 --- a/manifests/c/CMU/CLAN/8.30.00/CMU.CLAN.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: CMU.CLAN -PackageVersion: 8.30.00 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/c/CMU/CLAN/8.33.00/CMU.CLAN.installer.yaml b/manifests/c/CMU/CLAN/8.33.00/CMU.CLAN.installer.yaml new file mode 100644 index 0000000000000..01572a5de03bf --- /dev/null +++ b/manifests/c/CMU/CLAN/8.33.00/CMU.CLAN.installer.yaml @@ -0,0 +1,26 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CMU.CLAN +PackageVersion: 8.33.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: 5B4ABC1D5A9B42806A0B6D75FB4FFE3E8374A14DB23F9907FC3DB0C9CD5CC934 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CMU/CLAN/8.33.00/CMU.CLAN.locale.en-US.yaml b/manifests/c/CMU/CLAN/8.33.00/CMU.CLAN.locale.en-US.yaml new file mode 100644 index 0000000000000..219f50613464f --- /dev/null +++ b/manifests/c/CMU/CLAN/8.33.00/CMU.CLAN.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CMU.CLAN +PackageVersion: 8.33.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 +# InstallationNotes: https://dali.talkbank.org/clan/ - 不清楚为什么要显示这个 +# Documentations: # 404 Not Found +# - DocumentLabel: Manual +# DocumentUrl: https://talkbank.org/manuals/CLAN.pdf +# - DocumentLabel: Screencasts +# DocumentUrl: https://talkbank.org/screencasts/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CMU/CLAN/8.33.00/CMU.CLAN.locale.zh-CN.yaml b/manifests/c/CMU/CLAN/8.33.00/CMU.CLAN.locale.zh-CN.yaml new file mode 100644 index 0000000000000..65cbac39e471d --- /dev/null +++ b/manifests/c/CMU/CLAN/8.33.00/CMU.CLAN.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CMU.CLAN +PackageVersion: 8.33.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 系统的各个部分。 +# Moniker: clan +ReleaseNotesUrl: https://dali.talkbank.org/clan/changes.txt +# InstallationNotes: https://dali.talkbank.org/clan/ - 不清楚为什么要显示这个 +# Documentations: # 404 Not Found +# - DocumentLabel: Manual +# DocumentUrl: https://talkbank.org/manuals/CLAN.pdf +# - DocumentLabel: Screencasts +# DocumentUrl: https://talkbank.org/screencasts/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CMU/CLAN/8.33.00/CMU.CLAN.yaml b/manifests/c/CMU/CLAN/8.33.00/CMU.CLAN.yaml new file mode 100644 index 0000000000000..76cebeef2f88b --- /dev/null +++ b/manifests/c/CMU/CLAN/8.33.00/CMU.CLAN.yaml @@ -0,0 +1,8 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CMU.CLAN +PackageVersion: 8.33.00 +DefaultLocale: en-US +ManifestType: version +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/CTerm/CTerm/4.0.2/CTerm.CTerm.installer.yaml b/manifests/c/CTerm/CTerm/4.0.2/CTerm.CTerm.installer.yaml new file mode 100644 index 0000000000000..2f5950e8de9a3 --- /dev/null +++ b/manifests/c/CTerm/CTerm/4.0.2/CTerm.CTerm.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: CTerm.CTerm +PackageVersion: 4.0.2 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: CTerm_is1 +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://gitee.com/devcpp/cterm/releases/download/v4.0.2/CTerm-4.0.2.exe + InstallerSha256: 28C6F6D238DFA6234FC41C4FD88DFDF6CFE30B5A580812D8D3D44D7DC463BE4F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CTerm/CTerm/4.0.2/CTerm.CTerm.locale.en-US.yaml b/manifests/c/CTerm/CTerm/4.0.2/CTerm.CTerm.locale.en-US.yaml new file mode 100644 index 0000000000000..a37a672b5f335 --- /dev/null +++ b/manifests/c/CTerm/CTerm/4.0.2/CTerm.CTerm.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CTerm.CTerm +PackageVersion: 4.0.2 +PackageLocale: en-US +Publisher: https://devcpp.gitee.io/cterm/ +PublisherUrl: https://gitee.com/devcpp +PublisherSupportUrl: https://gitee.com/devcpp/cterm/issues +PackageName: CTerm +PackageUrl: https://gitee.com/devcpp/cterm +License: Freeware +Copyright: |- + Copyright (C) All rights reserved. + 2003-2019 陈琦, Bat Li, nullspace. + 2001-2002 陈琦, Flier Lu, 易得方舟. + 1999-2001 陈琦, 易得方舟. + 1997-1999 陈琦. +ShortDescription: Clever Telnet/BBS Terminal CTerm +Description: CTerm (Clever Terminal) is not only a normal Telnet client software for Telnet sites, but also a special login software designed for Chinese BBS. It analyzes the information between the user and the server to obtain the current user status on the BBS (main menu/board list/user list/article list/editing status) to provide corresponding services. +Tags: +- telnet +ReleaseNotesUrl: https://gitee.com/devcpp/cterm/releases/tag/v4.0.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CTerm/CTerm/4.0.2/CTerm.CTerm.locale.zh-CN.yaml b/manifests/c/CTerm/CTerm/4.0.2/CTerm.CTerm.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a8bc91f52fb4d --- /dev/null +++ b/manifests/c/CTerm/CTerm/4.0.2/CTerm.CTerm.locale.zh-CN.yaml @@ -0,0 +1,51 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CTerm.CTerm +PackageVersion: 4.0.2 +PackageLocale: zh-CN +Publisher: https://devcpp.gitee.io/cterm/ +PublisherUrl: https://gitee.com/devcpp +PublisherSupportUrl: https://gitee.com/devcpp/cterm/issues +PackageName: CTerm +PackageUrl: https://gitee.com/devcpp/cterm +License: 免费软件 +Copyright: |- + 版权所有(C), 保留所有权利. + 2003-2019 陈琦, Bat Li, nullspace. + 2001-2002 陈琦, Flier Lu, 易得方舟. + 1999-2001 陈琦, 易得方舟. + 1997-1999 陈琦. +ShortDescription: 聪明的 Telnet/BBS 终端 CTerm +Description: CTerm (Clever Terminal) 不仅可以作为普通 Telnet 客户软件用于 Telnet 站点的登录,更是针对国内 BBS 的特点设计的一个专用上站软件。它在运行中对用户和服务器之间的信息进行了分析,知道用户在 BBS 上的当前状态(主选单/讨论区列表/用户列表/文章 列表/编辑状态),从而提供相应的服务。 +Tags: +- telnet +ReleaseNotes: |- + ◆CTerm 4.0.2 Build 2025-7-8 + * 改进 SMTH BBS 站点状态识别,当前行含有“”时鼠标点击回车。 + + ◆CTerm 4.0.1 Build 2025-3-10 + * 改进:在站点属性设置中勾选“自动登录”之后,自动设定预置的过滤器。 + * 修正:站点属性设置中的通用字体设置和英文专用字体设置。 + + ◆CTerm 4.0.0 Build 2025-3-8 + * 这是一个具有重大变化的新版本。目标是强化用于 Linux/Unix 主机 + 登录的相关功能,删减与 BBS 站操作相关的功能。希望更适应时代需求。 + * 修改了主程序图标;修改了主工具栏上的图标(改为 Win11 扁平风格)。 + - 删除如下功能:最喜爱的站点,启动时自动连接站点,Python 脚本支持, + ASCII 工具栏,自定义命令工具栏。 + * “地址簿”对话框大幅度简化。站点列表变小,删减了相关按钮。 + + 把原有的“BBS 工具栏”改为“命令工具栏”,在连接 Linux/Unix 主机时 + 显示 Linux/Unix 命令,在连接 BBS 站点时显示 BBS 操作命令。 + * 修改了状态栏设置,以便在软件窗口尺寸变化时能自动调整各元素的位置, + 总是能够完整地显示各个元素。 + * 自动下载的图片文件存放到 temp 目录中,默认在退出程序时自动删除。 + * 简化对 BBS 站中收到消息和收到邮件时的处理:发出一次和两次 Beep 声, + 不再播放 Wav 文件。 + * 重写了帮助文档。大幅删减对 BBS 站的相关说明,内容简化到只有一个网页。 + * 修改了地址簿文件格式,地址簿文件改为 addrbook.ini。 + * 老用户可以这样导入旧地址簿:把旧地址簿文件 address.bok 拷贝到 user + 目录,删除 addrbook.ini;然后启动 CTerm 主程序,则会自动导入旧地址簿。 +ReleaseNotesUrl: https://gitee.com/devcpp/cterm/releases/tag/v4.0.2 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CTerm/CTerm/4.0.2/CTerm.CTerm.yaml b/manifests/c/CTerm/CTerm/4.0.2/CTerm.CTerm.yaml new file mode 100644 index 0000000000000..6ac9a52415286 --- /dev/null +++ b/manifests/c/CTerm/CTerm/4.0.2/CTerm.CTerm.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: CTerm.CTerm +PackageVersion: 4.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Caphyon/AdvancedInstaller/22.8/Caphyon.AdvancedInstaller.installer.yaml b/manifests/c/Caphyon/AdvancedInstaller/22.8/Caphyon.AdvancedInstaller.installer.yaml new file mode 100644 index 0000000000000..7cc52cc3e5a4c --- /dev/null +++ b/manifests/c/Caphyon/AdvancedInstaller/22.8/Caphyon.AdvancedInstaller.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: Caphyon.AdvancedInstaller +PackageVersion: "22.8" +InstallerType: msi +Scope: machine +InstallerSwitches: + InstallLocation: APPDIR="" +UpgradeBehavior: install +ProductCode: '{022EEBDC-115E-4978-929B-621F042C6624}' +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- ProductCode: '{022EEBDC-115E-4978-929B-621F042C6624}' + UpgradeCode: '{0468B821-8AD9-46E7-8BB5-65FBE3955791}' +Installers: +- Architecture: x86 + InstallerUrl: https://www.advancedinstaller.com/downloads/22.8/advinst.msi + InstallerSha256: 090181D34ADB648B407BBA9629A07AF822CFD6326B0D9FB15109C746CCA61F25 +- Architecture: x64 + InstallerUrl: https://www.advancedinstaller.com/downloads/22.8/advinst.msi + InstallerSha256: 090181D34ADB648B407BBA9629A07AF822CFD6326B0D9FB15109C746CCA61F25 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Caphyon/AdvancedInstaller/22.8/Caphyon.AdvancedInstaller.locale.en-US.yaml b/manifests/c/Caphyon/AdvancedInstaller/22.8/Caphyon.AdvancedInstaller.locale.en-US.yaml new file mode 100644 index 0000000000000..df635a23f4023 --- /dev/null +++ b/manifests/c/Caphyon/AdvancedInstaller/22.8/Caphyon.AdvancedInstaller.locale.en-US.yaml @@ -0,0 +1,73 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Caphyon.AdvancedInstaller +PackageVersion: "22.8" +PackageLocale: en-US +Publisher: Caphyon +PublisherUrl: https://www.advancedinstaller.com/ +PublisherSupportUrl: https://www.advancedinstaller.com/support.html +PrivacyUrl: https://www.advancedinstaller.com/privacy-policy.html +Author: Caphyon Ltd. +PackageName: Advanced Installer +PackageUrl: https://www.advancedinstaller.com/ +License: Proprietary +LicenseUrl: https://www.advancedinstaller.com/eula.html +Copyright: Copyright © 2002-2024 Caphyon LTD +ShortDescription: Windows Installer Packaging Tool for Developers, ISVs & Enterprises +Description: Advanced Installer is a Windows installer authoring tool for installing, updating, and configuring your products safely, securely, and reliably. +Moniker: advanced-installer +Tags: +- install +- installation +- installer +- msi +- msix +ReleaseNotes: |- + New Features + - Automatic file formatting for EULA + - content, when using a dark theme + + Enhancements + - Redesigned the custom actions organization, for easier understanding and troubleshooting + - Making the prerequisite command line options more intuitive for each UI stage + - The SBOM report is now included within the setup package, preventing file tampering and simplifying redistribution + - Added predefined launch conditions for VC++ runtimes + - Update .NET prerequisites to the latest version, 8.0.17 and 9.0.6 + - Updated Trusted Signing tools detection and installation methods + - Support editing MSIX packages containing fixups with empty config files + - Support editing MSIX packages wherefixups contain ".dll" extension in their name + - Support editing MSIX packages with empty registry hives + - Improve resource synchronization for projects using pre-build events + - Option to set metadata for Comments and LegalTrademark + - PowerShell automation support for setting EXE metadata + - PowerShell automation support for configuring a custom sign tool + - Improved the certification validation methods + - Advanced Installer integration with the Windows Defender Exclusion engine - no more blocked builds due to incorrect false-positive flagging + - Update TargetFramework to NET 9.0 for our predefined custom action template + - Fixed the Visual Studio extension detection on x86 machines + - Improved the parsing of XML manifests for greater package compatibility + + Fixed Bugs + - Crash when setting the Surface theme as current after visiting the Custom Actions view + - The "Inherit used theme" option made the installer unresponsive + - A .NET custom action was hanging when logging + - Updated the bootstrapper file costing process, to better support property-based folders + - The COM interface was not correctly checking a floating license + - Reboot prompt triggered with UI during a silent major upgrade installation + - Adding Eula in a Simple project accidentally changed the build type to EXE + - Error handling during file costing, for packages with Enhanced UI + - A UI crash occurred when trying to load certain project settings, no data was corrupted + - The Move Folder custom action was leaving an empty folder in the source location + - Launch conditions messages were blocking a silent installation when the option "Limit to basic user interface" was enabled and a prerequisite was included + - A UI error message was blocking a silent installation if a prerequisite's URL is inaccessible + - Fixed the edit path control layout + - Fixed the default command line options set for chained packages + - InstallTypeDlg was not automatically added when changing the installation type +ReleaseNotesUrl: https://www.advancedinstaller.com/version-history.html +PurchaseUrl: https://www.advancedinstaller.com/purchase.html +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://www.advancedinstaller.com/user-guide/introduction.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Caphyon/AdvancedInstaller/22.8/Caphyon.AdvancedInstaller.locale.zh-CN.yaml b/manifests/c/Caphyon/AdvancedInstaller/22.8/Caphyon.AdvancedInstaller.locale.zh-CN.yaml new file mode 100644 index 0000000000000..77b94d8f641a3 --- /dev/null +++ b/manifests/c/Caphyon/AdvancedInstaller/22.8/Caphyon.AdvancedInstaller.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: Caphyon.AdvancedInstaller +PackageVersion: "22.8" +PackageLocale: zh-CN +Publisher: Caphyon +PublisherUrl: https://www.advancedinstaller.com/ +PublisherSupportUrl: https://www.advancedinstaller.com/support.html +PrivacyUrl: https://www.advancedinstaller.com/privacy-policy.html +Author: Caphyon Ltd. +PackageName: Advanced Installer +PackageUrl: https://www.advancedinstaller.com/ +License: 专有软件 +LicenseUrl: https://www.advancedinstaller.com/eula.html +Copyright: Copyright © 2002-2024 Caphyon LTD +ShortDescription: 面向开发人员、ISV 和企业的 Windows 安装程序打包工具 +Description: Advanced Installer 是一款 Windows 安装程序制作工具,用于安全、可靠地安装、更新和配置您的产品。 +Tags: +- msi +- msix +- 安装 +- 安装包 +- 安装器 +ReleaseNotesUrl: https://www.advancedinstaller.com/version-history.html +PurchaseUrl: https://www.advancedinstaller.com/purchase.html +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://www.advancedinstaller.com/user-guide/introduction.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Caphyon/AdvancedInstaller/22.8/Caphyon.AdvancedInstaller.yaml b/manifests/c/Caphyon/AdvancedInstaller/22.8/Caphyon.AdvancedInstaller.yaml new file mode 100644 index 0000000000000..52dcaab8deef0 --- /dev/null +++ b/manifests/c/Caphyon/AdvancedInstaller/22.8/Caphyon.AdvancedInstaller.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: Caphyon.AdvancedInstaller +PackageVersion: "22.8" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Catsxp/Catsxp/138.5.6.4/Catsxp.Catsxp.installer.yaml b/manifests/c/Catsxp/Catsxp/138.5.6.4/Catsxp.Catsxp.installer.yaml deleted file mode 100644 index 6a83baa341cd6..0000000000000 --- a/manifests/c/Catsxp/Catsxp/138.5.6.4/Catsxp.Catsxp.installer.yaml +++ /dev/null @@ -1,61 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Catsxp.Catsxp -PackageVersion: 138.5.6.4 -InstallerType: exe -InstallModes: -- silent -InstallerSwitches: - Log: --verbose-logging --log-file="" -ExpectedReturnCodes: -- InstallerReturnCode: 60 - ReturnResponse: installInProgress -- InstallerReturnCode: 4 - ReturnResponse: downgrade -UpgradeBehavior: install -Protocols: -- ftp -- http -- https -- mailto -- microsoft-edge -- tel -FileExtensions: -- htm -- html -- pdf -- shtml -- svg -- webp -- xht -- xhtml -ProductCode: CatsxpSoftware Catsxp-Browser -ReleaseDate: 2025-06-19 -Installers: -- Architecture: x86 - Scope: user - InstallerUrl: https://catsxp.oss-cn-hongkong.aliyuncs.com/win_x86/catsxp_installer_138_5_6_4.exe - InstallerSha256: D926909C2C1EEA129CBDB8B5C6309972B1A4C9C4B2A7C620DAB43AF27DEB2AAD - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: x86 - Scope: machine - InstallerUrl: https://catsxp.oss-cn-hongkong.aliyuncs.com/win_x86/catsxp_installer_138_5_6_4.exe - InstallerSha256: D926909C2C1EEA129CBDB8B5C6309972B1A4C9C4B2A7C620DAB43AF27DEB2AAD - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -- Architecture: x64 - Scope: user - InstallerUrl: https://catsxp.oss-cn-hongkong.aliyuncs.com/win_x64/catsxp_installer_138_5_6_4.exe - InstallerSha256: BB1165CCA6BC5AE8932B1C0FC50410B2CEE1CF9F4A96ECEB4FEC4B369121C130 - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: x64 - Scope: machine - InstallerUrl: https://catsxp.oss-cn-hongkong.aliyuncs.com/win_x64/catsxp_installer_138_5_6_4.exe - InstallerSha256: BB1165CCA6BC5AE8932B1C0FC50410B2CEE1CF9F4A96ECEB4FEC4B369121C130 - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/c/Catsxp/Catsxp/138.5.7.2/Catsxp.Catsxp.installer.yaml b/manifests/c/Catsxp/Catsxp/138.5.7.2/Catsxp.Catsxp.installer.yaml new file mode 100644 index 0000000000000..43f5500870bcb --- /dev/null +++ b/manifests/c/Catsxp/Catsxp/138.5.7.2/Catsxp.Catsxp.installer.yaml @@ -0,0 +1,61 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Catsxp.Catsxp +PackageVersion: 138.5.7.2 +InstallerType: exe +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" +ExpectedReturnCodes: +- InstallerReturnCode: 60 + ReturnResponse: installInProgress +- InstallerReturnCode: 4 + ReturnResponse: downgrade +UpgradeBehavior: install +Protocols: +- ftp +- http +- https +- mailto +- microsoft-edge +- tel +FileExtensions: +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: CatsxpSoftware Catsxp-Browser +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://catsxp.oss-cn-hongkong.aliyuncs.com/win_x86/catsxp_installer_138_5_7_2.exe + InstallerSha256: 17AAF936E2DBCE9D6CAFC91993163E42279AEC8ED361BE0CE22BB2D68F4A32EF + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: x86 + Scope: machine + InstallerUrl: https://catsxp.oss-cn-hongkong.aliyuncs.com/win_x86/catsxp_installer_138_5_7_2.exe + InstallerSha256: 17AAF936E2DBCE9D6CAFC91993163E42279AEC8ED361BE0CE22BB2D68F4A32EF + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +- Architecture: x64 + Scope: user + InstallerUrl: https://catsxp.oss-cn-hongkong.aliyuncs.com/win_x64/catsxp_installer_138_5_7_2.exe + InstallerSha256: 9471F386E25ADA40360365160627F71ACAA6440885CE9D2EFDD8D41CAEC14D86 + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: x64 + Scope: machine + InstallerUrl: https://catsxp.oss-cn-hongkong.aliyuncs.com/win_x64/catsxp_installer_138_5_7_2.exe + InstallerSha256: 9471F386E25ADA40360365160627F71ACAA6440885CE9D2EFDD8D41CAEC14D86 + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Catsxp/Catsxp/138.5.6.4/Catsxp.Catsxp.locale.en-US.yaml b/manifests/c/Catsxp/Catsxp/138.5.7.2/Catsxp.Catsxp.locale.en-US.yaml similarity index 82% rename from manifests/c/Catsxp/Catsxp/138.5.6.4/Catsxp.Catsxp.locale.en-US.yaml rename to manifests/c/Catsxp/Catsxp/138.5.7.2/Catsxp.Catsxp.locale.en-US.yaml index b05ca218af4b7..39dfc1da36508 100644 --- a/manifests/c/Catsxp/Catsxp/138.5.6.4/Catsxp.Catsxp.locale.en-US.yaml +++ b/manifests/c/Catsxp/Catsxp/138.5.7.2/Catsxp.Catsxp.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Catsxp.Catsxp -PackageVersion: 138.5.6.4 +PackageVersion: 138.5.7.2 PackageLocale: en-US Publisher: Catsxp Software Inc PublisherUrl: https://www.catsxp.com/ @@ -20,9 +20,8 @@ Tags: - web - webpage ReleaseNotes: |- - 1. [*]Kernel upgrade:138.0.7204.39 - 2. [!]Some problems correction and detail optimization - 3. [!]Refactoring shortcut keys + 1. [!]Some problems correction and detail optimization + 2. [!]Urgently fix Google Sync exception ReleaseNotesUrl: https://www.catsxp.com/history Documentations: - DocumentLabel: FAQ diff --git a/manifests/c/Catsxp/Catsxp/138.5.6.4/Catsxp.Catsxp.locale.zh-CN.yaml b/manifests/c/Catsxp/Catsxp/138.5.7.2/Catsxp.Catsxp.locale.zh-CN.yaml similarity index 85% rename from manifests/c/Catsxp/Catsxp/138.5.6.4/Catsxp.Catsxp.locale.zh-CN.yaml rename to manifests/c/Catsxp/Catsxp/138.5.7.2/Catsxp.Catsxp.locale.zh-CN.yaml index 96d0e57d328d8..f1c6c40eb6892 100644 --- a/manifests/c/Catsxp/Catsxp/138.5.6.4/Catsxp.Catsxp.locale.zh-CN.yaml +++ b/manifests/c/Catsxp/Catsxp/138.5.7.2/Catsxp.Catsxp.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Catsxp.Catsxp -PackageVersion: 138.5.6.4 +PackageVersion: 138.5.7.2 PackageLocale: zh-CN Publisher: Catsxp Software Inc PublisherUrl: https://www.catsxp.com/zh-hans @@ -20,9 +20,8 @@ Tags: - 猫眼浏览器 - 网页 ReleaseNotes: |- - 1. [*]内核升级:138.0.7204.39 - 2. [!]若干问题修正与细节优化 - 3. [!]重构快捷键 + 1. [!]若干问题修正与细节优化 + 2. [!]紧急修复 Google 同步异常 ReleaseNotesUrl: https://www.catsxp.com/zh-hans/history Documentations: - DocumentLabel: 常见问题 diff --git a/manifests/c/Catsxp/Catsxp/138.5.6.4/Catsxp.Catsxp.yaml b/manifests/c/Catsxp/Catsxp/138.5.7.2/Catsxp.Catsxp.yaml similarity index 87% rename from manifests/c/Catsxp/Catsxp/138.5.6.4/Catsxp.Catsxp.yaml rename to manifests/c/Catsxp/Catsxp/138.5.7.2/Catsxp.Catsxp.yaml index e0f18feb2b9b6..5126a6bb95e9c 100644 --- a/manifests/c/Catsxp/Catsxp/138.5.6.4/Catsxp.Catsxp.yaml +++ b/manifests/c/Catsxp/Catsxp/138.5.7.2/Catsxp.Catsxp.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Catsxp.Catsxp -PackageVersion: 138.5.6.4 +PackageVersion: 138.5.7.2 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.92/Chainguard.chainctl.installer.yaml b/manifests/c/Chainguard/chainctl/0.2.92/Chainguard.chainctl.installer.yaml new file mode 100644 index 0000000000000..a21508e9fcaf8 --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.92/Chainguard.chainctl.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Chainguard.chainctl +PackageVersion: 0.2.92 +InstallerType: portable +UpgradeBehavior: install +Commands: +- chainctl +ReleaseDate: 2025-06-20 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.92/chainctl_windows_x86_64.exe + InstallerSha256: 42367377FFB09B4254A0C8810BA8C6883CFB4DED74E727FB2C4327F5D6BB3565 +- Architecture: arm64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.92/chainctl_windows_arm64.exe + InstallerSha256: E1B3C1A5DF4A1BE4C454D27F50F08841D6AC124BAFFC850C0DD335A57187EBC8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.92/Chainguard.chainctl.locale.en-US.yaml b/manifests/c/Chainguard/chainctl/0.2.92/Chainguard.chainctl.locale.en-US.yaml new file mode 100644 index 0000000000000..8ca06ad7d6b9d --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.92/Chainguard.chainctl.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Chainguard.chainctl +PackageVersion: 0.2.92 +PackageLocale: en-US +Publisher: Chainguard +PublisherUrl: https://www.chainguard.dev/ +PublisherSupportUrl: https://www.chainguard.dev/contact +Author: Chainguard +PackageName: Chainguard Control +PackageUrl: https://edu.chainguard.dev/chainguard/chainctl-usage/ +License: Proprietary +Copyright: © 2025 Chainguard. All Rights Reserved. +ShortDescription: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. +Description: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. You can use it to manage users, roles, images, tokens, and more. In many ways, chainctl parallels the abilities of the Chainguard Console, but with a different user interface that is both more complex and more powerful. +Moniker: chainctl +Tags: +- chainguard +- cli +- container-images +- cve +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.92/Chainguard.chainctl.yaml b/manifests/c/Chainguard/chainctl/0.2.92/Chainguard.chainctl.yaml new file mode 100644 index 0000000000000..44ad13088819e --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.92/Chainguard.chainctl.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: Chainguard.chainctl +PackageVersion: 0.2.92 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.93/Chainguard.chainctl.installer.yaml b/manifests/c/Chainguard/chainctl/0.2.93/Chainguard.chainctl.installer.yaml new file mode 100644 index 0000000000000..7b3e196c9141d --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.93/Chainguard.chainctl.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Chainguard.chainctl +PackageVersion: 0.2.93 +InstallerType: portable +UpgradeBehavior: install +Commands: +- chainctl +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.93/chainctl_windows_x86_64.exe + InstallerSha256: A477A6826F77183BB33F5BE3F6F10BC1D7E3891984638F7F675F51FE620232C9 +- Architecture: arm64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.93/chainctl_windows_arm64.exe + InstallerSha256: BCBDB34036144AC3BB6D9920780B9777A42F77B7D63840FE6DE40CDBD9111F44 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.93/Chainguard.chainctl.locale.en-US.yaml b/manifests/c/Chainguard/chainctl/0.2.93/Chainguard.chainctl.locale.en-US.yaml new file mode 100644 index 0000000000000..4544b4cec5ef4 --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.93/Chainguard.chainctl.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Chainguard.chainctl +PackageVersion: 0.2.93 +PackageLocale: en-US +Publisher: Chainguard +PublisherUrl: https://www.chainguard.dev/ +PublisherSupportUrl: https://www.chainguard.dev/contact +Author: Chainguard +PackageName: Chainguard Control +PackageUrl: https://edu.chainguard.dev/chainguard/chainctl-usage/ +License: Proprietary +Copyright: © 2025 Chainguard. All Rights Reserved. +ShortDescription: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. +Description: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. You can use it to manage users, roles, images, tokens, and more. In many ways, chainctl parallels the abilities of the Chainguard Console, but with a different user interface that is both more complex and more powerful. +Moniker: chainctl +Tags: +- chainguard +- cli +- container-images +- cve +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.93/Chainguard.chainctl.yaml b/manifests/c/Chainguard/chainctl/0.2.93/Chainguard.chainctl.yaml new file mode 100644 index 0000000000000..705eb25eb4584 --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.93/Chainguard.chainctl.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: Chainguard.chainctl +PackageVersion: 0.2.93 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.94/Chainguard.chainctl.installer.yaml b/manifests/c/Chainguard/chainctl/0.2.94/Chainguard.chainctl.installer.yaml new file mode 100644 index 0000000000000..8f923f1106e0b --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.94/Chainguard.chainctl.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Chainguard.chainctl +PackageVersion: 0.2.94 +InstallerType: portable +UpgradeBehavior: install +Commands: +- chainctl +ReleaseDate: 2025-06-25 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.94/chainctl_windows_x86_64.exe + InstallerSha256: B51A375C3CA9D62CEBFD604F6A9E6A86613FDC21409FFCB3F4A160B764E110FF +- Architecture: arm64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.94/chainctl_windows_arm64.exe + InstallerSha256: D3F45E00FBAD26DBED6207EB9AA289BA187540EB3EB21F514B534670A3BCFE8F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.94/Chainguard.chainctl.locale.en-US.yaml b/manifests/c/Chainguard/chainctl/0.2.94/Chainguard.chainctl.locale.en-US.yaml new file mode 100644 index 0000000000000..4c585a7083362 --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.94/Chainguard.chainctl.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Chainguard.chainctl +PackageVersion: 0.2.94 +PackageLocale: en-US +Publisher: Chainguard +PublisherUrl: https://www.chainguard.dev/ +PublisherSupportUrl: https://www.chainguard.dev/contact +Author: Chainguard +PackageName: Chainguard Control +PackageUrl: https://edu.chainguard.dev/chainguard/chainctl-usage/ +License: Proprietary +Copyright: © 2025 Chainguard. All Rights Reserved. +ShortDescription: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. +Description: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. You can use it to manage users, roles, images, tokens, and more. In many ways, chainctl parallels the abilities of the Chainguard Console, but with a different user interface that is both more complex and more powerful. +Moniker: chainctl +Tags: +- chainguard +- cli +- container-images +- cve +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.94/Chainguard.chainctl.yaml b/manifests/c/Chainguard/chainctl/0.2.94/Chainguard.chainctl.yaml new file mode 100644 index 0000000000000..8b1055ef67798 --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.94/Chainguard.chainctl.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: Chainguard.chainctl +PackageVersion: 0.2.94 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.95/Chainguard.chainctl.installer.yaml b/manifests/c/Chainguard/chainctl/0.2.95/Chainguard.chainctl.installer.yaml new file mode 100644 index 0000000000000..43351556ce1ed --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.95/Chainguard.chainctl.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: Chainguard.chainctl +PackageVersion: 0.2.95 +InstallerType: portable +UpgradeBehavior: install +Commands: +- chainctl +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.95/chainctl_windows_x86_64.exe + InstallerSha256: 3A4B86BDB2BA26CB9FEBD4081E60E038B76C2BAA4E552E2367BBF3DD55A944E3 +- Architecture: arm64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.95/chainctl_windows_arm64.exe + InstallerSha256: FFEC394ACA52131205EBB44D50FBFC32EB29B470CB43B55AEE2A994AE600707B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.95/Chainguard.chainctl.locale.en-US.yaml b/manifests/c/Chainguard/chainctl/0.2.95/Chainguard.chainctl.locale.en-US.yaml new file mode 100644 index 0000000000000..3fcd60bb2589d --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.95/Chainguard.chainctl.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Chainguard.chainctl +PackageVersion: 0.2.95 +PackageLocale: en-US +Publisher: Chainguard +PublisherUrl: https://www.chainguard.dev/ +PublisherSupportUrl: https://www.chainguard.dev/contact +Author: Chainguard +PackageName: Chainguard Control +PackageUrl: https://edu.chainguard.dev/chainguard/chainctl-usage/ +License: Proprietary +Copyright: © 2025 Chainguard. All Rights Reserved. +ShortDescription: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. +Description: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. You can use it to manage users, roles, images, tokens, and more. In many ways, chainctl parallels the abilities of the Chainguard Console, but with a different user interface that is both more complex and more powerful. +Moniker: chainctl +Tags: +- chainguard +- cli +- container-images +- cve +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.95/Chainguard.chainctl.yaml b/manifests/c/Chainguard/chainctl/0.2.95/Chainguard.chainctl.yaml new file mode 100644 index 0000000000000..e986501d22d66 --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.95/Chainguard.chainctl.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: Chainguard.chainctl +PackageVersion: 0.2.95 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.96/Chainguard.chainctl.installer.yaml b/manifests/c/Chainguard/chainctl/0.2.96/Chainguard.chainctl.installer.yaml new file mode 100644 index 0000000000000..6904bed7e9bc5 --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.96/Chainguard.chainctl.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: Chainguard.chainctl +PackageVersion: 0.2.96 +InstallerType: portable +UpgradeBehavior: install +Commands: +- chainctl +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.96/chainctl_windows_x86_64.exe + InstallerSha256: 9CD0DDC69A854C067D3E781D00B3C283AFC8F0CCA6B5F3016FC9E0654C949944 +- Architecture: arm64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.96/chainctl_windows_arm64.exe + InstallerSha256: 89329375B6C32017E82FC42B71FDD8D8372853573EC32DF775DBC4077DCC83B8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.96/Chainguard.chainctl.locale.en-US.yaml b/manifests/c/Chainguard/chainctl/0.2.96/Chainguard.chainctl.locale.en-US.yaml new file mode 100644 index 0000000000000..b0ffbe1f67c83 --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.96/Chainguard.chainctl.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Chainguard.chainctl +PackageVersion: 0.2.96 +PackageLocale: en-US +Publisher: Chainguard +PublisherUrl: https://www.chainguard.dev/ +PublisherSupportUrl: https://www.chainguard.dev/contact +Author: Chainguard +PackageName: Chainguard Control +PackageUrl: https://edu.chainguard.dev/chainguard/chainctl-usage/ +License: Proprietary +Copyright: © 2025 Chainguard. All Rights Reserved. +ShortDescription: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. +Description: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. You can use it to manage users, roles, images, tokens, and more. In many ways, chainctl parallels the abilities of the Chainguard Console, but with a different user interface that is both more complex and more powerful. +Moniker: chainctl +Tags: +- chainguard +- cli +- container-images +- cve +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.96/Chainguard.chainctl.yaml b/manifests/c/Chainguard/chainctl/0.2.96/Chainguard.chainctl.yaml new file mode 100644 index 0000000000000..cb6ccc2dd1342 --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.96/Chainguard.chainctl.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: Chainguard.chainctl +PackageVersion: 0.2.96 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.97/Chainguard.chainctl.installer.yaml b/manifests/c/Chainguard/chainctl/0.2.97/Chainguard.chainctl.installer.yaml new file mode 100644 index 0000000000000..0d19f086b37d3 --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.97/Chainguard.chainctl.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: Chainguard.chainctl +PackageVersion: 0.2.97 +InstallerType: portable +UpgradeBehavior: install +Commands: +- chainctl +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.97/chainctl_windows_x86_64.exe + InstallerSha256: D413C47C6409F91293452320BB2F559AAEC6767BAF7EAFB80BE8620CC1610384 +- Architecture: arm64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.97/chainctl_windows_arm64.exe + InstallerSha256: 256F72532CBCFB82E983C8F13734C8EFA9EAE3E59EF7421712117E13A7CC12C7 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.97/Chainguard.chainctl.locale.en-US.yaml b/manifests/c/Chainguard/chainctl/0.2.97/Chainguard.chainctl.locale.en-US.yaml new file mode 100644 index 0000000000000..77cea292560e4 --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.97/Chainguard.chainctl.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Chainguard.chainctl +PackageVersion: 0.2.97 +PackageLocale: en-US +Publisher: Chainguard +PublisherUrl: https://www.chainguard.dev/ +PublisherSupportUrl: https://www.chainguard.dev/contact +Author: Chainguard +PackageName: Chainguard Control +PackageUrl: https://edu.chainguard.dev/chainguard/chainctl-usage/ +License: Proprietary +Copyright: © 2025 Chainguard. All Rights Reserved. +ShortDescription: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. +Description: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. You can use it to manage users, roles, images, tokens, and more. In many ways, chainctl parallels the abilities of the Chainguard Console, but with a different user interface that is both more complex and more powerful. +Moniker: chainctl +Tags: +- chainguard +- cli +- container-images +- cve +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.97/Chainguard.chainctl.yaml b/manifests/c/Chainguard/chainctl/0.2.97/Chainguard.chainctl.yaml new file mode 100644 index 0000000000000..922502ccab284 --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.97/Chainguard.chainctl.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: Chainguard.chainctl +PackageVersion: 0.2.97 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.98/Chainguard.chainctl.installer.yaml b/manifests/c/Chainguard/chainctl/0.2.98/Chainguard.chainctl.installer.yaml new file mode 100644 index 0000000000000..21eee8596676a --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.98/Chainguard.chainctl.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: Chainguard.chainctl +PackageVersion: 0.2.98 +InstallerType: portable +UpgradeBehavior: install +Commands: +- chainctl +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.98/chainctl_windows_x86_64.exe + InstallerSha256: E9951D75B58D8CA262BC4377A8A614613A765CE1323507437DD573481A40AF27 +- Architecture: arm64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.98/chainctl_windows_arm64.exe + InstallerSha256: 6D6233630A7D583728C478EB2D8519028414AA69998CC526723894B5D3C1F08C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.98/Chainguard.chainctl.locale.en-US.yaml b/manifests/c/Chainguard/chainctl/0.2.98/Chainguard.chainctl.locale.en-US.yaml new file mode 100644 index 0000000000000..a35a611bca6fc --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.98/Chainguard.chainctl.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Chainguard.chainctl +PackageVersion: 0.2.98 +PackageLocale: en-US +Publisher: Chainguard +PublisherUrl: https://www.chainguard.dev/ +PublisherSupportUrl: https://www.chainguard.dev/contact +Author: Chainguard +PackageName: Chainguard Control +PackageUrl: https://edu.chainguard.dev/chainguard/chainctl-usage/ +License: Proprietary +Copyright: © 2025 Chainguard. All Rights Reserved. +ShortDescription: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. +Description: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. You can use it to manage users, roles, images, tokens, and more. In many ways, chainctl parallels the abilities of the Chainguard Console, but with a different user interface that is both more complex and more powerful. +Moniker: chainctl +Tags: +- chainguard +- cli +- container-images +- cve +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.98/Chainguard.chainctl.yaml b/manifests/c/Chainguard/chainctl/0.2.98/Chainguard.chainctl.yaml new file mode 100644 index 0000000000000..7986a62371094 --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.98/Chainguard.chainctl.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: Chainguard.chainctl +PackageVersion: 0.2.98 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.99/Chainguard.chainctl.installer.yaml b/manifests/c/Chainguard/chainctl/0.2.99/Chainguard.chainctl.installer.yaml new file mode 100644 index 0000000000000..9829aba3518c8 --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.99/Chainguard.chainctl.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: Chainguard.chainctl +PackageVersion: 0.2.99 +InstallerType: portable +UpgradeBehavior: install +Commands: +- chainctl +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.99/chainctl_windows_x86_64.exe + InstallerSha256: 82BC2652AE142D985B13F1CC8F83AFC60214BE3943A6893B641C2D6E3E8F9C4A +- Architecture: arm64 + InstallerUrl: https://dl.enforce.dev/chainctl/0.2.99/chainctl_windows_arm64.exe + InstallerSha256: C0CE8C0168069F941D0335DD4BFA05D613636C8A2EA8598BF95D037DCC916D81 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.99/Chainguard.chainctl.locale.en-US.yaml b/manifests/c/Chainguard/chainctl/0.2.99/Chainguard.chainctl.locale.en-US.yaml new file mode 100644 index 0000000000000..b25b2f934ffc1 --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.99/Chainguard.chainctl.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Chainguard.chainctl +PackageVersion: 0.2.99 +PackageLocale: en-US +Publisher: Chainguard +PublisherUrl: https://www.chainguard.dev/ +PublisherSupportUrl: https://www.chainguard.dev/contact +Author: Chainguard +PackageName: Chainguard Control +PackageUrl: https://edu.chainguard.dev/chainguard/chainctl-usage/ +License: Proprietary +Copyright: © 2025 Chainguard. All Rights Reserved. +ShortDescription: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. +Description: chainctl (Chainguard Control) is a CLI tool that helps you control aspects of your Chainguard account and resources. You can use it to manage users, roles, images, tokens, and more. In many ways, chainctl parallels the abilities of the Chainguard Console, but with a different user interface that is both more complex and more powerful. +Moniker: chainctl +Tags: +- chainguard +- cli +- container-images +- cve +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chainguard/chainctl/0.2.99/Chainguard.chainctl.yaml b/manifests/c/Chainguard/chainctl/0.2.99/Chainguard.chainctl.yaml new file mode 100644 index 0000000000000..10dddefffc82e --- /dev/null +++ b/manifests/c/Chainguard/chainctl/0.2.99/Chainguard.chainctl.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: Chainguard.chainctl +PackageVersion: 0.2.99 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CheckMAL/AppCheck/3.1.41.3/CheckMAL.AppCheck.installer.yaml b/manifests/c/CheckMAL/AppCheck/3.1.41.3/CheckMAL.AppCheck.installer.yaml deleted file mode 100644 index ef8e9d827bd81..0000000000000 --- a/manifests/c/CheckMAL/AppCheck/3.1.41.3/CheckMAL.AppCheck.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: CheckMAL.AppCheck -PackageVersion: 3.1.41.3 -InstallerType: nullsoft -AppsAndFeaturesEntries: -- DisplayName: AppCheck Anti-Ransomware - Publisher: CheckMAL Inc. - ProductCode: '{8AE36751-D1AA-4021-A7D4-85909B56D610}' -Installers: -- Architecture: x86 - InstallerUrl: https://www.checkmal.com/download/appcheckv3.0/AppCheckSetup.exe - InstallerSha256: D77520FDF478E1F19E0D6B4EC779AA4A024251FF41F8A2E2D765D5DD73A03A98 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/c/CheckMAL/AppCheck/3.1.41.3/CheckMAL.AppCheck.yaml b/manifests/c/CheckMAL/AppCheck/3.1.41.3/CheckMAL.AppCheck.yaml deleted file mode 100644 index 7d48822692db7..0000000000000 --- a/manifests/c/CheckMAL/AppCheck/3.1.41.3/CheckMAL.AppCheck.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: CheckMAL.AppCheck -PackageVersion: 3.1.41.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/c/CheckMAL/AppCheck/3.1.42.3/CheckMAL.AppCheck.installer.yaml b/manifests/c/CheckMAL/AppCheck/3.1.42.3/CheckMAL.AppCheck.installer.yaml new file mode 100644 index 0000000000000..bb88d2954110d --- /dev/null +++ b/manifests/c/CheckMAL/AppCheck/3.1.42.3/CheckMAL.AppCheck.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: CheckMAL.AppCheck +PackageVersion: 3.1.42.3 +InstallerType: nullsoft +AppsAndFeaturesEntries: +- DisplayName: AppCheck Anti-Ransomware + Publisher: CheckMAL Inc. + ProductCode: '{8AE36751-D1AA-4021-A7D4-85909B56D610}' +Installers: +- Architecture: x86 + InstallerUrl: https://www.checkmal.com/download/appcheckv3.0/AppCheckSetup.exe + InstallerSha256: BB666E2BAAD3A34D7343A339EACC55F6B1FBA4DD554248D030233F5A7B4129A8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CheckMAL/AppCheck/3.1.41.3/CheckMAL.AppCheck.locale.en-US.yaml b/manifests/c/CheckMAL/AppCheck/3.1.42.3/CheckMAL.AppCheck.locale.en-US.yaml similarity index 86% rename from manifests/c/CheckMAL/AppCheck/3.1.41.3/CheckMAL.AppCheck.locale.en-US.yaml rename to manifests/c/CheckMAL/AppCheck/3.1.42.3/CheckMAL.AppCheck.locale.en-US.yaml index 36fd77023da80..aa9911528ec00 100644 --- a/manifests/c/CheckMAL/AppCheck/3.1.41.3/CheckMAL.AppCheck.locale.en-US.yaml +++ b/manifests/c/CheckMAL/AppCheck/3.1.42.3/CheckMAL.AppCheck.locale.en-US.yaml @@ -1,8 +1,8 @@ # 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: CheckMAL.AppCheck -PackageVersion: 3.1.41.3 +PackageVersion: 3.1.42.3 PackageLocale: en-US Publisher: CheckMAL Inc. PublisherUrl: https://www.checkmal.com/ @@ -13,4 +13,4 @@ Copyright: (c) CheckMAL Inc. All rights reserved. ShortDescription: Prevent, detect and recover damaged files from ransomware with the patented next generation context awareness ransomware behavior detection technology. Moniker: appcheck ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CheckMAL/AppCheck/3.1.42.3/CheckMAL.AppCheck.yaml b/manifests/c/CheckMAL/AppCheck/3.1.42.3/CheckMAL.AppCheck.yaml new file mode 100644 index 0000000000000..efa0a602c2109 --- /dev/null +++ b/manifests/c/CheckMAL/AppCheck/3.1.42.3/CheckMAL.AppCheck.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: CheckMAL.AppCheck +PackageVersion: 3.1.42.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/ChemTableSoftware/AutorunOrganizer/6.10/ChemTableSoftware.AutorunOrganizer.installer.yaml b/manifests/c/ChemTableSoftware/AutorunOrganizer/6.10/ChemTableSoftware.AutorunOrganizer.installer.yaml index e662f75d7cf15..095163764598a 100644 --- a/manifests/c/ChemTableSoftware/AutorunOrganizer/6.10/ChemTableSoftware.AutorunOrganizer.installer.yaml +++ b/manifests/c/ChemTableSoftware/AutorunOrganizer/6.10/ChemTableSoftware.AutorunOrganizer.installer.yaml @@ -12,7 +12,7 @@ InstallationMetadata: DefaultInstallLocation: '%ProgramFiles%\Autorun Organizer' Installers: - Architecture: x86 - InstallerUrl: https://files.chemtable.com/ao/autorun-organizer-setup.exe + InstallerUrl: https://files.chemtable.com/older/AO/AO610.exe InstallerSha256: 33FFDF51B167504F8B364EABB2A216643212FD75A6F33CACC0F53EC564893A0C ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/c/ChemTableSoftware/AutorunOrganizer/6.20/ChemTableSoftware.AutorunOrganizer.installer.yaml b/manifests/c/ChemTableSoftware/AutorunOrganizer/6.20/ChemTableSoftware.AutorunOrganizer.installer.yaml new file mode 100644 index 0000000000000..7c847ccfb4fc9 --- /dev/null +++ b/manifests/c/ChemTableSoftware/AutorunOrganizer/6.20/ChemTableSoftware.AutorunOrganizer.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: ChemTableSoftware.AutorunOrganizer +PackageVersion: '6.20' +InstallerLocale: en-US +InstallerType: inno +Scope: machine +ProductCode: Autorun Organizer_is1 +ReleaseDate: 2025-07-06 +AppsAndFeaturesEntries: +- ProductCode: Autorun Organizer_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Autorun Organizer' +Installers: +- Architecture: x86 + InstallerUrl: https://files.chemtable.com/older/AO/AO620.exe + InstallerSha256: C438303626B941299E745B8D6BB649989A7CBAD866DB3B6C847BC614FC5AF75F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/ChemTableSoftware/AutorunOrganizer/6.20/ChemTableSoftware.AutorunOrganizer.locale.en-US.yaml b/manifests/c/ChemTableSoftware/AutorunOrganizer/6.20/ChemTableSoftware.AutorunOrganizer.locale.en-US.yaml new file mode 100644 index 0000000000000..4db15b056d720 --- /dev/null +++ b/manifests/c/ChemTableSoftware/AutorunOrganizer/6.20/ChemTableSoftware.AutorunOrganizer.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ChemTableSoftware.AutorunOrganizer +PackageVersion: '6.20' +PackageLocale: en-US +Publisher: ChemTable Software +PublisherUrl: https://www.chemtable.com/about_us.htm +PublisherSupportUrl: https://www.chemtable.com/contact.htm +PrivacyUrl: https://www.chemtable.com/license.htm?doc=privacy +PackageName: Autorun Organizer +PackageUrl: https://www.chemtable.com/autorun-organizer.htm +License: Proprietary +LicenseUrl: https://www.chemtable.com/license.htm?doc=AutorunOrganizer +Copyright: © 2025 Software Solutions 365 LLC +CopyrightUrl: https://www.chemtable.com/about_us.htm +ShortDescription: Free Windows Boot Acceleration With Antivirus Scan +ReleaseNotes: |- + v. 6.20 06/07/2025 + + - Startup items are now retrieved faster. +ReleaseNotesUrl: https://www.chemtable.com/version-history.htm?prod_id=AutorunOrganizer#6.20 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/ChemTableSoftware/AutorunOrganizer/6.20/ChemTableSoftware.AutorunOrganizer.yaml b/manifests/c/ChemTableSoftware/AutorunOrganizer/6.20/ChemTableSoftware.AutorunOrganizer.yaml new file mode 100644 index 0000000000000..4dc7b2d0d9e0b --- /dev/null +++ b/manifests/c/ChemTableSoftware/AutorunOrganizer/6.20/ChemTableSoftware.AutorunOrganizer.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: ChemTableSoftware.AutorunOrganizer +PackageVersion: '6.20' +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/Chill-Astro/PyCalc-JE/1.2/Chill-Astro.PyCalc-JE.installer.yaml b/manifests/c/Chill-Astro/PyCalc-JE/1.2/Chill-Astro.PyCalc-JE.installer.yaml new file mode 100644 index 0000000000000..2b443859c22ae --- /dev/null +++ b/manifests/c/Chill-Astro/PyCalc-JE/1.2/Chill-Astro.PyCalc-JE.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.9.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Chill-Astro.PyCalc-JE +PackageVersion: "1.2" +InstallerType: inno +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Chill-Astro/PyCalc-JE/releases/download/v1.2/PyCalc-JE-Setup.exe + InstallerSha256: 6413C564817FB42026F71D40FA1FFEB75A96D5BC4EF1D9DC4F66B8F37D86A2A4 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-12 diff --git a/manifests/c/Chill-Astro/PyCalc-JE/1.2/Chill-Astro.PyCalc-JE.locale.en-US.yaml b/manifests/c/Chill-Astro/PyCalc-JE/1.2/Chill-Astro.PyCalc-JE.locale.en-US.yaml new file mode 100644 index 0000000000000..2e1425530c3e7 --- /dev/null +++ b/manifests/c/Chill-Astro/PyCalc-JE/1.2/Chill-Astro.PyCalc-JE.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Chill-Astro.PyCalc-JE +PackageVersion: "1.2" +PackageLocale: en-US +Publisher: Chill-Astro +PublisherUrl: https://github.com/Chill-Astro +PublisherSupportUrl: https://github.com/Chill-Astro/PyCalc-JE/issues +PackageName: PyCalc-JE +PackageUrl: https://github.com/Chill-Astro/PyCalc-JE +License: GPL-3.0 +ShortDescription: PyCalc-JE Setup +Tags: +- calculator +- calculator-app +- calculator-application +- console-app +- console-application +- cross-platform +- java +- jdk +- jdk24 +- linux +- macos +- oracle +- simple-app +- simple-calculator-app +- terminal-based +- windows +ReleaseNotesUrl: https://github.com/Chill-Astro/PyCalc-JE/releases/tag/v1.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/Chill-Astro/PyCalc-JE/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/c/Chill-Astro/PyCalc-JE/1.2/Chill-Astro.PyCalc-JE.yaml b/manifests/c/Chill-Astro/PyCalc-JE/1.2/Chill-Astro.PyCalc-JE.yaml new file mode 100644 index 0000000000000..24337890867f9 --- /dev/null +++ b/manifests/c/Chill-Astro/PyCalc-JE/1.2/Chill-Astro.PyCalc-JE.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Chill-Astro.PyCalc-JE +PackageVersion: "1.2" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/c/Chill-Astro/PyCalc-SE/1.2/Chill-Astro.PyCalc-SE.installer.yaml b/manifests/c/Chill-Astro/PyCalc-SE/1.2/Chill-Astro.PyCalc-SE.installer.yaml deleted file mode 100644 index 8351ce72b52c9..0000000000000 --- a/manifests/c/Chill-Astro/PyCalc-SE/1.2/Chill-Astro.PyCalc-SE.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Chill-Astro.PyCalc-SE -PackageVersion: "1.2" -InstallerType: inno -Installers: -- Architecture: neutral - UnsupportedOSArchitectures: - # PE32 executable for MS Windows 6.01 (GUI), Intel i386, 11 sections - - arm - - arm64 - InstallerUrl: https://github.com/Chill-Astro/PyCalc-SE/releases/download/v1.2/PyCalc-SE-Setup.exe - InstallerSha256: 2427D328A7FFE8434177D296E09F465AA16D528840C8781CC825CFD980BEFFE2 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/c/Chill-Astro/PyCalc-SE/1.2/Chill-Astro.PyCalc-SE.locale.en-US.yaml b/manifests/c/Chill-Astro/PyCalc-SE/1.2/Chill-Astro.PyCalc-SE.locale.en-US.yaml deleted file mode 100644 index 7e56480b8b179..0000000000000 --- a/manifests/c/Chill-Astro/PyCalc-SE/1.2/Chill-Astro.PyCalc-SE.locale.en-US.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Chill-Astro.PyCalc-SE -PackageVersion: "1.2" -PackageLocale: en-US -Publisher: Chill-Astro -PublisherUrl: https://github.com/Chill-Astro -PublisherSupportUrl: https://github.com/Chill-Astro/PyCalc-SE/issues -PackageUrl: https://github.com/Chill-Astro/PyCalc-SE -PackageName: PyCalc-SE -License: GPL-3.0 -LicenseUrl: https://github.com/Chill-Astro/PyCalc-SE/blob/main/LICENSE -ShortDescription: | - PyCalc - SE is a Simpler GUI Version of PyCalc consisting of the Basic Calculator! -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/c/Chill-Astro/PyCalc-SE/1.2/Chill-Astro.PyCalc-SE.yaml b/manifests/c/Chill-Astro/PyCalc-SE/1.2/Chill-Astro.PyCalc-SE.yaml deleted file mode 100644 index 25f8be4852339..0000000000000 --- a/manifests/c/Chill-Astro/PyCalc-SE/1.2/Chill-Astro.PyCalc-SE.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Chill-Astro.PyCalc-SE -PackageVersion: "1.2" -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/c/Chill-Astro/PyCalc/1.8/Chill-Astro.PyCalc.installer.yaml b/manifests/c/Chill-Astro/PyCalc/1.8/Chill-Astro.PyCalc.installer.yaml new file mode 100644 index 0000000000000..8a2740e5b3e9e --- /dev/null +++ b/manifests/c/Chill-Astro/PyCalc/1.8/Chill-Astro.PyCalc.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: Chill-Astro.PyCalc +PackageVersion: '1.8' +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallerSwitches: + Custom: /ALLUSERS +ProductCode: '{CA8F4DA8-6A23-47F9-9A5B-08F376F2C706}_is1' +ReleaseDate: 2025-06-25 +UnsupportedOSArchitectures: +- arm +- arm64 +AppsAndFeaturesEntries: +- ProductCode: '{CA8F4DA8-6A23-47F9-9A5B-08F376F2C706}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Chill-Astro\PyCalc' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Chill-Astro/PyCalc/releases/download/v1.8/PyCalc-Setup.exe + InstallerSha256: C45E85B000962762E6E53119195C2584DE628F896034F078B5DC9C9A6EC91627 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chill-Astro/PyCalc/1.8/Chill-Astro.PyCalc.locale.en-US.yaml b/manifests/c/Chill-Astro/PyCalc/1.8/Chill-Astro.PyCalc.locale.en-US.yaml new file mode 100644 index 0000000000000..87e0b8cca3a4a --- /dev/null +++ b/manifests/c/Chill-Astro/PyCalc/1.8/Chill-Astro.PyCalc.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Chill-Astro.PyCalc +PackageVersion: '1.8' +PackageLocale: en-US +Publisher: Chill-Astro +PublisherUrl: https://github.com/Chill-Astro +PublisherSupportUrl: https://github.com/Chill-Astro/PyCalc/issues +PackageName: PyCalc +PackageUrl: https://github.com/Chill-Astro/PyCalc +License: GPL-3.0 +LicenseUrl: https://github.com/Chill-Astro/PyCalc/blob/HEAD/LICENSE +ShortDescription: | + PyCalc: A Simple and Lightweight Calculator. Made in Python! +Tags: +- calculator +- calculator-application +- calculator-python +- calculators +- python +- python-app +- python3 +- simple-app +- simple-calculator +- simple-calculator-app +- simple-calculator-python +ReleaseNotes: |- + The Original PyCalc now Reborn! + Release Notes : + - [ MAIN UPDATE! ] : New Welcome Experience with options to disbale update check [ first run ] : + Screenshot_20250625_235810 + - New "Menus" in PyCalc for ease of use. + - Categorization of calculations. + - Bug Fixes. + Installing PyCalc from Winget : + winget install PyCalc + Installation and Requirements : + - Any system with Python installed. + - Requires Requests package to be installed via pip for PyCalc v1.2 and Higher! + - No installation needed if using PyC-Win.exe on Windows or PyC-Linux on Linux or PyC-Mac on MacOS! +ReleaseNotesUrl: https://github.com/Chill-Astro/PyCalc/releases/tag/v1.8 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chill-Astro/PyCalc/1.8/Chill-Astro.PyCalc.yaml b/manifests/c/Chill-Astro/PyCalc/1.8/Chill-Astro.PyCalc.yaml new file mode 100644 index 0000000000000..0613505271010 --- /dev/null +++ b/manifests/c/Chill-Astro/PyCalc/1.8/Chill-Astro.PyCalc.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: Chill-Astro.PyCalc +PackageVersion: '1.8' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chromium/ChromeDriver/138.0.7204.35/Chromium.ChromeDriver.installer.yaml b/manifests/c/Chromium/ChromeDriver/138.0.7204.35/Chromium.ChromeDriver.installer.yaml new file mode 100644 index 0000000000000..726163848a41d --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/138.0.7204.35/Chromium.ChromeDriver.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Chromium.ChromeDriver +PackageVersion: 138.0.7204.35 +InstallerType: zip +NestedInstallerType: portable +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: chromedriver-win32/chromedriver.exe + InstallerUrl: https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.35/win32/chromedriver-win32.zip + InstallerSha256: F2DB357F39D4EE8A55FF209AEA65E0266B8242D2832A158B0B603FF7CCBB911D + ReleaseDate: 2025-06-18 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: chromedriver-win64/chromedriver.exe + InstallerUrl: https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.35/win64/chromedriver-win64.zip + InstallerSha256: B8D83D09110C25AB37FA3D787715BA71B51DD475D0960D3BAB8D4EF893AFBB3F + ReleaseDate: 2025-06-17 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chromium/ChromeDriver/138.0.7204.35/Chromium.ChromeDriver.locale.en-US.yaml b/manifests/c/Chromium/ChromeDriver/138.0.7204.35/Chromium.ChromeDriver.locale.en-US.yaml new file mode 100644 index 0000000000000..9b35ca954725c --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/138.0.7204.35/Chromium.ChromeDriver.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Chromium.ChromeDriver +PackageVersion: 138.0.7204.35 +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.35/Chromium.ChromeDriver.yaml b/manifests/c/Chromium/ChromeDriver/138.0.7204.35/Chromium.ChromeDriver.yaml new file mode 100644 index 0000000000000..687e6740beed0 --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/138.0.7204.35/Chromium.ChromeDriver.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: Chromium.ChromeDriver +PackageVersion: 138.0.7204.35 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chromium/ChromeDriver/138.0.7204.49/Chromium.ChromeDriver.installer.yaml b/manifests/c/Chromium/ChromeDriver/138.0.7204.49/Chromium.ChromeDriver.installer.yaml new file mode 100644 index 0000000000000..4b6da95267876 --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/138.0.7204.49/Chromium.ChromeDriver.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Chromium.ChromeDriver +PackageVersion: 138.0.7204.49 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: chromedriver-win32/chromedriver.exe + InstallerUrl: https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.49/win32/chromedriver-win32.zip + InstallerSha256: 9DCBC8BE693925105845608EE3BA4B27EDE4256C7637C56CD3536AB324DA6706 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: chromedriver-win64/chromedriver.exe + InstallerUrl: https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.49/win64/chromedriver-win64.zip + InstallerSha256: D5C53F5DC68BB517EFD64C991A5219355F6AF5245882F253869CAFABFFE45541 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chromium/ChromeDriver/138.0.7204.49/Chromium.ChromeDriver.locale.en-US.yaml b/manifests/c/Chromium/ChromeDriver/138.0.7204.49/Chromium.ChromeDriver.locale.en-US.yaml new file mode 100644 index 0000000000000..9b5e9e4e5f143 --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/138.0.7204.49/Chromium.ChromeDriver.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Chromium.ChromeDriver +PackageVersion: 138.0.7204.49 +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.49/Chromium.ChromeDriver.yaml b/manifests/c/Chromium/ChromeDriver/138.0.7204.49/Chromium.ChromeDriver.yaml new file mode 100644 index 0000000000000..9a4ab5080fc6d --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/138.0.7204.49/Chromium.ChromeDriver.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: Chromium.ChromeDriver +PackageVersion: 138.0.7204.49 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chromium/ChromeDriver/138.0.7204.92/Chromium.ChromeDriver.installer.yaml b/manifests/c/Chromium/ChromeDriver/138.0.7204.92/Chromium.ChromeDriver.installer.yaml new file mode 100644 index 0000000000000..298924d0c8f45 --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/138.0.7204.92/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.92 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2025-06-28 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: chromedriver-win32/chromedriver.exe + InstallerUrl: https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.92/win32/chromedriver-win32.zip + InstallerSha256: 2392821C6C9085F2F44370A92EEA3193E56A3CCF8777B9890E9D71EB3842ECD5 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: chromedriver-win64/chromedriver.exe + InstallerUrl: https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.92/win64/chromedriver-win64.zip + InstallerSha256: 8C2C48579CB35F69EDF09843A38014D713650AC8C20A2573FEFF8219B9A9FF8D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chromium/ChromeDriver/138.0.7204.92/Chromium.ChromeDriver.locale.en-US.yaml b/manifests/c/Chromium/ChromeDriver/138.0.7204.92/Chromium.ChromeDriver.locale.en-US.yaml new file mode 100644 index 0000000000000..4c0b9ec9b6857 --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/138.0.7204.92/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.92 +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.92/Chromium.ChromeDriver.yaml b/manifests/c/Chromium/ChromeDriver/138.0.7204.92/Chromium.ChromeDriver.yaml new file mode 100644 index 0000000000000..7148a13a4bef8 --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/138.0.7204.92/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.92 +DefaultLocale: en-US +ManifestType: version +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/ChurchApps/FreeShow/1.4.7/ChurchApps.FreeShow.installer.yaml b/manifests/c/ChurchApps/FreeShow/1.4.7/ChurchApps.FreeShow.installer.yaml new file mode 100644 index 0000000000000..661bdb9791759 --- /dev/null +++ b/manifests/c/ChurchApps/FreeShow/1.4.7/ChurchApps.FreeShow.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ChurchApps.FreeShow +PackageVersion: 1.4.7 +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: 39d6ac0d-0e91-5cc7-95e9-271a9a7ccacd +ReleaseDate: 2025-06-26 +AppsAndFeaturesEntries: +- DisplayName: FreeShow 1.4.7 + ProductCode: 39d6ac0d-0e91-5cc7-95e9-271a9a7ccacd +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ChurchApps/FreeShow/releases/download/v1.4.7/FreeShow-1.4.7-x64.exe + InstallerSha256: 812E0B336F0B8AB5D581A22AC7976F6ABB7EC74985DF0E80D6C9ABF3058C6B5E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/ChurchApps/FreeShow/1.4.7/ChurchApps.FreeShow.locale.en-US.yaml b/manifests/c/ChurchApps/FreeShow/1.4.7/ChurchApps.FreeShow.locale.en-US.yaml new file mode 100644 index 0000000000000..fb7dce0771dc6 --- /dev/null +++ b/manifests/c/ChurchApps/FreeShow/1.4.7/ChurchApps.FreeShow.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ChurchApps.FreeShow +PackageVersion: 1.4.7 +PackageLocale: en-US +Publisher: ChurchApps +PublisherUrl: https://github.com/ChurchApps +PublisherSupportUrl: https://github.com/ChurchApps/FreeShow/issues +Author: Pavlos Vasileiadis +PackageName: FreeShow +PackageUrl: https://github.com/ChurchApps/FreeShow +License: GPL-3.0 +LicenseUrl: https://github.com/ChurchApps/FreeShow/blob/HEAD/LICENSE +Copyright: Copyright © 2025 ChurchApps +ShortDescription: FreeShow is a free and open-source, user-friendly presenter software. +Description: | + FreeShow is a free software with a user-friendly interface that offers powerful features for creating and editing slideshows. +Tags: +- church +- easy-to-use +- free +- lyrics +- media +- presenter +- show +- text +ReleaseNotes: |- + 🔧 Tweaks: + - New loading screen + - Edit button in scripture drawer + - Right click output preview to edit + 🐞 Bugfixes: + - Fixed freeze when no metadata template existed + - Fixed slide actions not added if item was not at first index + - Fixed specific outputs not working for scriptures with no style overwrite + - Fixed NDI inputs having green tint after 6.2 + - Fixed local setting files updated when there was no changes + Changelog from version 1.4.6: + ✨ New features: + - Add folder with media to project + - Option to reveal one line at a time + - Option to reveal item on click + - Weather forecast item + - RSS feed input + 🔧 Tweaks: + - Slide groups view + - Change effect slide opacity + - Button to run section action + - Midi control change input/output + - Audio preview advance +/- 10 seconds + - Project export includes effects & actions + - Remove each action trigger and not just the last one + - Updated languages + - Small tweaks + 🐞 Bugfixes: + - Fixed overlay freeze issue + - Fixed freeze when RSS value was missing + - Fixed custom metadata template multiple lines not working + - Fixed dynamic value CCLI not working + - Fixed metadata/message templates alignment not working + - Fixed some OpenSong files not importing lyrics + - Fixed cutting text on macOS + - Fixed stage keep style not keeping position + - Fixed audio preview slider visually incorrect if mounted when paused + - Fixed clear controls not showing up if multiple outputs and only one with output + - Fixed not syncing if saved and pressing close button in confirmation popup + - Fixed actions list arrow not there + - Fixed sync update icons +ReleaseNotesUrl: https://github.com/ChurchApps/FreeShow/releases/tag/v1.4.7 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/ChurchApps/FreeShow/1.4.7/ChurchApps.FreeShow.yaml b/manifests/c/ChurchApps/FreeShow/1.4.7/ChurchApps.FreeShow.yaml new file mode 100644 index 0000000000000..e798f6db01d79 --- /dev/null +++ b/manifests/c/ChurchApps/FreeShow/1.4.7/ChurchApps.FreeShow.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: ChurchApps.FreeShow +PackageVersion: 1.4.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cilium/CiliumCLI/0.18.5/Cilium.CiliumCLI.installer.yaml b/manifests/c/Cilium/CiliumCLI/0.18.5/Cilium.CiliumCLI.installer.yaml new file mode 100644 index 0000000000000..e325862e9947c --- /dev/null +++ b/manifests/c/Cilium/CiliumCLI/0.18.5/Cilium.CiliumCLI.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: Cilium.CiliumCLI +PackageVersion: 0.18.5 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cilium.exe +Commands: +- cilium +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/cilium/cilium-cli/releases/download/v0.18.5/cilium-windows-amd64.zip + InstallerSha256: 068009E2CDBE9290EF7C601D060CB56D9F8AA2636C2D54611675AD879EC40698 +- Architecture: arm64 + InstallerUrl: https://github.com/cilium/cilium-cli/releases/download/v0.18.5/cilium-windows-arm64.zip + InstallerSha256: DEB50A1BBA7265F030735C76308F372DA877D22D4D014C3D4C4DC224C0B85390 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cilium/CiliumCLI/0.18.5/Cilium.CiliumCLI.locale.en-US.yaml b/manifests/c/Cilium/CiliumCLI/0.18.5/Cilium.CiliumCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..48884a3184527 --- /dev/null +++ b/manifests/c/Cilium/CiliumCLI/0.18.5/Cilium.CiliumCLI.locale.en-US.yaml @@ -0,0 +1,66 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Cilium.CiliumCLI +PackageVersion: 0.18.5 +PackageLocale: en-US +Publisher: Cilium +PublisherUrl: https://github.com/cilium +PublisherSupportUrl: https://github.com/cilium +Author: Cilium +PackageName: Cilium CLI +PackageUrl: https://github.com/cilium +License: Apache-2.0 +LicenseUrl: https://github.com/cilium/cilium-cli/blob/HEAD/LICENSE +ShortDescription: Cilium CNI CLI +Moniker: cilium +Tags: +- cilium +- cni +- k8s +- kubernetes +ReleaseNotes: |- + What's Changed + Minor Changes: + - cilium-cli: add clustermesh inspect-policy-default-local-cluster command (cilium/cilium#39828, @MrFreezeex) + - cli: add suport for policy-default-local-cluster in connectivity tests (cilium/cilium#39786, @MrFreezeex) + - cli: Enable tolerations flag for all connectivity tests (cilium/cilium#40072, @HadrienPatte) + - Improve EKS cluster name auto-detection by supporting both ARN and eksctl FQDN formats to avoid validation errors caused by overly long names. (cilium/cilium#39500, @zzuckerfrei) + CI Changes: + - cli,ci,ipsec: create key command and CI integration (cilium/cilium#37722, @viktor-kurchenko) + - connectivity: Include detailed failure messages in test report (cilium/cilium#39866, @aanm) + - fix(summary): arbitrary file access during archive extraction zipslip (cilium/cilium#39896, @odaysec) + Misc Changes: + - chore(deps): update all-dependencies (main) (cilium/cilium#40081, @cilium-renovate[bot]) + - chore(deps): update all-dependencies (main) (cilium/cilium#40214, @cilium-renovate[bot]) + - chore(deps): update docker.io/library/golang:1.24.4 docker digest to 10c1318 (main) (cilium/cilium#40036, @cilium-renovate[bot]) + - chore(deps): update go to v1.24.4 (main) (cilium/cilium#39943, @cilium-renovate[bot]) + - cilium-cli: clean up log messages (cilium/cilium#40101, @tklauser) + - cilium-cli: Standardize build args in dockerfile (cilium/cilium#40126, @HadrienPatte) + - cli: Add OpenShift cluster Kind (cilium/cilium#40012, @nebril) + - cli: Do not directly depend on DaemonConfig (cilium/cilium#39907, @brb) + - deps: Replace gopkg.in/yaml.v3 with go.yaml.in/yaml/v3 (cilium/cilium#40224, @HadrienPatte) + - docs: Add cmdref for cilium-cli (cilium/cilium#40017, @HadrienPatte) + - go.mod, vendor: bump github.com/google/go-github to v72 (cilium/cilium#40104, @tklauser) + - lint: Update staticcheck config in golangci-lint (cilium/cilium#40201, @sayboras) + - Test failure message included in Junit report of the connectivity tests. (cilium/cilium#40035, @mathpl) + - tools: Move codeowners library from cilium-cli dir (cilium/cilium#40253, @joestringer) + - chore(deps): update docker.io/library/golang:1.24.3 docker digest to 81bf592 by @renovate in #3044 + - chore(deps): update golang docker tag to v1.24.4 by @renovate in #3046 + - chore(deps): update softprops/action-gh-release action to v2.3.0 by @renovate in #3047 + - chore(deps): update go to v1.24.4 (patch) by @renovate in #3045 + - chore(deps): update softprops/action-gh-release action to v2.3.2 by @renovate in #3048 + - chore(deps): update gcr.io/distroless/static:latest docker digest to b7b9a69 by @renovate in #3049 + - chore(deps): update docker/setup-buildx-action action to v3.11.0 by @renovate in #3050 + - RELEASE.md: drop reference to v0.10 branch by @tklauser in #3051 + - Update stable release to v0.18.4 by @michi-covalent in #3052 + - chore(deps): update docker/setup-buildx-action action to v3.11.1 by @renovate in #3053 + - chore(deps): update golangci/golangci-lint docker tag to v2.2.0 by @renovate in #3057 + - chore(deps): update dependency cilium/cilium to v1.17.5 by @renovate in #3054 + - chore(deps): update docker.io/library/golang:1.24.4 docker digest to 10c1318 by @renovate in #3055 + - chore(deps): update golangci/golangci-lint docker tag to v2.2.1 by @renovate in #3058 + - Prepare for v0.18.5 release by @tklauser in #3059 + Full Changelog: v0.18.4...v0.18.5 +ReleaseNotesUrl: https://github.com/cilium/cilium-cli/releases/tag/v0.18.5 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cilium/CiliumCLI/0.18.5/Cilium.CiliumCLI.yaml b/manifests/c/Cilium/CiliumCLI/0.18.5/Cilium.CiliumCLI.yaml new file mode 100644 index 0000000000000..49c1219a53eab --- /dev/null +++ b/manifests/c/Cilium/CiliumCLI/0.18.5/Cilium.CiliumCLI.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: Cilium.CiliumCLI +PackageVersion: 0.18.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CircleCI/CLI/0.1.32638/CircleCI.CLI.installer.yaml b/manifests/c/CircleCI/CLI/0.1.32638/CircleCI.CLI.installer.yaml new file mode 100644 index 0000000000000..ecf6148de1f8d --- /dev/null +++ b/manifests/c/CircleCI/CLI/0.1.32638/CircleCI.CLI.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CircleCI.CLI +PackageVersion: 0.1.32638 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: circleci-cli_0.1.32638_windows_amd64/circleci.exe +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/CircleCI-Public/circleci-cli/releases/download/v0.1.32638/circleci-cli_0.1.32638_windows_amd64.zip + InstallerSha256: 1FD12D0DE3059A90E7D27F09F978FF117A228A04677460002F4C7C66E0F7F82F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CircleCI/CLI/0.1.32638/CircleCI.CLI.locale.en-US.yaml b/manifests/c/CircleCI/CLI/0.1.32638/CircleCI.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..4b3874bc72df7 --- /dev/null +++ b/manifests/c/CircleCI/CLI/0.1.32638/CircleCI.CLI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CircleCI.CLI +PackageVersion: 0.1.32638 +PackageLocale: en-US +Publisher: Circle Internet Services, Inc. +PublisherUrl: https://github.com/CircleCI-Public +PublisherSupportUrl: https://github.com/CircleCI-Public/circleci-cli/issues +PackageName: circleci-cli +PackageUrl: https://github.com/CircleCI-Public/circleci-cli +License: MIT +LicenseUrl: https://github.com/CircleCI-Public/circleci-cli/blob/HEAD/LICENSE +ShortDescription: Set of CircleCI’s advanced and powerful tools. +Tags: +- circle-ci +- circleci +- cli +- command-line-tool +- continuous-delivery +- continuous-integration +- developer-tools +- devops +- golang +- graphql +- tool +ReleaseNotes: |- + Changelog + - 2bfc35c Clarify that we support github only for CLI commands and fix the SNAP release +ReleaseNotesUrl: https://github.com/CircleCI-Public/circleci-cli/releases/tag/v0.1.32638 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CircleCI/CLI/0.1.32638/CircleCI.CLI.yaml b/manifests/c/CircleCI/CLI/0.1.32638/CircleCI.CLI.yaml new file mode 100644 index 0000000000000..32a5d56bd110c --- /dev/null +++ b/manifests/c/CircleCI/CLI/0.1.32638/CircleCI.CLI.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: CircleCI.CLI +PackageVersion: 0.1.32638 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cisco/Webex/45.7.0.32689/Cisco.Webex.installer.yaml b/manifests/c/Cisco/Webex/45.7.0.32689/Cisco.Webex.installer.yaml new file mode 100644 index 0000000000000..8c697e99533a8 --- /dev/null +++ b/manifests/c/Cisco/Webex/45.7.0.32689/Cisco.Webex.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: Cisco.Webex +PackageVersion: 45.7.0.32689 +InstallerType: wix +InstallerSwitches: + InstallLocation: INSTALL_ROOT="" + Custom: ACCEPT_EULA=TRUE +UpgradeBehavior: uninstallPrevious +Protocols: +- ciscospark +- wbx +- webex +- webexediscovery +- webexteams +FileExtensions: +- ciscospark +- wbx +- webex +- webexediscovery +- webexteams +ProductCode: '{45021ECF-AC70-54F6-B2FF-10E4AAB1A842}' +AppsAndFeaturesEntries: +- ProductCode: '{45021ECF-AC70-54F6-B2FF-10E4AAB1A842}' + UpgradeCode: '{B9DCA8E9-B3A9-419A-9D6F-9BC3557EE72C}' +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://binaries.webex.com/WebexDesktop-Win-64-Gold/20250701162343/Webex.msi + InstallerSha256: 5E88F9B1E417947514F91FAC057A8B068B7FEB9DB074DB2113209DBF6F07E529 +- Architecture: x64 + Scope: machine + InstallerUrl: https://binaries.webex.com/WebexDesktop-Win-64-Gold/20250701162343/Webex.msi + InstallerSha256: 5E88F9B1E417947514F91FAC057A8B068B7FEB9DB074DB2113209DBF6F07E529 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cisco/Webex/45.7.0.32689/Cisco.Webex.locale.en-US.yaml b/manifests/c/Cisco/Webex/45.7.0.32689/Cisco.Webex.locale.en-US.yaml new file mode 100644 index 0000000000000..7102527131c88 --- /dev/null +++ b/manifests/c/Cisco/Webex/45.7.0.32689/Cisco.Webex.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: Cisco.Webex +PackageVersion: 45.7.0.32689 +PackageLocale: en-US +Publisher: Cisco Systems, Inc +PublisherUrl: https://www.webex.com/ +PublisherSupportUrl: https://help.webex.com/ +Author: Cisco Systems, Inc. +PackageName: Webex +PackageUrl: https://www.webex.com/downloads.html +License: Proprietary +Copyright: Copyright © 2024 Cisco Systems. All rights reserved. +ShortDescription: With industry leading video conferencing, calling, and contact center solutions, Webex fuels hybrid work for businesses of all sizes. +Description: |- + Cisco Webex is an app for continuous teamwork. Move work forward in secure work spaces where everyone can contribute anytime with messaging, file sharing, white boarding, video meetings, calling, and more. It works on virtually any device, with these top benefits for mobile app users: + - Streamline Teamwork: One place for all the tools that help you do your job better and faster. Create spaces for you and another person or for a group working on a project. + - Make Better Decisions: Start and join meetings instantly. See everyone with an amazing HD video experience. Share your screen. Keep teamwork going in the connected work space. + - Stay Informed About All Your Work: Select from our growing catalog of integrations and bots to keep up to date with what's happening in other apps such as Box and Salesforce + - Find Anything Fast: Search for people, messages, and files across all your spaces - no need to switch accounts or views + - Bring The Experience Into Meeting Rooms: Pair your app to a Webex device, such as the Webex Board, to do things like wirelessly control meetings and save whiteboard drawings + - Work Securely: Built for business collaboration with end-to-end encryption +Moniker: webex +Tags: +- chat +- collaborate +- collaboration +- conference +- conferencing +- meeting +- video-conferencing +- voice-conferencing +- webinar +ReleaseNotesUrl: https://help.webex.com/article/mqkve8/ +PurchaseUrl: https://pricing.webex.com/us/en/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cisco/Webex/45.7.0.32689/Cisco.Webex.locale.zh-CN.yaml b/manifests/c/Cisco/Webex/45.7.0.32689/Cisco.Webex.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2312fa86700c6 --- /dev/null +++ b/manifests/c/Cisco/Webex/45.7.0.32689/Cisco.Webex.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: Cisco.Webex +PackageVersion: 45.7.0.32689 +PackageLocale: zh-CN +Publisher: Cisco Systems, Inc +PublisherUrl: https://www.webex.com/ +PublisherSupportUrl: https://help.webex.com/ +Author: Cisco Systems, Inc. +PackageName: Webex +PackageUrl: https://www.webex.com/downloads.html +License: 专有软件 +Copyright: 版权所有 © 2024 Cisco Systems。保留所有权利。 +ShortDescription: 凭借行业领先的视频会议、呼叫和联络中心解决方案,Webex 为各种规模的企业提供混合工作方式。 +Description: |- + Cisco Webex 是一款用于持续团队协作的应用。每个人都可以在安全工作空间中随时通过发送消息、文件共享、白板描绘、视频会议、呼叫等方式推进工作。它几乎适用于任何设备,并主要提供以下优势: + - 简化团队协作:将所有工具集中在一个地方,帮助您更好、更快地完成工作。为您和另一个人或为从事某个项目的团队创建空间。 + - 做出更好的决策:立刻开始及加入会议,通过出色的高清视频体验看见每一个人,共享您的屏幕,并在在线工作空间中保持团队协作。 + - 及时了解您的所有工作:从我们不断增长的集成和 bot 目录中选择,及时了解 Box 和 Salesforce 等其它应用中发生的事情 + - 快速查找所有信息:搜索所有空间中的人员、消息和文件 - 无需切换帐户或视图 + - 将这种体验带入会议室:将您的应用程序与 Webex 设备(如 Webex Board)配对,进行无线控制会议和保存白板绘画等活动 + - 安全工作:通过端对端加密进行业务协作 +Tags: +- 会议 +- 协作 +- 协同 +- 开会 +- 研讨会 +- 视频会议 +- 聊天 +- 语音会议 +ReleaseNotesUrl: https://help.webex.com/article/mqkve8/ +PurchaseUrl: https://pricing.webex.com/us/zh/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cisco/Webex/45.7.0.32689/Cisco.Webex.yaml b/manifests/c/Cisco/Webex/45.7.0.32689/Cisco.Webex.yaml new file mode 100644 index 0000000000000..bf6900d00f2c2 --- /dev/null +++ b/manifests/c/Cisco/Webex/45.7.0.32689/Cisco.Webex.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: Cisco.Webex +PackageVersion: 45.7.0.32689 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cisco/WebexRecorderAndPlayer/45.2.2.20/Cisco.WebexRecorderAndPlayer.installer.yaml b/manifests/c/Cisco/WebexRecorderAndPlayer/45.6.0.166/Cisco.WebexRecorderAndPlayer.installer.yaml similarity index 75% rename from manifests/c/Cisco/WebexRecorderAndPlayer/45.2.2.20/Cisco.WebexRecorderAndPlayer.installer.yaml rename to manifests/c/Cisco/WebexRecorderAndPlayer/45.6.0.166/Cisco.WebexRecorderAndPlayer.installer.yaml index 2e6d5567fc199..a6c7473df8023 100644 --- a/manifests/c/Cisco/WebexRecorderAndPlayer/45.2.2.20/Cisco.WebexRecorderAndPlayer.installer.yaml +++ b/manifests/c/Cisco/WebexRecorderAndPlayer/45.6.0.166/Cisco.WebexRecorderAndPlayer.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Cisco.WebexRecorderAndPlayer -PackageVersion: 45.2.2.20 +PackageVersion: 45.6.0.166 InstallerType: msi Scope: machine InstallerSwitches: @@ -10,12 +10,12 @@ InstallerSwitches: UpgradeBehavior: install FileExtensions: - wrf -ProductCode: '{81960FAE-2E88-92F5-08A5-59DFFFDCFFB5}' +ProductCode: '{69EA7AD0-571B-6125-5B7B-A0A089B286A2}' AppsAndFeaturesEntries: - UpgradeCode: '{4B5A1FEC-FA82-4869-8D0A-723E2AFE22B4}' Installers: - Architecture: x86 InstallerUrl: https://welcome.webex.com/client/T33L/atrecply.msi - InstallerSha256: 12AB581C28FA0E8BD619BA8250A6505FE593864D099C966EF792CEBCB416F1A6 + InstallerSha256: E0B7204697222F9E265E827DE983377D27902D501273D50949C4E459F3CD1BF2 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/c/Cisco/WebexRecorderAndPlayer/45.2.2.20/Cisco.WebexRecorderAndPlayer.locale.en-US.yaml b/manifests/c/Cisco/WebexRecorderAndPlayer/45.6.0.166/Cisco.WebexRecorderAndPlayer.locale.en-US.yaml similarity index 93% rename from manifests/c/Cisco/WebexRecorderAndPlayer/45.2.2.20/Cisco.WebexRecorderAndPlayer.locale.en-US.yaml rename to manifests/c/Cisco/WebexRecorderAndPlayer/45.6.0.166/Cisco.WebexRecorderAndPlayer.locale.en-US.yaml index 1c118a9f8bdfe..e9d8ada324226 100644 --- a/manifests/c/Cisco/WebexRecorderAndPlayer/45.2.2.20/Cisco.WebexRecorderAndPlayer.locale.en-US.yaml +++ b/manifests/c/Cisco/WebexRecorderAndPlayer/45.6.0.166/Cisco.WebexRecorderAndPlayer.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Cisco.WebexRecorderAndPlayer -PackageVersion: 45.2.2.20 +PackageVersion: 45.6.0.166 PackageLocale: en-US Publisher: Cisco Webex LLC PublisherUrl: https://www.webex.com/ diff --git a/manifests/c/Cisco/WebexRecorderAndPlayer/45.2.2.20/Cisco.WebexRecorderAndPlayer.locale.zh-CN.yaml b/manifests/c/Cisco/WebexRecorderAndPlayer/45.6.0.166/Cisco.WebexRecorderAndPlayer.locale.zh-CN.yaml similarity index 90% rename from manifests/c/Cisco/WebexRecorderAndPlayer/45.2.2.20/Cisco.WebexRecorderAndPlayer.locale.zh-CN.yaml rename to manifests/c/Cisco/WebexRecorderAndPlayer/45.6.0.166/Cisco.WebexRecorderAndPlayer.locale.zh-CN.yaml index 8d93ae5c74b36..e8a61a53c2bbc 100644 --- a/manifests/c/Cisco/WebexRecorderAndPlayer/45.2.2.20/Cisco.WebexRecorderAndPlayer.locale.zh-CN.yaml +++ b/manifests/c/Cisco/WebexRecorderAndPlayer/45.6.0.166/Cisco.WebexRecorderAndPlayer.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Cisco.WebexRecorderAndPlayer -PackageVersion: 45.2.2.20 +PackageVersion: 45.6.0.166 PackageLocale: zh-CN License: 专有软件 ShortDescription: 在计算机上观看 Webex 录制(.WRF)。 diff --git a/manifests/c/Cisco/WebexRecorderAndPlayer/45.2.2.20/Cisco.WebexRecorderAndPlayer.yaml b/manifests/c/Cisco/WebexRecorderAndPlayer/45.6.0.166/Cisco.WebexRecorderAndPlayer.yaml similarity index 87% rename from manifests/c/Cisco/WebexRecorderAndPlayer/45.2.2.20/Cisco.WebexRecorderAndPlayer.yaml rename to manifests/c/Cisco/WebexRecorderAndPlayer/45.6.0.166/Cisco.WebexRecorderAndPlayer.yaml index 7fd54b5b05b86..4445fb567436d 100644 --- a/manifests/c/Cisco/WebexRecorderAndPlayer/45.2.2.20/Cisco.WebexRecorderAndPlayer.yaml +++ b/manifests/c/Cisco/WebexRecorderAndPlayer/45.6.0.166/Cisco.WebexRecorderAndPlayer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Cisco.WebexRecorderAndPlayer -PackageVersion: 45.2.2.20 +PackageVersion: 45.6.0.166 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/c/Citrix/Workspace/25.3.10.69/Citrix.Workspace.installer.yaml b/manifests/c/Citrix/Workspace/25.3.10.69/Citrix.Workspace.installer.yaml new file mode 100644 index 0000000000000..a65092d2831b3 --- /dev/null +++ b/manifests/c/Citrix/Workspace/25.3.10.69/Citrix.Workspace.installer.yaml @@ -0,0 +1,65 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Citrix.Workspace +PackageVersion: 25.3.10.69 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /silent /norestart + SilentWithProgress: /silent /norestart + InstallLocation: INSTALLDIR="" +ExpectedReturnCodes: +- 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 +- InstallerReturnCode: 40017 + ReturnResponse: cancelledByUser +UpgradeBehavior: install +Protocols: +- receiver +FileExtensions: +- cr +- ica +ProductCode: CitrixOnlinePluginPackWeb +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://downloadplugins.citrix.com/ReceiverUpdates/Prod/Receiver/Win/CitrixWorkspaceApp25.3.10.69.exe + InstallerSha256: 7D89F82DE1FC167227FE7F079216653D723F52B4F9AB81A46697ABAD144DBE29 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Citrix/Workspace/25.3.10.69/Citrix.Workspace.locale.en-US.yaml b/manifests/c/Citrix/Workspace/25.3.10.69/Citrix.Workspace.locale.en-US.yaml new file mode 100644 index 0000000000000..c5ad63aaa208c --- /dev/null +++ b/manifests/c/Citrix/Workspace/25.3.10.69/Citrix.Workspace.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: Citrix.Workspace +PackageVersion: 25.3.10.69 +PackageLocale: en-US +Publisher: Citrix Systems, Inc. +PublisherUrl: https://www.citrix.com/ +PublisherSupportUrl: https://support.citrix.com/knowledge-center/ +PrivacyUrl: https://www.cloud.com/privacy-policy +Author: Citrix Systems, Inc. +PackageName: Citrix Workspace +PackageUrl: https://www.citrix.com/platform/receiver.html +License: Proprietary +LicenseUrl: https://www.cloud.com/content/dam/cloud/documents/legal/end-user-agreement.pdf +Copyright: © 2024 Citrix Systems, Inc. All rights reserved. +CopyrightUrl: https://www.cloud.com/content/dam/cloud/documents/legal/cloud-software-group-trademark-guidelines.pdf +ShortDescription: Citrix Workspace is a complete digital workspace solution that delivers secure access to the information, apps, and other content that is relevant to a person’s role in your organization. +Description: Citrix Workspace is a complete digital workspace solution that delivers secure access to the information, apps, and other content that is relevant to a person’s role in your organization. Users subscribe to the services you make available and can access them from anywhere, on any device. Citrix Workspace helps you organize and automate the most important details that your users need to collaborate, make better decisions, and focus on their work. +Moniker: citrix-workspace +Tags: +- desktop +- remote +- remote-access +- remote-desktop +- workspace +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Citrix/Workspace/25.3.10.69/Citrix.Workspace.locale.zh-CN.yaml b/manifests/c/Citrix/Workspace/25.3.10.69/Citrix.Workspace.locale.zh-CN.yaml new file mode 100644 index 0000000000000..40a977c63cee8 --- /dev/null +++ b/manifests/c/Citrix/Workspace/25.3.10.69/Citrix.Workspace.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: Citrix.Workspace +PackageVersion: 25.3.10.69 +PackageLocale: zh-CN +Publisher: Citrix Systems, Inc. +PublisherUrl: https://www.citrix.com/ +PublisherSupportUrl: https://support.citrix.com/knowledge-center/ +PrivacyUrl: https://www.cloud.com/privacy-policy +Author: Citrix Systems, Inc. +PackageName: Citrix Workspace +PackageUrl: https://www.citrix.com/platform/receiver.html +License: 专有软件 +LicenseUrl: https://www.cloud.com/content/dam/cloud/documents/legal/end-user-agreement.pdf +Copyright: © 2024 Citrix Systems, Inc. All rights reserved. +CopyrightUrl: https://www.cloud.com/content/dam/cloud/documents/legal/cloud-software-group-trademark-guidelines.pdf +ShortDescription: Citrix Workspace 是一个完整的数字工作区解决方案,可安全访问与个人在组织中的角色相关的信息、应用程序和其它内容。 +Description: Citrix Workspace 是一个完整的数字工作区解决方案,可安全访问与个人在组织中的角色相关的信息、应用程序和其它内容。用户可以订阅您提供的服务,并从任何地方、通过任何设备访问这些服务。Citrix Workspace 可帮助您组织并自动处理用户所需的最重要的细节,以便进行协作、做出更好的决策并专注于工作。 +Tags: +- 工作区 +- 桌面 +- 远程 +- 远程桌面 +- 远程访问 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Citrix/Workspace/25.3.10.69/Citrix.Workspace.yaml b/manifests/c/Citrix/Workspace/25.3.10.69/Citrix.Workspace.yaml new file mode 100644 index 0000000000000..bfe8060ba1edf --- /dev/null +++ b/manifests/c/Citrix/Workspace/25.3.10.69/Citrix.Workspace.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: Citrix.Workspace +PackageVersion: 25.3.10.69 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/ClashVergeRev/ClashVergeRev/2.3.1/ClashVergeRev.ClashVergeRev.locale.zh-CN.yaml b/manifests/c/ClashVergeRev/ClashVergeRev/2.3.1/ClashVergeRev.ClashVergeRev.locale.zh-CN.yaml index c252cafd677f6..e88bb189f58ae 100644 --- a/manifests/c/ClashVergeRev/ClashVergeRev/2.3.1/ClashVergeRev.ClashVergeRev.locale.zh-CN.yaml +++ b/manifests/c/ClashVergeRev/ClashVergeRev/2.3.1/ClashVergeRev.ClashVergeRev.locale.zh-CN.yaml @@ -22,7 +22,26 @@ Tags: - vpn - 代理 - 网络 -ReleaseNotes: More new features are now supported. +ReleaseNotes: |- + v2.3.1 + 发行代号:御 + 代号释义: 「御」,象征掌控与守护,寓意本次版本对系统稳定性、安全性与用户体验的全面驾驭与提升。 + + v2.3.1 + 🐞 修复问题 + - 增加配置文件校验,修复从古老版本升级上来的"No such file or directory (os error 2)"错误 + - 修复扩展脚本转义错误 + - 修复 macOS Intel X86 架构构建错误导致无法运行 + - 修复 Linux 下界面边框白边问题 + - 修复 托盘 无响应问题 + - 修复 托盘 无法从轻量模式退出并恢复窗口 + - 修复 快速切换订阅可能导致的卡死问题 + ✨ 新增功能 + - 新增 window-state 窗口状态管理和恢复 + 🚀 优化改进 + - 优化 托盘 统一响应 + - 优化 静默启动+自启动轻量模式 运行方式 + - 升级依赖 ReleaseNotesUrl: https://github.com/clash-verge-rev/clash-verge-rev/releases/tag/v2.3.1 Documentations: - DocumentLabel: 使用教程 diff --git a/manifests/c/CleverFiles/DiskDrill/6.0.1042.0/CleverFiles.DiskDrill.installer.yaml b/manifests/c/CleverFiles/DiskDrill/6.0.1042.0/CleverFiles.DiskDrill.installer.yaml deleted file mode 100644 index 5f0bde6305349..0000000000000 --- a/manifests/c/CleverFiles/DiskDrill/6.0.1042.0/CleverFiles.DiskDrill.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/26 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: CleverFiles.DiskDrill -PackageVersion: 6.0.1042.0 -InstallerType: burn -Scope: machine -UpgradeBehavior: install -Installers: -- Architecture: x64 - InstallerUrl: https://win.cleverfiles.com/disk-drill-win-full.exe - InstallerSha256: D82FCE92781104B7719553071C2E2F6FCB8E91961695B716C63094C640DC214B - ProductCode: '{a42fd332-6421-48b7-b8d5-0e31388e4555}' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/c/CleverFiles/DiskDrill/6.0.1042.0/CleverFiles.DiskDrill.yaml b/manifests/c/CleverFiles/DiskDrill/6.0.1042.0/CleverFiles.DiskDrill.yaml deleted file mode 100644 index df0f9cb06ee2e..0000000000000 --- a/manifests/c/CleverFiles/DiskDrill/6.0.1042.0/CleverFiles.DiskDrill.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/26 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: CleverFiles.DiskDrill -PackageVersion: 6.0.1042.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/c/CleverFiles/DiskDrill/6.0.1045.0/CleverFiles.DiskDrill.installer.yaml b/manifests/c/CleverFiles/DiskDrill/6.0.1045.0/CleverFiles.DiskDrill.installer.yaml new file mode 100644 index 0000000000000..5eb699a11460c --- /dev/null +++ b/manifests/c/CleverFiles/DiskDrill/6.0.1045.0/CleverFiles.DiskDrill.installer.yaml @@ -0,0 +1,15 @@ +# Automatically updated by the winget bot at 2025/Jun/24 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CleverFiles.DiskDrill +PackageVersion: 6.0.1045.0 +InstallerType: burn +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://win.cleverfiles.com/disk-drill-win-full.exe + InstallerSha256: C240F5D4882E1325429071E51CFC3ABEE23B805F604339E8489F72B40D170636 + ProductCode: '{a42fd332-6421-48b7-b8d5-0e31388e4555}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CleverFiles/DiskDrill/6.0.1042.0/CleverFiles.DiskDrill.locale.en-US.yaml b/manifests/c/CleverFiles/DiskDrill/6.0.1045.0/CleverFiles.DiskDrill.locale.en-US.yaml similarity index 91% rename from manifests/c/CleverFiles/DiskDrill/6.0.1042.0/CleverFiles.DiskDrill.locale.en-US.yaml rename to manifests/c/CleverFiles/DiskDrill/6.0.1045.0/CleverFiles.DiskDrill.locale.en-US.yaml index e5bab47de7ab4..b0b46bf3d7cde 100644 --- a/manifests/c/CleverFiles/DiskDrill/6.0.1042.0/CleverFiles.DiskDrill.locale.en-US.yaml +++ b/manifests/c/CleverFiles/DiskDrill/6.0.1045.0/CleverFiles.DiskDrill.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/May/26 +# Automatically updated by the winget bot at 2025/Jun/24 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CleverFiles.DiskDrill -PackageVersion: 6.0.1042.0 +PackageVersion: 6.0.1045.0 PackageLocale: en-US Publisher: CleverFiles PublisherUrl: https://www.cleverfiles.com/ diff --git a/manifests/c/CleverFiles/DiskDrill/6.0.1045.0/CleverFiles.DiskDrill.yaml b/manifests/c/CleverFiles/DiskDrill/6.0.1045.0/CleverFiles.DiskDrill.yaml new file mode 100644 index 0000000000000..5cbc01fb2a429 --- /dev/null +++ b/manifests/c/CleverFiles/DiskDrill/6.0.1045.0/CleverFiles.DiskDrill.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jun/24 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CleverFiles.DiskDrill +PackageVersion: 6.0.1045.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Clockify/Clockify/1.8.6/Clockify.Clockify.installer.yaml b/manifests/c/Clockify/Clockify/1.8.6/Clockify.Clockify.installer.yaml deleted file mode 100644 index 7a479418ae3d3..0000000000000 --- a/manifests/c/Clockify/Clockify/1.8.6/Clockify.Clockify.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Clockify.Clockify -PackageVersion: 1.8.6 -InstallerType: msi -Scope: machine -UpgradeBehavior: install -Protocols: -- clockify -ProductCode: '{395CCBF3-7AC0-447E-9901-62AE1F1EF82A}' -ReleaseDate: 2025-06-13 -AppsAndFeaturesEntries: -- UpgradeCode: '{A17CEE88-470D-49D0-A58D-40D503A0BEBF}' -Installers: -- Architecture: x64 - InstallerUrl: https://clockify.me/downloads/clockify-setup.msi - InstallerSha256: BBD1FB2AF2DF4BC1E50FE383C41F63DF9320251AD19606D9CBDF1BBED3EB84F2 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/c/Clockify/Clockify/1.8.6/Clockify.Clockify.locale.en-US.yaml b/manifests/c/Clockify/Clockify/1.8.6/Clockify.Clockify.locale.en-US.yaml deleted file mode 100644 index 1750d97f5f40b..0000000000000 --- a/manifests/c/Clockify/Clockify/1.8.6/Clockify.Clockify.locale.en-US.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Clockify.Clockify -PackageVersion: 1.8.6 -PackageLocale: en-US -Publisher: COING Inc. -PublisherUrl: https://clockify.me/ -PublisherSupportUrl: https://clockify.me/help/ -PrivacyUrl: https://cake.com/privacy -Author: COING Inc. -PackageName: Clockify -PackageUrl: https://clockify.me/windows-time-tracking -License: Proprietary -LicenseUrl: https://cake.com/terms -Copyright: © Clockify 2025 by CAKE.com Inc. -CopyrightUrl: https://cake.com/terms -ShortDescription: A time tracker and timesheet app that lets you track work hours across projects. -Moniker: clockify -Tags: -- time -- timer -- tracker -- work -ReleaseNotes: |- - - Fix: Offline entries were lost when going back online. - - Fix: Newly created tag was checked by default when the details window was opened. - - Fix: Default custom field value on the project did not override the workspace-level default. - - Other bug fixes and improvements. -ReleaseNotesUrl: https://clockify.me/help/whats-new -Documentations: -- DocumentLabel: Tutorials - DocumentUrl: https://clockify.me/tutorials -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/c/Clockify/Clockify/2.0.0/Clockify.Clockify.installer.yaml b/manifests/c/Clockify/Clockify/2.0.0/Clockify.Clockify.installer.yaml new file mode 100644 index 0000000000000..18ffdd4054641 --- /dev/null +++ b/manifests/c/Clockify/Clockify/2.0.0/Clockify.Clockify.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: Clockify.Clockify +PackageVersion: 2.0.0 +InstallerType: msi +Scope: machine +UpgradeBehavior: install +Protocols: +- clockify +ProductCode: '{CBE165FF-784C-40AF-951C-6317E4906E76}' +ReleaseDate: 2025-07-01 +AppsAndFeaturesEntries: +- UpgradeCode: '{A17CEE88-470D-49D0-A58D-40D503A0BEBF}' +Installers: +- Architecture: x64 + InstallerUrl: https://clockify.me/downloads/clockify-setup.msi + InstallerSha256: 127D38297159D781E6767291E250ADB2FDE385A844DFEA8075552231CB0EBD29 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Clockify/Clockify/2.0.0/Clockify.Clockify.locale.en-US.yaml b/manifests/c/Clockify/Clockify/2.0.0/Clockify.Clockify.locale.en-US.yaml new file mode 100644 index 0000000000000..333c2d1d5c5da --- /dev/null +++ b/manifests/c/Clockify/Clockify/2.0.0/Clockify.Clockify.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Clockify.Clockify +PackageVersion: 2.0.0 +PackageLocale: en-US +Publisher: COING Inc. +PublisherUrl: https://clockify.me/ +PublisherSupportUrl: https://clockify.me/help/ +PrivacyUrl: https://cake.com/privacy +Author: COING Inc. +PackageName: Clockify +PackageUrl: https://clockify.me/windows-time-tracking +License: Proprietary +LicenseUrl: https://cake.com/terms +Copyright: © Clockify 2025 by CAKE.com Inc. +CopyrightUrl: https://cake.com/terms +ShortDescription: A time tracker and timesheet app that lets you track work hours across projects. +Moniker: clockify +Tags: +- time +- timer +- tracker +- work +ReleaseNotes: |- + - Complete UI redesign - The app now has a brand new, modern and intuitive design. + - Auto Logging - Users can now enable Auto Tracker to start and stop with the Clockify app, and define the time range during which it tracks activity. + - Auto Tracker Timeline Improved - Timeline now displays the entire day for better tracking visibility. + - Auto Tracker Search - The search field now includes suggestions to speed up the search process. + - Improved Pickers – All pickers (project, task, tag, etc.) have been enhanced both in terms of appearance and functionality. + - Default Project Option Enhanced – Users can now choose between setting the last used project or a specific project as the default. + - Color Picker Added – Users can now select a custom color for their project. + - Task Estimate Option Added – Users can now set an estimate for a task directly from the Clockify Windows app. + - Account Tab Added – A new "Account" tab has been added to Preferences, making it easier for users to navigate to account settings. + - Bug Fixes and Performance Improvements - A significant number of bugs have been resolved and performance has been optimized. +ReleaseNotesUrl: https://clockify.me/help/whats-new +Documentations: +- DocumentLabel: Tutorials + DocumentUrl: https://clockify.me/tutorials +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Clockify/Clockify/1.8.6/Clockify.Clockify.locale.zh-CN.yaml b/manifests/c/Clockify/Clockify/2.0.0/Clockify.Clockify.locale.zh-CN.yaml similarity index 92% rename from manifests/c/Clockify/Clockify/1.8.6/Clockify.Clockify.locale.zh-CN.yaml rename to manifests/c/Clockify/Clockify/2.0.0/Clockify.Clockify.locale.zh-CN.yaml index f607a7a8f1afc..f20643505605b 100644 --- a/manifests/c/Clockify/Clockify/1.8.6/Clockify.Clockify.locale.zh-CN.yaml +++ b/manifests/c/Clockify/Clockify/2.0.0/Clockify.Clockify.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Clockify.Clockify -PackageVersion: 1.8.6 +PackageVersion: 2.0.0 PackageLocale: zh-CN License: 专有软件 ShortDescription: 一款时间追踪与工时表应用,助您轻松记录跨项目的工作时长。 diff --git a/manifests/c/Clockify/Clockify/1.8.6/Clockify.Clockify.yaml b/manifests/c/Clockify/Clockify/2.0.0/Clockify.Clockify.yaml similarity index 88% rename from manifests/c/Clockify/Clockify/1.8.6/Clockify.Clockify.yaml rename to manifests/c/Clockify/Clockify/2.0.0/Clockify.Clockify.yaml index 872f0e5ef7d27..0108b8434daad 100644 --- a/manifests/c/Clockify/Clockify/1.8.6/Clockify.Clockify.yaml +++ b/manifests/c/Clockify/Clockify/2.0.0/Clockify.Clockify.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Clockify.Clockify -PackageVersion: 1.8.6 +PackageVersion: 2.0.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/c/Cloudflare/Warp/25.5.893.0/Cloudflare.Warp.installer.yaml b/manifests/c/Cloudflare/Warp/25.5.893.0/Cloudflare.Warp.installer.yaml new file mode 100644 index 0000000000000..ab09e4a55daf6 --- /dev/null +++ b/manifests/c/Cloudflare/Warp/25.5.893.0/Cloudflare.Warp.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: Cloudflare.Warp +PackageVersion: 25.5.893.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Custom: /NORESTART +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.EdgeWebView2Runtime + MinimumVersion: 91.0.864.53 +ProductCode: '{58D3416B-AF3A-4C51-90AC-D4CBEF7C98CA}' +AppsAndFeaturesEntries: +- ProductCode: '{58D3416B-AF3A-4C51-90AC-D4CBEF7C98CA}' + UpgradeCode: '{1BF42825-7B65-4CA9-AFFF-B7B5E1CE27B4}' +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.cloudflareclient.com/v1/download/windows/version/2025.5.893.0 + InstallerSha256: FF77A76288ADF412E819614795476B9B834B79E5A036AAA554C6E2EABD45C623 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cloudflare/Warp/25.5.893.0/Cloudflare.Warp.locale.en-US.yaml b/manifests/c/Cloudflare/Warp/25.5.893.0/Cloudflare.Warp.locale.en-US.yaml new file mode 100644 index 0000000000000..76394b9c79af8 --- /dev/null +++ b/manifests/c/Cloudflare/Warp/25.5.893.0/Cloudflare.Warp.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Cloudflare.Warp +PackageVersion: 25.5.893.0 +PackageLocale: en-US +Publisher: Cloudflare, Inc. +PublisherUrl: https://www.cloudflare.com/ +PrivacyUrl: https://www.cloudflare.com/privacypolicy/ +Author: Cloudflare, Inc. +PackageName: Cloudflare WARP +PackageUrl: https://one.one.one.one/ +License: Proprietary +LicenseUrl: https://www.cloudflare.com/terms/ +Copyright: Copyright (c) Cloudflare Inc. +CopyrightUrl: https://www.cloudflare.com/terms/ +ShortDescription: 1.1.1.1 with WARP replaces the connection between your device and the Internet with a modern, optimized, protocol. +Description: 1.1.1.1 with WARP replaces the connection between your device and the Internet with a modern, optimized, protocol. +Moniker: warp +Tags: +- 1.1.1.1 +- cloudflare +- dns +- one.one.one.one +- vpn +- warp +ReleaseNotesUrl: https://developers.cloudflare.com/cloudflare-one/changelog/warp/#2025-06-30 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cloudflare/Warp/25.5.893.0/Cloudflare.Warp.yaml b/manifests/c/Cloudflare/Warp/25.5.893.0/Cloudflare.Warp.yaml new file mode 100644 index 0000000000000..19f0558f31ae2 --- /dev/null +++ b/manifests/c/Cloudflare/Warp/25.5.893.0/Cloudflare.Warp.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: Cloudflare.Warp +PackageVersion: 25.5.893.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cloudflare/cloudflared/2025.7.0/Cloudflare.cloudflared.installer.yaml b/manifests/c/Cloudflare/cloudflared/2025.7.0/Cloudflare.cloudflared.installer.yaml new file mode 100644 index 0000000000000..8e3eb6179c47c --- /dev/null +++ b/manifests/c/Cloudflare/cloudflared/2025.7.0/Cloudflare.cloudflared.installer.yaml @@ -0,0 +1,21 @@ +# Created with AutoPublish using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Cloudflare.cloudflared +PackageVersion: 2025.7.0 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{596F3BAB-A20D-4973-83B1-501A7B721F42}' +ReleaseDate: 2025-07-03 +AppsAndFeaturesEntries: +- ProductCode: '{596F3BAB-A20D-4973-83B1-501A7B721F42}' + UpgradeCode: '{23f90fdd-9328-47ea-ab52-5380855a4b12}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\cloudflared' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/cloudflare/cloudflared/releases/download/2025.7.0/cloudflared-windows-amd64.msi + InstallerSha256: 1D7852A0FBE20EEB5AB1A909030BFD354DAC9F25248585DFCFD22553F589FC09 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cloudflare/cloudflared/2025.7.0/Cloudflare.cloudflared.locale.en-US.yaml b/manifests/c/Cloudflare/cloudflared/2025.7.0/Cloudflare.cloudflared.locale.en-US.yaml new file mode 100644 index 0000000000000..343500d73f07c --- /dev/null +++ b/manifests/c/Cloudflare/cloudflared/2025.7.0/Cloudflare.cloudflared.locale.en-US.yaml @@ -0,0 +1,58 @@ +# Created with AutoPublish using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Cloudflare.cloudflared +PackageVersion: 2025.7.0 +PackageLocale: en-US +Publisher: cloudflare +PublisherUrl: https://github.com/cloudflare/cloudflared +PublisherSupportUrl: https://github.com/cloudflare/cloudflared/issues +Author: cloudflare +PackageName: cloudflared +PackageUrl: https://github.com/cloudflare/cloudflared +License: Apache-2.0 +LicenseUrl: https://github.com/cloudflare/cloudflared/blob/HEAD/LICENSE +Copyright: Copyright (c) cloudflare +CopyrightUrl: https://github.com/cloudflare/cloudflared/blob/master/LICENSE +ShortDescription: Cloudflare Tunnel client +Moniker: cloudflared +Tags: +- argo-tunnel +- cloudflare +- cloudflare-tunnel +- reverse-proxy +- zero-trust-network-access +ReleaseNotes: |- + SHA256 Checksums: + cloudflared-amd64.pkg: 3d5ee7a88abab7bb0ee261ce806de9695d05c8faf1890801402107f32c7d9393 + cloudflared-arm64.pkg: 6edc3475a849acd242a840e19713ae0f40040849623e8c6367d0d17ae271cc90 + cloudflared-darwin-amd64.tgz: a917f54de92d0f9805ab51dedd1d49da0f1c32daf054403b72d26b93b3228e9e + cloudflared-darwin-arm64.tgz: 978c03a1f4662d4773deaf2151f404b6658452fd475f400087e7f38fd85a31b7 + cloudflared-fips-linux-amd64: 095bb52a3b7637cc4cc9467a56aac3e5aae8fe27b635cc4f0deff26845f48b77 + cloudflared-fips-linux-amd64.deb: 32c0d3e0cc11d6b1e40bddf9814272015d26280603b0d83352b2805d76843058 + cloudflared-fips-linux-x86_64.rpm: e1592a4bfc034d8c00c46ce12ce6fb685460d85b00db816fdb6ba09580d4c398 + cloudflared-linux-386: 47b6bca18f1d99d5774c66a1336f23861310bab749b50b9477f5f1b5c922215e + cloudflared-linux-386.deb: 2bcb4de216167423feb6f63c4aa6a3073795749839e1daefab7e1ecce6f38afc + cloudflared-linux-386.rpm: c5b11a4da42697b5c8c40db37115d6069a880ad588f353c9322114665302e9fc + cloudflared-linux-aarch64.rpm: 0b6a7a805d47203c50a7744ccac48285360c97f6eaf625fcd2c0c08f6b20472f + cloudflared-linux-amd64: 51e3909335fd7ba2ed5c696b0a6fb7d4a74f6a15bf36615cea0fccba620cfb3f + cloudflared-linux-amd64.deb: a65ceb838f1deb941f7ea9101ff54eaba04179135fd562456a59ea293479e113 + cloudflared-linux-arm: 61c0235634539582b6729294005a8d717fc8ccd4a20c40dbe91721851540c4b2 + cloudflared-linux-arm.deb: 0d65bd75fa191835fe9d9601ecd4d220f6b05231ae003b6ddd93d23fbed43496 + cloudflared-linux-arm.rpm: 31bb74d3c37e12df2eeec8e2fa331d3df02c99d8298d1aa5545c4a3d1bd709ea + cloudflared-linux-arm64: db86f73e07133ca3e0e63b8158dbaacf39f5dd4458260cb95ccf12b35c1b6cd9 + cloudflared-linux-arm64.deb: f2e5b913d26bf65909c13ccd84345d5639c63a57a18583e9370a0b7507ebc1f9 + cloudflared-linux-armhf: f4748a3a01d53087f2a5456422fc20613b913c3d84555df979827a15c6713707 + cloudflared-linux-armhf.deb: 406f21d88e093e1ba3a57ad12c77b223f9e7e7d18a71ac2ba73e66c2d820e420 + cloudflared-linux-armhf.rpm: c22070ec87a06bb0da77c132c88e5074a5be3bcf7ce5ac08ee9fac4b58ca4ac2 + cloudflared-linux-x86_64.rpm: 69901a2636f61e1975f824b78e95ae14d2d1849f953d46dd2915c72241ff03ef + cloudflared-windows-386.exe: 83f8a6a658319aafc317e07230a7601f8d7ca8fd65fc4cff9b521afb17172294 + cloudflared-windows-386.msi: 52c52beae3ee544d511ac2db162b32e86322a52596aa4612bf09f169a901493d + cloudflared-windows-amd64.exe: 9e37ce90110dc9e83108317273369641d2cab438cd9ca0458b30a6568fb09eac + cloudflared-windows-amd64.msi: 1d7852a0fbe20eeb5ab1a909030bfd354dac9f25248585dfcfd22553f589fc09 +ReleaseNotesUrl: https://github.com/cloudflare/cloudflared/releases/tag/2025.7.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/cloudflare/cloudflared/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cloudflare/cloudflared/2025.7.0/Cloudflare.cloudflared.yaml b/manifests/c/Cloudflare/cloudflared/2025.7.0/Cloudflare.cloudflared.yaml new file mode 100644 index 0000000000000..b5a690fbb23c9 --- /dev/null +++ b/manifests/c/Cloudflare/cloudflared/2025.7.0/Cloudflare.cloudflared.yaml @@ -0,0 +1,8 @@ +# Created with AutoPublish using komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Cloudflare.cloudflared +PackageVersion: 2025.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cloudfleet/CLI/0.6.10/Cloudfleet.CLI.installer.yaml b/manifests/c/Cloudfleet/CLI/0.6.10/Cloudfleet.CLI.installer.yaml new file mode 100644 index 0000000000000..c402265d22242 --- /dev/null +++ b/manifests/c/Cloudfleet/CLI/0.6.10/Cloudfleet.CLI.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Cloudfleet.CLI +PackageVersion: 0.6.10 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cloudfleet.exe +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.cloudfleet.ai/cli/0.6.10/cloudfleet_windows_amd64.zip + InstallerSha256: B4E98194EC03DAA4ACBD745AF855CF33A2D4AECBE5A30A5C2DDDF38582E23635 +- Architecture: arm64 + InstallerUrl: https://downloads.cloudfleet.ai/cli/0.6.10/cloudfleet_windows_arm64.zip + InstallerSha256: 1DC625B6529A18E38A7F3C0DB453D3F2B6025C45361E01321A6B46BA0050F807 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cloudfleet/CLI/0.6.10/Cloudfleet.CLI.locale.en-US.yaml b/manifests/c/Cloudfleet/CLI/0.6.10/Cloudfleet.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..993ed2e52bc58 --- /dev/null +++ b/manifests/c/Cloudfleet/CLI/0.6.10/Cloudfleet.CLI.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Cloudfleet.CLI +PackageVersion: 0.6.10 +PackageLocale: en-US +Publisher: Cloudfleet +PackageName: Cloudfleet CLI +License: MIT License +ShortDescription: Cloudfleet CLI enables users to manage their Cloudfleet accounts and Cloudfleet Kubernetes Engine clusters +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cloudfleet/CLI/0.6.10/Cloudfleet.CLI.yaml b/manifests/c/Cloudfleet/CLI/0.6.10/Cloudfleet.CLI.yaml new file mode 100644 index 0000000000000..010287e1cc1c2 --- /dev/null +++ b/manifests/c/Cloudfleet/CLI/0.6.10/Cloudfleet.CLI.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: Cloudfleet.CLI +PackageVersion: 0.6.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cloudfleet/CLI/0.6.11/Cloudfleet.CLI.installer.yaml b/manifests/c/Cloudfleet/CLI/0.6.11/Cloudfleet.CLI.installer.yaml new file mode 100644 index 0000000000000..392d22094709c --- /dev/null +++ b/manifests/c/Cloudfleet/CLI/0.6.11/Cloudfleet.CLI.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: Cloudfleet.CLI +PackageVersion: 0.6.11 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cloudfleet.exe +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.cloudfleet.ai/cli/0.6.11/cloudfleet_windows_amd64.zip + InstallerSha256: C0BC9500B6DB18018A6445940341B41E4A33F927F688A101949C3A37A4B724BD +- Architecture: arm64 + InstallerUrl: https://downloads.cloudfleet.ai/cli/0.6.11/cloudfleet_windows_arm64.zip + InstallerSha256: 53D5EC21F8C56B4E275F89B3F40850BEF0659C0041238375BB2CAEF798558224 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cloudfleet/CLI/0.6.11/Cloudfleet.CLI.locale.en-US.yaml b/manifests/c/Cloudfleet/CLI/0.6.11/Cloudfleet.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..5b247bbe19574 --- /dev/null +++ b/manifests/c/Cloudfleet/CLI/0.6.11/Cloudfleet.CLI.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Cloudfleet.CLI +PackageVersion: 0.6.11 +PackageLocale: en-US +Publisher: Cloudfleet +PackageName: Cloudfleet CLI +License: MIT License +ShortDescription: Cloudfleet CLI enables users to manage their Cloudfleet accounts and Cloudfleet Kubernetes Engine clusters +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cloudfleet/CLI/0.6.11/Cloudfleet.CLI.yaml b/manifests/c/Cloudfleet/CLI/0.6.11/Cloudfleet.CLI.yaml new file mode 100644 index 0000000000000..bbc368986fa27 --- /dev/null +++ b/manifests/c/Cloudfleet/CLI/0.6.11/Cloudfleet.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: Cloudfleet.CLI +PackageVersion: 0.6.11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cockos/REAPER/7.41/Cockos.REAPER.installer.yaml b/manifests/c/Cockos/REAPER/7.41/Cockos.REAPER.installer.yaml new file mode 100644 index 0000000000000..7e642f94f79cc --- /dev/null +++ b/manifests/c/Cockos/REAPER/7.41/Cockos.REAPER.installer.yaml @@ -0,0 +1,34 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Cockos.REAPER +PackageVersion: "7.41" +Platform: +- Windows.Desktop +MinimumOSVersion: 5.1.0.0 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S + SilentWithProgress: /S +InstallerSuccessCodes: +- 1223 +UpgradeBehavior: install +ProductCode: REAPER +AppsAndFeaturesEntries: +- DisplayName: REAPER +Installers: +- Architecture: x86 + InstallerUrl: https://www.reaper.fm/files/7.x/reaper741-install.exe + InstallerSha256: D819A5F6B2BE559D6BD0B0783035BC6D0E457378013476204ECA08C34EF86918 +- Architecture: x64 + InstallerUrl: https://www.reaper.fm/files/7.x/reaper741_x64-install.exe + InstallerSha256: ABBAB83443A81AFC78104AC854F44B746B1640B61B9E89F42B6AD8B0FFAF35B5 +- Architecture: arm64 + InstallerUrl: https://www.reaper.fm/files/7.x/reaper741_win11_arm64ec_beta-install.exe + InstallerSha256: 21E15859DD368D5A2BAE7947B160C27D88DB5D0BFFA2F724D60FB48B8F601845 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/c/Cockos/REAPER/7.41/Cockos.REAPER.locale.en-US.yaml b/manifests/c/Cockos/REAPER/7.41/Cockos.REAPER.locale.en-US.yaml new file mode 100644 index 0000000000000..c50ef56121403 --- /dev/null +++ b/manifests/c/Cockos/REAPER/7.41/Cockos.REAPER.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Cockos.REAPER +PackageVersion: "7.41" +PackageLocale: en-US +Publisher: Cockos Incorporated +PublisherUrl: https://www.cockos.com/ +Author: Cockos Incorporated +PackageName: REAPER +PackageUrl: https://www.reaper.fm/ +License: Proprietary +Copyright: Copyright (c) 2005-2022 Cockos Incorporated +ShortDescription: REAPER is a digital audio production application, offering full multitrack audio and MIDI recording, processing, editing, mixing and mastering toolset. +Moniker: reaper +Tags: +- audio +- audio-editor +- audio-mixer +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/c/Cockos/REAPER/7.41/Cockos.REAPER.yaml b/manifests/c/Cockos/REAPER/7.41/Cockos.REAPER.yaml new file mode 100644 index 0000000000000..c72ab8f203db2 --- /dev/null +++ b/manifests/c/Cockos/REAPER/7.41/Cockos.REAPER.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: Cockos.REAPER +PackageVersion: "7.41" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Basic/19.0.5/CodecGuide.K-LiteCodecPack.Basic.installer.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Basic/19.0.5/CodecGuide.K-LiteCodecPack.Basic.installer.yaml new file mode 100644 index 0000000000000..cccd2f22a1c0d --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Basic/19.0.5/CodecGuide.K-LiteCodecPack.Basic.installer.yaml @@ -0,0 +1,134 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Basic +PackageVersion: 19.0.5 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- "264" +- 3g2 +- 3ga +- 3gp +- 3gp2 +- 3gpp +- aac +- ac3 +- aif +- aifc +- aiff +- alac +- amr +- amv +- aob +- ape +- asf +- asx +- avi +- avs +- bdmv +- bik +- caf +- cb7 +- cbr +- cbz +- cda +- cue +- dav +- dff +- divx +- dsf +- dts +- dv +- evo +- f4v +- flac +- flv +- h264 +- hdmov +- ifo +- it +- ivf +- k3g +- m1v +- m2p +- m2t +- m2ts +- m2v +- m3u +- m3u8 +- m4a +- m4b +- m4v +- mid +- midi +- mk3d +- mka +- mkv +- mlp +- mo3 +- mod +- mov +- mp2v +- mp3 +- mp4 +- mp4v +- mpc +- mpcpl +- mpe +- mpeg +- mpg +- mpl +- mpls +- mpv2 +- mpv4 +- mqv +- mtm +- mts +- mxf +- ofr +- ofs +- oga +- ogg +- ogm +- ogv +- opus +- pls +- pmp +- ra +- ram +- rec +- rm +- rmvb +- s3m +- smk +- spx +- ssif +- tak +- tp +- tps +- trp +- ts +- tta +- umx +- video +- vob +- wav +- webm +- webp +- wma +- wmv +- wtv +- wv +- xm +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x86 + InstallerUrl: https://files2.codecguide.com/K-Lite_Codec_Pack_1905_Basic.exe + InstallerSha256: 111FB1474CB686C8E3C67D0EEA7C3C2F7593CDED4B40A6081C79C809FB95B1E0 +- Architecture: x64 + InstallerUrl: https://files2.codecguide.com/K-Lite_Codec_Pack_1905_Basic.exe + InstallerSha256: 111FB1474CB686C8E3C67D0EEA7C3C2F7593CDED4B40A6081C79C809FB95B1E0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Basic/19.0.5/CodecGuide.K-LiteCodecPack.Basic.locale.en-US.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Basic/19.0.5/CodecGuide.K-LiteCodecPack.Basic.locale.en-US.yaml new file mode 100644 index 0000000000000..ac61a33db192b --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Basic/19.0.5/CodecGuide.K-LiteCodecPack.Basic.locale.en-US.yaml @@ -0,0 +1,48 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Basic +PackageVersion: 19.0.5 +PackageLocale: en-US +Publisher: KLCP +PublisherUrl: https://codecguide.com/ +PublisherSupportUrl: https://codecguide.com/forum.htm +PrivacyUrl: https://codecguide.com/privacypolicy.htm +PackageName: K-Lite Codec Pack Basic +PackageUrl: https://codecguide.com/download_k-lite_codec_pack_basic.htm +License: Freeware +LicenseUrl: https://codecguide.com/license_basic.rtf +Copyright: Copyright 2004-2025, Codec Guide. All rights reserved. +CopyrightUrl: https://codecguide.com/termsofuse.htm +ShortDescription: A collection of DirectShow filters, VFW/ACM codecs, and tools. +Description: |- + The K-Lite Codec Pack is a collection of DirectShow filters, VFW/ACM codecs, and tools. Codecs and DirectShow filters are needed for encoding and decoding audio and video formats. The K-Lite Codec Pack is designed as a user-friendly solution for playing all your audio and movie files. With the K-Lite Codec Pack you should be able to play all the popular audio and video formats and even several less common formats. + + There are four variants of the K-Lite Codec Pack: + The basic variant contains everything you need to play all the common video file formats. Such as AVI, MKV, MP4, OGM, and FLV. This pack is for those who like a small no-nonsense pack. It is small, but powerful. + The standard variant contains a few additional features compared to the basic variant. It contains Media Player Classic, which is an excellent player for video files. This pack is recommended for the average user. + The full variant has some extras compared to the standard variant. It additionally contains GraphStudioNext, and a few extra DirectShow filters. + The mega variant is the most complete pack. It additionally contains VFW/ACM codecs for video encoding/editing. + For detailed tables with comparisons of the abilities and contents of the different variants of the codec pack, have a look at the comparison of abilities and comparison of contents pages. +Moniker: k-litecodecpackbasic +Tags: +- audio +- codec +- decode +- k-lite +- klite +- klite-basic +- media +- mkv +- mp4 +- multimedia +- music +- player +- video +ReleaseNotes: '- Updated LAV Filters to version 0.80-1-gb9116' +ReleaseNotesUrl: https://codecguide.com/changelogs_basic.htm +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://codecguide.com/faq.htm +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Basic/19.0.5/CodecGuide.K-LiteCodecPack.Basic.locale.zh-CN.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Basic/19.0.5/CodecGuide.K-LiteCodecPack.Basic.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ea069275f3556 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Basic/19.0.5/CodecGuide.K-LiteCodecPack.Basic.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: CodecGuide.K-LiteCodecPack.Basic +PackageVersion: 19.0.5 +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 一套 DirectShow 滤镜、VFW/ACM 编解码器和工具的集合 +Description: |- + K-Lite 编解码器包是一套 DirectShow 滤镜、VFW/ACM 编解码器和工具的集合。编解码器和 DirectShow 滤镜用于编码和解码音视频格式。K-Lite 编解码器包是为播放所有音频和影片文件而设计的用户友好解决方案。有了 K-Lite Codec Pack,您就能播放所有流行的音视频格式,甚至还能播放一些不常用的格式。 + + K-Lite Codec Pack 有四种版本: + Basic 版包含播放所有常见视频文件格式所需的一切,例如 AVI、MKV、MP4、OGM 和 FLV。这款软件包适合那些喜欢简洁小巧软件包的用户。它体积小,但功能强大。 + Standard 版相比 Basic 版多了一些功能,包含了一款出色的视频文件播放器 Media Player Classic。建议普通用户使用此软件包。 + Full 版相比 Standard 版多了一些额外功能,额外包含了 GraphStudioNext 和一些额外的 DirectShow 滤镜。 + Mega 版是最完整的软件包,额外包含了用于视频编码/编辑的 VFW/ACM 编解码器。 + 请参阅功能比较(Comparison of abilities)和内容比较(Comparison of contents)页面,获取有关不同版本的编解码器包在功能和内容方面的差异的详细表格。 +Tags: +- k-lite +- klite +- mkv +- mp4 +- 多媒体 +- 媒体 +- 影音 +- 播放器 +- 视频 +- 解码 +- 解码器 +- 音乐 +- 音频 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://codecguide.com/faq.htm +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Basic/19.0.5/CodecGuide.K-LiteCodecPack.Basic.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Basic/19.0.5/CodecGuide.K-LiteCodecPack.Basic.yaml new file mode 100644 index 0000000000000..da7941f9f3761 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Basic/19.0.5/CodecGuide.K-LiteCodecPack.Basic.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: CodecGuide.K-LiteCodecPack.Basic +PackageVersion: 19.0.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.0.5/CodecGuide.K-LiteCodecPack.Full.installer.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.0.5/CodecGuide.K-LiteCodecPack.Full.installer.yaml new file mode 100644 index 0000000000000..18b63f0cc96ef --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.0.5/CodecGuide.K-LiteCodecPack.Full.installer.yaml @@ -0,0 +1,132 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Full +PackageVersion: 19.0.5 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- '264' +- 3g2 +- 3ga +- 3gp +- 3gp2 +- 3gpp +- aac +- ac3 +- aif +- aifc +- aiff +- alac +- amr +- amv +- aob +- ape +- asf +- asx +- avi +- avs +- bdmv +- bik +- caf +- cb7 +- cbr +- cbz +- cda +- cue +- dav +- dff +- divx +- dsf +- dts +- dv +- evo +- f4v +- flac +- flv +- h264 +- hdmov +- ifo +- it +- ivf +- k3g +- m1v +- m2p +- m2t +- m2ts +- m2v +- m3u +- m3u8 +- m4a +- m4b +- m4v +- mid +- midi +- mk3d +- mka +- mkv +- mlp +- mo3 +- mod +- mov +- mp2v +- mp3 +- mp4 +- mp4v +- mpc +- mpcpl +- mpe +- mpeg +- mpg +- mpl +- mpls +- mpv2 +- mpv4 +- mqv +- mtm +- mts +- mxf +- ofr +- ofs +- oga +- ogg +- ogm +- ogv +- opus +- pls +- pmp +- ra +- ram +- rec +- rm +- rmvb +- s3m +- smk +- spx +- ssif +- tak +- tp +- tps +- trp +- ts +- tta +- umx +- video +- vob +- wav +- webm +- webp +- wma +- wmv +- wtv +- wv +- xm +ReleaseDate: 2025-06-27 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://files2.codecguide.com/K-Lite_Codec_Pack_1905_Full.exe + InstallerSha256: 2DC152AC86F2ACB99ECD145F8C1F480809FDF2F9E25301D029B4EF2305436449 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.0.5/CodecGuide.K-LiteCodecPack.Full.locale.en-US.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.0.5/CodecGuide.K-LiteCodecPack.Full.locale.en-US.yaml new file mode 100644 index 0000000000000..be231b9159d44 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.0.5/CodecGuide.K-LiteCodecPack.Full.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Full +PackageVersion: 19.0.5 +PackageLocale: en-US +Publisher: KLCP +PublisherUrl: https://codecguide.com/ +PublisherSupportUrl: https://codecguide.com/forum.htm +PrivacyUrl: https://codecguide.com/privacypolicy.htm +PackageName: K-Lite Codec Pack Full +PackageUrl: https://codecguide.com/download_k-lite_codec_pack_full.htm +License: Freeware +LicenseUrl: https://codecguide.com/license_full.rtf +Copyright: Copyright 2004-2025, Codec Guide. All rights reserved. +CopyrightUrl: https://codecguide.com/termsofuse.htm +ShortDescription: A collection of DirectShow filters, VFW/ACM codecs, and tools. +Description: |- + The K-Lite Codec Pack is a collection of DirectShow filters, VFW/ACM codecs, and tools. Codecs and DirectShow filters are needed for encoding and decoding audio and video formats. The K-Lite Codec Pack is designed as a user-friendly solution for playing all your audio and movie files. With the K-Lite Codec Pack you should be able to play all the popular audio and video formats and even several less common formats. + + There are four variants of the K-Lite Codec Pack: + The basic variant contains everything you need to play all the common video file formats. Such as AVI, MKV, MP4, OGM, and FLV. This pack is for those who like a small no-nonsense pack. It is small, but powerful. + The standard variant contains a few additional features compared to the basic variant. It contains Media Player Classic, which is an excellent player for video files. This pack is recommended for the average user. + The full variant has some extras compared to the standard variant. It additionally contains GraphStudioNext, and a few extra DirectShow filters. + The mega variant is the most complete pack. It additionally contains VFW/ACM codecs for video encoding/editing. + For detailed tables with comparisons of the abilities and contents of the different variants of the codec pack, have a look at the comparison of abilities and comparison of contents pages. +Moniker: k-litecodecpackfull +Tags: +- audio +- codec +- decode +- k-lite +- klite +- klite-full +- madvr +- media +- mkv +- mp4 +- mpc +- mpc-hc +- multimedia +- music +- player +- video +ReleaseNotes: |- + - Updated MPC-HC to version 2.5.0.0 + - Updated LAV Filters to version 0.80-1-gb9116 +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://codecguide.com/faq.htm +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.0.5/CodecGuide.K-LiteCodecPack.Full.locale.zh-CN.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.0.5/CodecGuide.K-LiteCodecPack.Full.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5cdb9cf460b16 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.0.5/CodecGuide.K-LiteCodecPack.Full.locale.zh-CN.yaml @@ -0,0 +1,48 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Full +PackageVersion: 19.0.5 +PackageLocale: zh-CN +Publisher: KLCP +PublisherUrl: https://codecguide.com/ +PublisherSupportUrl: https://codecguide.com/forum.htm +PrivacyUrl: https://codecguide.com/privacypolicy.htm +PackageName: K-Lite Codec Pack Full +PackageUrl: https://codecguide.com/download_k-lite_codec_pack_full.htm +License: 免费软件 +LicenseUrl: https://codecguide.com/license_full.rtf +Copyright: Copyright 2004-2024, Codec Guide. All rights reserved. +CopyrightUrl: https://codecguide.com/termsofuse.htm +ShortDescription: 一套 DirectShow 滤镜、VFW/ACM 编解码器和工具的集合 +Description: |- + K-Lite 编解码器包是一套 DirectShow 滤镜、VFW/ACM 编解码器和工具的集合。编解码器和 DirectShow 滤镜用于编码和解码音视频格式。K-Lite 编解码器包是为播放所有音频和影片文件而设计的用户友好解决方案。有了 K-Lite Codec Pack,您就能播放所有流行的音视频格式,甚至还能播放一些不常用的格式。 + + K-Lite Codec Pack 有四种版本: + Basic 版包含播放所有常见视频文件格式所需的一切,例如 AVI、MKV、MP4、OGM 和 FLV。这款软件包适合那些喜欢简洁小巧软件包的用户。它体积小,但功能强大。 + Standard 版相比 Basic 版多了一些功能,包含了一款出色的视频文件播放器 Media Player Classic。建议普通用户使用此软件包。 + Full 版相比 Standard 版多了一些额外功能,额外包含了 GraphStudioNext 和一些额外的 DirectShow 滤镜。 + Mega 版是最完整的软件包,额外包含了用于视频编码/编辑的 VFW/ACM 编解码器。 + 请参阅功能比较(Comparison of abilities)和内容比较(Comparison of contents)页面,获取有关不同版本的编解码器包在功能和内容方面的差异的详细表格。 +Tags: +- k-lite +- klite +- madvr +- mkv +- mp4 +- mpc +- mpc-hc +- 多媒体 +- 媒体 +- 影音 +- 播放器 +- 视频 +- 解码 +- 解码器 +- 音乐 +- 音频 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://codecguide.com/faq.htm +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.0.5/CodecGuide.K-LiteCodecPack.Full.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.0.5/CodecGuide.K-LiteCodecPack.Full.yaml new file mode 100644 index 0000000000000..5007f86201363 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.0.5/CodecGuide.K-LiteCodecPack.Full.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: CodecGuide.K-LiteCodecPack.Full +PackageVersion: 19.0.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.0.5/CodecGuide.K-LiteCodecPack.Mega.installer.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.0.5/CodecGuide.K-LiteCodecPack.Mega.installer.yaml new file mode 100644 index 0000000000000..aceebd21218d5 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.0.5/CodecGuide.K-LiteCodecPack.Mega.installer.yaml @@ -0,0 +1,134 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Mega +PackageVersion: 19.0.5 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- "264" +- 3g2 +- 3ga +- 3gp +- 3gp2 +- 3gpp +- aac +- ac3 +- aif +- aifc +- aiff +- alac +- amr +- amv +- aob +- ape +- asf +- asx +- avi +- avs +- bdmv +- bik +- caf +- cb7 +- cbr +- cbz +- cda +- cue +- dav +- dff +- divx +- dsf +- dts +- dv +- evo +- f4v +- flac +- flv +- h264 +- hdmov +- ifo +- it +- ivf +- k3g +- m1v +- m2p +- m2t +- m2ts +- m2v +- m3u +- m3u8 +- m4a +- m4b +- m4v +- mid +- midi +- mk3d +- mka +- mkv +- mlp +- mo3 +- mod +- mov +- mp2v +- mp3 +- mp4 +- mp4v +- mpc +- mpcpl +- mpe +- mpeg +- mpg +- mpl +- mpls +- mpv2 +- mpv4 +- mqv +- mtm +- mts +- mxf +- ofr +- ofs +- oga +- ogg +- ogm +- ogv +- opus +- pls +- pmp +- ra +- ram +- rec +- rm +- rmvb +- s3m +- smk +- spx +- ssif +- tak +- tp +- tps +- trp +- ts +- tta +- umx +- video +- vob +- wav +- webm +- webp +- wma +- wmv +- wtv +- wv +- xm +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x86 + InstallerUrl: https://files2.codecguide.com/K-Lite_Codec_Pack_1905_Mega.exe + InstallerSha256: B12BC6AA41C5DBD1BE7D083AB3E94EEF55466B22ED0DB4091BB9E8CD953AEC0E +- Architecture: x64 + InstallerUrl: https://files2.codecguide.com/K-Lite_Codec_Pack_1905_Mega.exe + InstallerSha256: B12BC6AA41C5DBD1BE7D083AB3E94EEF55466B22ED0DB4091BB9E8CD953AEC0E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.0.5/CodecGuide.K-LiteCodecPack.Mega.locale.en-US.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.0.5/CodecGuide.K-LiteCodecPack.Mega.locale.en-US.yaml new file mode 100644 index 0000000000000..5eb7aa5903a8c --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.0.5/CodecGuide.K-LiteCodecPack.Mega.locale.en-US.yaml @@ -0,0 +1,53 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Mega +PackageVersion: 19.0.5 +PackageLocale: en-US +Publisher: KLCP +PublisherUrl: https://codecguide.com/ +PublisherSupportUrl: https://codecguide.com/forum.htm +PrivacyUrl: https://codecguide.com/privacypolicy.htm +PackageName: K-Lite Mega Codec Pack +PackageUrl: https://codecguide.com/download_k-lite_codec_pack_mega.htm +License: Freeware +LicenseUrl: https://codecguide.com/license_mega.rtf +Copyright: Copyright 2004-2025, Codec Guide. All rights reserved. +CopyrightUrl: https://codecguide.com/termsofuse.htm +ShortDescription: A collection of DirectShow filters, VFW/ACM codecs, and tools. +Description: |- + The K-Lite Codec Pack is a collection of DirectShow filters, VFW/ACM codecs, and tools. Codecs and DirectShow filters are needed for encoding and decoding audio and video formats. The K-Lite Codec Pack is designed as a user-friendly solution for playing all your audio and movie files. With the K-Lite Codec Pack you should be able to play all the popular audio and video formats and even several less common formats. + + There are four variants of the K-Lite Codec Pack: + The basic variant contains everything you need to play all the common video file formats. Such as AVI, MKV, MP4, OGM, and FLV. This pack is for those who like a small no-nonsense pack. It is small, but powerful. + The standard variant contains a few additional features compared to the basic variant. It contains Media Player Classic, which is an excellent player for video files. This pack is recommended for the average user. + The full variant has some extras compared to the standard variant. It additionally contains GraphStudioNext, and a few extra DirectShow filters. + The mega variant is the most complete pack. It additionally contains VFW/ACM codecs for video encoding/editing. + For detailed tables with comparisons of the abilities and contents of the different variants of the codec pack, have a look at the comparison of abilities and comparison of contents pages. +Moniker: k-litecodecpackmega +Tags: +- audio +- codec +- decode +- k-lite +- klite +- klite-mega +- madvr +- media +- mkv +- mp4 +- mpc +- mpc-hc +- multimedia +- music +- player +- video +ReleaseNotes: |- + - Updated MPC-HC to version 2.5.0.0 + - Updated LAV Filters to version 0.80-1-gb9116 +ReleaseNotesUrl: https://codecguide.com/changelogs_mega.htm +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://codecguide.com/faq.htm +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.0.5/CodecGuide.K-LiteCodecPack.Mega.locale.zh-CN.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.0.5/CodecGuide.K-LiteCodecPack.Mega.locale.zh-CN.yaml new file mode 100644 index 0000000000000..bc0be33b3fde0 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.0.5/CodecGuide.K-LiteCodecPack.Mega.locale.zh-CN.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Mega +PackageVersion: 19.0.5 +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 一套 DirectShow 滤镜、VFW/ACM 编解码器和工具的集合 +Description: |- + K-Lite 编解码器包是一套 DirectShow 滤镜、VFW/ACM 编解码器和工具的集合。编解码器和 DirectShow 滤镜用于编码和解码音视频格式。K-Lite 编解码器包是为播放所有音频和影片文件而设计的用户友好解决方案。有了 K-Lite Codec Pack,您就能播放所有流行的音视频格式,甚至还能播放一些不常用的格式。 + + K-Lite Codec Pack 有四种版本: + Basic 版包含播放所有常见视频文件格式所需的一切,例如 AVI、MKV、MP4、OGM 和 FLV。这款软件包适合那些喜欢简洁小巧软件包的用户。它体积小,但功能强大。 + Standard 版相比 Basic 版多了一些功能,包含了一款出色的视频文件播放器 Media Player Classic。建议普通用户使用此软件包。 + Full 版相比 Standard 版多了一些额外功能,额外包含了 GraphStudioNext 和一些额外的 DirectShow 滤镜。 + Mega 版是最完整的软件包,额外包含了用于视频编码/编辑的 VFW/ACM 编解码器。 + 请参阅功能比较(Comparison of abilities)和内容比较(Comparison of contents)页面,获取有关不同版本的编解码器包在功能和内容方面的差异的详细表格。 +Tags: +- k-lite +- klite +- madvr +- mkv +- mp4 +- mpc +- mpc-hc +- 多媒体 +- 媒体 +- 影音 +- 播放器 +- 视频 +- 解码 +- 解码器 +- 音乐 +- 音频 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://codecguide.com/faq.htm +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.0.5/CodecGuide.K-LiteCodecPack.Mega.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.0.5/CodecGuide.K-LiteCodecPack.Mega.yaml new file mode 100644 index 0000000000000..4f57da8d07c0d --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.0.5/CodecGuide.K-LiteCodecPack.Mega.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Mega +PackageVersion: 19.0.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Standard/19.0.5/CodecGuide.K-LiteCodecPack.Standard.installer.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Standard/19.0.5/CodecGuide.K-LiteCodecPack.Standard.installer.yaml new file mode 100644 index 0000000000000..b4c6322b20d3a --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Standard/19.0.5/CodecGuide.K-LiteCodecPack.Standard.installer.yaml @@ -0,0 +1,134 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Standard +PackageVersion: 19.0.5 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- "264" +- 3g2 +- 3ga +- 3gp +- 3gp2 +- 3gpp +- aac +- ac3 +- aif +- aifc +- aiff +- alac +- amr +- amv +- aob +- ape +- asf +- asx +- avi +- avs +- bdmv +- bik +- caf +- cb7 +- cbr +- cbz +- cda +- cue +- dav +- dff +- divx +- dsf +- dts +- dv +- evo +- f4v +- flac +- flv +- h264 +- hdmov +- ifo +- it +- ivf +- k3g +- m1v +- m2p +- m2t +- m2ts +- m2v +- m3u +- m3u8 +- m4a +- m4b +- m4v +- mid +- midi +- mk3d +- mka +- mkv +- mlp +- mo3 +- mod +- mov +- mp2v +- mp3 +- mp4 +- mp4v +- mpc +- mpcpl +- mpe +- mpeg +- mpg +- mpl +- mpls +- mpv2 +- mpv4 +- mqv +- mtm +- mts +- mxf +- ofr +- ofs +- oga +- ogg +- ogm +- ogv +- opus +- pls +- pmp +- ra +- ram +- rec +- rm +- rmvb +- s3m +- smk +- spx +- ssif +- tak +- tp +- tps +- trp +- ts +- tta +- umx +- video +- vob +- wav +- webm +- webp +- wma +- wmv +- wtv +- wv +- xm +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x86 + InstallerUrl: https://files2.codecguide.com/K-Lite_Codec_Pack_1905_Standard.exe + InstallerSha256: B3373AD9CF3D0375F9D3FC7510DDA6A1194CB0D2A271B06A50081009BF65E6E3 +- Architecture: x64 + InstallerUrl: https://files2.codecguide.com/K-Lite_Codec_Pack_1905_Standard.exe + InstallerSha256: B3373AD9CF3D0375F9D3FC7510DDA6A1194CB0D2A271B06A50081009BF65E6E3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Standard/19.0.5/CodecGuide.K-LiteCodecPack.Standard.locale.en-US.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Standard/19.0.5/CodecGuide.K-LiteCodecPack.Standard.locale.en-US.yaml new file mode 100644 index 0000000000000..053cfa87b1462 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Standard/19.0.5/CodecGuide.K-LiteCodecPack.Standard.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: CodecGuide.K-LiteCodecPack.Standard +PackageVersion: 19.0.5 +PackageLocale: en-US +Publisher: KLCP +PublisherUrl: https://codecguide.com/ +PublisherSupportUrl: https://codecguide.com/forum.htm +PrivacyUrl: https://codecguide.com/privacypolicy.htm +PackageName: K-Lite Codec Pack Standard +PackageUrl: https://codecguide.com/download_k-lite_codec_pack_standard.htm +License: Freeware +LicenseUrl: https://codecguide.com/license_standard.rtf +Copyright: Copyright 2004-2025, Codec Guide. All rights reserved. +CopyrightUrl: https://codecguide.com/termsofuse.htm +ShortDescription: A collection of DirectShow filters, VFW/ACM codecs, and tools. +Description: |- + The K-Lite Codec Pack is a collection of DirectShow filters, VFW/ACM codecs, and tools. Codecs and DirectShow filters are needed for encoding and decoding audio and video formats. The K-Lite Codec Pack is designed as a user-friendly solution for playing all your audio and movie files. With the K-Lite Codec Pack you should be able to play all the popular audio and video formats and even several less common formats. + + There are four variants of the K-Lite Codec Pack: + The basic variant contains everything you need to play all the common video file formats. Such as AVI, MKV, MP4, OGM, and FLV. This pack is for those who like a small no-nonsense pack. It is small, but powerful. + The standard variant contains a few additional features compared to the basic variant. It contains Media Player Classic, which is an excellent player for video files. This pack is recommended for the average user. + The full variant has some extras compared to the standard variant. It additionally contains GraphStudioNext, and a few extra DirectShow filters. + The mega variant is the most complete pack. It additionally contains VFW/ACM codecs for video encoding/editing. + For detailed tables with comparisons of the abilities and contents of the different variants of the codec pack, have a look at the comparison of abilities and comparison of contents pages. +Moniker: k-litecodecpackstandard +Tags: +- audio +- codec +- decode +- k-lite +- klite +- klite-standard +- media +- mkv +- mp4 +- mpc +- mpc-hc +- multimedia +- music +- player +- video +ReleaseNotes: |- + - Updated MPC-HC to version 2.5.0.0 + - Updated LAV Filters to version 0.80-1-gb9116 +ReleaseNotesUrl: https://codecguide.com/changelogs_standard.htm +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://codecguide.com/faq.htm +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Standard/19.0.5/CodecGuide.K-LiteCodecPack.Standard.locale.zh-CN.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Standard/19.0.5/CodecGuide.K-LiteCodecPack.Standard.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1888e8c38254b --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Standard/19.0.5/CodecGuide.K-LiteCodecPack.Standard.locale.zh-CN.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Standard +PackageVersion: 19.0.5 +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 一套 DirectShow 滤镜、VFW/ACM 编解码器和工具的集合 +Description: |- + K-Lite 编解码器包是一套 DirectShow 滤镜、VFW/ACM 编解码器和工具的集合。编解码器和 DirectShow 滤镜用于编码和解码音视频格式。K-Lite 编解码器包是为播放所有音频和影片文件而设计的用户友好解决方案。有了 K-Lite Codec Pack,您就能播放所有流行的音视频格式,甚至还能播放一些不常用的格式。 + + K-Lite Codec Pack 有四种版本: + Basic 版包含播放所有常见视频文件格式所需的一切,例如 AVI、MKV、MP4、OGM 和 FLV。这款软件包适合那些喜欢简洁小巧软件包的用户。它体积小,但功能强大。 + Standard 版相比 Basic 版多了一些功能,包含了一款出色的视频文件播放器 Media Player Classic。建议普通用户使用此软件包。 + Full 版相比 Standard 版多了一些额外功能,额外包含了 GraphStudioNext 和一些额外的 DirectShow 滤镜。 + Mega 版是最完整的软件包,额外包含了用于视频编码/编辑的 VFW/ACM 编解码器。 + 请参阅功能比较(Comparison of abilities)和内容比较(Comparison of contents)页面,获取有关不同版本的编解码器包在功能和内容方面的差异的详细表格。 +Tags: +- k-lite +- klite +- mkv +- mp4 +- mpc +- mpc-hc +- 多媒体 +- 媒体 +- 影音 +- 播放器 +- 视频 +- 解码 +- 解码器 +- 音乐 +- 音频 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://codecguide.com/faq.htm +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Standard/19.0.5/CodecGuide.K-LiteCodecPack.Standard.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Standard/19.0.5/CodecGuide.K-LiteCodecPack.Standard.yaml new file mode 100644 index 0000000000000..6b0f0646e1bd7 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Standard/19.0.5/CodecGuide.K-LiteCodecPack.Standard.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: CodecGuide.K-LiteCodecPack.Standard +PackageVersion: 19.0.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Codeium/Windsurf/1.10.6/Codeium.Windsurf.installer.yaml b/manifests/c/Codeium/Windsurf/1.10.6/Codeium.Windsurf.installer.yaml new file mode 100644 index 0000000000000..72572c3d3af58 --- /dev/null +++ b/manifests/c/Codeium/Windsurf/1.10.6/Codeium.Windsurf.installer.yaml @@ -0,0 +1,167 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Codeium.Windsurf +PackageVersion: 1.10.6 +InstallerType: inno +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- windsurf +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ini +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- log +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- ps1 +- psd1 +- psgi +- psm1 +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- svgz +- t +- tex +- toml +- ts +- tsx +- txt +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://windsurf-stable.codeiumdata.com/win32-x64-user/stable/8232397048cc8ad659eb317817029b8fbbba8c16/WindsurfUserSetup-x64-1.10.6.exe + InstallerSha256: EE86529567EED508FD88A4DA6B8E12D734000529BCFC84C21154BD36EB33ED84 + ProductCode: '{5A8B7D94-9B5F-4D1F-93FC-5609F7159349}_is1' +- Architecture: x64 + Scope: machine + InstallerUrl: https://windsurf-stable.codeiumdata.com/win32-x64/stable/8232397048cc8ad659eb317817029b8fbbba8c16/WindsurfSetup-x64-1.10.6.exe + InstallerSha256: E1AE19EBA8E5D424DEBB7811F36AD342C63225FAA73708F682617324C7BF8C17 + ProductCode: '{A71B58E9-CEFB-4424-8A1D-A0E49CF18EBB}_is1' + ElevationRequirement: elevatesSelf +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Codeium/Windsurf/1.10.6/Codeium.Windsurf.locale.en-US.yaml b/manifests/c/Codeium/Windsurf/1.10.6/Codeium.Windsurf.locale.en-US.yaml new file mode 100644 index 0000000000000..cb625e4b47ff6 --- /dev/null +++ b/manifests/c/Codeium/Windsurf/1.10.6/Codeium.Windsurf.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: Codeium.Windsurf +PackageVersion: 1.10.6 +PackageLocale: en-US +Publisher: Codeium +PublisherUrl: https://codeium.com/ +PublisherSupportUrl: https://codeium.com/support +PrivacyUrl: https://codeium.com/privacy-policy +Author: Exafunction, Inc. +PackageName: Windsurf +PackageUrl: https://codeium.com/windsurf +License: Proprietary +LicenseUrl: https://codeium.com/terms-of-service-individual +Copyright: © 2024 Exafunction, Inc. All rights reserved. +CopyrightUrl: https://codeium.com/terms-of-service-individual +ShortDescription: The most powerful AI IDE +Description: The first agentic IDE, and then some. The Windsurf Editor is where the work of developers and AI truly flow together, allowing for a coding experience that feels like literal magic. +Tags: +- code +- coding +- develop +- development +- editing +- editor +- programming +ReleaseNotes: |- + Patch Fixes + - Minor improvements and bug fixes +ReleaseNotesUrl: https://codeium.com/changelog +PurchaseUrl: https://codeium.com/pricing +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.codeium.com/ +- DocumentLabel: FAQ + DocumentUrl: https://codeium.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Codeium/Windsurf/1.10.6/Codeium.Windsurf.locale.zh-CN.yaml b/manifests/c/Codeium/Windsurf/1.10.6/Codeium.Windsurf.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5ef3e47792671 --- /dev/null +++ b/manifests/c/Codeium/Windsurf/1.10.6/Codeium.Windsurf.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: Codeium.Windsurf +PackageVersion: 1.10.6 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 最强大的 AI IDE +Description: 首个 AI 助理驱动的 IDE,不仅于此。在 Windsurf 编辑器中,开发人员的工作与 AI 真正地融为一体,让编程与魔法无异。 +Tags: +- 代码 +- 开发 +- 编程 +- 编辑 +- 编辑器 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.codeium.com/ +- DocumentLabel: 常见问题 + DocumentUrl: https://codeium.com/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Codeium/Windsurf/1.10.6/Codeium.Windsurf.yaml b/manifests/c/Codeium/Windsurf/1.10.6/Codeium.Windsurf.yaml new file mode 100644 index 0000000000000..38b17fb0d1b0c --- /dev/null +++ b/manifests/c/Codeium/Windsurf/1.10.6/Codeium.Windsurf.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: Codeium.Windsurf +PackageVersion: 1.10.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Codeium/Windsurf/1.10.7/Codeium.Windsurf.installer.yaml b/manifests/c/Codeium/Windsurf/1.10.7/Codeium.Windsurf.installer.yaml new file mode 100644 index 0000000000000..9695d5ec15ed4 --- /dev/null +++ b/manifests/c/Codeium/Windsurf/1.10.7/Codeium.Windsurf.installer.yaml @@ -0,0 +1,167 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Codeium.Windsurf +PackageVersion: 1.10.7 +InstallerType: inno +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- windsurf +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ini +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- log +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- ps1 +- psd1 +- psgi +- psm1 +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- svgz +- t +- tex +- toml +- ts +- tsx +- txt +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://windsurf-stable.codeiumdata.com/win32-x64-user/stable/7c493d782a6cad0516e79f070d953687991df4ec/WindsurfUserSetup-x64-1.10.7.exe + InstallerSha256: 48645CB3BA34EA10BBEE43EE425A90CF6B88F99F77BE915C12F2AB54B0C78C3D + ProductCode: '{5A8B7D94-9B5F-4D1F-93FC-5609F7159349}_is1' +- Architecture: x64 + Scope: machine + InstallerUrl: https://windsurf-stable.codeiumdata.com/win32-x64/stable/7c493d782a6cad0516e79f070d953687991df4ec/WindsurfSetup-x64-1.10.7.exe + InstallerSha256: 09F2295D4D0EDDE97647F2C181DDB7100022ADAF06D6A1B66CD2D2D9E712CE81 + ProductCode: '{A71B58E9-CEFB-4424-8A1D-A0E49CF18EBB}_is1' + ElevationRequirement: elevatesSelf +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Codeium/Windsurf/1.10.7/Codeium.Windsurf.locale.en-US.yaml b/manifests/c/Codeium/Windsurf/1.10.7/Codeium.Windsurf.locale.en-US.yaml new file mode 100644 index 0000000000000..d5f5f3acf4739 --- /dev/null +++ b/manifests/c/Codeium/Windsurf/1.10.7/Codeium.Windsurf.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: Codeium.Windsurf +PackageVersion: 1.10.7 +PackageLocale: en-US +Publisher: Codeium +PublisherUrl: https://codeium.com/ +PublisherSupportUrl: https://codeium.com/support +PrivacyUrl: https://codeium.com/privacy-policy +Author: Exafunction, Inc. +PackageName: Windsurf +PackageUrl: https://codeium.com/windsurf +License: Proprietary +LicenseUrl: https://codeium.com/terms-of-service-individual +Copyright: © 2024 Exafunction, Inc. All rights reserved. +CopyrightUrl: https://codeium.com/terms-of-service-individual +ShortDescription: The most powerful AI IDE +Description: The first agentic IDE, and then some. The Windsurf Editor is where the work of developers and AI truly flow together, allowing for a coding experience that feels like literal magic. +Tags: +- code +- coding +- develop +- development +- editing +- editor +- programming +ReleaseNotes: |- + Cascade Improvements + - Improvements to Cascade reliability +ReleaseNotesUrl: https://codeium.com/changelog +PurchaseUrl: https://codeium.com/pricing +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.codeium.com/ +- DocumentLabel: FAQ + DocumentUrl: https://codeium.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Codeium/Windsurf/1.10.7/Codeium.Windsurf.locale.zh-CN.yaml b/manifests/c/Codeium/Windsurf/1.10.7/Codeium.Windsurf.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9e6c1d58b0ae0 --- /dev/null +++ b/manifests/c/Codeium/Windsurf/1.10.7/Codeium.Windsurf.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: Codeium.Windsurf +PackageVersion: 1.10.7 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 最强大的 AI IDE +Description: 首个 AI 助理驱动的 IDE,不仅于此。在 Windsurf 编辑器中,开发人员的工作与 AI 真正地融为一体,让编程与魔法无异。 +Tags: +- 代码 +- 开发 +- 编程 +- 编辑 +- 编辑器 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.codeium.com/ +- DocumentLabel: 常见问题 + DocumentUrl: https://codeium.com/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Codeium/Windsurf/1.10.7/Codeium.Windsurf.yaml b/manifests/c/Codeium/Windsurf/1.10.7/Codeium.Windsurf.yaml new file mode 100644 index 0000000000000..e09098c10b6ba --- /dev/null +++ b/manifests/c/Codeium/Windsurf/1.10.7/Codeium.Windsurf.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: Codeium.Windsurf +PackageVersion: 1.10.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Coder/Coder/2.23.2/Coder.Coder.installer.yaml b/manifests/c/Coder/Coder/2.23.2/Coder.Coder.installer.yaml new file mode 100644 index 0000000000000..f49fa43bbd5ed --- /dev/null +++ b/manifests/c/Coder/Coder/2.23.2/Coder.Coder.installer.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Coder.Coder +PackageVersion: 2.23.2 +Commands: +- coder +Installers: +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: coder.exe + InstallerUrl: https://github.com/coder/coder/releases/download/v2.23.2/coder_2.23.2_windows_amd64.zip + InstallerSha256: EAF572255DA198B4FD174C8669771C9FF9C50870B3D1CCC2ECA99B6F9A545C0C +- Architecture: x64 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://github.com/coder/coder/releases/download/v2.23.2/coder_2.23.2_windows_amd64_installer.exe + InstallerSha256: 68C260A548E3372BF021BE6A9B9DECBC9D17A12AE542CC05E3B50404E44E4EF5 + ProductCode: Coder + ElevationRequirement: elevatesSelf +- Architecture: arm64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: coder.exe + InstallerUrl: https://github.com/coder/coder/releases/download/v2.23.2/coder_2.23.2_windows_arm64.zip + InstallerSha256: 9318033FB0F90B155FCC1532A0160ECBF129878293846C4B5ECF9D318CF5BEB3 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-30 diff --git a/manifests/c/Coder/Coder/2.23.2/Coder.Coder.locale.en-US.yaml b/manifests/c/Coder/Coder/2.23.2/Coder.Coder.locale.en-US.yaml new file mode 100644 index 0000000000000..9b9e83175e75a --- /dev/null +++ b/manifests/c/Coder/Coder/2.23.2/Coder.Coder.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: Coder.Coder +PackageVersion: 2.23.2 +PackageLocale: en-US +Publisher: Coder Technologies, Inc. +PublisherUrl: https://coder.com/ +PublisherSupportUrl: https://github.com/coder/coder/issues +PrivacyUrl: https://coder.com/legal/privacy-policy +PackageName: Coder +PackageUrl: https://github.com/coder/coder +License: AGPL-3.0 +LicenseUrl: https://github.com/coder/coder/blob/HEAD/LICENSE +Copyright: Copyright (c) 2022 Coder Technologies, Inc. +ShortDescription: Remote development environments on your infrastructure provisioned with Terraform +Description: Coder is an open source platform for creating and managing developer workspaces on your preferred clouds and servers. By building on top of common development interfaces (SSH) and infrastructure tools (Terraform), Coder aims to make the process of provisioning and accessing remote workspaces approachable for organizations of various sizes and stages of cloud-native maturity. +Moniker: coder +Tags: +- aws +- azure +- cloud +- development +- docker +- ide +- kubernetes +- remote +- terraform +ReleaseNotesUrl: https://github.com/coder/coder/releases/tag/v2.23.2 +PurchaseUrl: https://coder.com/pricing +Documentations: +- DocumentUrl: https://coder.com/docs/coder-oss/latest +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/c/Coder/Coder/2.23.2/Coder.Coder.yaml b/manifests/c/Coder/Coder/2.23.2/Coder.Coder.yaml new file mode 100644 index 0000000000000..f4a40b59f3827 --- /dev/null +++ b/manifests/c/Coder/Coder/2.23.2/Coder.Coder.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: Coder.Coder +PackageVersion: 2.23.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/c/Coder/Coder/2.24.0/Coder.Coder.installer.yaml b/manifests/c/Coder/Coder/2.24.0/Coder.Coder.installer.yaml new file mode 100644 index 0000000000000..808245a1d54da --- /dev/null +++ b/manifests/c/Coder/Coder/2.24.0/Coder.Coder.installer.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Coder.Coder +PackageVersion: 2.24.0 +Commands: +- coder +Installers: +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: coder.exe + InstallerUrl: https://github.com/coder/coder/releases/download/v2.24.0/coder_2.24.0_windows_amd64.zip + InstallerSha256: DF999B0E99887FBCA6A7175180CF96BFA5737F1A99BD1E10C31F6E7D48A8DAB1 +- Architecture: x64 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://github.com/coder/coder/releases/download/v2.24.0/coder_2.24.0_windows_amd64_installer.exe + InstallerSha256: 915D49C95E0F92A754F85191C8DE18F00B100C31495AACCB510A3FFA37110718 + ProductCode: Coder + ElevationRequirement: elevatesSelf +- Architecture: arm64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: coder.exe + InstallerUrl: https://github.com/coder/coder/releases/download/v2.24.0/coder_2.24.0_windows_arm64.zip + InstallerSha256: 70B894F3083FF91C555A4D19ABECEEBA0124799DA780374324C14FC580F38805 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-01 diff --git a/manifests/c/Coder/Coder/2.24.0/Coder.Coder.locale.en-US.yaml b/manifests/c/Coder/Coder/2.24.0/Coder.Coder.locale.en-US.yaml new file mode 100644 index 0000000000000..7d79ebdb9fdbb --- /dev/null +++ b/manifests/c/Coder/Coder/2.24.0/Coder.Coder.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: Coder.Coder +PackageVersion: 2.24.0 +PackageLocale: en-US +Publisher: Coder Technologies, Inc. +PublisherUrl: https://coder.com/ +PublisherSupportUrl: https://github.com/coder/coder/issues +PrivacyUrl: https://coder.com/legal/privacy-policy +PackageName: Coder +PackageUrl: https://github.com/coder/coder +License: AGPL-3.0 +LicenseUrl: https://github.com/coder/coder/blob/HEAD/LICENSE +Copyright: Copyright (c) 2022 Coder Technologies, Inc. +ShortDescription: Remote development environments on your infrastructure provisioned with Terraform +Description: Coder is an open source platform for creating and managing developer workspaces on your preferred clouds and servers. By building on top of common development interfaces (SSH) and infrastructure tools (Terraform), Coder aims to make the process of provisioning and accessing remote workspaces approachable for organizations of various sizes and stages of cloud-native maturity. +Moniker: coder +Tags: +- aws +- azure +- cloud +- development +- docker +- ide +- kubernetes +- remote +- terraform +ReleaseNotesUrl: https://github.com/coder/coder/releases/tag/v2.24.0 +PurchaseUrl: https://coder.com/pricing +Documentations: +- DocumentUrl: https://coder.com/docs/coder-oss/latest +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/c/Coder/Coder/2.24.0/Coder.Coder.yaml b/manifests/c/Coder/Coder/2.24.0/Coder.Coder.yaml new file mode 100644 index 0000000000000..b9c1c3b31f129 --- /dev/null +++ b/manifests/c/Coder/Coder/2.24.0/Coder.Coder.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: Coder.Coder +PackageVersion: 2.24.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/c/Coder/Coder/2.24.1/Coder.Coder.installer.yaml b/manifests/c/Coder/Coder/2.24.1/Coder.Coder.installer.yaml new file mode 100644 index 0000000000000..0fda5753309d6 --- /dev/null +++ b/manifests/c/Coder/Coder/2.24.1/Coder.Coder.installer.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Coder.Coder +PackageVersion: 2.24.1 +Commands: +- coder +Installers: +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: coder.exe + InstallerUrl: https://github.com/coder/coder/releases/download/v2.24.1/coder_2.24.1_windows_amd64.zip + InstallerSha256: 0660BC3D612C845954C0D41EC574BF669FAE997EC6C5C4D78DF21034B56027D1 +- Architecture: x64 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://github.com/coder/coder/releases/download/v2.24.1/coder_2.24.1_windows_amd64_installer.exe + InstallerSha256: 25E9DB3E3DE5E4F6500D1496D0AE99D57E810F9B147EC78B4A72C51672D16BB6 + ProductCode: Coder + ElevationRequirement: elevatesSelf +- Architecture: arm64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: coder.exe + InstallerUrl: https://github.com/coder/coder/releases/download/v2.24.1/coder_2.24.1_windows_arm64.zip + InstallerSha256: 7EA8C8545F8B46D19F0E5427130B882EC3BCEB7948250E5CE56898429071886D +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-02 diff --git a/manifests/c/Coder/Coder/2.24.1/Coder.Coder.locale.en-US.yaml b/manifests/c/Coder/Coder/2.24.1/Coder.Coder.locale.en-US.yaml new file mode 100644 index 0000000000000..a45a8ae3f2499 --- /dev/null +++ b/manifests/c/Coder/Coder/2.24.1/Coder.Coder.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: Coder.Coder +PackageVersion: 2.24.1 +PackageLocale: en-US +Publisher: Coder Technologies, Inc. +PublisherUrl: https://coder.com/ +PublisherSupportUrl: https://github.com/coder/coder/issues +PrivacyUrl: https://coder.com/legal/privacy-policy +PackageName: Coder +PackageUrl: https://github.com/coder/coder +License: AGPL-3.0 +LicenseUrl: https://github.com/coder/coder/blob/HEAD/LICENSE +Copyright: Copyright (c) 2022 Coder Technologies, Inc. +ShortDescription: Remote development environments on your infrastructure provisioned with Terraform +Description: Coder is an open source platform for creating and managing developer workspaces on your preferred clouds and servers. By building on top of common development interfaces (SSH) and infrastructure tools (Terraform), Coder aims to make the process of provisioning and accessing remote workspaces approachable for organizations of various sizes and stages of cloud-native maturity. +Moniker: coder +Tags: +- aws +- azure +- cloud +- development +- docker +- ide +- kubernetes +- remote +- terraform +ReleaseNotesUrl: https://github.com/coder/coder/releases/tag/v2.24.1 +PurchaseUrl: https://coder.com/pricing +Documentations: +- DocumentUrl: https://coder.com/docs/coder-oss/latest +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/c/Coder/Coder/2.24.1/Coder.Coder.yaml b/manifests/c/Coder/Coder/2.24.1/Coder.Coder.yaml new file mode 100644 index 0000000000000..62547e8709c52 --- /dev/null +++ b/manifests/c/Coder/Coder/2.24.1/Coder.Coder.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: Coder.Coder +PackageVersion: 2.24.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/c/Coder/CoderDesktop/0.6.2/Coder.CoderDesktop.installer.yaml b/manifests/c/Coder/CoderDesktop/0.6.2/Coder.CoderDesktop.installer.yaml new file mode 100644 index 0000000000000..2d253f21996d3 --- /dev/null +++ b/manifests/c/Coder/CoderDesktop/0.6.2/Coder.CoderDesktop.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Coder.CoderDesktop +PackageVersion: 0.6.2 +InstallerType: burn +Scope: machine +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 + - PackageIdentifier: Microsoft.WindowsAppRuntime.1.7 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/coder/coder-desktop-windows/releases/download/v0.6.2/CoderDesktop-0.6.2-x64.exe + InstallerSha256: 6CB0EC5E92BCFD43E407654244EAFF33035D77C467E6FA9B3B7285F929E82358 +- Architecture: arm64 + InstallerUrl: https://github.com/coder/coder-desktop-windows/releases/download/v0.6.2/CoderDesktop-0.6.2-arm64.exe + InstallerSha256: 634CA36BFFEA8B069314262D16F9574D81DCC252977B771241D0CB82A30E4255 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-25 diff --git a/manifests/c/Coder/CoderDesktop/0.6.2/Coder.CoderDesktop.locale.en-US.yaml b/manifests/c/Coder/CoderDesktop/0.6.2/Coder.CoderDesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..02453dbe042f1 --- /dev/null +++ b/manifests/c/Coder/CoderDesktop/0.6.2/Coder.CoderDesktop.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Coder.CoderDesktop +PackageVersion: 0.6.2 +PackageLocale: en-US +Publisher: Coder Technologies Inc. +PublisherUrl: https://coder.com/ +PublisherSupportUrl: https://github.com/coder/coder/issues +PrivacyUrl: https://coder.com/legal/privacy-policy +PackageName: Coder Desktop (Core) +PackageUrl: https://github.com/coder/coder-desktop-windows +License: AGPL-3.0 +LicenseUrl: https://github.com/coder/coder-desktop-windows/blob/main/LICENSE +Copyright: Copyright (c) Coder Technologies Inc. All rights reserved. +ShortDescription: Coder Desktop application for Windows. Coder enables organizations to set up development environments in their public or private cloud infrastructure. +Description: |- + Coder enables organizations to set up development environments in their public or private cloud infrastructure. + Cloud development environments are defined with Terraform, connected through a secure high-speed Wireguard® tunnel, and automatically shut down when not used to save on costs. + Coder gives engineering teams the flexibility to use the cloud for workloads most beneficial to them. + + - Define cloud development environments in Terraform + - EC2 VMs, Kubernetes Pods, Docker Containers, etc. + - Automatically shutdown idle resources to save on costs + - Onboard developers in seconds instead of days +Moniker: coder-desktop +Tags: +- go +- golang +- jetbrains +- terraform +- coder +- ide +- vscode +- development-environment +- dev-tools +- remote-development +ReleaseNotesUrl: https://github.com/coder/coder-desktop-windows/releases/tag/v0.6.2 +PurchaseUrl: https://coder.com/pricing +Documentations: +- DocumentUrl: https://coder.com/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/c/Coder/CoderDesktop/0.6.2/Coder.CoderDesktop.yaml b/manifests/c/Coder/CoderDesktop/0.6.2/Coder.CoderDesktop.yaml new file mode 100644 index 0000000000000..f1c6199a2b87d --- /dev/null +++ b/manifests/c/Coder/CoderDesktop/0.6.2/Coder.CoderDesktop.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: Coder.CoderDesktop +PackageVersion: 0.6.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/c/Coder/CoderDesktop/0.6.3/Coder.CoderDesktop.installer.yaml b/manifests/c/Coder/CoderDesktop/0.6.3/Coder.CoderDesktop.installer.yaml new file mode 100644 index 0000000000000..1b076e66f7f69 --- /dev/null +++ b/manifests/c/Coder/CoderDesktop/0.6.3/Coder.CoderDesktop.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Coder.CoderDesktop +PackageVersion: 0.6.3 +InstallerType: burn +Scope: machine +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 + - PackageIdentifier: Microsoft.WindowsAppRuntime.1.7 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/coder/coder-desktop-windows/releases/download/v0.6.3/CoderDesktop-0.6.3-x64.exe + InstallerSha256: CA16A6345970C218403C3A23C7F0A7A114E8D6E3AA75936B2261825195C951BC +- Architecture: arm64 + InstallerUrl: https://github.com/coder/coder-desktop-windows/releases/download/v0.6.3/CoderDesktop-0.6.3-arm64.exe + InstallerSha256: 087814943026BE75161108A7B32D7EE36383A69C5BA6F730D545366D4A87D9F7 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-26 diff --git a/manifests/c/Coder/CoderDesktop/0.6.3/Coder.CoderDesktop.locale.en-US.yaml b/manifests/c/Coder/CoderDesktop/0.6.3/Coder.CoderDesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..2755126db2fcb --- /dev/null +++ b/manifests/c/Coder/CoderDesktop/0.6.3/Coder.CoderDesktop.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Coder.CoderDesktop +PackageVersion: 0.6.3 +PackageLocale: en-US +Publisher: Coder Technologies Inc. +PublisherUrl: https://coder.com/ +PublisherSupportUrl: https://github.com/coder/coder/issues +PrivacyUrl: https://coder.com/legal/privacy-policy +PackageName: Coder Desktop (Core) +PackageUrl: https://github.com/coder/coder-desktop-windows +License: AGPL-3.0 +LicenseUrl: https://github.com/coder/coder-desktop-windows/blob/main/LICENSE +Copyright: Copyright (c) Coder Technologies Inc. All rights reserved. +ShortDescription: Coder Desktop application for Windows. Coder enables organizations to set up development environments in their public or private cloud infrastructure. +Description: |- + Coder enables organizations to set up development environments in their public or private cloud infrastructure. + Cloud development environments are defined with Terraform, connected through a secure high-speed Wireguard® tunnel, and automatically shut down when not used to save on costs. + Coder gives engineering teams the flexibility to use the cloud for workloads most beneficial to them. + + - Define cloud development environments in Terraform + - EC2 VMs, Kubernetes Pods, Docker Containers, etc. + - Automatically shutdown idle resources to save on costs + - Onboard developers in seconds instead of days +Moniker: coder-desktop +Tags: +- go +- golang +- jetbrains +- terraform +- coder +- ide +- vscode +- development-environment +- dev-tools +- remote-development +ReleaseNotesUrl: https://github.com/coder/coder-desktop-windows/releases/tag/v0.6.3 +PurchaseUrl: https://coder.com/pricing +Documentations: +- DocumentUrl: https://coder.com/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/c/Coder/CoderDesktop/0.6.3/Coder.CoderDesktop.yaml b/manifests/c/Coder/CoderDesktop/0.6.3/Coder.CoderDesktop.yaml new file mode 100644 index 0000000000000..65cde3a6166ce --- /dev/null +++ b/manifests/c/Coder/CoderDesktop/0.6.3/Coder.CoderDesktop.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: Coder.CoderDesktop +PackageVersion: 0.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/c/CoderBag/QuickCPUx64/5.1.0.0/CoderBag.QuickCPUx64.installer.yaml b/manifests/c/CoderBag/QuickCPUx64/5.1.0.0/CoderBag.QuickCPUx64.installer.yaml new file mode 100644 index 0000000000000..3d645c5f76502 --- /dev/null +++ b/manifests/c/CoderBag/QuickCPUx64/5.1.0.0/CoderBag.QuickCPUx64.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: CoderBag.QuickCPUx64 +PackageVersion: 5.1.0.0 +InstallerLocale: en-US +InstallerType: wix +NestedInstallerType: wix +Scope: user +UpgradeBehavior: install +ProductCode: '{BBBD8A25-597F-465D-AB88-63102F8A479D}' +ReleaseDate: 2025-06-17 +AppsAndFeaturesEntries: +- UpgradeCode: i0\af2\alang1025\afs16\ltrch\b0\i0\fs1 +Installers: +- Architecture: x64 + InstallerUrl: https://coderbag.com/assets/downloads/cpm/currentversion/QuickCpuSetup.msi + InstallerSha256: 561D5014B0D443BB52C85E147E7A103524D954733B631B989BFEF733CED5A12E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CoderBag/QuickCPUx64/5.1.0.0/CoderBag.QuickCPUx64.locale.en-US.yaml b/manifests/c/CoderBag/QuickCPUx64/5.1.0.0/CoderBag.QuickCPUx64.locale.en-US.yaml new file mode 100644 index 0000000000000..4e4a34dfa93c2 --- /dev/null +++ b/manifests/c/CoderBag/QuickCPUx64/5.1.0.0/CoderBag.QuickCPUx64.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CoderBag.QuickCPUx64 +PackageVersion: 5.1.0.0 +PackageLocale: en-US +Publisher: CoderBag LLC +PublisherUrl: https://coderbag.com/ +PublisherSupportUrl: https://coderbag.com/contact-us +PrivacyUrl: https://coderbag.com/privacy +PackageName: Quick CPU x64 +PackageUrl: https://coderbag.com/product/quickcpu +License: Proprietary +LicenseUrl: https://coderbag.com/eula +Copyright: Copyright © 2024 - Coderbag LLC. All Rights Reserved +ShortDescription: > + Quick CPU is a program that was designed to fine-tune and monitor important + CPU and System parameters +Description: |- + Quick CPU is a program that was designed to fine-tune and monitor important CPU and System parameters such as CPU + Temperature (Package and Core Temp), CPU Performance, Power, Voltage, Current, Core Parking, Frequency Scaling, + System Memory, Turbo Boost, C-States, Speed Shift FIVR Control as well as making other adjustments. Below you can + find information about the way this application works and how to interpret application data and settings as well + as modify and monitor other critical system parameters. +ReleaseNotesUrl: https://coderbag.com/product/quickcpu/release-notes#:~:text=5.1.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CoderBag/QuickCPUx64/5.1.0.0/CoderBag.QuickCPUx64.yaml b/manifests/c/CoderBag/QuickCPUx64/5.1.0.0/CoderBag.QuickCPUx64.yaml new file mode 100644 index 0000000000000..7216dbf45fa57 --- /dev/null +++ b/manifests/c/CoderBag/QuickCPUx64/5.1.0.0/CoderBag.QuickCPUx64.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: CoderBag.QuickCPUx64 +PackageVersion: 5.1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CodingWondersSoftware/DISMTools/Preview/0.7.0.25063/CodingWondersSoftware.DISMTools.Preview.installer.yaml b/manifests/c/CodingWondersSoftware/DISMTools/Preview/0.7.0.25063/CodingWondersSoftware.DISMTools.Preview.installer.yaml new file mode 100644 index 0000000000000..71f1cf029e48b --- /dev/null +++ b/manifests/c/CodingWondersSoftware/DISMTools/Preview/0.7.0.25063/CodingWondersSoftware.DISMTools.Preview.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: CodingWondersSoftware.DISMTools.Preview +PackageVersion: 0.7.0.25063 +InstallerType: inno +Installers: +- Architecture: neutral + InstallerUrl: https://github.com/CodingWonders/DISMTools/releases/download/v0.7_pre_2563/dt_setup.exe + InstallerSha256: 799D73436A0012E4B9F83BED7F70C926F4300A42067A2CA948C4E4927F910374 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-28 diff --git a/manifests/c/CodingWondersSoftware/DISMTools/Preview/0.7.0.25063/CodingWondersSoftware.DISMTools.Preview.locale.en-US.yaml b/manifests/c/CodingWondersSoftware/DISMTools/Preview/0.7.0.25063/CodingWondersSoftware.DISMTools.Preview.locale.en-US.yaml new file mode 100644 index 0000000000000..253877a70f736 --- /dev/null +++ b/manifests/c/CodingWondersSoftware/DISMTools/Preview/0.7.0.25063/CodingWondersSoftware.DISMTools.Preview.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: CodingWondersSoftware.DISMTools.Preview +PackageVersion: 0.7.0.25063 +PackageLocale: en-US +Publisher: CodingWonders Software +PublisherUrl: https://github.com/CodingWonders +PublisherSupportUrl: https://github.com/CodingWonders +Author: CodingWonders +PackageName: DISMTools Preview +PackageUrl: https://github.com/CodingWonders/DISMTools +License: GPLv3 +LicenseUrl: https://github.com/CodingWonders/DISMTools/blob/stable/LICENSE +Copyright: (c) 2022-2025. CodingWonders Software +ShortDescription: The connected place for Windows system administration. +Description: DISMTools is an advanced front-end for the Deployment Image Servicing and Management (DISM) tool, with support for projects and installations of any kind (whether it is your active installation or installations on any drive). DISMTools focuses on compatibility, with Windows image support starting from Windows 7 and Server 2008 R2, personalization, letting you customize it the way you want by configuring settings like the DISM executable to use, color modes, languages, and more; and performance, thanks to a combination of the DISM executable and a managed version of the DISM API (thanks to Jeff Kluge (jeffkl) for maintaining it) that provides rich functionality at speed. +Moniker: DISMTools-pre +Tags: +- windows +- gui +- sysadmin +- dism +ReleaseNotesUrl: https://github.com/CodingWonders/DISMTools/releases/tag/v0.7_pre_2563 +InstallationNotes: Enjoy using DISMTools! If you're new to image servicing, or come from other tools, check out the help documentation. Since you will be using a preview release, we want your feedback in order to shape the next stable version of the software. If you encounter an issue, don't hesitate to send feedback at https://github.com/CodingWonders/DISMTools/issues/new/choose +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/c/CodingWondersSoftware/DISMTools/Preview/0.7.0.25063/CodingWondersSoftware.DISMTools.Preview.yaml b/manifests/c/CodingWondersSoftware/DISMTools/Preview/0.7.0.25063/CodingWondersSoftware.DISMTools.Preview.yaml new file mode 100644 index 0000000000000..274e0b4e2a37c --- /dev/null +++ b/manifests/c/CodingWondersSoftware/DISMTools/Preview/0.7.0.25063/CodingWondersSoftware.DISMTools.Preview.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: CodingWondersSoftware.DISMTools.Preview +PackageVersion: 0.7.0.25063 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/c/CodingWondersSoftware/DISMTools/Stable/0.6.2.25063/CodingWondersSoftware.DISMTools.Stable.installer.yaml b/manifests/c/CodingWondersSoftware/DISMTools/Stable/0.6.2.25063/CodingWondersSoftware.DISMTools.Stable.installer.yaml new file mode 100644 index 0000000000000..8e07c3bc205e0 --- /dev/null +++ b/manifests/c/CodingWondersSoftware/DISMTools/Stable/0.6.2.25063/CodingWondersSoftware.DISMTools.Stable.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: CodingWondersSoftware.DISMTools.Stable +PackageVersion: 0.6.2.25063 +InstallerType: inno +Installers: +- Architecture: neutral + InstallerUrl: https://github.com/CodingWonders/DISMTools/releases/download/v0.6.2_upd2/dt_setup.exe + InstallerSha256: 6B3E878106C785372F0AE5C5F3FD6A81E4585FC596A83874E0C8698F65E6AFB3 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-28 diff --git a/manifests/c/CodingWondersSoftware/DISMTools/Stable/0.6.2.25063/CodingWondersSoftware.DISMTools.Stable.locale.en-US.yaml b/manifests/c/CodingWondersSoftware/DISMTools/Stable/0.6.2.25063/CodingWondersSoftware.DISMTools.Stable.locale.en-US.yaml new file mode 100644 index 0000000000000..d386585f38ddd --- /dev/null +++ b/manifests/c/CodingWondersSoftware/DISMTools/Stable/0.6.2.25063/CodingWondersSoftware.DISMTools.Stable.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: CodingWondersSoftware.DISMTools.Stable +PackageVersion: 0.6.2.25063 +PackageLocale: en-US +Publisher: CodingWonders Software +PublisherUrl: https://github.com/CodingWonders +PublisherSupportUrl: https://github.com/CodingWonders +Author: CodingWonders +PackageName: DISMTools +PackageUrl: https://github.com/CodingWonders/DISMTools +License: GPLv3 +LicenseUrl: https://github.com/CodingWonders/DISMTools/blob/stable/LICENSE +Copyright: (c) 2022-2025. CodingWonders Software +ShortDescription: The connected place for Windows system administration. +Description: DISMTools is an advanced front-end for the Deployment Image Servicing and Management (DISM) tool, with support for projects and installations of any kind (whether it is your active installation or installations on any drive). DISMTools focuses on compatibility, with Windows image support starting from Windows 7 and Server 2008 R2, personalization, letting you customize it the way you want by configuring settings like the DISM executable to use, color modes, languages, and more; and performance, thanks to a combination of the DISM executable and a managed version of the DISM API (thanks to Jeff Kluge (jeffkl) for maintaining it) that provides rich functionality at speed. +Moniker: DISMTools +Tags: +- windows +- gui +- sysadmin +- dism +ReleaseNotesUrl: https://github.com/CodingWonders/DISMTools/releases/tag/v0.6.2_upd2 +InstallationNotes: Enjoy using DISMTools! If you're new to image servicing, or come from other tools, check out the help documentation. If you encounter an issue, don't hesitate to send feedback at https://github.com/CodingWonders/DISMTools/issues/new/choose +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/c/CodingWondersSoftware/DISMTools/Stable/0.6.2.25063/CodingWondersSoftware.DISMTools.Stable.yaml b/manifests/c/CodingWondersSoftware/DISMTools/Stable/0.6.2.25063/CodingWondersSoftware.DISMTools.Stable.yaml new file mode 100644 index 0000000000000..8e063112d83be --- /dev/null +++ b/manifests/c/CodingWondersSoftware/DISMTools/Stable/0.6.2.25063/CodingWondersSoftware.DISMTools.Stable.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: CodingWondersSoftware.DISMTools.Stable +PackageVersion: 0.6.2.25063 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/c/Coldlake/StellarPlayer/2.25.1626.24/Coldlake.StellarPlayer.installer.yaml b/manifests/c/Coldlake/StellarPlayer/2.25.1626.24/Coldlake.StellarPlayer.installer.yaml new file mode 100644 index 0000000000000..f0705680880a7 --- /dev/null +++ b/manifests/c/Coldlake/StellarPlayer/2.25.1626.24/Coldlake.StellarPlayer.installer.yaml @@ -0,0 +1,99 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Coldlake.StellarPlayer +PackageVersion: 2.25.1626.24 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent +UpgradeBehavior: install +Protocols: +- stellar +FileExtensions: +- "264" +- 3g2 +- 3gp +- 3gp2 +- 3gpp +- aac +- ac3 +- amv +- ape +- asf +- ass +- avi +- bik +- csf +- dat +- divx +- evo +- f4v +- flac +- flv +- h264 +- hlv +- idx +- ifo +- ivm +- m1v +- m2p +- m2t +- m2ts +- m2v +- m3u +- m3u8 +- m4a +- m4b +- m4p +- m4v +- midi +- mkv +- mod +- mov +- mp2 +- mp2v +- mp3 +- mp4 +- mpe +- mpeg +- mpeg4 +- mpg +- mpv2 +- ogg +- pls +- pss +- pva +- qt +- ra +- ram +- rm +- rmvb +- srt +- ssa +- stpl +- sub +- swf +- tp +- ts +- vob +- vp6 +- vp7 +- vtt +- wav +- webm +- wm +- wma +- wmp +- wmv +ProductCode: StellarPlayer +Installers: +- Architecture: x64 + InstallerUrl: https://player-download.coldlake1.com/player/20250626144716/Stellar_20250626144716_official_stable_full_x64.exe + InstallerSha256: 063106533B055BB57B1C2AA7C336EF3205D2382BAA56EC53AF9A5FF5ECD5665F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Coldlake/StellarPlayer/2.25.1626.24/Coldlake.StellarPlayer.locale.en-US.yaml b/manifests/c/Coldlake/StellarPlayer/2.25.1626.24/Coldlake.StellarPlayer.locale.en-US.yaml new file mode 100644 index 0000000000000..aeb4cce3d366a --- /dev/null +++ b/manifests/c/Coldlake/StellarPlayer/2.25.1626.24/Coldlake.StellarPlayer.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: Coldlake.StellarPlayer +PackageVersion: 2.25.1626.24 +PackageLocale: en-US +Publisher: 冷湖科技有限公司 +PublisherUrl: https://www.stellarplayer.com/ +PublisherSupportUrl: https://www.stellarplayer.com/contact.html +Author: Coldlake Technology (Wuhan) Co., Ltd. +PackageName: StellarPlayer +PackageUrl: https://www.stellarplayer.com/ +License: Proprietary +LicenseUrl: https://www.stellarplayer.com/agreement.html +Copyright: Copyright (C) 2024 +ShortDescription: Versatile UHD media player +Description: Stellar Player is a versatile player that supports almost all video formats, which can play UHD videos smoothly, parse and cast network streaming URLs, stream BitTorrent and magnet links, interact via Danmu, install custom plugins, etc. Stellar Player has a simple interface, and is easy to operate, ad-free, and completely free. +Tags: +- audio +- dlna +- media +- multimedia +- music +- player +- streaming +- video +ReleaseNotesUrl: https://www.stellarplayer.com/blog/category/post/changelog +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://www.stellarplayer.com/blog/category/manual +- DocumentLabel: FAQ + DocumentUrl: https://www.stellarplayer.com/FAQ.html +- DocumentLabel: FAQ + DocumentUrl: https://www.stellarplayer.com/blog/faq +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Coldlake/StellarPlayer/2.25.1626.24/Coldlake.StellarPlayer.locale.zh-CN.yaml b/manifests/c/Coldlake/StellarPlayer/2.25.1626.24/Coldlake.StellarPlayer.locale.zh-CN.yaml new file mode 100644 index 0000000000000..171b1327a02f1 --- /dev/null +++ b/manifests/c/Coldlake/StellarPlayer/2.25.1626.24/Coldlake.StellarPlayer.locale.zh-CN.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Coldlake.StellarPlayer +PackageVersion: 2.25.1626.24 +PackageLocale: zh-CN +Publisher: 冷湖科技有限公司 +PublisherUrl: https://www.stellarplayer.com/ +PublisherSupportUrl: https://www.stellarplayer.com/contact.html +Author: 冷湖科技(武汉)有限公司 +PackageName: 恒星播放器 +PackageUrl: https://www.stellarplayer.com/ +License: 专有软件 +LicenseUrl: https://www.stellarplayer.com/agreement.html +Copyright: Copyright (C) 2024 +ShortDescription: 超高清万能解码影音播放器 +Description: 恒星播放器是一款万能播放器,几乎支持所有视频格式,能够流畅播放超高清视频,支持网络流地址解析、多端投屏,BT 磁力链边下边播、弹幕互动、自定义安装插件等。恒星播放器界面简洁、操作简单、绿色无广告,并且完全免费。 +Tags: +- dlna +- 多媒体 +- 媒体 +- 影音 +- 播放器 +- 流媒体 +- 视频 +- 音乐 +- 音频 +ReleaseNotes: $update_info +ReleaseNotesUrl: https://www.stellarplayer.com/blog/category/post/changelog +Documentations: +- DocumentLabel: 使用手册 + DocumentUrl: https://www.stellarplayer.com/blog/category/manual +- DocumentLabel: 常见问题 + DocumentUrl: https://www.stellarplayer.com/FAQ.html +- DocumentLabel: 常见问题 + DocumentUrl: https://www.stellarplayer.com/blog/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Coldlake/StellarPlayer/2.25.1626.24/Coldlake.StellarPlayer.yaml b/manifests/c/Coldlake/StellarPlayer/2.25.1626.24/Coldlake.StellarPlayer.yaml new file mode 100644 index 0000000000000..7ea69ec81f903 --- /dev/null +++ b/manifests/c/Coldlake/StellarPlayer/2.25.1626.24/Coldlake.StellarPlayer.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: Coldlake.StellarPlayer +PackageVersion: 2.25.1626.24 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CollegeBoard/Bluebook/0.9.490/CollegeBoard.Bluebook.installer.yaml b/manifests/c/CollegeBoard/Bluebook/0.9.490/CollegeBoard.Bluebook.installer.yaml new file mode 100644 index 0000000000000..dd1023c4a8ae2 --- /dev/null +++ b/manifests/c/CollegeBoard/Bluebook/0.9.490/CollegeBoard.Bluebook.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: CollegeBoard.Bluebook +PackageVersion: 0.9.490 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- bluebook +ProductCode: 1cbaa20e-7271-53dc-8885-e8182e6aadb3 +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x86 + InstallerUrl: https://bluebook.app.collegeboard.org/downloads/Bluebook%20Setup%200.9.490.exe + InstallerSha256: 9B81C5ABDFA0356EEA303DAF33F14DD069E88D84B9BD5472A5C43392883BB881 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CollegeBoard/Bluebook/0.9.490/CollegeBoard.Bluebook.locale.en-US.yaml b/manifests/c/CollegeBoard/Bluebook/0.9.490/CollegeBoard.Bluebook.locale.en-US.yaml new file mode 100644 index 0000000000000..a5dca452d0956 --- /dev/null +++ b/manifests/c/CollegeBoard/Bluebook/0.9.490/CollegeBoard.Bluebook.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: CollegeBoard.Bluebook +PackageVersion: 0.9.490 +PackageLocale: en-US +Publisher: College Board +PublisherUrl: https://www.collegeboard.org/ +PublisherSupportUrl: https://support.collegeboard.org/ +PrivacyUrl: https://privacy.collegeboard.org/privacy-statement +Author: College Board +PackageName: Bluebook +PackageUrl: https://bluebook.collegeboard.org/ +License: Proprietary +LicenseUrl: https://privacy.collegeboard.org/student-legal-terms +Copyright: © 2025 College Board +CopyrightUrl: https://privacy.collegeboard.org/student-legal-terms +ShortDescription: A new digital testing application that makes test day easier and faster for students and proctors. +Tags: +- sat +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CollegeBoard/Bluebook/0.9.490/CollegeBoard.Bluebook.locale.zh-CN.yaml b/manifests/c/CollegeBoard/Bluebook/0.9.490/CollegeBoard.Bluebook.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2c2801aa04253 --- /dev/null +++ b/manifests/c/CollegeBoard/Bluebook/0.9.490/CollegeBoard.Bluebook.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CollegeBoard.Bluebook +PackageVersion: 0.9.490 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 全新的数字测试应用程序,让学生和监考人员在考试当天更轻松、更快捷。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CollegeBoard/Bluebook/0.9.490/CollegeBoard.Bluebook.yaml b/manifests/c/CollegeBoard/Bluebook/0.9.490/CollegeBoard.Bluebook.yaml new file mode 100644 index 0000000000000..b23140e37c513 --- /dev/null +++ b/manifests/c/CollegeBoard/Bluebook/0.9.490/CollegeBoard.Bluebook.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: CollegeBoard.Bluebook +PackageVersion: 0.9.490 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CologneCodeCompany/XYplorer/27.00.0900/CologneCodeCompany.XYplorer.installer.yaml b/manifests/c/CologneCodeCompany/XYplorer/27.00.0900/CologneCodeCompany.XYplorer.installer.yaml new file mode 100644 index 0000000000000..0f2fcc5211e85 --- /dev/null +++ b/manifests/c/CologneCodeCompany/XYplorer/27.00.0900/CologneCodeCompany.XYplorer.installer.yaml @@ -0,0 +1,32 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CologneCodeCompany.XYplorer +PackageVersion: 27.00.0900 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: nullsoft +NestedInstallerFiles: +- RelativeFilePath: XYplorer_27.00_Install.exe +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S +UpgradeBehavior: install +Commands: +- xyplorer +ProductCode: XYplorer +ReleaseDate: 2025-07-04 +AppsAndFeaturesEntries: +- DisplayName: XYplorer 27.00 + ProductCode: XYplorer +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\XYplorer' +Installers: +- Architecture: x86 + InstallerUrl: https://www.xyplorer.com/download/xyplorer_27.00.0900.zip + InstallerSha256: 2943D3172DC176DAC4E51972857BF0C005A438B33127E323437652D39BEBB64C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CologneCodeCompany/XYplorer/27.00.0900/CologneCodeCompany.XYplorer.locale.en-US.yaml b/manifests/c/CologneCodeCompany/XYplorer/27.00.0900/CologneCodeCompany.XYplorer.locale.en-US.yaml new file mode 100644 index 0000000000000..5e2376affcac1 --- /dev/null +++ b/manifests/c/CologneCodeCompany/XYplorer/27.00.0900/CologneCodeCompany.XYplorer.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CologneCodeCompany.XYplorer +PackageVersion: 27.00.0900 +PackageLocale: en-US +Publisher: Donald Lessau, Cologne Code Company +PublisherUrl: https://www.xyplorer.com/ +PublisherSupportUrl: https://www.xyplorer.com/support.php +Author: Donald Lessau +PackageName: XYplorer +PackageUrl: https://www.xyplorer.com/ +License: Proprietary +LicenseUrl: https://www.xyplorer.com/LicenseXY.txt +Copyright: Copyright © 1997 by Donald Lessau +ShortDescription: XYplorer is a file manager for Windows +Description: XYplorer is a file manager for Windows. It features tabbed browsing, a powerful file search, a versatile preview, a highly customizable interface, optional dual pane, and a large array of unique ways to efficiently automate frequently recurring tasks. It's fast and light, it's innovative, and it's portable. +Moniker: xyplorer +Tags: +- file-manager +- xyplorer +PurchaseUrl: https://www.xyplorer.com/purchase.php +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CologneCodeCompany/XYplorer/27.00.0900/CologneCodeCompany.XYplorer.yaml b/manifests/c/CologneCodeCompany/XYplorer/27.00.0900/CologneCodeCompany.XYplorer.yaml new file mode 100644 index 0000000000000..0dba726d4064e --- /dev/null +++ b/manifests/c/CologneCodeCompany/XYplorer/27.00.0900/CologneCodeCompany.XYplorer.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: CologneCodeCompany.XYplorer +PackageVersion: 27.00.0900 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CologneCodeCompany/XYplorerPortable/27.00.0900/CologneCodeCompany.XYplorerPortable.installer.yaml b/manifests/c/CologneCodeCompany/XYplorerPortable/27.00.0900/CologneCodeCompany.XYplorerPortable.installer.yaml new file mode 100644 index 0000000000000..c325afa8ea339 --- /dev/null +++ b/manifests/c/CologneCodeCompany/XYplorerPortable/27.00.0900/CologneCodeCompany.XYplorerPortable.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: CologneCodeCompany.XYplorerPortable +PackageVersion: 27.00.0900 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: XYplorer.exe + PortableCommandAlias: xyplorer +Commands: +- xyplorer +ReleaseDate: 2025-07-04 +Installers: +- Architecture: neutral + InstallerUrl: https://www.xyplorer.com/download/xyplorer_27.00.0900_noinstall.zip + InstallerSha256: 521C5B457EB288E0ED0A2752C891126FA0EC5CCFC38C61CF589C0902F733A9E6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CologneCodeCompany/XYplorerPortable/27.00.0900/CologneCodeCompany.XYplorerPortable.locale.en-US.yaml b/manifests/c/CologneCodeCompany/XYplorerPortable/27.00.0900/CologneCodeCompany.XYplorerPortable.locale.en-US.yaml new file mode 100644 index 0000000000000..91c3027d13945 --- /dev/null +++ b/manifests/c/CologneCodeCompany/XYplorerPortable/27.00.0900/CologneCodeCompany.XYplorerPortable.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CologneCodeCompany.XYplorerPortable +PackageVersion: 27.00.0900 +PackageLocale: en-US +Publisher: Cologne Code Company +PublisherUrl: https://www.xyplorer.com/ +PublisherSupportUrl: https://www.xyplorer.com/support.php +Author: Donald Lessau +PackageName: XYplorer Portable +PackageUrl: https://www.xyplorer.com/ +License: Proprietary +LicenseUrl: https://www.xyplorer.com/LicenseXY.txt +Copyright: Copyright © 1997 by Donald Lessau +ShortDescription: XYplorer is a file manager for Windows +Description: XYplorer is a file manager for Windows. It features tabbed browsing, a powerful file search, a versatile preview, a highly customizable interface, optional dual pane, and a large array of unique ways to efficiently automate frequently recurring tasks. It's fast and light, it's innovative, and it's portable. +Moniker: xyplorer.portable +Tags: +- file-manger +- xyplorer +PurchaseUrl: https://www.xyplorer.com/purchase.php +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CologneCodeCompany/XYplorerPortable/27.00.0900/CologneCodeCompany.XYplorerPortable.yaml b/manifests/c/CologneCodeCompany/XYplorerPortable/27.00.0900/CologneCodeCompany.XYplorerPortable.yaml new file mode 100644 index 0000000000000..6b5df4225b182 --- /dev/null +++ b/manifests/c/CologneCodeCompany/XYplorerPortable/27.00.0900/CologneCodeCompany.XYplorerPortable.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: CologneCodeCompany.XYplorerPortable +PackageVersion: 27.00.0900 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/5.6.17.0/ColonyLabs.ScribeDesktopCapture.installer.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.6.17.0/ColonyLabs.ScribeDesktopCapture.installer.yaml new file mode 100644 index 0000000000000..cb240e072e146 --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.6.17.0/ColonyLabs.ScribeDesktopCapture.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: ColonyLabs.ScribeDesktopCapture +PackageVersion: 5.6.17.0 +InstallerType: msi +InstallerSwitches: + InstallLocation: APPDIR="" +UpgradeBehavior: install +Protocols: +- scribehow +ProductCode: '{34b9f6e4-0996-4120-9136-e3072056c12d}' +AppsAndFeaturesEntries: +- UpgradeCode: '{351EF756-3AF5-4117-8697-53AB61427040}' +Installers: +- Architecture: x64 + InstallerUrl: https://colony-labs-public.s3.us-east-2.amazonaws.com/Scribe_5.6.17.msi + InstallerSha256: E142CEB5C18D2E8D570B4F8C7A9AD955C0DBDCD072AEA2E76A99E9EA48E0B02E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/5.6.17.0/ColonyLabs.ScribeDesktopCapture.locale.en-US.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.6.17.0/ColonyLabs.ScribeDesktopCapture.locale.en-US.yaml new file mode 100644 index 0000000000000..723523bdceba4 --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.6.17.0/ColonyLabs.ScribeDesktopCapture.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: ColonyLabs.ScribeDesktopCapture +PackageVersion: 5.6.17.0 +PackageLocale: en-US +Publisher: Colony Labs, Inc +PublisherUrl: https://scribehow.com/ +PublisherSupportUrl: https://support.scribehow.com/ +PrivacyUrl: https://scribehow.com/legal/privacy +Author: Colony Labs, Inc. +PackageName: Scribe +PackageUrl: https://scribehow.com/get-desktop +License: Proprietary +LicenseUrl: https://scribehow.com/legal/terms +Copyright: ©2024-All rights reserved. +CopyrightUrl: https://scribehow.com/legal/terms +ShortDescription: Turn any process into a step-by-step guide, instantly. +Description: Scribe automatically generates how-to guides and serves them to your team when they need them most. +Moniker: scribe +Tags: +- documentation +- steps-recorder +PurchaseUrl: https://scribehow.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/5.6.17.0/ColonyLabs.ScribeDesktopCapture.locale.zh-CN.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.6.17.0/ColonyLabs.ScribeDesktopCapture.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d8d7135026a36 --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.6.17.0/ColonyLabs.ScribeDesktopCapture.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: ColonyLabs.ScribeDesktopCapture +PackageVersion: 5.6.17.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 将任何流程转化为分步指南,即刻实现。 +Description: Scribe 自动生成操作指南,并在团队最需要的时刻提供给他们。 +Tags: +- 文档 +- 步骤记录器 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/5.6.17.0/ColonyLabs.ScribeDesktopCapture.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.6.17.0/ColonyLabs.ScribeDesktopCapture.yaml new file mode 100644 index 0000000000000..611fe92323b91 --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.6.17.0/ColonyLabs.ScribeDesktopCapture.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: ColonyLabs.ScribeDesktopCapture +PackageVersion: 5.6.17.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/5.7.2.0/ColonyLabs.ScribeDesktopCapture.installer.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.7.2.0/ColonyLabs.ScribeDesktopCapture.installer.yaml new file mode 100644 index 0000000000000..70f4f1c68732f --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.7.2.0/ColonyLabs.ScribeDesktopCapture.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: ColonyLabs.ScribeDesktopCapture +PackageVersion: 5.7.2.0 +InstallerType: msi +InstallerSwitches: + InstallLocation: APPDIR="" +UpgradeBehavior: install +Protocols: +- scribehow +ProductCode: '{5df482b4-5b38-411e-a221-e47910641ce1}' +AppsAndFeaturesEntries: +- UpgradeCode: '{351EF756-3AF5-4117-8697-53AB61427040}' +Installers: +- Architecture: x64 + InstallerUrl: https://colony-labs-public.s3.us-east-2.amazonaws.com/Scribe_5.7.2.msi + InstallerSha256: E6F5E21977C56DD531D65A8E4DE08D1588722F135AFBE533FB8FDA9F11D901E7 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/5.7.2.0/ColonyLabs.ScribeDesktopCapture.locale.en-US.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.7.2.0/ColonyLabs.ScribeDesktopCapture.locale.en-US.yaml new file mode 100644 index 0000000000000..9de67165544f3 --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.7.2.0/ColonyLabs.ScribeDesktopCapture.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: ColonyLabs.ScribeDesktopCapture +PackageVersion: 5.7.2.0 +PackageLocale: en-US +Publisher: Colony Labs, Inc +PublisherUrl: https://scribehow.com/ +PublisherSupportUrl: https://support.scribehow.com/ +PrivacyUrl: https://scribehow.com/legal/privacy +Author: Colony Labs, Inc. +PackageName: Scribe +PackageUrl: https://scribehow.com/get-desktop +License: Proprietary +LicenseUrl: https://scribehow.com/legal/terms +Copyright: ©2024-All rights reserved. +CopyrightUrl: https://scribehow.com/legal/terms +ShortDescription: Turn any process into a step-by-step guide, instantly. +Description: Scribe automatically generates how-to guides and serves them to your team when they need them most. +Moniker: scribe +Tags: +- documentation +- steps-recorder +PurchaseUrl: https://scribehow.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/5.7.2.0/ColonyLabs.ScribeDesktopCapture.locale.zh-CN.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.7.2.0/ColonyLabs.ScribeDesktopCapture.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8968b83093309 --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.7.2.0/ColonyLabs.ScribeDesktopCapture.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: ColonyLabs.ScribeDesktopCapture +PackageVersion: 5.7.2.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 将任何流程转化为分步指南,即刻实现。 +Description: Scribe 自动生成操作指南,并在团队最需要的时刻提供给他们。 +Tags: +- 文档 +- 步骤记录器 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/5.7.2.0/ColonyLabs.ScribeDesktopCapture.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.7.2.0/ColonyLabs.ScribeDesktopCapture.yaml new file mode 100644 index 0000000000000..df60b5244d716 --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/5.7.2.0/ColonyLabs.ScribeDesktopCapture.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: ColonyLabs.ScribeDesktopCapture +PackageVersion: 5.7.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Comfy/ComfyUI-Desktop/0.4.53/Comfy.ComfyUI-Desktop.installer.yaml b/manifests/c/Comfy/ComfyUI-Desktop/0.4.53/Comfy.ComfyUI-Desktop.installer.yaml new file mode 100644 index 0000000000000..ec56982ae7fad --- /dev/null +++ b/manifests/c/Comfy/ComfyUI-Desktop/0.4.53/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.53 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f0c0feae-2b28-5d68-8c25-d93f41e47df2 +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://download.todesktop.com/241012ess7yxs0e/ComfyUI%20Setup%200.4.53%20-%20Build%20250626fyxja5562-x64.exe + InstallerSha256: D897871EB1439B4872416D8876172A1AFF0797C19474BF82C3DA87A46DD7D767 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Comfy/ComfyUI-Desktop/0.4.53/Comfy.ComfyUI-Desktop.locale.en-US.yaml b/manifests/c/Comfy/ComfyUI-Desktop/0.4.53/Comfy.ComfyUI-Desktop.locale.en-US.yaml new file mode 100644 index 0000000000000..3ca43193a5da9 --- /dev/null +++ b/manifests/c/Comfy/ComfyUI-Desktop/0.4.53/Comfy.ComfyUI-Desktop.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Comfy.ComfyUI-Desktop +PackageVersion: 0.4.53 +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 action to update compiled requirements by @webfiltered in https://github.com/Comfy-Org/desktop/pull/1204 + - Add workflow for playwright test expectation by @Myestery in https://github.com/Comfy-Org/desktop/pull/1208 + - Update core & frontend versions by @webfiltered in https://github.com/Comfy-Org/desktop/pull/1211 + - 0.4.53 by @webfiltered in https://github.com/Comfy-Org/desktop/pull/1212 + New Contributors + - @Myestery made their first contribution in https://github.com/Comfy-Org/desktop/pull/1208 + Full Changelog: https://github.com/Comfy-Org/desktop/compare/v0.4.52...v0.4.53 +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.53/Comfy.ComfyUI-Desktop.locale.zh-CN.yaml b/manifests/c/Comfy/ComfyUI-Desktop/0.4.53/Comfy.ComfyUI-Desktop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..97dca2234dd75 --- /dev/null +++ b/manifests/c/Comfy/ComfyUI-Desktop/0.4.53/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.53 +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.53/Comfy.ComfyUI-Desktop.yaml b/manifests/c/Comfy/ComfyUI-Desktop/0.4.53/Comfy.ComfyUI-Desktop.yaml new file mode 100644 index 0000000000000..de1c6217ab81d --- /dev/null +++ b/manifests/c/Comfy/ComfyUI-Desktop/0.4.53/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.53 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Comfy/ComfyUI-Desktop/0.4.54/Comfy.ComfyUI-Desktop.installer.yaml b/manifests/c/Comfy/ComfyUI-Desktop/0.4.54/Comfy.ComfyUI-Desktop.installer.yaml new file mode 100644 index 0000000000000..dcc23d971a2cd --- /dev/null +++ b/manifests/c/Comfy/ComfyUI-Desktop/0.4.54/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.54 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f0c0feae-2b28-5d68-8c25-d93f41e47df2 +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x64 + InstallerUrl: https://download.todesktop.com/241012ess7yxs0e/ComfyUI%20Setup%200.4.54%20-%20Build%20250627l6sir2rce-x64.exe + InstallerSha256: B9E6A6ABAFCF5A2CB7C28472AB8E19B343DB276DA28EA6ED9A329D3D999F6154 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Comfy/ComfyUI-Desktop/0.4.54/Comfy.ComfyUI-Desktop.locale.en-US.yaml b/manifests/c/Comfy/ComfyUI-Desktop/0.4.54/Comfy.ComfyUI-Desktop.locale.en-US.yaml new file mode 100644 index 0000000000000..67a933fb1b8ac --- /dev/null +++ b/manifests/c/Comfy/ComfyUI-Desktop/0.4.54/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.54 +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 + - Improve release process docs / command by @webfiltered in https://github.com/Comfy-Org/desktop/pull/1213 + - Update ComfyUI core to v0.3.43 by @webfiltered in https://github.com/Comfy-Org/desktop/pull/1214 + - v0.4.54 by @webfiltered in https://github.com/Comfy-Org/desktop/pull/1215 + Full Changelog: https://github.com/Comfy-Org/desktop/compare/v0.4.53...v0.4.54 +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.54/Comfy.ComfyUI-Desktop.locale.zh-CN.yaml b/manifests/c/Comfy/ComfyUI-Desktop/0.4.54/Comfy.ComfyUI-Desktop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a8a8a4233c434 --- /dev/null +++ b/manifests/c/Comfy/ComfyUI-Desktop/0.4.54/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.54 +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.54/Comfy.ComfyUI-Desktop.yaml b/manifests/c/Comfy/ComfyUI-Desktop/0.4.54/Comfy.ComfyUI-Desktop.yaml new file mode 100644 index 0000000000000..59f304f7eed19 --- /dev/null +++ b/manifests/c/Comfy/ComfyUI-Desktop/0.4.54/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.54 +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.0/Commitlint.Commitlint.installer.yaml b/manifests/c/Commitlint/Commitlint/1.8.0/Commitlint.Commitlint.installer.yaml new file mode 100644 index 0000000000000..55feb3c25d676 --- /dev/null +++ b/manifests/c/Commitlint/Commitlint/1.8.0/Commitlint.Commitlint.installer.yaml @@ -0,0 +1,22 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Commitlint.Commitlint +PackageVersion: 1.8.0 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{EF36AF06-203C-4A6D-A15C-82DF2A724171}' +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- Publisher: jurien.dev + ProductCode: '{EF36AF06-203C-4A6D-A15C-82DF2A724171}' + UpgradeCode: '{CD14F902-99D8-45F5-8098-5FF3FEE89B7C}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%/Commitlint' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/jurienhamaker/commitlint/releases/download/v1.8.0/commitlint_installer.msi + InstallerSha256: E135497BE03BA6736BC1C5B6F1FEF31D37FFAFA071788F8968FDA48BF0C337D1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Commitlint/Commitlint/1.8.0/Commitlint.Commitlint.locale.en-US.yaml b/manifests/c/Commitlint/Commitlint/1.8.0/Commitlint.Commitlint.locale.en-US.yaml new file mode 100644 index 0000000000000..a64114e9cec16 --- /dev/null +++ b/manifests/c/Commitlint/Commitlint/1.8.0/Commitlint.Commitlint.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Commitlint.Commitlint +PackageVersion: 1.8.0 +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.0 (2025-06-24) + Features + - add release-please config (052ac7c) +ReleaseNotesUrl: https://github.com/jurienhamaker/commitlint/releases/tag/v1.8.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Commitlint/Commitlint/1.8.0/Commitlint.Commitlint.yaml b/manifests/c/Commitlint/Commitlint/1.8.0/Commitlint.Commitlint.yaml new file mode 100644 index 0000000000000..f9bcaa5cea844 --- /dev/null +++ b/manifests/c/Commitlint/Commitlint/1.8.0/Commitlint.Commitlint.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Commitlint.Commitlint +PackageVersion: 1.8.0 +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/Connective/ConnectiveSigningPlugins/2.0.9/Connective.ConnectiveSigningPlugins.installer.yaml b/manifests/c/Connective/ConnectiveSigningPlugins/2.0.9/Connective.ConnectiveSigningPlugins.installer.yaml new file mode 100644 index 0000000000000..2e5b4a1e5d2ac --- /dev/null +++ b/manifests/c/Connective/ConnectiveSigningPlugins/2.0.9/Connective.ConnectiveSigningPlugins.installer.yaml @@ -0,0 +1,15 @@ +# 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: Connective.ConnectiveSigningPlugins +PackageVersion: 2.0.9 +InstallerType: wix +ProductCode: '{4ECE4D2B-202E-4819-9F05-402B1035CA9C}' +AppsAndFeaturesEntries: +- UpgradeCode: '{21AE4F11-3DEC-4EAB-9DBC-EFA97CE51D28}' +Installers: +- Architecture: x86 + InstallerUrl: https://plugin.connective.eu/software/windows/connective-plugin-installer-local-2.0.9.msi + InstallerSha256: 5C539A6E7878C8A07783C931716869323AF9599F10C126390BF03E94EB0FCFA5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Connective/ConnectiveSigningPlugins/2.0.9/Connective.ConnectiveSigningPlugins.locale.en-US.yaml b/manifests/c/Connective/ConnectiveSigningPlugins/2.0.9/Connective.ConnectiveSigningPlugins.locale.en-US.yaml new file mode 100644 index 0000000000000..11d1f0b792111 --- /dev/null +++ b/manifests/c/Connective/ConnectiveSigningPlugins/2.0.9/Connective.ConnectiveSigningPlugins.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: Connective.ConnectiveSigningPlugins +PackageVersion: 2.0.9 +PackageLocale: en-US +Publisher: Connective +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +Author: Connective N.V. +PackageName: Connective Signing Plugins +PackageUrl: https://plugin.connective.eu/ +License: Proprietary +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: Identify yourself and/or sign documents using your digital identity card. +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Connective/ConnectiveSigningPlugins/2.0.9/Connective.ConnectiveSigningPlugins.locale.zh-CN.yaml b/manifests/c/Connective/ConnectiveSigningPlugins/2.0.9/Connective.ConnectiveSigningPlugins.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1300ef5d2429c --- /dev/null +++ b/manifests/c/Connective/ConnectiveSigningPlugins/2.0.9/Connective.ConnectiveSigningPlugins.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: Connective.ConnectiveSigningPlugins +PackageVersion: 2.0.9 +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/c/Connective/ConnectiveSigningPlugins/2.0.9/Connective.ConnectiveSigningPlugins.yaml b/manifests/c/Connective/ConnectiveSigningPlugins/2.0.9/Connective.ConnectiveSigningPlugins.yaml new file mode 100644 index 0000000000000..60012dbe5dfd8 --- /dev/null +++ b/manifests/c/Connective/ConnectiveSigningPlugins/2.0.9/Connective.ConnectiveSigningPlugins.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: Connective.ConnectiveSigningPlugins +PackageVersion: 2.0.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/ContourDesign/ContourPointingDevices/3.2.0/ContourDesign.ContourPointingDevices.locale.en-US.yaml b/manifests/c/ContourDesign/ContourPointingDevices/3.2.0/ContourDesign.ContourPointingDevices.locale.en-US.yaml index 66ed6367d500b..f1403538879d8 100644 --- a/manifests/c/ContourDesign/ContourPointingDevices/3.2.0/ContourDesign.ContourPointingDevices.locale.en-US.yaml +++ b/manifests/c/ContourDesign/ContourPointingDevices/3.2.0/ContourDesign.ContourPointingDevices.locale.en-US.yaml @@ -20,6 +20,13 @@ ShortDescription: The driver software for Contour mice and keyboards. # Moniker: Tags: - contour +- cntmou.inf +- cntmouhidbtdriver.inf +- cntmouinternalbtdriver.inf +- cntmoukeyinternalbtdriver.inf +- driver +- rollermouse +- unimouse # ReleaseNotes: # ReleaseNotesUrl: # PurchaseUrl: diff --git a/manifests/c/ControlUp/ControlUpAgent/9.1.0.751/ControlUp.ControlUpAgent.installer.yaml b/manifests/c/ControlUp/ControlUpAgent/9.1.0.751/ControlUp.ControlUpAgent.installer.yaml new file mode 100644 index 0000000000000..28584ddb89ed4 --- /dev/null +++ b/manifests/c/ControlUp/ControlUpAgent/9.1.0.751/ControlUp.ControlUpAgent.installer.yaml @@ -0,0 +1,19 @@ +# 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: ControlUp.ControlUpAgent +PackageVersion: 9.1.0.751 +InstallerType: msi # Advanced Installer +Scope: machine +InstallerSwitches: + InstallLocation: APPDIR="" +ProductCode: '{DE8B9CFC-E2CC-411C-98B3-591F0A80C64F}' +ReleaseDate: 2025-06-15 +AppsAndFeaturesEntries: +- UpgradeCode: '{42F448C8-835A-4EA0-BE1C-05136450B66B}' +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.controlup.com/agent/9.1.0.751/ControlUpAgent-net48-x64-9.1.0.751-signed.msi + InstallerSha256: CD0ADF09E4E915F289597591F7233131AE77297FF4E1ED97B4685F942EAC8199 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/ControlUp/ControlUpAgent/9.1.0.751/ControlUp.ControlUpAgent.locale.en-US.yaml b/manifests/c/ControlUp/ControlUpAgent/9.1.0.751/ControlUp.ControlUpAgent.locale.en-US.yaml new file mode 100644 index 0000000000000..8676f2835a840 --- /dev/null +++ b/manifests/c/ControlUp/ControlUpAgent/9.1.0.751/ControlUp.ControlUpAgent.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: ControlUp.ControlUpAgent +PackageVersion: 9.1.0.751 +PackageLocale: en-US +Publisher: ControlUp Technologies Ltd +PublisherUrl: https://www.controlup.com/ +PublisherSupportUrl: https://help.controlup.com/ +PrivacyUrl: https://www.controlup.com/privacy-policy/ +Author: ControlUp Technologies Ltd. +PackageName: ControlUpAgent +PackageUrl: https://www.controlup.com/download-center/ +License: Proprietary +LicenseUrl: https://www.controlup.com/terms/ +Copyright: Copyright © 2025 ControlUp Technologies Ltd. All rights reserved. +CopyrightUrl: https://www.controlup.com/terms/ +ShortDescription: Monitor and manage physical and virtual Windows machines in your environment +Description: Monitor and manage physical and virtual Windows machines in your environment by installing the ControlUp Agent on your machines. The Agent lets you see real-time metrics of your machines, user sessions, processes, and much more information. Any machine with the Agent installed is considered a "managed machine". +# Moniker: +# Tags: +# ReleaseNotes: +ReleaseNotesUrl: https://www.controlup.com/controlup-release-notes/ +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/ControlUp/ControlUpAgent/9.1.0.751/ControlUp.ControlUpAgent.locale.zh-CN.yaml b/manifests/c/ControlUp/ControlUpAgent/9.1.0.751/ControlUp.ControlUpAgent.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8355f2d631e48 --- /dev/null +++ b/manifests/c/ControlUp/ControlUpAgent/9.1.0.751/ControlUp.ControlUpAgent.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: ControlUp.ControlUpAgent +PackageVersion: 9.1.0.751 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 在您的机器上监控与管理物理和虚拟 Windows 设备 +Description: 在您的机器上安装 ControlUp 代理以监控与管理环境中物理和虚拟 Windows 设备。该代理可让您实时查看机器性能指标、用户会话、进程运行状态等丰富信息。任何安装了此代理的设备均被视为“受管机器”。 +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/ControlUp/ControlUpAgent/9.1.0.751/ControlUp.ControlUpAgent.yaml b/manifests/c/ControlUp/ControlUpAgent/9.1.0.751/ControlUp.ControlUpAgent.yaml new file mode 100644 index 0000000000000..7d22386977135 --- /dev/null +++ b/manifests/c/ControlUp/ControlUpAgent/9.1.0.751/ControlUp.ControlUpAgent.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: ControlUp.ControlUpAgent +PackageVersion: 9.1.0.751 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/ControlUp/ControlUpAgentManager/9.1.0.751/ControlUp.ControlUpAgentManager.installer.yaml b/manifests/c/ControlUp/ControlUpAgentManager/9.1.0.751/ControlUp.ControlUpAgentManager.installer.yaml new file mode 100644 index 0000000000000..87980b8d97942 --- /dev/null +++ b/manifests/c/ControlUp/ControlUpAgentManager/9.1.0.751/ControlUp.ControlUpAgentManager.installer.yaml @@ -0,0 +1,23 @@ +# 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: ControlUp.ControlUpAgentManager +PackageVersion: 9.1.0.751 +InstallerType: zip +NestedInstallerType: msi # Advanced Installer +NestedInstallerFiles: +- RelativeFilePath: ControlUpAgent-RealTimeAgentManager-net8-x64-9.1.0.751-signed.msi +InstallerSwitches: + InstallLocation: APPDIR="" +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 +ProductCode: ControlUpAgent 9.1.0.751 +AppsAndFeaturesEntries: +- InstallerType: exe +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.controlup.com/agent_manager/9.1.0.751/ControlUpAgent-RealTimeAgentManager-net8-x64-signed-9.1.0.751.zip + InstallerSha256: 26149782EB806737AB4399D24AD42E2085C82E26E0124FE2A64B95AADC2A557D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/ControlUp/ControlUpAgentManager/9.1.0.751/ControlUp.ControlUpAgentManager.locale.en-US.yaml b/manifests/c/ControlUp/ControlUpAgentManager/9.1.0.751/ControlUp.ControlUpAgentManager.locale.en-US.yaml new file mode 100644 index 0000000000000..2e308c56a5063 --- /dev/null +++ b/manifests/c/ControlUp/ControlUpAgentManager/9.1.0.751/ControlUp.ControlUpAgentManager.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: ControlUp.ControlUpAgentManager +PackageVersion: 9.1.0.751 +PackageLocale: en-US +Publisher: ControlUp Technologies Ltd +PublisherUrl: https://www.controlup.com/ +PublisherSupportUrl: https://help.controlup.com/ +PrivacyUrl: https://www.controlup.com/privacy-policy/ +Author: ControlUp Technologies Ltd. +PackageName: ControlUp Real-Time Agent (and Manager) +PackageUrl: https://www.controlup.com/download-center/ +License: Proprietary +LicenseUrl: https://www.controlup.com/terms/ +Copyright: Copyright © 2025 ControlUp Technologies Ltd. All rights reserved. +CopyrightUrl: https://www.controlup.com/terms/ +ShortDescription: A Windows service that monitors the ControlUp Agent and restarts it if it stops. +Description: The Real-Time Agent Manager is a Windows service installed on the same machine that the ControlUp Agent Windows service is installed on. Installing the Real-Time Agent Manager also installs the ControlUp Agent. The Real-Time Agent Manager’s main functionality is to act as a “watchdog” for the ControlUp Agent. For example, if the ControlUp Agent stops, the Real-Time Agent Manager restarts the agent. Reciprocally, if the Real-Time Agent Manager stops, the ControlUp Agent restarts the Real-Time Agent Manager. +# Moniker: +# Tags: +# ReleaseNotes: +ReleaseNotesUrl: https://www.controlup.com/controlup-release-notes/ +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/ControlUp/ControlUpAgentManager/9.1.0.751/ControlUp.ControlUpAgentManager.locale.zh-CN.yaml b/manifests/c/ControlUp/ControlUpAgentManager/9.1.0.751/ControlUp.ControlUpAgentManager.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c379c1b25b137 --- /dev/null +++ b/manifests/c/ControlUp/ControlUpAgentManager/9.1.0.751/ControlUp.ControlUpAgentManager.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: ControlUp.ControlUpAgentManager +PackageVersion: 9.1.0.751 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 一个监控 ControlUp Agent 的 Windows 服务,并在其停止时重新启动。 +Description: Real-Time Agent Manager 是一个 Windows 服务,需与 ControlUp Agent 服务安装在同一台机器上。安装 Real-Time Agent Manager 时会同步安装 ControlUp Agent。其主要功能是作为 ControlUp Agent 的“看门狗”——例如当 ControlUp Agent 停止运行时,Real-Time Agent Manager 会自动重启该代理;反之若 Real-Time Agent Manager 停止运行,ControlUp Agent 也会重新启动管理器。 +# Moniker: +# Tags: +# ReleaseNotes: +ReleaseNotesUrl: https://www.controlup.com/controlup-release-notes/ +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/ControlUp/ControlUpAgentManager/9.1.0.751/ControlUp.ControlUpAgentManager.yaml b/manifests/c/ControlUp/ControlUpAgentManager/9.1.0.751/ControlUp.ControlUpAgentManager.yaml new file mode 100644 index 0000000000000..0258c45025698 --- /dev/null +++ b/manifests/c/ControlUp/ControlUpAgentManager/9.1.0.751/ControlUp.ControlUpAgentManager.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: ControlUp.ControlUpAgentManager +PackageVersion: 9.1.0.751 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Corsair/iCUE/5/5.23.97/Corsair.iCUE.5.installer.yaml b/manifests/c/Corsair/iCUE/5/5.23.97/Corsair.iCUE.5.installer.yaml index 307f0a684d583..0b6d0556daf56 100644 --- a/manifests/c/Corsair/iCUE/5/5.23.97/Corsair.iCUE.5.installer.yaml +++ b/manifests/c/Corsair/iCUE/5/5.23.97/Corsair.iCUE.5.installer.yaml @@ -15,6 +15,6 @@ UpgradeBehavior: install Installers: - Architecture: x64 InstallerUrl: https://www3.corsair.com/software/CUE_V5/public/modules/windows/installer/Install%20iCUE.exe - InstallerSha256: B9D8BF509AA04B0631392524B4F2692166DA0623C701D7A7055821A8A95E8BD9 + InstallerSha256: 49C46E96404894B382E2856938E3A733CB23C71957AF6341334B1A0FB995C72F ManifestType: installer ManifestVersion: 1.9.0 diff --git a/manifests/c/Corsair/iCUE/5/5.23.97/Corsair.iCUE.5.locale.en-US.yaml b/manifests/c/Corsair/iCUE/5/5.23.97/Corsair.iCUE.5.locale.en-US.yaml index 03968e415d4fc..a314e4752cdd5 100644 --- a/manifests/c/Corsair/iCUE/5/5.23.97/Corsair.iCUE.5.locale.en-US.yaml +++ b/manifests/c/Corsair/iCUE/5/5.23.97/Corsair.iCUE.5.locale.en-US.yaml @@ -30,5 +30,13 @@ Tags: - mouse - rgb - utility +- psu +- corsairlinkdigital +- commport +- corsairsiusbxp.inf +- isousb.inf +- c-media +- cmedia +- corsairhidcoinstaller.inf ManifestType: defaultLocale ManifestVersion: 1.9.0 diff --git a/manifests/c/Coupang/CoupangPOS/1.10.23/Coupang.CoupangPOS.installer.yaml b/manifests/c/Coupang/CoupangPOS/1.10.23/Coupang.CoupangPOS.installer.yaml deleted file mode 100644 index 9c50c7451c9ba..0000000000000 --- a/manifests/c/Coupang/CoupangPOS/1.10.23/Coupang.CoupangPOS.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/27 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Coupang.CoupangPOS -PackageVersion: 1.10.23 -InstallerType: inno -Dependencies: - WindowsFeatures: - - netfx3 -Installers: -- Architecture: x86 - InstallerUrl: https://pos-api.coupang.com/api/v1/app/download/installer - InstallerSha256: 40DC474C6E7EEC9697092431C1B0625800DA3A1B15236C8F453773D2770C40C5 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/c/Coupang/CoupangPOS/1.10.23/Coupang.CoupangPOS.yaml b/manifests/c/Coupang/CoupangPOS/1.10.23/Coupang.CoupangPOS.yaml deleted file mode 100644 index e9045d279bc23..0000000000000 --- a/manifests/c/Coupang/CoupangPOS/1.10.23/Coupang.CoupangPOS.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/27 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Coupang.CoupangPOS -PackageVersion: 1.10.23 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/c/Coupang/CoupangPOS/1.10.24/Coupang.CoupangPOS.installer.yaml b/manifests/c/Coupang/CoupangPOS/1.10.24/Coupang.CoupangPOS.installer.yaml new file mode 100644 index 0000000000000..22fbbd5d3c43b --- /dev/null +++ b/manifests/c/Coupang/CoupangPOS/1.10.24/Coupang.CoupangPOS.installer.yaml @@ -0,0 +1,15 @@ +# Automatically updated by the winget bot at 2025/Jul/02 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Coupang.CoupangPOS +PackageVersion: 1.10.24 +InstallerType: inno +Dependencies: + WindowsFeatures: + - netfx3 +Installers: +- Architecture: x86 + InstallerUrl: https://pos-api.coupang.com/api/v1/app/download/installer + InstallerSha256: D6874B0B9D764B9D7562BB184323AA1BF3120C75B455EBB56E57D5AF2C9FD6F9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Coupang/CoupangPOS/1.10.23/Coupang.CoupangPOS.locale.en-US.yaml b/manifests/c/Coupang/CoupangPOS/1.10.24/Coupang.CoupangPOS.locale.en-US.yaml similarity index 85% rename from manifests/c/Coupang/CoupangPOS/1.10.23/Coupang.CoupangPOS.locale.en-US.yaml rename to manifests/c/Coupang/CoupangPOS/1.10.24/Coupang.CoupangPOS.locale.en-US.yaml index 580df970ce7d2..4120edaa6b77d 100644 --- a/manifests/c/Coupang/CoupangPOS/1.10.23/Coupang.CoupangPOS.locale.en-US.yaml +++ b/manifests/c/Coupang/CoupangPOS/1.10.24/Coupang.CoupangPOS.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/May/27 +# Automatically updated by the winget bot at 2025/Jul/02 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Coupang.CoupangPOS -PackageVersion: 1.10.23 +PackageVersion: 1.10.24 PackageLocale: en-US Publisher: Coupang, Inc. PublisherUrl: https://www.aboutcoupang.com/ diff --git a/manifests/c/Coupang/CoupangPOS/1.10.24/Coupang.CoupangPOS.yaml b/manifests/c/Coupang/CoupangPOS/1.10.24/Coupang.CoupangPOS.yaml new file mode 100644 index 0000000000000..c1b130d5a59ae --- /dev/null +++ b/manifests/c/Coupang/CoupangPOS/1.10.24/Coupang.CoupangPOS.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/02 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Coupang.CoupangPOS +PackageVersion: 1.10.24 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CozyCloud/CozyDrive/Beta/3.43.0-beta.2/CozyCloud.CozyDrive.Beta.installer.yaml b/manifests/c/CozyCloud/CozyDrive/Beta/3.43.0-beta.2/CozyCloud.CozyDrive.Beta.installer.yaml new file mode 100644 index 0000000000000..3db0279454a13 --- /dev/null +++ b/manifests/c/CozyCloud/CozyDrive/Beta/3.43.0-beta.2/CozyCloud.CozyDrive.Beta.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: CozyCloud.CozyDrive.Beta +PackageVersion: 3.43.0-beta.2 +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/cozy-labs/cozy-desktop/releases/download/v3.43.0-beta.2/Cozy-Drive-Setup-3.43.0-beta.2.exe + InstallerSha256: 62BF12BF6F908292F927DE6C86519960919DFA07B6A5AF39D645214FF402533F +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-02 diff --git a/manifests/c/CozyCloud/CozyDrive/Beta/3.43.0-beta.2/CozyCloud.CozyDrive.Beta.locale.en-US.yaml b/manifests/c/CozyCloud/CozyDrive/Beta/3.43.0-beta.2/CozyCloud.CozyDrive.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..2fa36e5ef42e8 --- /dev/null +++ b/manifests/c/CozyCloud/CozyDrive/Beta/3.43.0-beta.2/CozyCloud.CozyDrive.Beta.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: CozyCloud.CozyDrive.Beta +PackageVersion: 3.43.0-beta.2 +PackageLocale: en-US +Publisher: Cozy Cloud +PublisherUrl: https://cozy.io/en +PublisherSupportUrl: https://cozy.io/en/support +PrivacyUrl: https://cozy.io/en/privacy +Author: Cozy Cloud +PackageName: Cozy Drive (Beta) +PackageUrl: https://cozy.io/en/download/#desktop +License: AGPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/cozy-labs/cozy-desktop/master/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/cozy-labs/cozy-desktop/master/LICENSE +ShortDescription: File Synchronisation for Cozy on Desktop and Laptop. +Description: |- + Cozy Drive for Desktop allows you to synchronize the files stored in your Cozy with your laptop and/or desktop computer. + It replicates your files on your hard drive and apply changes you made on them on other synced devices and on your online Cozy. +Tags: +- backup +- cloud +- sync +ReleaseNotesUrl: https://github.com/cozy-labs/cozy-desktop/releases/tag/v3.43.0-beta.2 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/c/CozyCloud/CozyDrive/Beta/3.43.0-beta.2/CozyCloud.CozyDrive.Beta.yaml b/manifests/c/CozyCloud/CozyDrive/Beta/3.43.0-beta.2/CozyCloud.CozyDrive.Beta.yaml new file mode 100644 index 0000000000000..d4f44587db224 --- /dev/null +++ b/manifests/c/CozyCloud/CozyDrive/Beta/3.43.0-beta.2/CozyCloud.CozyDrive.Beta.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: CozyCloud.CozyDrive.Beta +PackageVersion: 3.43.0-beta.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.6/CozyCloud.CozyDrive.Beta.installer.yaml b/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.6/CozyCloud.CozyDrive.Beta.installer.yaml new file mode 100644 index 0000000000000..033de1311d253 --- /dev/null +++ b/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.6/CozyCloud.CozyDrive.Beta.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: CozyCloud.CozyDrive.Beta +PackageVersion: 4.0.0-beta.6 +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/cozy-labs/cozy-desktop/releases/download/v4.0.0-beta.6/Twake-Desktop-Setup-4.0.0-beta.6.exe + InstallerSha256: A32BB06A5C77905139BFA78214AEAF2C106EAABEE3DA0A4CD2136BFC95D0E21C +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-01 diff --git a/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.6/CozyCloud.CozyDrive.Beta.locale.en-US.yaml b/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.6/CozyCloud.CozyDrive.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..e804508e92d6d --- /dev/null +++ b/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.6/CozyCloud.CozyDrive.Beta.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: CozyCloud.CozyDrive.Beta +PackageVersion: 4.0.0-beta.6 +PackageLocale: en-US +Publisher: Cozy Cloud +PublisherUrl: https://cozy.io/en +PublisherSupportUrl: https://cozy.io/en/support +PrivacyUrl: https://cozy.io/en/privacy +Author: Cozy Cloud +PackageName: Cozy Drive (Beta) +PackageUrl: https://cozy.io/en/download/#desktop +License: AGPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/cozy-labs/cozy-desktop/master/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/cozy-labs/cozy-desktop/master/LICENSE +ShortDescription: File Synchronisation for Cozy on Desktop and Laptop. +Description: |- + Cozy Drive for Desktop allows you to synchronize the files stored in your Cozy with your laptop and/or desktop computer. + It replicates your files on your hard drive and apply changes you made on them on other synced devices and on your online Cozy. +Tags: +- backup +- cloud +- sync +ReleaseNotesUrl: https://github.com/cozy-labs/cozy-desktop/releases/tag/v4.0.0-beta.6 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.6/CozyCloud.CozyDrive.Beta.yaml b/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.6/CozyCloud.CozyDrive.Beta.yaml new file mode 100644 index 0000000000000..17768c929b5ce --- /dev/null +++ b/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.6/CozyCloud.CozyDrive.Beta.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: CozyCloud.CozyDrive.Beta +PackageVersion: 4.0.0-beta.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.7/CozyCloud.CozyDrive.Beta.installer.yaml b/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.7/CozyCloud.CozyDrive.Beta.installer.yaml new file mode 100644 index 0000000000000..baf8b8598b011 --- /dev/null +++ b/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.7/CozyCloud.CozyDrive.Beta.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: CozyCloud.CozyDrive.Beta +PackageVersion: 4.0.0-beta.7 +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/cozy-labs/cozy-desktop/releases/download/v4.0.0-beta.7/Twake-Desktop-Setup-4.0.0-beta.7.exe + InstallerSha256: E94B416C3D82B21498B33647EDB17475F7919E86174C324278A623EEC890992D +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-03 diff --git a/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.7/CozyCloud.CozyDrive.Beta.locale.en-US.yaml b/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.7/CozyCloud.CozyDrive.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..d50bdc3e0dba2 --- /dev/null +++ b/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.7/CozyCloud.CozyDrive.Beta.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: CozyCloud.CozyDrive.Beta +PackageVersion: 4.0.0-beta.7 +PackageLocale: en-US +Publisher: Cozy Cloud +PublisherUrl: https://cozy.io/en +PublisherSupportUrl: https://cozy.io/en/support +PrivacyUrl: https://cozy.io/en/privacy +Author: Cozy Cloud +PackageName: Cozy Drive (Beta) +PackageUrl: https://cozy.io/en/download/#desktop +License: AGPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/cozy-labs/cozy-desktop/master/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/cozy-labs/cozy-desktop/master/LICENSE +ShortDescription: File Synchronisation for Cozy on Desktop and Laptop. +Description: |- + Cozy Drive for Desktop allows you to synchronize the files stored in your Cozy with your laptop and/or desktop computer. + It replicates your files on your hard drive and apply changes you made on them on other synced devices and on your online Cozy. +Tags: +- backup +- cloud +- sync +ReleaseNotesUrl: https://github.com/cozy-labs/cozy-desktop/releases/tag/v4.0.0-beta.7 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.7/CozyCloud.CozyDrive.Beta.yaml b/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.7/CozyCloud.CozyDrive.Beta.yaml new file mode 100644 index 0000000000000..888007980378e --- /dev/null +++ b/manifests/c/CozyCloud/CozyDrive/Beta/4.0.0-beta.7/CozyCloud.CozyDrive.Beta.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: CozyCloud.CozyDrive.Beta +PackageVersion: 4.0.0-beta.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/c/Crate-CI/Typos/1.34.0/Crate-CI.Typos.installer.yaml b/manifests/c/Crate-CI/Typos/1.34.0/Crate-CI.Typos.installer.yaml new file mode 100644 index 0000000000000..167dde8b1b25b --- /dev/null +++ b/manifests/c/Crate-CI/Typos/1.34.0/Crate-CI.Typos.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Crate-CI.Typos +PackageVersion: 1.34.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: typos.exe +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/crate-ci/typos/releases/download/v1.34.0/typos-v1.34.0-x86_64-pc-windows-msvc.zip + InstallerSha256: A4B7ADCF26FFD6C6609092401F5192A3DC73BB8D26A1F56A64160F73873E4A79 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Crate-CI/Typos/1.34.0/Crate-CI.Typos.locale.en-US.yaml b/manifests/c/Crate-CI/Typos/1.34.0/Crate-CI.Typos.locale.en-US.yaml new file mode 100644 index 0000000000000..06c0ee55c8348 --- /dev/null +++ b/manifests/c/Crate-CI/Typos/1.34.0/Crate-CI.Typos.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Crate-CI.Typos +PackageVersion: 1.34.0 +PackageLocale: en-US +Publisher: Crate-CI +PublisherUrl: https://github.com/crate-ci +PublisherSupportUrl: https://github.com/crate-ci/typos/issues +PackageName: Typos +PackageUrl: https://github.com/crate-ci/typos +License: Apache-2.0 +ShortDescription: Source code spell checker +Tags: +- cli +- code-quality +- rust +- spell-checker +ReleaseNotes: |- + [1.34.0] - 2025-06-30 + Features + - Updated the dictionary with the June 2025 changes +ReleaseNotesUrl: https://github.com/crate-ci/typos/releases/tag/v1.34.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/crate-ci/typos/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Crate-CI/Typos/1.34.0/Crate-CI.Typos.yaml b/manifests/c/Crate-CI/Typos/1.34.0/Crate-CI.Typos.yaml new file mode 100644 index 0000000000000..78f47ca929ece --- /dev/null +++ b/manifests/c/Crate-CI/Typos/1.34.0/Crate-CI.Typos.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: Crate-CI.Typos +PackageVersion: 1.34.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CreativeForce/Hue/5.25.0/CreativeForce.Hue.installer.yaml b/manifests/c/CreativeForce/Hue/5.25.0/CreativeForce.Hue.installer.yaml new file mode 100644 index 0000000000000..45b1a04340947 --- /dev/null +++ b/manifests/c/CreativeForce/Hue/5.25.0/CreativeForce.Hue.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: CreativeForce.Hue +PackageVersion: 5.25.0 +UpgradeBehavior: install +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://download.creativeforce.io/released-files.042024/prod/hue-uxp/win/Hue-5.25.0-win.exe + InstallerSha256: 20CFBB48F23418A3FA42EB0D2E9005B97D289F29AA4F81A1FA584136EBD24E9C + InstallerSwitches: + Upgrade: --updated + Custom: /currentuser + ProductCode: 4d78e435-734d-5271-bf8e-b18504b45e0f +- Architecture: x64 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://download.creativeforce.io/released-files.042024/prod/hue-uxp/win/Hue-5.25.0-win.exe + InstallerSha256: 20CFBB48F23418A3FA42EB0D2E9005B97D289F29AA4F81A1FA584136EBD24E9C + InstallerSwitches: + Upgrade: --updated + Custom: /allusers + ProductCode: 4d78e435-734d-5271-bf8e-b18504b45e0f +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download.creativeforce.io/released-files.042024/prod/hue-uxp/win/Hue-5.25.0-win.msi + InstallerSha256: F4F285F2147F567E402380BEF17230167E566C547E01B3D2F52BB8935C65B934 + InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" + ProductCode: '{8607B439-EEEB-43F6-B285-68EED185A657}' + AppsAndFeaturesEntries: + - UpgradeCode: '{89608236-D06C-51BC-9A59-1A00EC743D2B}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CreativeForce/Hue/5.25.0/CreativeForce.Hue.locale.en-US.yaml b/manifests/c/CreativeForce/Hue/5.25.0/CreativeForce.Hue.locale.en-US.yaml new file mode 100644 index 0000000000000..2baf58a7c1e12 --- /dev/null +++ b/manifests/c/CreativeForce/Hue/5.25.0/CreativeForce.Hue.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: CreativeForce.Hue +PackageVersion: 5.25.0 +PackageLocale: en-US +Publisher: Creative Force +PublisherUrl: https://www.creativeforce.io/ +PublisherSupportUrl: https://help.creativeforce.io/ +PrivacyUrl: https://www.creativeforce.io/legal/privacy-policy/ +Author: CreativeForce.io, Inc +PackageName: Hue +PackageUrl: https://download.creativeforce.io/ +License: Proprietary +LicenseUrl: https://www.creativeforce.io/legal/eula/ +Copyright: Copyright © 2025 Creative Force, Inc. All rights reserved, +CopyrightUrl: https://www.creativeforce.io/legal/eula/ +ShortDescription: Integrates with Photoshop to let retouchers select tasks, open files directly, and access delivery specs, annotations, and reference files for precise retouching. +Tags: +- photoshop +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CreativeForce/Hue/5.25.0/CreativeForce.Hue.locale.zh-CN.yaml b/manifests/c/CreativeForce/Hue/5.25.0/CreativeForce.Hue.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8680615519d38 --- /dev/null +++ b/manifests/c/CreativeForce/Hue/5.25.0/CreativeForce.Hue.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CreativeForce.Hue +PackageVersion: 5.25.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 集成至 Photoshop 后,修图师可以选择任务、直接打开文件,并访问交付规范、注释和参考文件,从而精确修图。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CreativeForce/Hue/5.25.0/CreativeForce.Hue.yaml b/manifests/c/CreativeForce/Hue/5.25.0/CreativeForce.Hue.yaml new file mode 100644 index 0000000000000..59ab526cfec5a --- /dev/null +++ b/manifests/c/CreativeForce/Hue/5.25.0/CreativeForce.Hue.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: CreativeForce.Hue +PackageVersion: 5.25.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CreativeForce/Kelvin/5.32.3/CreativeForce.Kelvin.installer.yaml b/manifests/c/CreativeForce/Kelvin/5.32.3/CreativeForce.Kelvin.installer.yaml new file mode 100644 index 0000000000000..d59efdc2aeeb8 --- /dev/null +++ b/manifests/c/CreativeForce/Kelvin/5.32.3/CreativeForce.Kelvin.installer.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CreativeForce.Kelvin +PackageVersion: 5.32.3 +UpgradeBehavior: install +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://download.creativeforce.io/released-files.042024/prod/kelvin/win/Kelvin-5.32.3-win.exe + InstallerSha256: 4DB483BE8545F91494664EB74E4D34FF51D680F38D9B8159FCF341CA900F25C4 + InstallerSwitches: + Upgrade: --updated + Custom: /currentuser + ProductCode: aae3a3cf-9ee8-53df-bf5e-4c41312da66d +- Architecture: x64 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://download.creativeforce.io/released-files.042024/prod/kelvin/win/Kelvin-5.32.3-win.exe + InstallerSha256: 4DB483BE8545F91494664EB74E4D34FF51D680F38D9B8159FCF341CA900F25C4 + InstallerSwitches: + Upgrade: --updated + Custom: /allusers + ProductCode: aae3a3cf-9ee8-53df-bf5e-4c41312da66d +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download.creativeforce.io/released-files.042024/prod/kelvin/win/Kelvin-5.32.3-win.msi + InstallerSha256: 6E77E8E22CFBECC139F05FEE4D53FBA689EF40A90831D52F8C3298DCB515FA93 + InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" + ProductCode: '{430AE2B4-A5F2-48DD-8525-B42E42EDFA84}' + AppsAndFeaturesEntries: + - UpgradeCode: '{43D5EF01-191A-571C-8483-7EB293F5AA4F}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CreativeForce/Kelvin/5.32.3/CreativeForce.Kelvin.locale.en-US.yaml b/manifests/c/CreativeForce/Kelvin/5.32.3/CreativeForce.Kelvin.locale.en-US.yaml new file mode 100644 index 0000000000000..026124cb458f1 --- /dev/null +++ b/manifests/c/CreativeForce/Kelvin/5.32.3/CreativeForce.Kelvin.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CreativeForce.Kelvin +PackageVersion: 5.32.3 +PackageLocale: en-US +Publisher: Creative Force +PublisherUrl: https://www.creativeforce.io/ +PublisherSupportUrl: https://help.creativeforce.io/ +PrivacyUrl: https://www.creativeforce.io/legal/privacy-policy/ +Author: CreativeForce.io, Inc +PackageName: Kelvin +PackageUrl: https://download.creativeforce.io/ +License: Proprietary +LicenseUrl: https://www.creativeforce.io/legal/eula/ +Copyright: Copyright © 2025 Creative Force, Inc. All rights reserved, +CopyrightUrl: https://www.creativeforce.io/legal/eula/ +ShortDescription: Designed for smooth image and video capture and transfer, with optional Capture One integration. Includes tools for cropping, annotation, and style guide alignment. +Tags: +- capture-one +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CreativeForce/Kelvin/5.32.3/CreativeForce.Kelvin.locale.zh-CN.yaml b/manifests/c/CreativeForce/Kelvin/5.32.3/CreativeForce.Kelvin.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c821e8d3f8534 --- /dev/null +++ b/manifests/c/CreativeForce/Kelvin/5.32.3/CreativeForce.Kelvin.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CreativeForce.Kelvin +PackageVersion: 5.32.3 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 专为流畅捕获与传输图像和视频而设计的可选 Capture One 集成。包括裁剪、注释和样式指南对齐工具。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CreativeForce/Kelvin/5.32.3/CreativeForce.Kelvin.yaml b/manifests/c/CreativeForce/Kelvin/5.32.3/CreativeForce.Kelvin.yaml new file mode 100644 index 0000000000000..395f25ebb839d --- /dev/null +++ b/manifests/c/CreativeForce/Kelvin/5.32.3/CreativeForce.Kelvin.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: CreativeForce.Kelvin +PackageVersion: 5.32.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CreativeForce/Luma/1.11.0/CreativeForce.Luma.installer.yaml b/manifests/c/CreativeForce/Luma/1.11.0/CreativeForce.Luma.installer.yaml new file mode 100644 index 0000000000000..3e48730b3ad69 --- /dev/null +++ b/manifests/c/CreativeForce/Luma/1.11.0/CreativeForce.Luma.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: CreativeForce.Luma +PackageVersion: 1.11.0 +UpgradeBehavior: install +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://download.creativeforce.io/released-files.042024/prod/luma/win/Luma-1.11.0-win.exe + InstallerSha256: B6D6E1EFDD999EC9051A61BA0A14EAC13247B1319DAFE35DE064CB06C1E560D3 + InstallerSwitches: + Upgrade: --updated + Custom: /currentuser + ProductCode: 7e2819b4-e614-5cd2-a0f7-7168a4dae796 +- Architecture: x64 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://download.creativeforce.io/released-files.042024/prod/luma/win/Luma-1.11.0-win.exe + InstallerSha256: B6D6E1EFDD999EC9051A61BA0A14EAC13247B1319DAFE35DE064CB06C1E560D3 + InstallerSwitches: + Upgrade: --updated + Custom: /allusers + ProductCode: 7e2819b4-e614-5cd2-a0f7-7168a4dae796 +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download.creativeforce.io/released-files.042024/prod/luma/win/Luma-1.11.0-win.msi + InstallerSha256: 8B72BBEDABD632289B2E96DF81A340F92D5552BB8AF5880477697B8D09D1A53F + InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" + ProductCode: '{9739E669-FA51-414D-AE2C-7F985D8DC360}' + AppsAndFeaturesEntries: + - UpgradeCode: '{71B15111-BB2F-566A-BBC4-D3737D388F73}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CreativeForce/Luma/1.11.0/CreativeForce.Luma.locale.en-US.yaml b/manifests/c/CreativeForce/Luma/1.11.0/CreativeForce.Luma.locale.en-US.yaml new file mode 100644 index 0000000000000..25c5f056dcf14 --- /dev/null +++ b/manifests/c/CreativeForce/Luma/1.11.0/CreativeForce.Luma.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CreativeForce.Luma +PackageVersion: 1.11.0 +PackageLocale: en-US +Publisher: Creative Force +PublisherUrl: https://www.creativeforce.io/ +PublisherSupportUrl: https://help.creativeforce.io/ +PrivacyUrl: https://www.creativeforce.io/legal/privacy-policy/ +Author: CreativeForce.io, Inc +PackageName: Luma +PackageUrl: https://download.creativeforce.io/ +License: Proprietary +LicenseUrl: https://www.creativeforce.io/legal/eula/ +Copyright: Copyright © 2025 Creative Force, Inc. All rights reserved, +CopyrightUrl: https://www.creativeforce.io/legal/eula/ +ShortDescription: Enables video editing teams to manage tasks through a standalone app and Adobe Premiere Pro extension, with organized file management, detailed markings, and built-in quality checks for post-production. +Tags: +- premiere +- premiere-pro +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CreativeForce/Luma/1.11.0/CreativeForce.Luma.locale.zh-CN.yaml b/manifests/c/CreativeForce/Luma/1.11.0/CreativeForce.Luma.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5a5cf6df7d4a1 --- /dev/null +++ b/manifests/c/CreativeForce/Luma/1.11.0/CreativeForce.Luma.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CreativeForce.Luma +PackageVersion: 1.11.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 通过独立应用和 Adobe Premiere Pro 扩展程序让视频编辑团队能够管理任务,并为后期制作提供有序的文件管理、详细标记和内置质量检查。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CreativeForce/Luma/1.11.0/CreativeForce.Luma.yaml b/manifests/c/CreativeForce/Luma/1.11.0/CreativeForce.Luma.yaml new file mode 100644 index 0000000000000..ca50659d279e9 --- /dev/null +++ b/manifests/c/CreativeForce/Luma/1.11.0/CreativeForce.Luma.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: CreativeForce.Luma +PackageVersion: 1.11.0 +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/CrossPlusA/Balabolka/2.15.0.898/CrossPlusA.Balabolka.installer.yaml b/manifests/c/CrossPlusA/Balabolka/2.15.0.899/CrossPlusA.Balabolka.installer.yaml similarity index 77% rename from manifests/c/CrossPlusA/Balabolka/2.15.0.898/CrossPlusA.Balabolka.installer.yaml rename to manifests/c/CrossPlusA/Balabolka/2.15.0.899/CrossPlusA.Balabolka.installer.yaml index 5ea200dc5082d..3257bc6ccba78 100644 --- a/manifests/c/CrossPlusA/Balabolka/2.15.0.898/CrossPlusA.Balabolka.installer.yaml +++ b/manifests/c/CrossPlusA/Balabolka/2.15.0.899/CrossPlusA.Balabolka.installer.yaml @@ -2,19 +2,19 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: CrossPlusA.Balabolka -PackageVersion: 2.15.0.898 +PackageVersion: 2.15.0.899 InstallerType: zip FileExtensions: - bxt - bxz -ReleaseDate: 2025-06-07 +ReleaseDate: 2025-06-28 Installers: - Architecture: x86 NestedInstallerType: exe NestedInstallerFiles: - RelativeFilePath: setup.exe InstallerUrl: https://www.cross-plus-a.com/balabolka.zip - InstallerSha256: 70B53C228CE7784984C7B901516C98E3EE421A61F88BAE034829DE0B1B009CEE + InstallerSha256: 094CD8888818ACEA1539E84D5FB6F409FC04BD78A09E1FB2DB87DEE0A58C5585 InstallModes: - interactive - silent @@ -29,7 +29,7 @@ Installers: NestedInstallerFiles: - RelativeFilePath: Balabolka\balabolka.exe InstallerUrl: https://www.cross-plus-a.com/balabolka_portable.zip - InstallerSha256: B20B74EE11412E0C5C469FD46A7070E2C71293F1ECF0A9349EF8DEAF1B571C96 + InstallerSha256: 22EEF3EE546BA95837347AB04B7502DAE84EAD467B4F9833B2FA7920EF3BC534 UpgradeBehavior: uninstallPrevious ArchiveBinariesDependOnPath: true ManifestType: installer diff --git a/manifests/c/CrossPlusA/Balabolka/2.15.0.898/CrossPlusA.Balabolka.locale.en-US.yaml b/manifests/c/CrossPlusA/Balabolka/2.15.0.899/CrossPlusA.Balabolka.locale.en-US.yaml similarity index 82% rename from manifests/c/CrossPlusA/Balabolka/2.15.0.898/CrossPlusA.Balabolka.locale.en-US.yaml rename to manifests/c/CrossPlusA/Balabolka/2.15.0.899/CrossPlusA.Balabolka.locale.en-US.yaml index 34d60704bcbc9..046daeecbf68a 100644 --- a/manifests/c/CrossPlusA/Balabolka/2.15.0.898/CrossPlusA.Balabolka.locale.en-US.yaml +++ b/manifests/c/CrossPlusA/Balabolka/2.15.0.899/CrossPlusA.Balabolka.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CrossPlusA.Balabolka -PackageVersion: 2.15.0.898 +PackageVersion: 2.15.0.899 PackageLocale: en-US Publisher: Ilya Morozov PublisherUrl: https://www.cross-plus-a.com/ @@ -20,9 +20,11 @@ Tags: - text-to-speech - tts ReleaseNotes: |- - [+] Added the text extracting for TXTZ files. - [-] Fixed the text extracting for AZW3, EPUB, MOBI and PDB files. - [-] Fixed the using of Youdao Translate. + [-] Fixed the text extracting for DOCX, FB2, FB3, ODP, ODT and PPTX files. + [-] Fixed the using of Google TTS. + [-] Fixed silence between paragraphs for Microsoft Azure. + [*] Updated the superscript/subscript extracting for AZW3, DOCX, FB2, FB3, HTML, ODP and ODT files. + [*] Resources for Chinese (Simplified) language were updated (thanks to Anan). ReleaseNotesUrl: https://www.cross-plus-a.com/changelog.txt Documentations: - DocumentLabel: FAQ diff --git a/manifests/c/CrossPlusA/Balabolka/2.15.0.898/CrossPlusA.Balabolka.locale.zh-CN.yaml b/manifests/c/CrossPlusA/Balabolka/2.15.0.899/CrossPlusA.Balabolka.locale.zh-CN.yaml similarity index 96% rename from manifests/c/CrossPlusA/Balabolka/2.15.0.898/CrossPlusA.Balabolka.locale.zh-CN.yaml rename to manifests/c/CrossPlusA/Balabolka/2.15.0.899/CrossPlusA.Balabolka.locale.zh-CN.yaml index e01fe9e4ba611..ceeb83f09cdb3 100644 --- a/manifests/c/CrossPlusA/Balabolka/2.15.0.898/CrossPlusA.Balabolka.locale.zh-CN.yaml +++ b/manifests/c/CrossPlusA/Balabolka/2.15.0.899/CrossPlusA.Balabolka.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: CrossPlusA.Balabolka -PackageVersion: 2.15.0.898 +PackageVersion: 2.15.0.899 PackageLocale: zh-CN License: 免费软件 ShortDescription: 文本转语音(TTS)程序 diff --git a/manifests/c/CrossPlusA/Balabolka/2.15.0.898/CrossPlusA.Balabolka.yaml b/manifests/c/CrossPlusA/Balabolka/2.15.0.899/CrossPlusA.Balabolka.yaml similarity index 87% rename from manifests/c/CrossPlusA/Balabolka/2.15.0.898/CrossPlusA.Balabolka.yaml rename to manifests/c/CrossPlusA/Balabolka/2.15.0.899/CrossPlusA.Balabolka.yaml index bdcf3fa1b8021..49240b3f8d94a 100644 --- a/manifests/c/CrossPlusA/Balabolka/2.15.0.898/CrossPlusA.Balabolka.yaml +++ b/manifests/c/CrossPlusA/Balabolka/2.15.0.899/CrossPlusA.Balabolka.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: CrossPlusA.Balabolka -PackageVersion: 2.15.0.898 +PackageVersion: 2.15.0.899 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/c/Crossplane/CrossplaneCli/1.20.0/Crossplane.CrossplaneCli.installer.yaml b/manifests/c/Crossplane/CrossplaneCli/1.20.0/Crossplane.CrossplaneCli.installer.yaml new file mode 100644 index 0000000000000..40b691b326537 --- /dev/null +++ b/manifests/c/Crossplane/CrossplaneCli/1.20.0/Crossplane.CrossplaneCli.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: Crossplane.CrossplaneCli +PackageVersion: 1.20.0 +InstallerType: portable +UpgradeBehavior: uninstallPrevious +Commands: +- crossplane +ReleaseDate: 2025-05-21 +Installers: +- Architecture: x64 + InstallerUrl: https://releases.crossplane.io/stable/v1.20.0/bin/windows_amd64/crossplane.exe + InstallerSha256: 4971543370678E0421E69A4147BD7C673F8885B5A5DC5707219FE69DF047A236 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Crossplane/CrossplaneCli/1.20.0/Crossplane.CrossplaneCli.locale.en-US.yaml b/manifests/c/Crossplane/CrossplaneCli/1.20.0/Crossplane.CrossplaneCli.locale.en-US.yaml new file mode 100644 index 0000000000000..d6bd76f0fdd7f --- /dev/null +++ b/manifests/c/Crossplane/CrossplaneCli/1.20.0/Crossplane.CrossplaneCli.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Crossplane.CrossplaneCli +PackageVersion: 1.20.0 +PackageLocale: en-US +Publisher: Crossplane +PublisherUrl: https://www.crossplane.io/ +Author: Crossplane Authors +PackageName: Crossplane CLI +License: Apache-2.0 +LicenseUrl: https://github.com/crossplane/crossplane/blob/HEAD/LICENSE +Copyright: Crossplane Authors +ShortDescription: CLI for the Crossplane - The Cloud Native Control Plane +Description: Crossplane is a framework for building cloud native control planes without needing to write code. It has a highly extensible backend that enables you to build a control plane that can orchestrate applications and infrastructure no matter where they run, and a highly configurable frontend that puts you in control of the schema of the declarative API it offers. +Moniker: crossplane +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.crossplane.io/latest/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Crossplane/CrossplaneCli/1.20.0/Crossplane.CrossplaneCli.yaml b/manifests/c/Crossplane/CrossplaneCli/1.20.0/Crossplane.CrossplaneCli.yaml new file mode 100644 index 0000000000000..605a9dd025015 --- /dev/null +++ b/manifests/c/Crossplane/CrossplaneCli/1.20.0/Crossplane.CrossplaneCli.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: Crossplane.CrossplaneCli +PackageVersion: 1.20.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Crucial/StorageExecutive/11.03.032025.00/Crucial.StorageExecutive.installer.yaml b/manifests/c/Crucial/StorageExecutive/11.03.032025.00/Crucial.StorageExecutive.installer.yaml deleted file mode 100644 index 349a3337ce9a1..0000000000000 --- a/manifests/c/Crucial/StorageExecutive/11.03.032025.00/Crucial.StorageExecutive.installer.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Crucial.StorageExecutive -PackageVersion: 11.03.032025.00 -InstallerType: zip -NestedInstallerType: exe -NestedInstallerFiles: -- RelativeFilePath: StorageExecutive-11.03.032025.00-windows-64bit-Setup.exe -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: --mode unattended --unattendedmodeui none - SilentWithProgress: --mode unattended --unattendedmodeui minimal - InstallLocation: --prefix "" -ProductCode: Crucial Storage Executive 11.03.032025.00 -Installers: -- Architecture: x64 - InstallerUrl: https://www.crucial.com/content/dam/crucial/support/storage-executive-win-64.zip - InstallerSha256: 3F4BFE8C904927B3E420AF8C761ACC4209817D0FE7F812FAA132E0C901CE7AFE -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/c/Crucial/StorageExecutive/11.05.052025.00/Crucial.StorageExecutive.installer.yaml b/manifests/c/Crucial/StorageExecutive/11.05.052025.00/Crucial.StorageExecutive.installer.yaml new file mode 100644 index 0000000000000..11beb83602824 --- /dev/null +++ b/manifests/c/Crucial/StorageExecutive/11.05.052025.00/Crucial.StorageExecutive.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: Crucial.StorageExecutive +PackageVersion: 11.05.052025.00 +InstallerType: zip +NestedInstallerType: exe +NestedInstallerFiles: +- RelativeFilePath: StorageExecutive-11.05.052025.00-windows-64bit-Setup.exe +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: --mode unattended --unattendedmodeui none + SilentWithProgress: --mode unattended --unattendedmodeui minimal + InstallLocation: --prefix "" +ProductCode: Crucial Storage Executive 11.05.052025.00 +Installers: +- Architecture: x64 + InstallerUrl: https://www.crucial.com/content/dam/crucial/support/storage-executive-win-64.zip + InstallerSha256: D11E18FD3A748A0940FCE1EE094DBC482ED06B3AA034F016531A3B16610948C3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Crucial/StorageExecutive/11.03.032025.00/Crucial.StorageExecutive.locale.en-US.yaml b/manifests/c/Crucial/StorageExecutive/11.05.052025.00/Crucial.StorageExecutive.locale.en-US.yaml similarity index 95% rename from manifests/c/Crucial/StorageExecutive/11.03.032025.00/Crucial.StorageExecutive.locale.en-US.yaml rename to manifests/c/Crucial/StorageExecutive/11.05.052025.00/Crucial.StorageExecutive.locale.en-US.yaml index 93f23d33b72f6..8b81783a7c72e 100644 --- a/manifests/c/Crucial/StorageExecutive/11.03.032025.00/Crucial.StorageExecutive.locale.en-US.yaml +++ b/manifests/c/Crucial/StorageExecutive/11.05.052025.00/Crucial.StorageExecutive.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Crucial.StorageExecutive -PackageVersion: 11.03.032025.00 +PackageVersion: 11.05.052025.00 PackageLocale: en-US Publisher: Crucial PublisherUrl: https://www.crucial.com/ diff --git a/manifests/c/Crucial/StorageExecutive/11.03.032025.00/Crucial.StorageExecutive.locale.zh-CN.yaml b/manifests/c/Crucial/StorageExecutive/11.05.052025.00/Crucial.StorageExecutive.locale.zh-CN.yaml similarity index 95% rename from manifests/c/Crucial/StorageExecutive/11.03.032025.00/Crucial.StorageExecutive.locale.zh-CN.yaml rename to manifests/c/Crucial/StorageExecutive/11.05.052025.00/Crucial.StorageExecutive.locale.zh-CN.yaml index b501adf4f514d..68181b98ecbe0 100644 --- a/manifests/c/Crucial/StorageExecutive/11.03.032025.00/Crucial.StorageExecutive.locale.zh-CN.yaml +++ b/manifests/c/Crucial/StorageExecutive/11.05.052025.00/Crucial.StorageExecutive.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Crucial.StorageExecutive -PackageVersion: 11.03.032025.00 +PackageVersion: 11.05.052025.00 PackageLocale: zh-CN Publisher: Crucial PublisherUrl: https://www.crucial.cn/ diff --git a/manifests/c/Crucial/StorageExecutive/11.03.032025.00/Crucial.StorageExecutive.yaml b/manifests/c/Crucial/StorageExecutive/11.05.052025.00/Crucial.StorageExecutive.yaml similarity index 86% rename from manifests/c/Crucial/StorageExecutive/11.03.032025.00/Crucial.StorageExecutive.yaml rename to manifests/c/Crucial/StorageExecutive/11.05.052025.00/Crucial.StorageExecutive.yaml index 4d004dff47576..a10f2eeedd680 100644 --- a/manifests/c/Crucial/StorageExecutive/11.03.032025.00/Crucial.StorageExecutive.yaml +++ b/manifests/c/Crucial/StorageExecutive/11.05.052025.00/Crucial.StorageExecutive.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Crucial.StorageExecutive -PackageVersion: 11.03.032025.00 +PackageVersion: 11.05.052025.00 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.50/CryptoPro.Chromium-Gost.installer.yaml b/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.50/CryptoPro.Chromium-Gost.installer.yaml new file mode 100644 index 0000000000000..e93f1d5802534 --- /dev/null +++ b/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.50/CryptoPro.Chromium-Gost.installer.yaml @@ -0,0 +1,44 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CryptoPro.Chromium-Gost +PackageVersion: 138.0.7204.50 +InstallerLocale: ru-RU +InstallerType: exe +InstallModes: +- silent +InstallerSwitches: + Silent: --silent --install + SilentWithProgress: --silent --install +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- crx +- htm +- html +- pdf +- shtml +- url +ReleaseDate: 2025-06-25 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/deemru/Chromium-Gost/releases/download/138.0.7204.50/chromium-gost-138.0.7204.50-windows-386-installer.exe + InstallerSha256: B88464CB5E75409732CA5F87B0E1B0BC3B58237BCB5132654CED392835584FFB +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/deemru/Chromium-Gost/releases/download/138.0.7204.50/chromium-gost-138.0.7204.50-windows-386-installer.exe + InstallerSha256: B88464CB5E75409732CA5F87B0E1B0BC3B58237BCB5132654CED392835584FFB +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/deemru/Chromium-Gost/releases/download/138.0.7204.50/chromium-gost-138.0.7204.50-windows-amd64-installer.exe + InstallerSha256: 6E2B08CBF225F711F1C8B5B31D1DD7BB8FF5C99E479CB9F1FC6A855CA041F13D +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/deemru/Chromium-Gost/releases/download/138.0.7204.50/chromium-gost-138.0.7204.50-windows-amd64-installer.exe + InstallerSha256: 6E2B08CBF225F711F1C8B5B31D1DD7BB8FF5C99E479CB9F1FC6A855CA041F13D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.50/CryptoPro.Chromium-Gost.locale.ru-RU.yaml b/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.50/CryptoPro.Chromium-Gost.locale.ru-RU.yaml new file mode 100644 index 0000000000000..06d40779f2051 --- /dev/null +++ b/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.50/CryptoPro.Chromium-Gost.locale.ru-RU.yaml @@ -0,0 +1,41 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CryptoPro.Chromium-Gost +PackageVersion: 138.0.7204.50 +PackageLocale: ru-RU +Publisher: The Chromium-Gost Authors +PublisherUrl: https://www.cryptopro.ru/products/chromium-gost +PublisherSupportUrl: https://github.com/deemru/Chromium-Gost/issues +Author: The Chromium-Gost Authors +PackageName: Chromium-Gost +PackageUrl: https://www.cryptopro.ru/products/chromium-gost +License: MIT +LicenseUrl: https://github.com/deemru/Chromium-Gost/blob/HEAD/LICENSE +Copyright: Copyright (c) 2017 Dmitrii Pichulin +CopyrightUrl: https://github.com/deemru/Chromium-Gost/blob/master/LICENSE +ShortDescription: Chromium с поддержкой алгоритмов ГОСТ +Moniker: chromium-gost +Tags: +- blink +- browser +- chromium +- cryptopro +ReleaseNotes: |- + Chromium с поддержкой ГОСТ + Состав + - Chromium — 138.0.7204.50 + - msspi — 0.2.16 + Изменения + - Обновление стабильной версии Chromium + - 137.0.7151.119...138.0.7204.50 + Напоминание + - Крайняя версия с поддержкой Windows 7 и выше на момент публикации: 109.0.5414.174 + - Крайняя версия с поддержкой MacOS 10.13 и выше на момент публикации: 116.0.5845.263 + - Крайняя версия с поддержкой MacOS 10.15 и выше на момент публикации: 128.0.6613.137 + Обсуждение + Тема на форуме КриптоПро: https://www.cryptopro.ru/forum2/default.aspx?g=posts&t=9991 + Загрузок +ReleaseNotesUrl: https://github.com/deemru/Chromium-Gost/releases/tag/138.0.7204.50 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.50/CryptoPro.Chromium-Gost.yaml b/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.50/CryptoPro.Chromium-Gost.yaml new file mode 100644 index 0000000000000..44f36daeb54e1 --- /dev/null +++ b/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.50/CryptoPro.Chromium-Gost.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: CryptoPro.Chromium-Gost +PackageVersion: 138.0.7204.50 +DefaultLocale: ru-RU +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.96/CryptoPro.Chromium-Gost.installer.yaml b/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.96/CryptoPro.Chromium-Gost.installer.yaml new file mode 100644 index 0000000000000..99438a23eb2ac --- /dev/null +++ b/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.96/CryptoPro.Chromium-Gost.installer.yaml @@ -0,0 +1,44 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CryptoPro.Chromium-Gost +PackageVersion: 138.0.7204.96 +InstallerLocale: ru-RU +InstallerType: exe +InstallModes: +- silent +InstallerSwitches: + Silent: --silent --install + SilentWithProgress: --silent --install +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- crx +- htm +- html +- pdf +- shtml +- url +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/deemru/Chromium-Gost/releases/download/138.0.7204.96/chromium-gost-138.0.7204.96-windows-386-installer.exe + InstallerSha256: 638E2930F2CFB09BFCAC12667F4D9E41122157CA1FC88A8B6BD5776196E83C34 +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/deemru/Chromium-Gost/releases/download/138.0.7204.96/chromium-gost-138.0.7204.96-windows-386-installer.exe + InstallerSha256: 638E2930F2CFB09BFCAC12667F4D9E41122157CA1FC88A8B6BD5776196E83C34 +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/deemru/Chromium-Gost/releases/download/138.0.7204.96/chromium-gost-138.0.7204.96-windows-amd64-installer.exe + InstallerSha256: CB24D534CBB425E3FD1EC4D8D1AAFAB56A8B911BD6823494D36DC8AC2B2D0583 +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/deemru/Chromium-Gost/releases/download/138.0.7204.96/chromium-gost-138.0.7204.96-windows-amd64-installer.exe + InstallerSha256: CB24D534CBB425E3FD1EC4D8D1AAFAB56A8B911BD6823494D36DC8AC2B2D0583 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.96/CryptoPro.Chromium-Gost.locale.ru-RU.yaml b/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.96/CryptoPro.Chromium-Gost.locale.ru-RU.yaml new file mode 100644 index 0000000000000..6b5c8d4f7e3c4 --- /dev/null +++ b/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.96/CryptoPro.Chromium-Gost.locale.ru-RU.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: CryptoPro.Chromium-Gost +PackageVersion: 138.0.7204.96 +PackageLocale: ru-RU +Publisher: The Chromium-Gost Authors +PublisherUrl: https://www.cryptopro.ru/products/chromium-gost +PublisherSupportUrl: https://github.com/deemru/Chromium-Gost/issues +Author: The Chromium-Gost Authors +PackageName: Chromium-Gost +PackageUrl: https://www.cryptopro.ru/products/chromium-gost +License: MIT +LicenseUrl: https://github.com/deemru/Chromium-Gost/blob/HEAD/LICENSE +Copyright: Copyright (c) 2017 Dmitrii Pichulin +CopyrightUrl: https://github.com/deemru/Chromium-Gost/blob/master/LICENSE +ShortDescription: Chromium с поддержкой алгоритмов ГОСТ +Moniker: chromium-gost +Tags: +- blink +- browser +- chromium +- cryptopro +ReleaseNotes: |- + Chromium с поддержкой ГОСТ + Состав + - Chromium — 138.0.7204.96 + - msspi — 0.2.16 + Изменения + - Обновление стабильной версии Chromium + - 138.0.7204.50...138.0.7204.96 + Напоминание + - Крайняя версия с поддержкой Windows 7 и выше на момент публикации: 109.0.5414.174 + - Крайняя версия с поддержкой MacOS 10.13 и выше на момент публикации: 116.0.5845.263 + - Крайняя версия с поддержкой MacOS 10.15 и выше на момент публикации: 128.0.6613.137 + Обсуждение + Тема на форуме КриптоПро: https://www.cryptopro.ru/forum2/default.aspx?g=posts&t=9991 + Загрузок +ReleaseNotesUrl: https://github.com/deemru/Chromium-Gost/releases/tag/138.0.7204.96 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.96/CryptoPro.Chromium-Gost.yaml b/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.96/CryptoPro.Chromium-Gost.yaml new file mode 100644 index 0000000000000..b07ccb3a1f431 --- /dev/null +++ b/manifests/c/CryptoPro/Chromium-Gost/138.0.7204.96/CryptoPro.Chromium-Gost.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: CryptoPro.Chromium-Gost +PackageVersion: 138.0.7204.96 +DefaultLocale: ru-RU +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cryptomator/Cryptomator/1.17.0/Cryptomator.Cryptomator.installer.yaml b/manifests/c/Cryptomator/Cryptomator/1.17.0/Cryptomator.Cryptomator.installer.yaml new file mode 100644 index 0000000000000..62e14d6c125c6 --- /dev/null +++ b/manifests/c/Cryptomator/Cryptomator/1.17.0/Cryptomator.Cryptomator.installer.yaml @@ -0,0 +1,31 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Cryptomator.Cryptomator +PackageVersion: 1.17.0 +InstallerLocale: en-US +MinimumOSVersion: 10.0.17134.0 +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +FileExtensions: +- c9r +- cryptomator +ProductCode: '{583035C8-BA20-3FB2-9425-0E021D66A041}' +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- DisplayVersion: 1.17.0.5789 + ProductCode: '{583035C8-BA20-3FB2-9425-0E021D66A041}' + UpgradeCode: '{BDA45523-42B1-4CAE-9354-A45475ED4775}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Cryptomator' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/cryptomator/cryptomator/releases/download/1.17.0/Cryptomator-1.17.0-x64.msi + InstallerSha256: 3BAE9567D445EDB930C7F32F5FA2F288CFDE459163AB3681C648161A34059295 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cryptomator/Cryptomator/1.17.0/Cryptomator.Cryptomator.locale.en-US.yaml b/manifests/c/Cryptomator/Cryptomator/1.17.0/Cryptomator.Cryptomator.locale.en-US.yaml new file mode 100644 index 0000000000000..0fe0baa1d66bd --- /dev/null +++ b/manifests/c/Cryptomator/Cryptomator/1.17.0/Cryptomator.Cryptomator.locale.en-US.yaml @@ -0,0 +1,79 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Cryptomator.Cryptomator +PackageVersion: 1.17.0 +PackageLocale: en-US +Publisher: Skymatic GmbH +PublisherUrl: https://cryptomator.org/ +PublisherSupportUrl: https://github.com/cryptomator/cryptomator/issues +PrivacyUrl: https://cryptomator.org/privacy +Author: The Cryptomator Authors +PackageName: Cryptomator +PackageUrl: https://cryptomator.org/ +License: GPL-3.0 +LicenseUrl: https://github.com/cryptomator/cryptomator/blob/HEAD/LICENSE.txt +Copyright: Skymatic GmbH 2016 - 2024 +ShortDescription: Encryption made easy and optimized for the cloud +Description: |- + Cryptomator provides easy-to-use, transparent, client-side encryption for your cloud. + It protects your documents from unauthorized access and prying eyes, while you will still be able to view and edit your documents locally. + By not requiring any registration or account and performing all encryption locally, it gives you back control over your data and ensures your privacy. + Cryptomator is offered for all major platforms (including Android and iOS). + + Cryptomator encrypts file contents and names using the widespread industry standard AES. + Your passphrase is protected against brute forcing attempts using scrypt. + Additionally, directory structures get obfuscated. + For more info about the Cryptomator encryption scheme, check out the online documentation. + + Cryptomator is a free and open-source software licensed under the GPLv3. + This allows anyone to check our code. + Thus, it is impossible to introduce backdoors for third parties or to hide vulnerabilities, so you do not need to trust Cryptomator. + Also, vendor lock-ins are impossible. + Even if we decided to stop development: The source code is already cloned by hundreds of other developers and development can be picked up by others. + + Cryptomator is provided free of charge as an open-source project despite the high development effort and is therefore dependent on support by the community. + Visit https://cryptomator.org/ to read how you can support us! +Moniker: cryptomator +Tags: +- cloud-storage +- crypto +- cryptography +- cryptomator +- privacy +- security +ReleaseNotes: |- + Note + Unfortunately, the native Windows ARM app is blocked by issue #3899 and must be postponed. + What's New 🎉 + - Add support for Windows Hello by @purejava in #3808 (#726) + - Windows: Show button to launch app after installation (#3810) + - Start unlock action from filesystem for Windows and MacOS (#3888) + Bugfixes 🐛 + - Fixed unable to import legacy vaults (#3847) + - Fixed BSOD when using app on Windows running TrendMicro Security software (#3771) + Other Changes 📎 + - Update to JDK 24 (#3863) + - Update to JavaFX 24 (#3882) + - Update WinFSP to version 2025 (#3893) + - Improvements for Linux build script by @purejava in #3889 + - Codesigning DMG installer (#3886) + - Updated translations (#3858, #3897) + Full Changelog: 1.16.2...1.17.0 + 📜 List of closed issues is available here + 💾 SHA-256 checksums of release artifacts: + ceeeac764ddfe50e36eddeb905558aecc5f0532185fa651a76e86b8d724ee071 ./cryptomator_1.17.0-0ppa1_amd64.deb + faf0dda2a4e8893385b80079e9afb9a277ca6cc43ec0d3df7ca5536fcc02cd96 ./cryptomator-1.17.0-aarch64.AppImage + 03f45e203204e93b39925cbb04e19c9316da4f77debaba4fb5071f0ec8e727e8 ./Cryptomator-1.17.0-arm64.dmg + 69f93bafe0707a1210089205a99936da5431cca70fdc5fa290f2b02631270580 ./Cryptomator-1.17.0-x64.dmg + 3799ec3ff5b17b3a2c24630753e3f1be988addc0e56372ec011ef195b6264ba6 ./Cryptomator-1.17.0-x64.exe + 3bae9567d445edb930c7f32f5fa2f288cfde459163ab3681c648161a34059295 ./Cryptomator-1.17.0-x64.msi + 23f49677736c1f99faf2ebff7f6d1d76d42e951c0658f2fd3b90d806462c6496 ./cryptomator-1.17.0-x86_64.AppImage + As usual, the GPG signatures can be checked using our public key 5811 7AFA 1F85 B3EE C154 677D 615D 449F E6E6 A235. +ReleaseNotesUrl: https://github.com/cryptomator/cryptomator/releases/tag/1.17.0 +InstallationNotes: On Windows, Cryptomator works best with WinFsp. You can download it from https://winfsp.dev/. +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://docs.cryptomator.org/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cryptomator/Cryptomator/1.17.0/Cryptomator.Cryptomator.yaml b/manifests/c/Cryptomator/Cryptomator/1.17.0/Cryptomator.Cryptomator.yaml new file mode 100644 index 0000000000000..650c7d8b31ab6 --- /dev/null +++ b/manifests/c/Cryptomator/Cryptomator/1.17.0/Cryptomator.Cryptomator.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Cryptomator.Cryptomator +PackageVersion: 1.17.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.11.0/CrystalDewWorld.CrystalDiskInfo.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.11.0/CrystalDewWorld.CrystalDiskInfo.installer.yaml deleted file mode 100644 index 6c9871d78eafc..0000000000000 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.11.0/CrystalDewWorld.CrystalDiskInfo.installer.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.5 $debug=AUSU.CRLF.7-3-0-preview-7.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo -PackageVersion: 8.11.0 -MinimumOSVersion: 10.0.0.0 -InstallerType: inno -Scope: machine -InstallerSwitches: - Silent: /VERYSILENT - SilentWithProgress: /VERYSILENT -UpgradeBehavior: install -Installers: -- InstallerUrl: https://osdn.net/frs/redir.php?m=ipconnect&f=crystaldiskinfo%2F74602%2FCrystalDiskInfo8_11_0.exe - InstallerSha256: A3D4305DF518A23E9C0C6BC3868520F5EC605BB943F3B727B3AB3FF8418AE951 - Architecture: x64 -- InstallerUrl: https://osdn.net/frs/redir.php?m=ipconnect&f=crystaldiskinfo%2F74602%2FCrystalDiskInfo8_11_0.exe - InstallerSha256: A3D4305DF518A23E9C0C6BC3868520F5EC605BB943F3B727B3AB3FF8418AE951 - Architecture: arm64 -- InstallerUrl: https://osdn.net/frs/redir.php?m=ipconnect&f=crystaldiskinfo%2F74602%2FCrystalDiskInfo8_11_0.exe - InstallerSha256: A3D4305DF518A23E9C0C6BC3868520F5EC605BB943F3B727B3AB3FF8418AE951 - Architecture: x86 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.11.0/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.11.0/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml deleted file mode 100644 index df5740a8e857c..0000000000000 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.11.0/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.5 $debug=AUSU.CRLF.7-3-0-preview-7.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo -PackageVersion: 8.11.0 -PackageLocale: en-US -Publisher: Crystal Dew World -# PublisherUrl: -# PublisherSupportUrl: -# PrivacyUrl: -Author: hiyohiyo -PackageName: CrystalDiskInfo -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ -License: MIT License -LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ -# Copyright: -# CopyrightUrl: -ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. -# Description: -Moniker: crystaldiskinfo -Tags: -- diagnostic -- disk -- hdd -- ssd -- utility -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.11.0/CrystalDewWorld.CrystalDiskInfo.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.11.0/CrystalDewWorld.CrystalDiskInfo.yaml deleted file mode 100644 index 91f7df32f9659..0000000000000 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.11.0/CrystalDewWorld.CrystalDiskInfo.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.5 $debug=AUSU.CRLF.7-3-0-preview-7.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo -PackageVersion: 8.11.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.12.5/CrystalDewWorld.CrystalDiskInfo.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.12.5/CrystalDewWorld.CrystalDiskInfo.installer.yaml deleted file mode 100644 index e029a8377f054..0000000000000 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.12.5/CrystalDewWorld.CrystalDiskInfo.installer.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.5 $debug=AUSU.CRLF.7-3-0-preview-7.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo -PackageVersion: 8.12.5 -MinimumOSVersion: 10.0.0.0 -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -Installers: -- InstallerUrl: https://osdn.net/frs/redir.php?m=ipconnect&f=crystaldiskinfo%2F75685%2FCrystalDiskInfo8_12_5.exe - InstallerSha256: EB563AA728A4654410BC3D17CEEE6A92C6D0527E28F9603386F81D0B6592E1DF - Architecture: x64 -- InstallerUrl: https://osdn.net/frs/redir.php?m=ipconnect&f=crystaldiskinfo%2F75685%2FCrystalDiskInfo8_12_5.exe - InstallerSha256: EB563AA728A4654410BC3D17CEEE6A92C6D0527E28F9603386F81D0B6592E1DF - Architecture: arm64 -- InstallerUrl: https://osdn.net/frs/redir.php?m=ipconnect&f=crystaldiskinfo%2F75685%2FCrystalDiskInfo8_12_5.exe - InstallerSha256: EB563AA728A4654410BC3D17CEEE6A92C6D0527E28F9603386F81D0B6592E1DF - Architecture: x86 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.12.5/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.12.5/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml deleted file mode 100644 index e2436701af7f4..0000000000000 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.12.5/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.5 $debug=AUSU.CRLF.7-3-0-preview-7.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo -PackageVersion: 8.12.5 -PackageLocale: en-US -Publisher: Crystal Dew World -PublisherUrl: https://crystalmark.info/en/ -# PublisherSupportUrl: -# PrivacyUrl: -Author: Noriyuki Miyazaki -PackageName: CrystalDiskInfo -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ -License: MIT -LicenseUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -Copyright: Copyright (c) 2008-2020 hiyohiyo -# CopyrightUrl: -ShortDescription: HDD/SSD utility software which supports S.M.A.R.T and a part of USB-HDD -# Description: -Moniker: crystaldiskinfo -Tags: -- ata -- crystaldiskinfo -- diagnostic -- disk -- hdd -- nvme -- ssd -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.12.5/CrystalDewWorld.CrystalDiskInfo.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.12.5/CrystalDewWorld.CrystalDiskInfo.yaml deleted file mode 100644 index b7a274d034fb7..0000000000000 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/8.12.5/CrystalDewWorld.CrystalDiskInfo.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.5 $debug=AUSU.CRLF.7-3-0-preview-7.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo -PackageVersion: 8.12.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.1.1/CrystalDewWorld.CrystalDiskInfo.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.1.1/CrystalDewWorld.CrystalDiskInfo.installer.yaml index abe13a4f57d46..7ccc4174a90ff 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.1.1/CrystalDewWorld.CrystalDiskInfo.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.1.1/CrystalDewWorld.CrystalDiskInfo.installer.yaml @@ -1,30 +1,21 @@ -# Created using wingetcreate 1.2.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.1.1 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 +InstallerType: inno Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress UpgradeBehavior: install Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.1.1/CrystalDiskInfo9_1_1.exe + InstallerSha256: 2D71DF1167C44F87A518D77D1487D5B4960BA8E97B75AAFCB6EC3A34FB77D418 - Architecture: x64 - InstallerType: inno - InstallerUrl: https://crystalmark.info/download/zz/CrystalDiskInfo9_1_1.exe + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.1.1/CrystalDiskInfo9_1_1.exe InstallerSha256: 2D71DF1167C44F87A518D77D1487D5B4960BA8E97B75AAFCB6EC3A34FB77D418 - Architecture: arm64 - InstallerType: inno - InstallerUrl: https://crystalmark.info/download/zz/CrystalDiskInfo9_1_1.exe - InstallerSha256: 2D71DF1167C44F87A518D77D1487D5B4960BA8E97B75AAFCB6EC3A34FB77D418 -- Architecture: x86 - InstallerType: inno - InstallerUrl: https://crystalmark.info/download/zz/CrystalDiskInfo9_1_1.exe + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.1.1/CrystalDiskInfo9_1_1.exe InstallerSha256: 2D71DF1167C44F87A518D77D1487D5B4960BA8E97B75AAFCB6EC3A34FB77D418 ManifestType: installer -ManifestVersion: 1.4.0 -ReleaseDate: 2023-07-12 +ManifestVersion: 1.10.0 +ReleaseDate: 2023-09-09 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.1.1/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.1.1/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml index 7edba0328abd0..7dce70832e7e9 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.1.1/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.1.1/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml @@ -1,24 +1,22 @@ -# Created using wingetcreate 1.2.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.1.1 PackageLocale: en-US Publisher: Crystal Dew World -PublisherUrl: https://crystalmark.info/en -PublisherSupportUrl: https://crystalmark.info/en/information/about -PrivacyUrl: https://crystalmark.info/en/information/privacy-policy +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ Author: Noriyuki Miyazaki PackageName: CrystalDiskInfo -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT -LicenseUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -Copyright: Copyright (c) 2008-2023 hiyohiyo -CopyrightUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: © 2008-2025 hiyohiyo ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. Moniker: crystaldiskinfo Tags: -- crystaldiskinfo - diagnostic - disk - disk-diagnostic @@ -26,7 +24,12 @@ Tags: - hard-drive - hdd - nvme +- smart - ssd - utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: defaultLocale -ManifestVersion: 1.4.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.1.1/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.1.1/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4a250a7b21cc4 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.1.1/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo +PackageVersion: 9.1.1 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: © 2008-2025 hiyohiyo +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.1.1/CrystalDewWorld.CrystalDiskInfo.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.1.1/CrystalDewWorld.CrystalDiskInfo.yaml index f87442c249fbc..d4ca6ad760255 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.1.1/CrystalDewWorld.CrystalDiskInfo.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.1.1/CrystalDewWorld.CrystalDiskInfo.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.2.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.1.1 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.4.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.0/CrystalDewWorld.CrystalDiskInfo.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.0/CrystalDewWorld.CrystalDiskInfo.installer.yaml new file mode 100644 index 0000000000000..5db0f1e4eb353 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.0/CrystalDewWorld.CrystalDiskInfo.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo +PackageVersion: 9.2.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.0/CrystalDiskInfo9_2_0.exe + InstallerSha256: B5405179DF2CBAD31CAF4FEC1E4C88DEA0D7BD3FA0A30A5289E1D0987C0A6028 +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.0/CrystalDiskInfo9_2_0.exe + InstallerSha256: B5405179DF2CBAD31CAF4FEC1E4C88DEA0D7BD3FA0A30A5289E1D0987C0A6028 +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.0/CrystalDiskInfo9_2_0.exe + InstallerSha256: B5405179DF2CBAD31CAF4FEC1E4C88DEA0D7BD3FA0A30A5289E1D0987C0A6028 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2023-11-20 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.0/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.0/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml new file mode 100644 index 0000000000000..9e4f8eadaafe3 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.0/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo +PackageVersion: 9.2.0 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: © 2008-2025 hiyohiyo +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. +Moniker: crystaldiskinfo +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.0/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.0/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5d1b6f433a90e --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.0/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo +PackageVersion: 9.2.0 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: © 2008-2025 hiyohiyo +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.0/CrystalDewWorld.CrystalDiskInfo.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.0/CrystalDewWorld.CrystalDiskInfo.yaml new file mode 100644 index 0000000000000..68358523ce3f1 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.0/CrystalDewWorld.CrystalDiskInfo.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo +PackageVersion: 9.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.1/CrystalDewWorld.CrystalDiskInfo.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.1/CrystalDewWorld.CrystalDiskInfo.installer.yaml index 7b85c6e3c1494..c28c1b3febd29 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.1/CrystalDewWorld.CrystalDiskInfo.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.1/CrystalDewWorld.CrystalDiskInfo.installer.yaml @@ -1,30 +1,21 @@ -# Created using wingetcreate 1.2.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo -PackageVersion: 9.2.1 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -Installers: -- Architecture: x64 - InstallerType: inno - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1.exe/download - InstallerSha256: 03f0542a463e7f372b5d8e7082604e4fdb5ae07f4c949e5e7fc5791a9bfbcf22 -- Architecture: arm64 - InstallerType: inno - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1.exe/download - InstallerSha256: 03f0542a463e7f372b5d8e7082604e4fdb5ae07f4c949e5e7fc5791a9bfbcf22 -- Architecture: x86 - InstallerType: inno - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1.exe/download - InstallerSha256: 03f0542a463e7f372b5d8e7082604e4fdb5ae07f4c949e5e7fc5791a9bfbcf22 -ManifestType: installer -ManifestVersion: 1.4.0 -ReleaseDate: 2023-11-22 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo +PackageVersion: 9.2.1 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1.exe + InstallerSha256: 03F0542A463E7F372B5D8E7082604E4FDB5AE07F4C949E5E7FC5791A9BFBCF22 +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1.exe + InstallerSha256: 03F0542A463E7F372B5D8E7082604E4FDB5AE07F4C949E5E7FC5791A9BFBCF22 +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1.exe + InstallerSha256: 03F0542A463E7F372B5D8E7082604E4FDB5AE07F4C949E5E7FC5791A9BFBCF22 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2023-11-21 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.1/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.1/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml index 778bffe2cafd8..232567fc90e82 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.1/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.1/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml @@ -1,32 +1,35 @@ -# Created using wingetcreate 1.2.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo -PackageVersion: 9.2.1 -PackageLocale: en-US -Publisher: Crystal Dew World -PublisherUrl: https://crystalmark.info/en -PublisherSupportUrl: https://crystalmark.info/en/information/about -PrivacyUrl: https://crystalmark.info/en/information/privacy-policy -Author: Noriyuki Miyazaki -PackageName: CrystalDiskInfo -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo -License: MIT -LicenseUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -Copyright: Copyright (c) 2008-2023 hiyohiyo -CopyrightUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. -Moniker: crystaldiskinfo -Tags: -- crystaldiskinfo -- diagnostic -- disk -- disk-diagnostic -- disk-utility -- hard-drive -- hdd -- nvme -- ssd -- utility -ManifestType: defaultLocale -ManifestVersion: 1.4.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo +PackageVersion: 9.2.1 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: © 2008-2025 hiyohiyo +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. +Moniker: crystaldiskinfo +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.1/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.1/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c29362fd734bf --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.1/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo +PackageVersion: 9.2.1 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: © 2008-2025 hiyohiyo +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.1/CrystalDewWorld.CrystalDiskInfo.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.1/CrystalDewWorld.CrystalDiskInfo.yaml index cc58006a19b66..febadb2398732 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.1/CrystalDewWorld.CrystalDiskInfo.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.1/CrystalDewWorld.CrystalDiskInfo.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.2.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo -PackageVersion: 9.2.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo +PackageVersion: 9.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.2/CrystalDewWorld.CrystalDiskInfo.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.2/CrystalDewWorld.CrystalDiskInfo.installer.yaml index 473bd95d954eb..03fa0d5535f26 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.2/CrystalDewWorld.CrystalDiskInfo.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.2/CrystalDewWorld.CrystalDiskInfo.installer.yaml @@ -1,28 +1,21 @@ -# Created using wingetcreate 1.5.7.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.2.2 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 InstallerType: inno Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress UpgradeBehavior: install Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2.exe + InstallerSha256: 5DA5016773C84A70B3EE5D56040EB60BCB9A24FB0B663EC51A3ED4A19667B2B1 - Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2.exe InstallerSha256: 5DA5016773C84A70B3EE5D56040EB60BCB9A24FB0B663EC51A3ED4A19667B2B1 - Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2.exe/download - InstallerSha256: 5DA5016773C84A70B3EE5D56040EB60BCB9A24FB0B663EC51A3ED4A19667B2B1 -- Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2.exe InstallerSha256: 5DA5016773C84A70B3EE5D56040EB60BCB9A24FB0B663EC51A3ED4A19667B2B1 ManifestType: installer -ManifestVersion: 1.5.0 +ManifestVersion: 1.10.0 ReleaseDate: 2024-01-13 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.2/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.2/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml index e3c26ed91e373..7e08f7db6009d 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.2/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.2/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml @@ -1,24 +1,22 @@ -# Created using wingetcreate 1.5.7.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.2.2 PackageLocale: en-US Publisher: Crystal Dew World -PublisherUrl: https://crystalmark.info/en -PublisherSupportUrl: https://crystalmark.info/en/information/about -PrivacyUrl: https://crystalmark.info/en/information/privacy-policy +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ Author: Noriyuki Miyazaki PackageName: CrystalDiskInfo -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT -LicenseUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -Copyright: Copyright (c) 2008-2023 hiyohiyo -CopyrightUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: © 2008-2025 hiyohiyo ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. Moniker: crystaldiskinfo Tags: -- crystaldiskinfo - diagnostic - disk - disk-diagnostic @@ -26,7 +24,12 @@ Tags: - hard-drive - hdd - nvme +- smart - ssd - utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: defaultLocale -ManifestVersion: 1.5.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.2/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.2/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml new file mode 100644 index 0000000000000..bab374820577b --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.2/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo +PackageVersion: 9.2.2 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: © 2008-2025 hiyohiyo +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.2/CrystalDewWorld.CrystalDiskInfo.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.2/CrystalDewWorld.CrystalDiskInfo.yaml index 77d8511807ddc..d6b1ec60ec4b6 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.2/CrystalDewWorld.CrystalDiskInfo.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.2/CrystalDewWorld.CrystalDiskInfo.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.5.7.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.2.2 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.5.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.3/CrystalDewWorld.CrystalDiskInfo.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.3/CrystalDewWorld.CrystalDiskInfo.installer.yaml index 4840ca154acd6..10a32a494edc5 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.3/CrystalDewWorld.CrystalDiskInfo.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.3/CrystalDewWorld.CrystalDiskInfo.installer.yaml @@ -1,28 +1,21 @@ -# Created using wingetcreate 1.5.7.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.2.3 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 InstallerType: inno Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress UpgradeBehavior: install Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.3/CrystalDiskInfo9_2_3.exe + InstallerSha256: 05FE4627D29A54162948EF9A9380B6258E126B8A966CE4148A9745C330DA0BE4 - Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.3/CrystalDiskInfo9_2_3.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.3/CrystalDiskInfo9_2_3.exe InstallerSha256: 05FE4627D29A54162948EF9A9380B6258E126B8A966CE4148A9745C330DA0BE4 - Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.3/CrystalDiskInfo9_2_3.exe/download - InstallerSha256: 05FE4627D29A54162948EF9A9380B6258E126B8A966CE4148A9745C330DA0BE4 -- Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.3/CrystalDiskInfo9_2_3.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.3/CrystalDiskInfo9_2_3.exe InstallerSha256: 05FE4627D29A54162948EF9A9380B6258E126B8A966CE4148A9745C330DA0BE4 ManifestType: installer -ManifestVersion: 1.5.0 +ManifestVersion: 1.10.0 ReleaseDate: 2024-02-16 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.3/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.3/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml index 4a34b6bcf07ea..5d5ad7893ebca 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.3/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.3/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml @@ -1,24 +1,22 @@ -# Created using wingetcreate 1.5.7.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.2.3 PackageLocale: en-US Publisher: Crystal Dew World -PublisherUrl: https://crystalmark.info/en -PublisherSupportUrl: https://crystalmark.info/en/information/about -PrivacyUrl: https://crystalmark.info/en/information/privacy-policy +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ Author: Noriyuki Miyazaki PackageName: CrystalDiskInfo -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT -LicenseUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -Copyright: Copyright (c) 2008-2023 hiyohiyo -CopyrightUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: © 2008-2025 hiyohiyo ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. Moniker: crystaldiskinfo Tags: -- crystaldiskinfo - diagnostic - disk - disk-diagnostic @@ -26,7 +24,12 @@ Tags: - hard-drive - hdd - nvme +- smart - ssd - utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: defaultLocale -ManifestVersion: 1.5.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.3/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.3/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ca5da96f45e44 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.3/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo +PackageVersion: 9.2.3 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: © 2008-2025 hiyohiyo +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.3/CrystalDewWorld.CrystalDiskInfo.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.3/CrystalDewWorld.CrystalDiskInfo.yaml index 78fd1aacc1096..9a6fcdbab76da 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.3/CrystalDewWorld.CrystalDiskInfo.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.2.3/CrystalDewWorld.CrystalDiskInfo.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.5.7.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.2.3 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.5.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.installer.yaml index c1a9b60922731..1f6aecfbf6bf2 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.installer.yaml @@ -1,21 +1,21 @@ -# Created with YamlCreate.ps1 v2.4.1 $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.3.0 InstallerType: inno Scope: machine UpgradeBehavior: install -ReleaseDate: 2024-04-30 Installers: - Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0.exe InstallerSha256: 64829D3E99732F5785AB8CCDB03EE6FBFAE70FA820486B96544E556763478B66 - Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0.exe InstallerSha256: 64829D3E99732F5785AB8CCDB03EE6FBFAE70FA820486B96544E556763478B66 - Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0.exe InstallerSha256: 64829D3E99732F5785AB8CCDB03EE6FBFAE70FA820486B96544E556763478B66 ManifestType: installer -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 +ReleaseDate: 2024-04-30 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml index a6a6a1c480ff1..ca7bd1d3a1be0 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.3.0 @@ -13,10 +13,8 @@ PackageName: CrystalDiskInfo PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ -Copyright: © 2008-2024 hiyohiyo -# CopyrightUrl: +Copyright: © 2008-2025 hiyohiyo ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. -# Description: Moniker: crystaldiskinfo Tags: - diagnostic @@ -29,14 +27,9 @@ Tags: - smart - ssd - utility -ReleaseNotes: |- - - Added JMicron JMS586 support (Alpha) - - Improved Silicon Motion SATA SSD support ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: FAQ DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: defaultLocale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml index 690d16864d11e..30b8a874c172a 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml @@ -1,40 +1,34 @@ -# Created with YamlCreate.ps1 v2.4.1 $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo -PackageVersion: 9.3.0 -PackageLocale: zh-CN -Publisher: Crystal Dew World -PublisherUrl: https://crystalmark.info/en/ -PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues -PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ -Author: Noriyuki Miyazaki -PackageName: CrystalDiskInfo -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ -License: MIT -LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ -Copyright: © 2008-2024 hiyohiyo -# CopyrightUrl: -ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。 -# Description: -# Moniker: -Tags: -- nvme -- smart -- 固态硬盘 -- 工具 -- 机械硬盘 -- 硬盘 -- 硬盘工具 -- 硬盘诊断 -- 磁盘 -- 诊断 -# ReleaseNotes: -ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: 常见问题 - DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ -ManifestType: locale -ManifestVersion: 1.6.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo +PackageVersion: 9.3.0 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: © 2008-2025 hiyohiyo +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.yaml index 9bac0215b420f..f115a2b55964c 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.0/CrystalDewWorld.CrystalDiskInfo.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.1 $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.3.0 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.installer.yaml index e3285ed478a91..55d54bb9fc866 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.installer.yaml @@ -1,21 +1,21 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.3.1 InstallerType: inno Scope: machine UpgradeBehavior: install -ReleaseDate: 2024-06-15 Installers: - Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1.exe InstallerSha256: DC389D8681428DA9211155F1BD66A5768689339CD3B858E8CA1863A33E0D8930 - Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1.exe InstallerSha256: DC389D8681428DA9211155F1BD66A5768689339CD3B858E8CA1863A33E0D8930 - Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1.exe InstallerSha256: DC389D8681428DA9211155F1BD66A5768689339CD3B858E8CA1863A33E0D8930 ManifestType: installer -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 +ReleaseDate: 2024-06-15 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml index dc19d6c717d97..98c23d5acdee6 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.3.1 @@ -13,10 +13,8 @@ PackageName: CrystalDiskInfo PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ -Copyright: © 2008-2024 hiyohiyo -# CopyrightUrl: +Copyright: © 2008-2025 hiyohiyo ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. -# Description: Moniker: crystaldiskinfo Tags: - diagnostic @@ -29,15 +27,9 @@ Tags: - smart - ssd - utility -ReleaseNotes: |- - - Added ADATA Industrial SATA SSD - - Added Radeon R7 SATA SSD - - Improved SanDisk P4 SATA SSD ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: FAQ DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: defaultLocale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml index a5b9275292316..aaac000036cca 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.3.1 @@ -13,11 +13,8 @@ PackageName: CrystalDiskInfo PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ -Copyright: © 2008-2024 hiyohiyo -# CopyrightUrl: +Copyright: © 2008-2025 hiyohiyo ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。 -# Description: -# Moniker: Tags: - nvme - smart @@ -29,12 +26,9 @@ Tags: - 硬盘诊断 - 磁盘 - 诊断 -# ReleaseNotes: ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: 常见问题 DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: locale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.yaml index 4905b8a592a65..27688b11949ab 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.1/CrystalDewWorld.CrystalDiskInfo.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.3.1 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.installer.yaml index db2da08e4a72c..a8117ddc01951 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.installer.yaml @@ -1,21 +1,21 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.3.2 InstallerType: inno Scope: machine UpgradeBehavior: install -ReleaseDate: 2024-06-22 Installers: - Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2.exe InstallerSha256: 4F7AF7FEE8184773961EA80C6C1B92DCC877B12B01B97F8FA11D916F5245C07F - Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2.exe InstallerSha256: 4F7AF7FEE8184773961EA80C6C1B92DCC877B12B01B97F8FA11D916F5245C07F - Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2.exe InstallerSha256: 4F7AF7FEE8184773961EA80C6C1B92DCC877B12B01B97F8FA11D916F5245C07F ManifestType: installer -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 +ReleaseDate: 2024-06-22 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml index 66ec474fc201f..d064e85771228 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.3.2 @@ -13,10 +13,8 @@ PackageName: CrystalDiskInfo PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ -Copyright: © 2008-2024 hiyohiyo -# CopyrightUrl: +Copyright: © 2008-2025 hiyohiyo ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. -# Description: Moniker: crystaldiskinfo Tags: - diagnostic @@ -29,12 +27,9 @@ Tags: - smart - ssd - utility -# ReleaseNotes: ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: FAQ DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: defaultLocale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml index d750b3551bb77..3d573388ef8db 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.3.2 @@ -13,11 +13,8 @@ PackageName: CrystalDiskInfo PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ -Copyright: © 2008-2024 hiyohiyo -# CopyrightUrl: +Copyright: © 2008-2025 hiyohiyo ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。 -# Description: -# Moniker: Tags: - nvme - smart @@ -29,12 +26,9 @@ Tags: - 硬盘诊断 - 磁盘 - 诊断 -# ReleaseNotes: ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: 常见问题 DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: locale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.yaml index bbf1c50b2ea0a..7ce8ab12e3b8a 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/9.3.2/CrystalDewWorld.CrystalDiskInfo.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo PackageVersion: 9.3.2 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml index 40aed8cc1c56c..fe8e4777b9dda 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml @@ -1,28 +1,21 @@ -# Created using wingetcreate 1.2.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition -PackageVersion: 9.2.0 -Platform: - - Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: inno -Scope: machine -InstallModes: - - interactive - - silent - - silentWithProgress -UpgradeBehavior: install -Installers: - - Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.0/CrystalDiskInfo9_2_0Aoi.exe/download - InstallerSha256: 6d698efb504d27b4f7c4ceb3bc99f5b44b0213711f1495c0a52f3c2b9c8db47e - - Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.0/CrystalDiskInfo9_2_0Aoi.exe/download - InstallerSha256: 6d698efb504d27b4f7c4ceb3bc99f5b44b0213711f1495c0a52f3c2b9c8db47e - - Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.0/CrystalDiskInfo9_2_0Aoi.exe/download - InstallerSha256: 6d698efb504d27b4f7c4ceb3bc99f5b44b0213711f1495c0a52f3c2b9c8db47e -ManifestType: installer -ManifestVersion: 1.5.0 -ReleaseDate: 2023-11-20 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.0/CrystalDiskInfo9_2_0Aoi.exe + InstallerSha256: 6D698EFB504D27B4F7C4CEB3BC99F5B44B0213711F1495C0A52F3C2B9C8DB47E +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.0/CrystalDiskInfo9_2_0Aoi.exe + InstallerSha256: 6D698EFB504D27B4F7C4CEB3BC99F5B44B0213711F1495C0A52F3C2B9C8DB47E +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.0/CrystalDiskInfo9_2_0Aoi.exe + InstallerSha256: 6D698EFB504D27B4F7C4CEB3BC99F5B44B0213711F1495C0A52F3C2B9C8DB47E +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2023-11-20 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml index 7149725576b0a..501a3ab38f42c 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml @@ -1,32 +1,37 @@ -# Created using wingetcreate 1.2.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition -PackageVersion: 9.2.0 -PackageLocale: en-US -Publisher: Crystal Dew World -PublisherUrl: https://crystalmark.info/en/ -PublisherSupportUrl: https://crystalmark.info/en/information/about/ -PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ -Author: Noriyuki Miyazaki -PackageName: CrystalDiskInfo Aoi Edition -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ -License: MIT -LicenseUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -Copyright: Copyright (c) 2008-2023 hiyohiyo -CopyrightUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Aoi Theme. -Moniker: crystaldiskinfo-aoi -Tags: -- crystaldiskinfo -- diagnostic -- disk -- disk-diagnostic -- disk-utility -- hard-drive -- hdd -- nvme -- ssd -- utility -ManifestType: defaultLocale -ManifestVersion: 1.5.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.0 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Aoi Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2023-2025 nijihashi sola +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Aoi Theme. +Moniker: crystaldiskinfo-aoi +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8a96a3e899798 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.0 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Aoi Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2023-2025 nijihashi sola +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Aoi 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml index e8d98bb894897..cb3eb0b119155 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.2.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition -PackageVersion: 9.2.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml index 82bbad442e2a2..49eef3d8d5ea1 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml @@ -1,28 +1,21 @@ -# Automatically updated by the winget bot at 2023/Nov/21 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition -PackageVersion: 9.2.1 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -Installers: -- Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1Aoi.exe/download - InstallerSha256: a686ffde2880d311d10444a572e12ed0b4bcccb3c3d120745b343293d2c130b1 -- Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1Aoi.exe/download - InstallerSha256: a686ffde2880d311d10444a572e12ed0b4bcccb3c3d120745b343293d2c130b1 -- Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1Aoi.exe/download - InstallerSha256: a686ffde2880d311d10444a572e12ed0b4bcccb3c3d120745b343293d2c130b1 -ManifestType: installer -ManifestVersion: 1.5.0 -ReleaseDate: 2023-11-22 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.1 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1Aoi.exe + InstallerSha256: A686FFDE2880D311D10444A572E12ED0B4BCCCB3C3D120745B343293D2C130B1 +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1Aoi.exe + InstallerSha256: A686FFDE2880D311D10444A572E12ED0B4BCCCB3C3D120745B343293D2C130B1 +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1Aoi.exe + InstallerSha256: A686FFDE2880D311D10444A572E12ED0B4BCCCB3C3D120745B343293D2C130B1 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2023-11-21 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml index 9cd25c9e9ae82..352c640655734 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml @@ -1,32 +1,37 @@ -# Automatically updated by the winget bot at 2023/Nov/21 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition -PackageVersion: 9.2.1 -PackageLocale: en-US -Publisher: Crystal Dew World -PublisherUrl: https://crystalmark.info/en/ -PublisherSupportUrl: https://crystalmark.info/en/information/about/ -PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ -Author: Noriyuki Miyazaki -PackageName: CrystalDiskInfo Aoi Edition -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ -License: MIT -LicenseUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -Copyright: Copyright (c) 2008-2023 hiyohiyo -CopyrightUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Kurei Kei Theme. -Moniker: crystaldiskinfo-aoi -Tags: -- crystaldiskinfo -- diagnostic -- disk -- disk-diagnostic -- disk-utility -- hard-drive -- hdd -- nvme -- ssd -- utility -ManifestType: defaultLocale -ManifestVersion: 1.5.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.1 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Aoi Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2023-2025 nijihashi sola +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Aoi Theme. +Moniker: crystaldiskinfo-aoi +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c0a0900bf37ea --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.1 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Aoi Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2023-2025 nijihashi sola +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Aoi 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml index 29bc0eaf99da4..6e5a7f0beb72b 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2023/Nov/21 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition -PackageVersion: 9.2.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml index 418a6fde09575..734b1b6c33e27 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml @@ -1,28 +1,21 @@ -# Automatically updated by the winget bot at 2023/Nov/21 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition -PackageVersion: 9.2.2 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -Installers: -- Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2Aoi.exe/download - InstallerSha256: eda338afb842341e6813fb99271eb8d6bdadd1342635e45675b95058ca52d403 -- Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2Aoi.exe/download - InstallerSha256: eda338afb842341e6813fb99271eb8d6bdadd1342635e45675b95058ca52d403 -- Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2Aoi.exe/download - InstallerSha256: eda338afb842341e6813fb99271eb8d6bdadd1342635e45675b95058ca52d403 -ManifestType: installer -ManifestVersion: 1.5.0 -ReleaseDate: 2024-01-13 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.2 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2Aoi.exe + InstallerSha256: EDA338AFB842341E6813FB99271EB8D6BDADD1342635E45675B95058CA52D403 +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2Aoi.exe + InstallerSha256: EDA338AFB842341E6813FB99271EB8D6BDADD1342635E45675B95058CA52D403 +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2Aoi.exe + InstallerSha256: EDA338AFB842341E6813FB99271EB8D6BDADD1342635E45675B95058CA52D403 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2024-01-13 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml index f15df7fa2a3b5..5eb22dad9db8f 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml @@ -1,32 +1,37 @@ -# Automatically updated by the winget bot at 2023/Nov/21 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition -PackageVersion: 9.2.2 -PackageLocale: en-US -Publisher: Crystal Dew World -PublisherUrl: https://crystalmark.info/en/ -PublisherSupportUrl: https://crystalmark.info/en/information/about/ -PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ -Author: Noriyuki Miyazaki -PackageName: CrystalDiskInfo Aoi Edition -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ -License: MIT -LicenseUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -Copyright: Copyright (c) 2008-2023 hiyohiyo -CopyrightUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Kurei Kei Theme. -Moniker: crystaldiskinfo-aoi -Tags: -- crystaldiskinfo -- diagnostic -- disk -- disk-diagnostic -- disk-utility -- hard-drive -- hdd -- nvme -- ssd -- utility -ManifestType: defaultLocale -ManifestVersion: 1.5.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.2 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Aoi Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2023-2025 nijihashi sola +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Aoi Theme. +Moniker: crystaldiskinfo-aoi +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1d024adf2ee88 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.2 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Aoi Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2023-2025 nijihashi sola +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Aoi 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml index a62176e226ce3..92fec566483e2 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2023/Nov/21 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition -PackageVersion: 9.2.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml new file mode 100644 index 0000000000000..edde5ad3a8369 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.3 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.3/CrystalDiskInfo9_2_3Aoi.exe + InstallerSha256: C6C2E8420465792D67FA1B419812E217298BAB54CCCDFD60BFD40AA26CC0FB96 +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.3/CrystalDiskInfo9_2_3Aoi.exe + InstallerSha256: C6C2E8420465792D67FA1B419812E217298BAB54CCCDFD60BFD40AA26CC0FB96 +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.3/CrystalDiskInfo9_2_3Aoi.exe + InstallerSha256: C6C2E8420465792D67FA1B419812E217298BAB54CCCDFD60BFD40AA26CC0FB96 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2024-02-16 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml new file mode 100644 index 0000000000000..52d28bdcdeca3 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.AoiEdition.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.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.3 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Aoi Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2023-2025 nijihashi sola +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Aoi Theme. +Moniker: crystaldiskinfo-aoi +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..641919731aca1 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.3 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Aoi Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2023-2025 nijihashi sola +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Aoi 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml new file mode 100644 index 0000000000000..a208972356320 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.2.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml index c9c8e7c8e618e..ce36806c5397f 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml @@ -1,21 +1,21 @@ -# Created with YamlCreate.ps1 v2.4.1 $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition -PackageVersion: 9.3.0 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-04-30 -Installers: -- Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0Aoi.exe/download - InstallerSha256: 9DA0B4B0659B33582A140239BA9429AFE1D249FF2447C3D8DDB06E92B5A6E44A -- Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0Aoi.exe/download - InstallerSha256: 9DA0B4B0659B33582A140239BA9429AFE1D249FF2447C3D8DDB06E92B5A6E44A -- Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0Aoi.exe/download - InstallerSha256: 9DA0B4B0659B33582A140239BA9429AFE1D249FF2447C3D8DDB06E92B5A6E44A -ManifestType: installer -ManifestVersion: 1.6.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.3.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0Aoi.exe + InstallerSha256: 9DA0B4B0659B33582A140239BA9429AFE1D249FF2447C3D8DDB06E92B5A6E44A +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0Aoi.exe + InstallerSha256: 9DA0B4B0659B33582A140239BA9429AFE1D249FF2447C3D8DDB06E92B5A6E44A +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0Aoi.exe + InstallerSha256: 9DA0B4B0659B33582A140239BA9429AFE1D249FF2447C3D8DDB06E92B5A6E44A +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2024-04-30 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml index 2067f5dc11a12..1d464eb89531a 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml @@ -1,44 +1,37 @@ -# Created with YamlCreate.ps1 v2.4.1 $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition -PackageVersion: 9.3.0 -PackageLocale: en-US -Publisher: Crystal Dew World -PublisherUrl: https://crystalmark.info/en/ -PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues -PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ -Author: Noriyuki Miyazaki -PackageName: CrystalDiskInfo Aoi Edition -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ -License: MIT -LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ -Copyright: |- - © 2008-2024 hiyohiyo - © 2023-2024 nijihashi sola -# CopyrightUrl: -ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Aoi Theme. -# Description: -Moniker: crystaldiskinfo-aoi -Tags: -- diagnostic -- disk -- disk-diagnostic -- disk-utility -- hard-drive -- hdd -- nvme -- smart -- ssd -- utility -ReleaseNotes: |- - - Added JMicron JMS586 support (Alpha) - - Improved Silicon Motion SATA SSD support -ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ -ManifestType: defaultLocale -ManifestVersion: 1.6.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.3.0 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Aoi Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2023-2025 nijihashi sola +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Aoi Theme. +Moniker: crystaldiskinfo-aoi +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml index 9265e1c8d8d47..fed5d30348fdb 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml @@ -1,42 +1,36 @@ -# Created with YamlCreate.ps1 v2.4.1 $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition -PackageVersion: 9.3.0 -PackageLocale: zh-CN -Publisher: Crystal Dew World -PublisherUrl: https://crystalmark.info/en/ -PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues -PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ -Author: Noriyuki Miyazaki -PackageName: CrystalDiskInfo Aoi Edition -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ -License: MIT -LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ -Copyright: |- - © 2008-2024 hiyohiyo - © 2023-2024 nijihashi sola -# CopyrightUrl: -ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Aoi 主题的 CrystalDiskInfo。 -# Description: -# Moniker: -Tags: -- nvme -- smart -- 固态硬盘 -- 工具 -- 机械硬盘 -- 硬盘 -- 硬盘工具 -- 硬盘诊断 -- 磁盘 -- 诊断 -# ReleaseNotes: -ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: 常见问题 - DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ -ManifestType: locale -ManifestVersion: 1.6.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.3.0 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Aoi Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2023-2025 nijihashi sola +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Aoi 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml index 5c0c702c9e630..7d205f8ac6f33 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.1 $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition -PackageVersion: 9.3.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition +PackageVersion: 9.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml index 93458da021249..728fdfa4d064b 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml @@ -1,21 +1,21 @@ -# Automatically updated by the winget bot at 2024/Jun/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition PackageVersion: 9.3.1 InstallerType: inno Scope: machine UpgradeBehavior: install -ReleaseDate: 2024-06-15 Installers: - Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1Aoi.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1Aoi.exe InstallerSha256: 9FF10C4E16B92F37CB9C87DBED3443F37395724BED54FF1FD125D751E8254839 - Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1Aoi.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1Aoi.exe InstallerSha256: 9FF10C4E16B92F37CB9C87DBED3443F37395724BED54FF1FD125D751E8254839 - Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1Aoi.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1Aoi.exe InstallerSha256: 9FF10C4E16B92F37CB9C87DBED3443F37395724BED54FF1FD125D751E8254839 ManifestType: installer -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 +ReleaseDate: 2024-06-15 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml index 5b23b199d605e..cb63326d1e568 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Automatically updated by the winget bot at 2024/Jun/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition PackageVersion: 9.3.1 @@ -14,8 +14,8 @@ PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ Copyright: |- - © 2008-2024 hiyohiyo - © 2024-2024 nijihashi sola + © 2008-2025 hiyohiyo + © 2023-2025 nijihashi sola ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Aoi Theme. Moniker: crystaldiskinfo-aoi Tags: @@ -34,4 +34,4 @@ Documentations: - DocumentLabel: FAQ DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: defaultLocale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml index a1e6bb31a8798..b53680a97af6f 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Automatically updated by the winget bot at 2024/Jun/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition PackageVersion: 9.3.1 @@ -14,8 +14,8 @@ PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ Copyright: |- - © 2008-2024 hiyohiyo - © 2024-2024 nijihashi sola + © 2008-2025 hiyohiyo + © 2023-2025 nijihashi sola ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Aoi 主题的 CrystalDiskInfo。 Tags: - nvme @@ -33,4 +33,4 @@ Documentations: - DocumentLabel: 常见问题 DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: locale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml index f41851e526a64..272ce694a12c7 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2024/Jun/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition PackageVersion: 9.3.1 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml index 5b3df0b345efd..8e8bf0c2c5cfd 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.installer.yaml @@ -1,21 +1,21 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition PackageVersion: 9.3.2 InstallerType: inno Scope: machine UpgradeBehavior: install -ReleaseDate: 2024-06-22 Installers: - Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2Aoi.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2Aoi.exe InstallerSha256: 44156C27204A0935BB41DBC02955A0C446F66AE8388808A400D5C9E0A731B4BF - Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2Aoi.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2Aoi.exe InstallerSha256: 44156C27204A0935BB41DBC02955A0C446F66AE8388808A400D5C9E0A731B4BF - Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2Aoi.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2Aoi.exe InstallerSha256: 44156C27204A0935BB41DBC02955A0C446F66AE8388808A400D5C9E0A731B4BF ManifestType: installer -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 +ReleaseDate: 2024-06-22 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml index d08ed66d318dd..e2000196a6419 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition PackageVersion: 9.3.2 @@ -14,11 +14,9 @@ PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ Copyright: |- - © 2008-2024 hiyohiyo - © 2024-2024 nijihashi sola -# CopyrightUrl: + © 2008-2025 hiyohiyo + © 2023-2025 nijihashi sola ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Aoi Theme. -# Description: Moniker: crystaldiskinfo-aoi Tags: - diagnostic @@ -31,12 +29,9 @@ Tags: - smart - ssd - utility -# ReleaseNotes: ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: FAQ DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: defaultLocale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml index abc15242bf47f..a799e4f6b05e7 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition PackageVersion: 9.3.2 @@ -14,12 +14,9 @@ PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ Copyright: |- - © 2008-2024 hiyohiyo - © 2024-2024 nijihashi sola -# CopyrightUrl: + © 2008-2025 hiyohiyo + © 2023-2025 nijihashi sola ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Aoi 主题的 CrystalDiskInfo。 -# Description: -# Moniker: Tags: - nvme - smart @@ -31,12 +28,9 @@ Tags: - 硬盘诊断 - 磁盘 - 诊断 -# ReleaseNotes: ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: 常见问题 DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: locale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml index 97bcc77349fd2..d74260ee648cc 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/AoiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.AoiEdition.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.AoiEdition PackageVersion: 9.3.2 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml new file mode 100644 index 0000000000000..f6de4f6e15f4a --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.1.1 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.1.1/CrystalDiskInfo9_1_1KureiKei.exe + InstallerSha256: 6D4DF4F1F0A4393AABAE056634B884688CC8D6B4F1E775F5832C3AF04BB5E36B +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.1.1/CrystalDiskInfo9_1_1KureiKei.exe + InstallerSha256: 6D4DF4F1F0A4393AABAE056634B884688CC8D6B4F1E775F5832C3AF04BB5E36B +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.1.1/CrystalDiskInfo9_1_1KureiKei.exe + InstallerSha256: 6D4DF4F1F0A4393AABAE056634B884688CC8D6B4F1E775F5832C3AF04BB5E36B +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2023-09-09 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml new file mode 100644 index 0000000000000..5165830161987 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.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.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.1.1 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Kurei Kei Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Kurei Kei Theme. +Moniker: crystaldiskinfo-kke +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..27f7d4933bee2 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.1.1 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Kurei Kei Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Kurei Kei 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml new file mode 100644 index 0000000000000..213fb84e81281 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml new file mode 100644 index 0000000000000..785151255b4d3 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.0/CrystalDiskInfo9_2_0KureiKei.exe + InstallerSha256: 794153FC86DAA55A91B7D76C8A5DA3C832C487D2C642401BCE2CEED9FA638F65 +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.0/CrystalDiskInfo9_2_0KureiKei.exe + InstallerSha256: 794153FC86DAA55A91B7D76C8A5DA3C832C487D2C642401BCE2CEED9FA638F65 +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.0/CrystalDiskInfo9_2_0KureiKei.exe + InstallerSha256: 794153FC86DAA55A91B7D76C8A5DA3C832C487D2C642401BCE2CEED9FA638F65 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2023-11-20 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml new file mode 100644 index 0000000000000..f3622d4a5406a --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.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.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.0 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Kurei Kei Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Kurei Kei Theme. +Moniker: crystaldiskinfo-kke +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6d7e2af595997 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.0 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Kurei Kei Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Kurei Kei 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml new file mode 100644 index 0000000000000..b4974b4f9df48 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml index 16e5b7a82af8e..120fedec30bd5 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml @@ -1,28 +1,21 @@ -# 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: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition -PackageVersion: 9.2.1 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -ReleaseDate: 2023-11-22 -Installers: -- Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1KureiKei.exe/download - InstallerSha256: 0F23A43673FC8BB7BE2905579A18D4C74B955F72D295F61008AA6BF70B8DAA09 -- Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1KureiKei.exe/download - InstallerSha256: 0F23A43673FC8BB7BE2905579A18D4C74B955F72D295F61008AA6BF70B8DAA09 -- Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1KureiKei.exe/download - InstallerSha256: 0F23A43673FC8BB7BE2905579A18D4C74B955F72D295F61008AA6BF70B8DAA09 -ManifestType: installer -ManifestVersion: 1.9.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.1 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1KureiKei.exe + InstallerSha256: 0F23A43673FC8BB7BE2905579A18D4C74B955F72D295F61008AA6BF70B8DAA09 +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1KureiKei.exe + InstallerSha256: 0F23A43673FC8BB7BE2905579A18D4C74B955F72D295F61008AA6BF70B8DAA09 +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1KureiKei.exe + InstallerSha256: 0F23A43673FC8BB7BE2905579A18D4C74B955F72D295F61008AA6BF70B8DAA09 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2023-11-21 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml index 48150819404e7..594ee9bdd1299 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml @@ -1,38 +1,37 @@ -# 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: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition -PackageVersion: 9.2.1 -PackageLocale: en-US -Publisher: Crystal Dew World -PublisherUrl: https://crystalmark.info/en/ -PublisherSupportUrl: https://crystalmark.info/en/information/about/ -PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ -Author: Noriyuki Miyazaki -PackageName: CrystalDiskInfo Kurei Kei Edition -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ -License: MIT -LicenseUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -Copyright: Copyright (c) 2008-2023 hiyohiyo -CopyrightUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Kurei Kei Theme. -# Description: -Moniker: crystaldiskinfo-kke -Tags: -- crystaldiskinfo -- diagnostic -- disk -- disk-diagnostic -- disk-utility -- hard-drive -- hdd -- nvme -- ssd -- utility -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.9.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.1 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Kurei Kei Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Kurei Kei Theme. +Moniker: crystaldiskinfo-kke +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..dc25bf011b467 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.1 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Kurei Kei Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Kurei Kei 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml index 84adba03fc4aa..0d4f2d4c4c915 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.3 $debug=AUSU.CRLF.7-4-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition -PackageVersion: 9.2.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml index 46cf2314faa80..d9068bbd7bccb 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml @@ -1,28 +1,21 @@ -# 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: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition -PackageVersion: 9.2.2 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -ReleaseDate: 2024-01-13 -Installers: -- Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2KureiKei.exe/download - InstallerSha256: 114884DA4CE309905E24EDBCBD79824110DB58F400C9E412186C8DA9379AFF54 -- Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2KureiKei.exe/download - InstallerSha256: 114884DA4CE309905E24EDBCBD79824110DB58F400C9E412186C8DA9379AFF54 -- Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2KureiKei.exe/download - InstallerSha256: 114884DA4CE309905E24EDBCBD79824110DB58F400C9E412186C8DA9379AFF54 -ManifestType: installer -ManifestVersion: 1.9.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.2 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2KureiKei.exe + InstallerSha256: 114884DA4CE309905E24EDBCBD79824110DB58F400C9E412186C8DA9379AFF54 +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2KureiKei.exe + InstallerSha256: 114884DA4CE309905E24EDBCBD79824110DB58F400C9E412186C8DA9379AFF54 +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2KureiKei.exe + InstallerSha256: 114884DA4CE309905E24EDBCBD79824110DB58F400C9E412186C8DA9379AFF54 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2024-01-13 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml index b5c030b424251..5ff899211dc70 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml @@ -1,38 +1,37 @@ -# 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: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition -PackageVersion: 9.2.2 -PackageLocale: en-US -Publisher: Crystal Dew World -PublisherUrl: https://crystalmark.info/en/ -PublisherSupportUrl: https://crystalmark.info/en/information/about/ -PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ -Author: Noriyuki Miyazaki -PackageName: CrystalDiskInfo Kurei Kei Edition -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ -License: MIT -LicenseUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -Copyright: Copyright (c) 2008-2023 hiyohiyo -CopyrightUrl: https://raw.githubusercontent.com/hiyohiyo/CrystalDiskInfo/master/LICENSE.txt -ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Kurei Kei Theme. -# Description: -Moniker: crystaldiskinfo-kke -Tags: -- crystaldiskinfo -- diagnostic -- disk -- disk-diagnostic -- disk-utility -- hard-drive -- hdd -- nvme -- ssd -- utility -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.9.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.2 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Kurei Kei Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Kurei Kei Theme. +Moniker: crystaldiskinfo-kke +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b7007841722ce --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.2 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Kurei Kei Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Kurei Kei 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml index cf2859793290f..3ae7960cc15db 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.3 $debug=AUSU.CRLF.7-4-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition -PackageVersion: 9.2.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml new file mode 100644 index 0000000000000..adc49377f26f4 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.3 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.3/CrystalDiskInfo9_2_3KureiKei.exe + InstallerSha256: 0059C1D939ACEB41E27809D22C5C2FC88470EC42F7E154E4CE20F567900D0A3B +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.3/CrystalDiskInfo9_2_3KureiKei.exe + InstallerSha256: 0059C1D939ACEB41E27809D22C5C2FC88470EC42F7E154E4CE20F567900D0A3B +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.3/CrystalDiskInfo9_2_3KureiKei.exe + InstallerSha256: 0059C1D939ACEB41E27809D22C5C2FC88470EC42F7E154E4CE20F567900D0A3B +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2024-02-16 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml new file mode 100644 index 0000000000000..28417936ccb49 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.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.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.3 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Kurei Kei Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Kurei Kei Theme. +Moniker: crystaldiskinfo-kke +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a851bf4ca62c5 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.3 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Kurei Kei Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Kurei Kei 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml new file mode 100644 index 0000000000000..c82efecfcff8c --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.2.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml index 94e6fa89b3af4..3cf3211fe3afd 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml @@ -1,21 +1,21 @@ -# 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: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition -PackageVersion: 9.3.0 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-04-30 -Installers: -- Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0KureiKei.exe/download - InstallerSha256: 6749C82F24C4F03C96279092C2D5F61DD59EB032D224EA5AE8BD31A4A60F2BEA -- Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0KureiKei.exe/download - InstallerSha256: 6749C82F24C4F03C96279092C2D5F61DD59EB032D224EA5AE8BD31A4A60F2BEA -- Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0KureiKei.exe/download - InstallerSha256: 6749C82F24C4F03C96279092C2D5F61DD59EB032D224EA5AE8BD31A4A60F2BEA -ManifestType: installer -ManifestVersion: 1.9.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.3.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0KureiKei.exe + InstallerSha256: 6749C82F24C4F03C96279092C2D5F61DD59EB032D224EA5AE8BD31A4A60F2BEA +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0KureiKei.exe + InstallerSha256: 6749C82F24C4F03C96279092C2D5F61DD59EB032D224EA5AE8BD31A4A60F2BEA +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0KureiKei.exe + InstallerSha256: 6749C82F24C4F03C96279092C2D5F61DD59EB032D224EA5AE8BD31A4A60F2BEA +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2024-04-30 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml index 2df7de98ad0b0..4b519bafc9727 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml @@ -1,44 +1,37 @@ -# 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: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition -PackageVersion: 9.3.0 -PackageLocale: en-US -Publisher: Crystal Dew World -PublisherUrl: https://crystalmark.info/en/ -PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues -PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ -Author: Noriyuki Miyazaki -PackageName: CrystalDiskInfo Kurei Kei Edition -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ -License: MIT -LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ -Copyright: |- - © 2008-2024 hiyohiyo - © 2017-2024 Pronama LLC -# CopyrightUrl: -ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Kurei Kei Theme. -# Description: -Moniker: crystaldiskinfo-kke -Tags: -- diagnostic -- disk -- disk-diagnostic -- disk-utility -- hard-drive -- hdd -- nvme -- smart -- ssd -- utility -ReleaseNotes: |- - - Added JMicron JMS586 support (Alpha) - - Improved Silicon Motion SATA SSD support -ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ -ManifestType: defaultLocale -ManifestVersion: 1.9.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.3.0 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Kurei Kei Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Kurei Kei Theme. +Moniker: crystaldiskinfo-kke +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml index 8554b33461d1c..1ed8590c1ab0d 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml @@ -1,42 +1,36 @@ -# Created with YamlCreate.ps1 v2.4.3 $debug=AUSU.CRLF.7-4-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition -PackageVersion: 9.3.0 -PackageLocale: zh-CN -Publisher: Crystal Dew World -PublisherUrl: https://crystalmark.info/en/ -PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues -PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ -Author: Noriyuki Miyazaki -PackageName: CrystalDiskInfo Kurei Kei Edition -PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ -License: MIT -LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ -Copyright: |- - © 2008-2024 hiyohiyo - © 2017-2024 Pronama LLC -# CopyrightUrl: -ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Kurei Kei 主题的 CrystalDiskInfo。 -# Description: -# Moniker: -Tags: -- nvme -- smart -- 固态硬盘 -- 工具 -- 机械硬盘 -- 硬盘 -- 硬盘工具 -- 硬盘诊断 -- 磁盘 -- 诊断 -# ReleaseNotes: -ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: 常见问题 - DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ -ManifestType: locale -ManifestVersion: 1.9.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.3.0 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Kurei Kei Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Kurei Kei 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml index 769f0cd049838..b5defce2d0bbb 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.3 $debug=AUSU.CRLF.7-4-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition -PackageVersion: 9.3.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition +PackageVersion: 9.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml index 7787344e0cd49..fe1e8f11e5909 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml @@ -1,21 +1,21 @@ -# 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 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition PackageVersion: 9.3.1 InstallerType: inno Scope: machine UpgradeBehavior: install -ReleaseDate: 2024-06-15 Installers: - Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1KureiKei.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1KureiKei.exe InstallerSha256: 132FBE116B5C60B6EA90810D7F20412EB07E011985E60B161FAB2B50FB88D820 - Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1KureiKei.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1KureiKei.exe InstallerSha256: 132FBE116B5C60B6EA90810D7F20412EB07E011985E60B161FAB2B50FB88D820 - Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1KureiKei.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1KureiKei.exe InstallerSha256: 132FBE116B5C60B6EA90810D7F20412EB07E011985E60B161FAB2B50FB88D820 ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 +ReleaseDate: 2024-06-15 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml index e3540261ca105..31c0b2eadceca 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml @@ -1,5 +1,5 @@ -# 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 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition PackageVersion: 9.3.1 @@ -14,11 +14,9 @@ PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ Copyright: |- - © 2008-2024 hiyohiyo - © 2017-2024 Pronama LLC -# CopyrightUrl: + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Kurei Kei Theme. -# Description: Moniker: crystaldiskinfo-kke Tags: - diagnostic @@ -31,12 +29,9 @@ Tags: - smart - ssd - utility -# ReleaseNotes: ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: FAQ DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml index 71b582839049e..2950dd649ca9e 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.3 $debug=AUSU.CRLF.7-4-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition PackageVersion: 9.3.1 @@ -14,12 +14,9 @@ PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ Copyright: |- - © 2008-2024 hiyohiyo - © 2017-2024 Pronama LLC -# CopyrightUrl: + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Kurei Kei 主题的 CrystalDiskInfo。 -# Description: -# Moniker: Tags: - nvme - smart @@ -31,12 +28,9 @@ Tags: - 硬盘诊断 - 磁盘 - 诊断 -# ReleaseNotes: ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: 常见问题 DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: locale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml index 46bebd6a80298..fa46b3c7f987f 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.3 $debug=AUSU.CRLF.7-4-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition PackageVersion: 9.3.1 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml index cd9b94442427e..b662e3daae7cd 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.installer.yaml @@ -1,21 +1,21 @@ -# 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 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition PackageVersion: 9.3.2 InstallerType: inno Scope: machine UpgradeBehavior: install -ReleaseDate: 2024-06-22 Installers: - Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2KureiKei.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2KureiKei.exe InstallerSha256: 5ECC406D9A586938043083F28FD9C75A935225DAF0C09308BC45F2E3BB948B2C - Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2KureiKei.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2KureiKei.exe InstallerSha256: 5ECC406D9A586938043083F28FD9C75A935225DAF0C09308BC45F2E3BB948B2C - Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2KureiKei.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2KureiKei.exe InstallerSha256: 5ECC406D9A586938043083F28FD9C75A935225DAF0C09308BC45F2E3BB948B2C ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 +ReleaseDate: 2024-06-22 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml index c692e291bbbc5..0b83e7d274519 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.en-US.yaml @@ -1,5 +1,5 @@ -# 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 +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition PackageVersion: 9.3.2 @@ -14,11 +14,9 @@ PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ Copyright: |- - © 2008-2024 hiyohiyo - © 2017-2024 Pronama LLC -# CopyrightUrl: + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Kurei Kei Theme. -# Description: Moniker: crystaldiskinfo-kke Tags: - diagnostic @@ -31,12 +29,9 @@ Tags: - smart - ssd - utility -# ReleaseNotes: ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: FAQ DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml index ff2c08eb3b245..3d4ccb43a221c 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.3 $debug=AUSU.CRLF.7-4-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition PackageVersion: 9.3.2 @@ -14,12 +14,9 @@ PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ Copyright: |- - © 2008-2024 hiyohiyo - © 2017-2024 Pronama LLC -# CopyrightUrl: + © 2008-2025 hiyohiyo + © 2017-2025 Pronama LLC ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Kurei Kei 主题的 CrystalDiskInfo。 -# Description: -# Moniker: Tags: - nvme - smart @@ -31,12 +28,9 @@ Tags: - 硬盘诊断 - 磁盘 - 诊断 -# ReleaseNotes: ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: 常见问题 DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: locale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml index afc53f23b1087..a56152579cc80 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/KureiKeiEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.3 $debug=AUSU.CRLF.7-4-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.KureiKeiEdition PackageVersion: 9.3.2 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml new file mode 100644 index 0000000000000..6e1672a9ec523 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.1.1 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.1.1/CrystalDiskInfo9_1_1Shizuku.exe + InstallerSha256: 40D3741171BF73E35365A193FD7EFE16997685784A8627C8772D18C41FB22F16 +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.1.1/CrystalDiskInfo9_1_1Shizuku.exe + InstallerSha256: 40D3741171BF73E35365A193FD7EFE16997685784A8627C8772D18C41FB22F16 +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.1.1/CrystalDiskInfo9_1_1Shizuku.exe + InstallerSha256: 40D3741171BF73E35365A193FD7EFE16997685784A8627C8772D18C41FB22F16 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2023-09-09 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml new file mode 100644 index 0000000000000..5219b301bf2dd --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.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.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.1.1 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Shizuku Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Shizuku Theme. +Moniker: crystaldiskinfo-se +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3cf868e0d436e --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.1.1 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Shizuku Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Shizuku 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml new file mode 100644 index 0000000000000..8cf15d6a7f599 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.1.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml new file mode 100644 index 0000000000000..f28eae6969306 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.0/CrystalDiskInfo9_2_0Shizuku.exe + InstallerSha256: F887D6FAB8BEC7CC6592E14EF19008D1F4822A9D916C9EEE9B3B3BF24AB3FF1A +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.0/CrystalDiskInfo9_2_0Shizuku.exe + InstallerSha256: F887D6FAB8BEC7CC6592E14EF19008D1F4822A9D916C9EEE9B3B3BF24AB3FF1A +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.0/CrystalDiskInfo9_2_0Shizuku.exe + InstallerSha256: F887D6FAB8BEC7CC6592E14EF19008D1F4822A9D916C9EEE9B3B3BF24AB3FF1A +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2023-11-20 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml new file mode 100644 index 0000000000000..56b7f4556c5ec --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.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.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.0 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Shizuku Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Shizuku Theme. +Moniker: crystaldiskinfo-se +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..241d4729b9f04 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.0 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Shizuku Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Shizuku 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml new file mode 100644 index 0000000000000..7aa6ef4f0da8c --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml new file mode 100644 index 0000000000000..c007f43673d88 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.1 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1Shizuku.exe + InstallerSha256: F516C9616190E49A3ABF618010E3B4A92DA08D55D83F3985255C14760091705E +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1Shizuku.exe + InstallerSha256: F516C9616190E49A3ABF618010E3B4A92DA08D55D83F3985255C14760091705E +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.1/CrystalDiskInfo9_2_1Shizuku.exe + InstallerSha256: F516C9616190E49A3ABF618010E3B4A92DA08D55D83F3985255C14760091705E +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2023-11-21 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml new file mode 100644 index 0000000000000..5ba19cabf57f5 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.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.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.1 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Shizuku Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Shizuku Theme. +Moniker: crystaldiskinfo-se +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..dc0f1e50c2fcc --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.1 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Shizuku Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Shizuku 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml new file mode 100644 index 0000000000000..613af41638f70 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml new file mode 100644 index 0000000000000..f68035162b4be --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.2 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2Shizuku.exe + InstallerSha256: 2236D1E9BE9ABD212FC51C2D5BF2DE08D5EC32C696175DFBFBC6586FA9730C66 +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2Shizuku.exe + InstallerSha256: 2236D1E9BE9ABD212FC51C2D5BF2DE08D5EC32C696175DFBFBC6586FA9730C66 +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.2/CrystalDiskInfo9_2_2Shizuku.exe + InstallerSha256: 2236D1E9BE9ABD212FC51C2D5BF2DE08D5EC32C696175DFBFBC6586FA9730C66 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2024-01-13 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml new file mode 100644 index 0000000000000..d00d3d40744c1 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.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.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.2 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Shizuku Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Shizuku Theme. +Moniker: crystaldiskinfo-se +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..aa2ffecb6e894 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.2 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Shizuku Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Shizuku 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml new file mode 100644 index 0000000000000..b29051050103a --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml new file mode 100644 index 0000000000000..b804228a052e9 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.3 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.3/CrystalDiskInfo9_2_3Shizuku.exe + InstallerSha256: E0B842F5A2076D54D2E912A1738B95EBA0676A08EDFED1BFBA83C357112C0518 +- Architecture: x64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.3/CrystalDiskInfo9_2_3Shizuku.exe + InstallerSha256: E0B842F5A2076D54D2E912A1738B95EBA0676A08EDFED1BFBA83C357112C0518 +- Architecture: arm64 + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.2.3/CrystalDiskInfo9_2_3Shizuku.exe + InstallerSha256: E0B842F5A2076D54D2E912A1738B95EBA0676A08EDFED1BFBA83C357112C0518 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2024-02-16 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml new file mode 100644 index 0000000000000..d8b7e57676788 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.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.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.3 +PackageLocale: en-US +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Shizuku Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu +ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Shizuku Theme. +Moniker: crystaldiskinfo-se +Tags: +- diagnostic +- disk +- disk-diagnostic +- disk-utility +- hard-drive +- hdd +- nvme +- smart +- ssd +- utility +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1e7e6d77f9fd9 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.3 +PackageLocale: zh-CN +Publisher: Crystal Dew World +PublisherUrl: https://crystalmark.info/en/ +PublisherSupportUrl: https://github.com/hiyohiyo/CrystalDiskInfo/issues +PrivacyUrl: https://crystalmark.info/en/information/privacy-policy/ +Author: Noriyuki Miyazaki +PackageName: CrystalDiskInfo Shizuku Edition +PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ +License: MIT +LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ +Copyright: |- + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu +ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Shizuku 主题的 CrystalDiskInfo。 +Tags: +- nvme +- smart +- 固态硬盘 +- 工具 +- 机械硬盘 +- 硬盘 +- 硬盘工具 +- 硬盘诊断 +- 磁盘 +- 诊断 +ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml new file mode 100644 index 0000000000000..e29a5cec65e00 --- /dev/null +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.2.3/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition +PackageVersion: 9.2.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml index 010f1eba59fd7..2366cc6cfcce2 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml @@ -1,21 +1,21 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition PackageVersion: 9.3.0 InstallerType: inno Scope: machine UpgradeBehavior: install -ReleaseDate: 2024-04-30 Installers: - Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0Shizuku.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0Shizuku.exe InstallerSha256: C340711EAB123D952C6EEF322987045C2FB599CCAF7E72D6D8B24B1493575789 - Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0Shizuku.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0Shizuku.exe InstallerSha256: C340711EAB123D952C6EEF322987045C2FB599CCAF7E72D6D8B24B1493575789 - Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0Shizuku.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.0/CrystalDiskInfo9_3_0Shizuku.exe InstallerSha256: C340711EAB123D952C6EEF322987045C2FB599CCAF7E72D6D8B24B1493575789 ManifestType: installer -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 +ReleaseDate: 2024-04-30 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml index ddbce0ee1a8ec..f1e5266fc301c 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition PackageVersion: 9.3.0 @@ -14,11 +14,9 @@ PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ Copyright: |- - © 2008-2024 hiyohiyo - © 2012-2024 kirino kasumu -# CopyrightUrl: + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Shizuku Theme. -# Description: Moniker: crystaldiskinfo-se Tags: - diagnostic @@ -31,14 +29,9 @@ Tags: - smart - ssd - utility -ReleaseNotes: |- - - Added JMicron JMS586 support (Alpha) - - Improved Silicon Motion SATA SSD support ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: FAQ DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: defaultLocale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml index 3ab14c88380fd..76430a26e297c 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition PackageVersion: 9.3.0 @@ -14,12 +14,9 @@ PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ Copyright: |- - © 2008-2024 hiyohiyo - © 2012-2024 kirino kasumu -# CopyrightUrl: + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Shizuku 主题的 CrystalDiskInfo。 -# Description: -# Moniker: Tags: - nvme - smart @@ -31,12 +28,9 @@ Tags: - 硬盘诊断 - 磁盘 - 诊断 -# ReleaseNotes: ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: 常见问题 DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: locale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml index 667c0c6cfcbe3..ff2bc6d1d57ba 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.0/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition PackageVersion: 9.3.0 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml index 0c4941b680667..6e69c50768176 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml @@ -1,21 +1,21 @@ -# Automatically updated by the winget bot at 2024/Jun/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition PackageVersion: 9.3.1 InstallerType: inno Scope: machine UpgradeBehavior: install -ReleaseDate: 2024-06-15 Installers: - Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1Shizuku.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1Shizuku.exe InstallerSha256: 6B6B90CC59895D4E4B4F791C91C16ADAD5D501690BA39E6DC0DFA31AF3422542 - Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1Shizuku.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1Shizuku.exe InstallerSha256: 6B6B90CC59895D4E4B4F791C91C16ADAD5D501690BA39E6DC0DFA31AF3422542 - Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1Shizuku.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.1/CrystalDiskInfo9_3_1Shizuku.exe InstallerSha256: 6B6B90CC59895D4E4B4F791C91C16ADAD5D501690BA39E6DC0DFA31AF3422542 ManifestType: installer -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 +ReleaseDate: 2024-06-15 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml index f0734578e9005..58027e4f85e58 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Automatically updated by the winget bot at 2024/Jun/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition PackageVersion: 9.3.1 @@ -14,8 +14,8 @@ PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ Copyright: |- - © 2008-2024 hiyohiyo - © 2012-2024 kirino kasumu + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Shizuku Theme. Moniker: crystaldiskinfo-se Tags: @@ -34,4 +34,4 @@ Documentations: - DocumentLabel: FAQ DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: defaultLocale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml index 77480004339fb..ad76a0512dbe6 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Automatically updated by the winget bot at 2024/Jun/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition PackageVersion: 9.3.1 @@ -14,8 +14,8 @@ PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ Copyright: |- - © 2008-2024 hiyohiyo - © 2012-2024 kirino kasumu + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Shizuku 主题的 CrystalDiskInfo。 Tags: - nvme @@ -33,4 +33,4 @@ Documentations: - DocumentLabel: 常见问题 DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: locale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml index d720f6abd9251..1a95a9de621d0 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.1/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2024/Jun/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition PackageVersion: 9.3.1 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml index 1c4b3dba57957..04769f5b7e1cb 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.installer.yaml @@ -1,21 +1,21 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition PackageVersion: 9.3.2 InstallerType: inno Scope: machine UpgradeBehavior: install -ReleaseDate: 2024-06-22 Installers: - Architecture: x86 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2Shizuku.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2Shizuku.exe InstallerSha256: 4A1B653AF53B99F32F08CC84D8E9C7010037E9EEDDE1C89649BBA6CC735AB474 - Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2Shizuku.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2Shizuku.exe InstallerSha256: 4A1B653AF53B99F32F08CC84D8E9C7010037E9EEDDE1C89649BBA6CC735AB474 - Architecture: arm64 - InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2Shizuku.exe/download + InstallerUrl: https://sourceforge.net/projects/crystaldiskinfo/files/9.3.2/CrystalDiskInfo9_3_2Shizuku.exe InstallerSha256: 4A1B653AF53B99F32F08CC84D8E9C7010037E9EEDDE1C89649BBA6CC735AB474 ManifestType: installer -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 +ReleaseDate: 2024-06-22 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml index c7ee14b96096d..153c17cb633a8 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition PackageVersion: 9.3.2 @@ -14,11 +14,9 @@ PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ Copyright: |- - © 2008-2024 hiyohiyo - © 2012-2024 kirino kasumu -# CopyrightUrl: + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu ShortDescription: A HDD/SSD utility software which supports a part of USB, Intel RAID and NVMe. This is CrystalDiskInfo with Shizuku Theme. -# Description: Moniker: crystaldiskinfo-se Tags: - diagnostic @@ -31,12 +29,9 @@ Tags: - smart - ssd - utility -# ReleaseNotes: ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: FAQ DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: defaultLocale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml index 57a5ced275e8f..b7acf68dbf990 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition PackageVersion: 9.3.2 @@ -14,12 +14,9 @@ PackageUrl: https://crystalmark.info/en/software/crystaldiskinfo/ License: MIT LicenseUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-license/ Copyright: |- - © 2008-2024 hiyohiyo - © 2012-2024 kirino kasumu -# CopyrightUrl: + © 2008-2025 hiyohiyo + © 2012-2025 kirino kasumu ShortDescription: 一款硬盘/SSD 实用软件,支持部分 USB、英特尔 RAID 和 NVMe。这是 Shizuku 主题的 CrystalDiskInfo。 -# Description: -# Moniker: Tags: - nvme - smart @@ -31,12 +28,9 @@ Tags: - 硬盘诊断 - 磁盘 - 诊断 -# ReleaseNotes: ReleaseNotesUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-history/ -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: 常见问题 DocumentUrl: https://crystalmark.info/en/software/crystaldiskinfo/crystaldiskinfo-faq/ ManifestType: locale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml index 325f1a6e6a92c..6d7b87ce9d3a9 100644 --- a/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml +++ b/manifests/c/CrystalDewWorld/CrystalDiskInfo/ShizukuEdition/9.3.2/CrystalDewWorld.CrystalDiskInfo.ShizukuEdition.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: CrystalDewWorld.CrystalDiskInfo.ShizukuEdition PackageVersion: 9.3.2 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cube/CubePlatform/3.9.2.1/Cube.CubePlatform.installer.yaml b/manifests/c/Cube/CubePlatform/3.9.2.1/Cube.CubePlatform.installer.yaml index 2f60c107b21a3..7b0bfadb70b36 100644 --- a/manifests/c/Cube/CubePlatform/3.9.2.1/Cube.CubePlatform.installer.yaml +++ b/manifests/c/Cube/CubePlatform/3.9.2.1/Cube.CubePlatform.installer.yaml @@ -60,7 +60,8 @@ Protocols: - asuka ReleaseDate: 2024-12-02 Installers: -- Architecture: x86 +- InstallerLocale: zh-CN + Architecture: x86 InstallerUrl: https://download.cubejoy.com/app/3.9.2.1/CubeSetup_v3.9.2.1.exe InstallerSha256: AFEDBD07167090A19B25B1EF9322EAF6C5BC530CB23159C58C695BCEA9E7BF8C - InstallerLocale: zh-HK diff --git a/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.0/CubeCodersLimited.AMPInstanceManager.installer.yaml b/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.0/CubeCodersLimited.AMPInstanceManager.installer.yaml deleted file mode 100644 index 089c92a804b45..0000000000000 --- a/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.0/CubeCodersLimited.AMPInstanceManager.installer.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/17 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: CubeCodersLimited.AMPInstanceManager -PackageVersion: 2.6.2.0 -MinimumOSVersion: 10.0.0.0 -InstallerType: wix -Installers: -- Architecture: x64 - InstallerUrl: https://downloads.cubecoders.com/AMP/Mainline/AMPSetup.msi - InstallerSha256: 760ACA392DD7A3B54D4170BF9C1301F035D52DBE55D3261ED3B1E22507E45EF3 - ProductCode: '{44C8E663-1668-4734-A365-7264ED172F9F}' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.0/CubeCodersLimited.AMPInstanceManager.yaml b/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.0/CubeCodersLimited.AMPInstanceManager.yaml deleted file mode 100644 index 09004e56d579b..0000000000000 --- a/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.0/CubeCodersLimited.AMPInstanceManager.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/17 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: CubeCodersLimited.AMPInstanceManager -PackageVersion: 2.6.2.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.2/CubeCodersLimited.AMPInstanceManager.installer.yaml b/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.2/CubeCodersLimited.AMPInstanceManager.installer.yaml new file mode 100644 index 0000000000000..0327d6d003f58 --- /dev/null +++ b/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.2/CubeCodersLimited.AMPInstanceManager.installer.yaml @@ -0,0 +1,14 @@ +# Automatically updated by the winget bot at 2025/Jul/06 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CubeCodersLimited.AMPInstanceManager +PackageVersion: 2.6.2.2 +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.cubecoders.com/AMP/Mainline/AMPSetup.msi + InstallerSha256: 794403DF9537D07A3C2EA19D6D53C2D9CB84316EDE5AE76D9498CB6933E36B07 + ProductCode: '{9CEBA56C-D22F-4EDF-8B23-95BA123184C8}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.0/CubeCodersLimited.AMPInstanceManager.locale.en-US.yaml b/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.2/CubeCodersLimited.AMPInstanceManager.locale.en-US.yaml similarity index 91% rename from manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.0/CubeCodersLimited.AMPInstanceManager.locale.en-US.yaml rename to manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.2/CubeCodersLimited.AMPInstanceManager.locale.en-US.yaml index 6729429df88f3..db4ffc2079ab3 100644 --- a/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.0/CubeCodersLimited.AMPInstanceManager.locale.en-US.yaml +++ b/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.2/CubeCodersLimited.AMPInstanceManager.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jun/17 +# Automatically updated by the winget bot at 2025/Jul/06 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CubeCodersLimited.AMPInstanceManager -PackageVersion: 2.6.2.0 +PackageVersion: 2.6.2.2 PackageLocale: en-US Publisher: CubeCoders Limited PublisherUrl: https://cubecoders.com/AMP diff --git a/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.2/CubeCodersLimited.AMPInstanceManager.yaml b/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.2/CubeCodersLimited.AMPInstanceManager.yaml new file mode 100644 index 0000000000000..679fa79768508 --- /dev/null +++ b/manifests/c/CubeCodersLimited/AMPInstanceManager/2.6.2.2/CubeCodersLimited.AMPInstanceManager.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/06 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CubeCodersLimited.AMPInstanceManager +PackageVersion: 2.6.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CubeSoft/CubeICE/3.5.1/CubeSoft.CubeICE.installer.yaml b/manifests/c/CubeSoft/CubeICE/3.5.1/CubeSoft.CubeICE.installer.yaml new file mode 100644 index 0000000000000..e6655af630191 --- /dev/null +++ b/manifests/c/CubeSoft/CubeICE/3.5.1/CubeSoft.CubeICE.installer.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CubeSoft.CubeICE +PackageVersion: 3.5.1 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: '{C765184D-FE36-4C2C-95CE-9F0C05D61988}_is1' +ReleaseDate: 2024-12-06 +AppsAndFeaturesEntries: +- ProductCode: '{C765184D-FE36-4C2C-95CE-9F0C05D61988}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\CubeICE' +Installers: +- Architecture: x86 + InstallerUrl: https://dl.cube-soft.jp/archive/cubeice-3.5.1-x86.exe + InstallerSha256: E0AF892E6DEB44BFC2DC7F687A138A2F13C85D7A7F8730F1490DDAB86EF934C2 +- Architecture: x64 + InstallerUrl: https://dl.cube-soft.jp/archive/cubeice-3.5.1-x64.exe + InstallerSha256: 554F995AF03680661C910C22BECB15CC7BE21773F8D9EE127BD3CE16ADF1A085 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CubeSoft/CubeICE/3.5.1/CubeSoft.CubeICE.locale.ja-JP.yaml b/manifests/c/CubeSoft/CubeICE/3.5.1/CubeSoft.CubeICE.locale.ja-JP.yaml new file mode 100644 index 0000000000000..150b0ffd84450 --- /dev/null +++ b/manifests/c/CubeSoft/CubeICE/3.5.1/CubeSoft.CubeICE.locale.ja-JP.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: CubeSoft.CubeICE +PackageVersion: 3.5.1 +PackageLocale: ja-JP +Publisher: CubeSoft +PublisherUrl: https://www.cube-soft.jp/ +PublisherSupportUrl: https://www.cube-soft.jp/contact.php +PrivacyUrl: https://www.cube-soft.jp/policy.php +Author: CubeSoft, Inc. +PackageName: CubeICE +License: GNU LGPLv3 +LicenseUrl: https://github.com/cube-soft/Cube.FileSystem.SevenZip/blob/master/License.md +Copyright: Copyright © 2010 CubeSoft, Inc. +CopyrightUrl: https://github.com/cube-soft/Cube.FileSystem.SevenZip/blob/master/License.md +ShortDescription: CubeICE は文字化けに強い高性能な「圧縮・解凍(展開)フリーソフト」です。 +Moniker: cubeice +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CubeSoft/CubeICE/3.5.1/CubeSoft.CubeICE.yaml b/manifests/c/CubeSoft/CubeICE/3.5.1/CubeSoft.CubeICE.yaml new file mode 100644 index 0000000000000..8e96e9aa8d1bb --- /dev/null +++ b/manifests/c/CubeSoft/CubeICE/3.5.1/CubeSoft.CubeICE.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: CubeSoft.CubeICE +PackageVersion: 3.5.1 +DefaultLocale: ja-JP +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CueLang/Cue/0.13.2/CueLang.Cue.installer.yaml b/manifests/c/CueLang/Cue/0.13.2/CueLang.Cue.installer.yaml new file mode 100644 index 0000000000000..10b9c9020586d --- /dev/null +++ b/manifests/c/CueLang/Cue/0.13.2/CueLang.Cue.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CueLang.Cue +PackageVersion: 0.13.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cue.exe +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/cue-lang/cue/releases/download/v0.13.2/cue_v0.13.2_windows_amd64.zip + InstallerSha256: 9C5513C5BBAE3AAB5B906611E8E487A999BFB69851ED3267D4FF3C488269C271 +- Architecture: arm64 + InstallerUrl: https://github.com/cue-lang/cue/releases/download/v0.13.2/cue_v0.13.2_windows_arm64.zip + InstallerSha256: B97AC155F753FF58633EC50985FF5BA90C719A5F1FBC59EA2B84E6CE2C026555 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CueLang/Cue/0.13.2/CueLang.Cue.locale.en-US.yaml b/manifests/c/CueLang/Cue/0.13.2/CueLang.Cue.locale.en-US.yaml new file mode 100644 index 0000000000000..e7012346a25c2 --- /dev/null +++ b/manifests/c/CueLang/Cue/0.13.2/CueLang.Cue.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CueLang.Cue +PackageVersion: 0.13.2 +PackageLocale: en-US +Publisher: Cue +PublisherUrl: https://github.com/cue-lang +PublisherSupportUrl: https://github.com/cue-lang/cue/issues +PackageName: Cue +PackageUrl: https://github.com/cue-lang/cue +License: Apache-2.0 +LicenseUrl: https://github.com/cue-lang/cue/blob/HEAD/LICENSE +ShortDescription: |- + CUE is an open source data constraint language which aims to simplify tasks + involving defining and using data. +Tags: +- configuration +- data +- kubernetes +- validation +ReleaseNotes: |- + Evaluator + Fix a regression causing odd number of disjuncts to misbehave in some cases. + Full list of changes since v0.13.1 + - internal/cueversion: bump for v0.13.2 by @mvdan in cfdcbe5 + - internal/core/adt: fix default logic by @mpvl in 9d0e28d + - internal/core/adt: add tests for 3958 by @mpvl in fdf8a16 +ReleaseNotesUrl: https://github.com/cue-lang/cue/releases/tag/v0.13.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CueLang/Cue/0.13.2/CueLang.Cue.yaml b/manifests/c/CueLang/Cue/0.13.2/CueLang.Cue.yaml new file mode 100644 index 0000000000000..e84ae1339635b --- /dev/null +++ b/manifests/c/CueLang/Cue/0.13.2/CueLang.Cue.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: CueLang.Cue +PackageVersion: 0.13.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CurveSeries/CurveSeries/4.88/CurveSeries.CurveSeries.installer.yaml b/manifests/c/CurveSeries/CurveSeries/4.88/CurveSeries.CurveSeries.installer.yaml new file mode 100644 index 0000000000000..3195bfa7fd573 --- /dev/null +++ b/manifests/c/CurveSeries/CurveSeries/4.88/CurveSeries.CurveSeries.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: CurveSeries.CurveSeries +PackageVersion: "4.88" +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: CURVESERIES_is1 +Installers: +- Architecture: neutral + InstallerUrl: https://www.c3excel.com/datalink/Downloads/curveseries4.88.exe + InstallerSha256: 491D024993E4CA48BE60F98E1E9DAF7EE556CEC32444D5CFC5044240B6091DE5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CurveSeries/CurveSeries/4.88/CurveSeries.CurveSeries.locale.en-US.yaml b/manifests/c/CurveSeries/CurveSeries/4.88/CurveSeries.CurveSeries.locale.en-US.yaml new file mode 100644 index 0000000000000..6feee16ed5693 --- /dev/null +++ b/manifests/c/CurveSeries/CurveSeries/4.88/CurveSeries.CurveSeries.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: CurveSeries.CurveSeries +PackageVersion: "4.88" +PackageLocale: en-US +Publisher: CURVESERIES +PublisherUrl: https://curve-series.com/ +PublisherSupportUrl: https://curve-series.com/contact-us/ +PrivacyUrl: https://curve-series.com/privacy-policy/ +Author: Curveseries Private Limited +PackageName: CURVESERIES +PackageUrl: https://curve-series.com/download/ +License: Proprietary +LicenseUrl: https://curve-series.com/terms-conditions/ +Copyright: Copyright © 2025 Curve Series. All Rights Reserved. +CopyrightUrl: https://curve-series.com/terms-conditions/ +ShortDescription: Curveseries Desktop & Excel Add-In +Description: |- + Curveseries Desktop Software helps Traders or Analysts to present market information in dashboard-style manner using Interactive Charts. + Integrating with Excel, the Add-In allows Traders or Analysts to download or upload data into our Cloud. It also has a Formula Builder that allows complex computation and retrieval of market information. +PurchaseUrl: https://curve-series.com/shop/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CurveSeries/CurveSeries/4.88/CurveSeries.CurveSeries.locale.zh-CN.yaml b/manifests/c/CurveSeries/CurveSeries/4.88/CurveSeries.CurveSeries.locale.zh-CN.yaml new file mode 100644 index 0000000000000..dc67eef20f9ef --- /dev/null +++ b/manifests/c/CurveSeries/CurveSeries/4.88/CurveSeries.CurveSeries.locale.zh-CN.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CurveSeries.CurveSeries +PackageVersion: "4.88" +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: Curveseries 桌面版及 Excel 插件 +Description: |- + Curveseries 桌面软件助力交易员或分析师通过交互式图表以仪表盘形式呈现市场信息。 + 该插件与 Excel 集成,支持交易员或分析师将数据下载或上传至云端,并配备公式构建器,可实现复杂计算及市场数据调取。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CurveSeries/CurveSeries/4.88/CurveSeries.CurveSeries.yaml b/manifests/c/CurveSeries/CurveSeries/4.88/CurveSeries.CurveSeries.yaml new file mode 100644 index 0000000000000..1b19ef6d85919 --- /dev/null +++ b/manifests/c/CurveSeries/CurveSeries/4.88/CurveSeries.CurveSeries.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: CurveSeries.CurveSeries +PackageVersion: "4.88" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.installer.yaml b/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.installer.yaml index fdccbf8af69e4..3112dd04ee483 100644 --- a/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.installer.yaml +++ b/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.installer.yaml @@ -1,5 +1,5 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: CyberHive.Connect PackageVersion: 3.7.4 @@ -9,16 +9,17 @@ Scope: machine InstallerSwitches: Custom: /MANAGED=1 UpgradeBehavior: install -ProductCode: '{EA126048-51DD-4E62-A524-9FA0C8F07C24}_is1' +ProductCode: "{EA126048-51DD-4E62-A524-9FA0C8F07C24}_is1" ReleaseDate: 2025-05-20 AppsAndFeaturesEntries: -- ProductCode: '{EA126048-51DD-4E62-A524-9FA0C8F07C24}_is1' + - ProductCode: "{EA126048-51DD-4E62-A524-9FA0C8F07C24}_is1" ElevationRequirement: elevatesSelf InstallationMetadata: DefaultInstallLocation: '%ProgramFiles%\CyberHive Connect' Installers: -- Architecture: x86 - InstallerUrl: https://pkgs.cyberhive.com/windows/stable/cyberhive-connect_3.7.4-1f1832fc.exe - InstallerSha256: 3A6099D2925CBBC35439195CA6EDA162704C6E5C07D58FC831C872BF3CC78D51 + - Architecture: x64 + # See https://github.com/microsoft/winget-pkgs/pull/268746#discussion_r2173005725 + InstallerUrl: https://pkgs.cyberhive.com/windows/stable/cyberhive-connect_3.7.4-1f1832fc.exe + InstallerSha256: 3A6099D2925CBBC35439195CA6EDA162704C6E5C07D58FC831C872BF3CC78D51 ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.locale.en-US.yaml b/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.locale.en-US.yaml index 3d80740f6ecfa..fd8dc98a09772 100644 --- a/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.locale.en-US.yaml +++ b/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: CyberHive.Connect PackageVersion: 3.7.4 @@ -20,10 +20,10 @@ Description: |- CyberHive Connect provides a Trusted Area Network - a zero trust software-defined mesh network secured with quantum-safe cryptography. Connect features high performance with low latency and fast reconnects. It is simple and scalable, with easy setup and administration. Tags: -- network -- vpn + - network + - vpn Documentations: -- DocumentLabel: Documentation - DocumentUrl: https://docs.cyberhive.com/ + - DocumentLabel: Documentation + DocumentUrl: https://docs.cyberhive.com/ ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.locale.zh-CN.yaml b/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.locale.zh-CN.yaml index 237a8d6b34b58..f8fbc59f2602a 100644 --- a/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.locale.zh-CN.yaml +++ b/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: CyberHive.Connect PackageVersion: 3.7.4 @@ -10,10 +10,10 @@ Description: |- CyberHive Connect 提供可信区域网络——一种零信任软件定义的网状网络,采用免受量子攻击的加密技术确保安全。 Connect 性能高,延迟低,可以快速重连。它操作简单、可扩展,易于设置和管理。 Tags: -- vpn -- 网络 + - vpn + - 网络 Documentations: -- DocumentLabel: 文档 - DocumentUrl: https://docs.cyberhive.com/ + - DocumentLabel: 文档 + DocumentUrl: https://docs.cyberhive.com/ ManifestType: locale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.yaml b/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.yaml index f70e332e83e1b..b8882e91acfd8 100644 --- a/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.yaml +++ b/manifests/c/CyberHive/Connect/3.7.4/CyberHive.Connect.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: CyberHive.Connect PackageVersion: 3.7.4 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/CyberHive/Connect/3.7.5/CyberHive.Connect.installer.yaml b/manifests/c/CyberHive/Connect/3.7.5/CyberHive.Connect.installer.yaml new file mode 100644 index 0000000000000..0f6c1939df882 --- /dev/null +++ b/manifests/c/CyberHive/Connect/3.7.5/CyberHive.Connect.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CyberHive.Connect +PackageVersion: 3.7.5 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallerSwitches: + Custom: /MANAGED=1 +UpgradeBehavior: install +ProductCode: '{EA126048-51DD-4E62-A524-9FA0C8F07C24}_is1' +ReleaseDate: 2025-06-25 +AppsAndFeaturesEntries: +- ProductCode: '{EA126048-51DD-4E62-A524-9FA0C8F07C24}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\CyberHive Connect' +Installers: +- Architecture: x64 + InstallerUrl: https://pkgs.cyberhive.com/windows/stable/cyberhive-connect_3.7.5-4672c8e6.exe + InstallerSha256: A4408F01D9267B1DC7915ACC0A8366B77398AFEBF6AD9190AF620A056ADF067B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CyberHive/Connect/3.7.5/CyberHive.Connect.locale.en-US.yaml b/manifests/c/CyberHive/Connect/3.7.5/CyberHive.Connect.locale.en-US.yaml new file mode 100644 index 0000000000000..6c368af13db6a --- /dev/null +++ b/manifests/c/CyberHive/Connect/3.7.5/CyberHive.Connect.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CyberHive.Connect +PackageVersion: 3.7.5 +PackageLocale: en-US +Publisher: CyberHive +PublisherUrl: https://www.cyberhive.com/ +PublisherSupportUrl: https://www.cyberhive.com/contact-us/ +PrivacyUrl: https://www.cyberhive.com/privacy-policy/ +Author: CyberHive Ltd. +PackageName: CyberHive Connect +PackageUrl: https://www.cyberhive.com/product/cyberhive-connect/ +License: Proprietary +LicenseUrl: https://www.cyberhive.com/eula/ +Copyright: © CyberHive 2024 +CopyrightUrl: https://www.cyberhive.com/terms-and-conditions/ +ShortDescription: A zero trust software-defined mesh network secured with + quantum-safe cryptography +Description: |- + CyberHive Connect provides a Trusted Area Network - a zero trust software-defined mesh network secured with quantum-safe cryptography. + Connect features high performance with low latency and fast reconnects. It is simple and scalable, with easy setup and administration. +Tags: +- network +- vpn +ReleaseNotes: |- + 25th June 2025 + + CyberHive Connect release 3.7.5 is now available for Linux and Windows. + + New features: + + - Process priority boost on Windows. + - Improved handshaking after wake from sleep. + - Allow deactivation when no default gateway is available. +ReleaseNotesUrl: https://docs.cyberhive.com/connect/release-notes/#375 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.cyberhive.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CyberHive/Connect/3.7.5/CyberHive.Connect.locale.zh-CN.yaml b/manifests/c/CyberHive/Connect/3.7.5/CyberHive.Connect.locale.zh-CN.yaml new file mode 100644 index 0000000000000..0a83d8892ffce --- /dev/null +++ b/manifests/c/CyberHive/Connect/3.7.5/CyberHive.Connect.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CyberHive.Connect +PackageVersion: 3.7.5 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 利用免受量子攻击的加密技术确保零信任软件定义的网状网络安全 +Description: |- + CyberHive Connect 提供可信区域网络——一种零信任软件定义的网状网络,采用免受量子攻击的加密技术确保安全。 + Connect 性能高,延迟低,可以快速重连。它操作简单、可扩展,易于设置和管理。 +Tags: +- vpn +- 网络 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.cyberhive.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CyberHive/Connect/3.7.5/CyberHive.Connect.yaml b/manifests/c/CyberHive/Connect/3.7.5/CyberHive.Connect.yaml new file mode 100644 index 0000000000000..c3b95d94dabff --- /dev/null +++ b/manifests/c/CyberHive/Connect/3.7.5/CyberHive.Connect.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: CyberHive.Connect +PackageVersion: 3.7.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CyberHive/Connect/3.7.6/CyberHive.Connect.installer.yaml b/manifests/c/CyberHive/Connect/3.7.6/CyberHive.Connect.installer.yaml new file mode 100644 index 0000000000000..5cf24ab5deec1 --- /dev/null +++ b/manifests/c/CyberHive/Connect/3.7.6/CyberHive.Connect.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CyberHive.Connect +PackageVersion: 3.7.6 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallerSwitches: + Custom: /MANAGED=1 +UpgradeBehavior: install +ProductCode: '{EA126048-51DD-4E62-A524-9FA0C8F07C24}_is1' +ReleaseDate: 2025-07-03 +AppsAndFeaturesEntries: +- ProductCode: '{EA126048-51DD-4E62-A524-9FA0C8F07C24}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\CyberHive Connect' +Installers: +- Architecture: x64 + InstallerUrl: https://pkgs.cyberhive.com/windows/stable/cyberhive-connect_3.7.6-466ba854.exe + InstallerSha256: 4FE5261ED90AFB0C7BB9C333F00B16DC326CADAE920C1797A0067E9D4844558E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CyberHive/Connect/3.7.6/CyberHive.Connect.locale.en-US.yaml b/manifests/c/CyberHive/Connect/3.7.6/CyberHive.Connect.locale.en-US.yaml new file mode 100644 index 0000000000000..6d08f049c7cd9 --- /dev/null +++ b/manifests/c/CyberHive/Connect/3.7.6/CyberHive.Connect.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: CyberHive.Connect +PackageVersion: 3.7.6 +PackageLocale: en-US +Publisher: CyberHive +PublisherUrl: https://www.cyberhive.com/ +PublisherSupportUrl: https://www.cyberhive.com/contact-us/ +PrivacyUrl: https://www.cyberhive.com/privacy-policy/ +Author: CyberHive Ltd. +PackageName: CyberHive Connect +PackageUrl: https://www.cyberhive.com/product/cyberhive-connect/ +License: Proprietary +LicenseUrl: https://www.cyberhive.com/eula/ +Copyright: Copyright © CyberHive Ltd. +CopyrightUrl: https://www.cyberhive.com/terms-and-conditions/ +ShortDescription: A zero trust software-defined mesh network secured with quantum-safe cryptography +Description: |- + CyberHive Connect provides a Trusted Area Network - a zero trust software-defined mesh network secured with quantum-safe cryptography. + Connect features high performance with low latency and fast reconnects. It is simple and scalable, with easy setup and administration. +Tags: +- network +- vpn +ReleaseNotesUrl: https://docs.cyberhive.com/connect/release-notes/#376 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.cyberhive.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CyberHive/Connect/3.7.6/CyberHive.Connect.locale.zh-CN.yaml b/manifests/c/CyberHive/Connect/3.7.6/CyberHive.Connect.locale.zh-CN.yaml new file mode 100644 index 0000000000000..95b8f6e260e08 --- /dev/null +++ b/manifests/c/CyberHive/Connect/3.7.6/CyberHive.Connect.locale.zh-CN.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CyberHive.Connect +PackageVersion: 3.7.6 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 利用免受量子攻击的加密技术确保零信任软件定义的网状网络安全 +Description: |- + CyberHive Connect 提供可信区域网络——一种零信任软件定义的网状网络,采用免受量子攻击的加密技术确保安全。 + Connect 性能高,延迟低,可以快速重连。它操作简单、可扩展,易于设置和管理。 +Tags: +- vpn +- 网络 +ReleaseNotesUrl: https://docs.cyberhive.com/connect/release-notes/#376 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.cyberhive.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CyberHive/Connect/3.7.6/CyberHive.Connect.yaml b/manifests/c/CyberHive/Connect/3.7.6/CyberHive.Connect.yaml new file mode 100644 index 0000000000000..b3feaf1d0a8d7 --- /dev/null +++ b/manifests/c/CyberHive/Connect/3.7.6/CyberHive.Connect.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: CyberHive.Connect +PackageVersion: 3.7.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CycloneDX/cdxgen/11.4.2/CycloneDX.cdxgen.installer.yaml b/manifests/c/CycloneDX/cdxgen/11.4.2/CycloneDX.cdxgen.installer.yaml new file mode 100644 index 0000000000000..2549ac03ff9e7 --- /dev/null +++ b/manifests/c/CycloneDX/cdxgen/11.4.2/CycloneDX.cdxgen.installer.yaml @@ -0,0 +1,18 @@ +# 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: CycloneDX.cdxgen +PackageVersion: 11.4.2 +InstallerType: portable +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/CycloneDX/cdxgen/releases/download/v11.4.2/cdxgen.exe + InstallerSha256: AD5530E5E4365D838F4D28F6735C1AFED431F61393CBC6DB3F278CBC5CA3F063 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CycloneDX/cdxgen/11.4.2/CycloneDX.cdxgen.locale.en-US.yaml b/manifests/c/CycloneDX/cdxgen/11.4.2/CycloneDX.cdxgen.locale.en-US.yaml new file mode 100644 index 0000000000000..570fe6ab0cb29 --- /dev/null +++ b/manifests/c/CycloneDX/cdxgen/11.4.2/CycloneDX.cdxgen.locale.en-US.yaml @@ -0,0 +1,132 @@ +# 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: CycloneDX.cdxgen +PackageVersion: 11.4.2 +PackageLocale: en-US +Publisher: OWASP Foundation +PublisherUrl: https://owasp.org/ +PublisherSupportUrl: https://github.com/CycloneDX/cdxgen/issues +Author: CycloneDX +PackageName: CycloneDX Generator (cdxgen) +PackageUrl: https://github.com/CycloneDX/cdxgen +License: Apache-2.0 +LicenseUrl: https://github.com/CycloneDX/cdxgen/blob/HEAD/LICENSE +ShortDescription: A polyglot tool and a library for generating various Bill of Materials in CycloneDX specification. +Description: Generate Software Bill of Materials (SBOM) for most applications and container images with a single command. Generate Operations Bill of Materials (OBOM) for Linux and Windows hosts. Integrate with any CI/CD pipeline. Automatically submit the generated BOM to your dependency track server for analysis. +Moniker: cdxgen +Tags: +- bom +- cbom +- containers +- cyclonedx +- docker +- oci +- owasp +- package-url +- purl +- saasbom +- sbom +- sca +- software-bill-of-materials +- supply-chain +ReleaseNotes: |- + What's Changed + 🧪 Testing + - Add test for boolean values by @bandhan-majumder in #2015 + 📦 Dependency Updates + - feat: biomejs 2 migration by @setchy in #1874 + - chore(deps): update docker/build-push-action action to v6 by @renovate in #1888 + - chore(deps): pin dependencies by @renovate in #1898 + - chore(deps): pin sbt/setup-sbt action to 69a46ab by @renovate in #1916 + - chore(deps): update cachix/cachix-action action to v16 by @renovate in #1913 + - chore(deps): update cachix/install-nix-action action to v31 by @renovate in #1914 + - chore(deps): update oven-sh/setup-bun action to v2 by @renovate in #1917 + - chore(deps): update actions/checkout action to v4.2.2 by @renovate in #1927 + - chore(deps): update actions/setup-node action to v4.4.0 by @renovate in #1930 + - chore(deps): update actions/setup-java action to v4.7.1 by @renovate in #1929 + - chore(deps): update actions/setup-go action to v5.5.0 - autoclosed by @renovate in #1928 + - chore(deps): update oven-sh/setup-bun action to v2.0.2 by @renovate in #1925 + - chore(deps): update docker/metadata-action action to v5.7.0 by @renovate in #1939 + - chore(deps): update github/codeql-action action to v3.29.0 by @renovate in #1942 + - chore(deps): update docker/setup-qemu-action action to v3.6.0 by @renovate in #1941 + - chore(deps): update docker/setup-buildx-action action to v3.11.1 by @renovate in #1940 + - chore(deps): update cachix/install-nix-action action to v31.4.0 by @renovate in #1934 + - chore(deps): update docker/build-push-action action to v6.18.0 by @renovate in #1937 + - chore(deps): update docker/login-action action to v3.4.0 by @renovate in #1938 + - chore(deps): update android-actions/setup-android action to v3.2.2 by @renovate in #1933 + - chore(deps): update actions/setup-python action to v5.6.0 by @renovate in #1931 + - chore(deps): update actions/upload-artifact action to v4.6.2 by @renovate in #1932 + - chore(deps): update coursier/cache-action action to v6.4.7 by @renovate in #1935 + - chore(deps): update coursier/setup-action action to v1.3.9 by @renovate in #1936 + - chore(deps): update denoland/setup-deno action to v2.0.3 by @renovate in #1924 + - chore(deps): update softprops/action-gh-release action to v2.3.2 by @renovate in #1947 + - chore(deps): update int128/docker-manifest-create-action action to v2.8.0 by @renovate in #1943 + - chore(deps): update pnpm/action-setup action to v4.1.0 by @renovate in #1945 + - chore(deps): update oras-project/setup-oras action to v1.2.3 by @renovate in #1944 + - chore(deps): update ruby/setup-ruby action to v1.245.0 by @renovate in #1946 + - chore(deps): update dependency @biomejs/biome to v2.0.4 by @renovate in #1948 + - chore(deps): update pnpm to v10.12.2 by @renovate in #1968 + - chore(deps): update endbug/add-and-commit action to v9.1.4 by @renovate in #1976 + - chore(deps): update dependency @biomejs/biome to v2.0.5 by @renovate in #1975 + - chore(deps): update pnpm to v10.12.3 by @renovate in #1980 + - chore(deps): update dependency strip-json-comments to v5 by @renovate in #1988 + - chore(deps): update mshick/add-pr-comment action to v2.8.2 by @renovate in #1995 + - chore(deps): update dependency pacote to v21 by @renovate in #1985 + - chore(deps): update dependency node-gyp to v11 by @renovate in #1984 + - chore(deps): update sbt/setup-sbt action to v1.1.10 by @renovate in #1986 + - chore(deps): update cachix/install-nix-action action to v31.4.1 by @renovate in #2003 + - chore(deps): update sbt/setup-sbt action to v1.1.11 by @renovate in #2004 + - chore(deps): update pnpm to v10.12.4 by @renovate in #2008 + - chore(deps): update github/codeql-action action to v3.29.1 by @renovate in #2011 + - chore(deps): update dependency @biomejs/biome to v2.0.6 by @renovate in #2010 + 💳 Sponsored Work + - Track optional deps in ruby by @prabhu in #1899 + Other Changes + - Move containers and containers-secure back to github-hosted by @prabhu in #1871 + - Add script for checking docker image existence by @bandhan-majumder in #1872 + - chore: bump nvmrc version by @setchy in #1875 + - Restrict the type of values that can be posted by @prabhu in #1879 + - chore: Configure Renovate by @renovate in #1886 + - fix: handle null package.json name when parsing and matching by @rlmestre in #1877 + - config(renovate): limit enabled managers by @setchy in #1892 + - config(renovate): nvm manager by @setchy in #1894 + - config(renovate): jsonata manager for biome by @setchy in #1895 + - config(renovate): pin package rules by @setchy in #1897 + - [build] Configured all checkouts to NOT persist the credentials by @malice00 in #1901 + - build: align java versions by @setchy in #1903 + - build: align node versions by @setchy in #1905 + - [build] Fixed Suse removing nodejs20 & npm20 from their repo by @malice00 in #1906 + - proto upgrade by @prabhu in #1902 + - [images] Implemented rebuild for the last 2 tags by @malice00 in #1908 + - [renovate] configured minimumReleaseAge by @malice00 in #1912 + - [build] Changed sbt/setup-sbt action to v1.1.8 by @malice00 in #1915 + - [build] Tried to optimize workflow runs even more with more detailed paths. by @malice00 in #1918 + - [renovate] Increased the renovate interval to 'daily' by @malice00 in #1921 + - config(renovate): pin github actions by @setchy in #1919 + - config(renovate): simplify setup by @setchy in #1923 + - [build] Changed the group-names to (hopefully) have runs abort on newer commits by @malice00 in #1949 + - Exclude install.sh from .dockerignore by @bandhan-majumder in #1950 + - [build] Either run on cron or push, not both by @malice00 in #1951 + - [build] Added 'nuget'-directory to .dockerignore by @malice00 in #1952 + - chore(deps): bump node versions by @bandhan-majumder in #1960 + - config(renovate): enable _VERSION dockerfile updates for node by @setchy in #1961 + - [renotavate] Addded 'postUpgradeTasks' to renovate, to have it generate a correct pnpm-lock by @malice00 in #1967 + - [build] Run binary-builds on PRs by @malice00 in #1969 + - [renovate] Removed renovate scheduling -- just send PRs when updates are found by @malice00 in #1973 + - [renovate] Adding a comment to the PR that explains the usage of the updated dependency by @malice00 in #1994 + - [renovate] Make sure there is output in the file that is used as a comment by @malice00 in #1996 + - [build] More tuning on when workflows run by @malice00 in #1997 + - [renovate] Added generating an SBOM and grepping dependency by @malice00 in #1998 + - allowlist+trace for commands and http by @prabhu in #1992 + - Bugfix - Added MVN_ARGS usage when calculating firstPom + added option to server to get boolean values by @bo156 in #2006 + - Add docs and fix for allowlist of hosts and commands by @bandhan-majumder in #2005 + - chore: GH workflow permissions by @jkowalleck in #2009 + New Contributors + - @renovate made their first contribution in #1886 + - @rlmestre made their first contribution in #1877 + - @bo156 made their first contribution in #2006 + Full Changelog: v11.4.1...v11.4.2 +ReleaseNotesUrl: https://github.com/CycloneDX/cdxgen/releases/tag/v11.4.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CycloneDX/cdxgen/11.4.2/CycloneDX.cdxgen.yaml b/manifests/c/CycloneDX/cdxgen/11.4.2/CycloneDX.cdxgen.yaml new file mode 100644 index 0000000000000..6ffa3fdcbb90f --- /dev/null +++ b/manifests/c/CycloneDX/cdxgen/11.4.2/CycloneDX.cdxgen.yaml @@ -0,0 +1,8 @@ +# 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: CycloneDX.cdxgen +PackageVersion: 11.4.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CycloneDX/cdxgen/11.4.3/CycloneDX.cdxgen.installer.yaml b/manifests/c/CycloneDX/cdxgen/11.4.3/CycloneDX.cdxgen.installer.yaml new file mode 100644 index 0000000000000..83397b11c018f --- /dev/null +++ b/manifests/c/CycloneDX/cdxgen/11.4.3/CycloneDX.cdxgen.installer.yaml @@ -0,0 +1,18 @@ +# 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: CycloneDX.cdxgen +PackageVersion: 11.4.3 +InstallerType: portable +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/CycloneDX/cdxgen/releases/download/v11.4.3/cdxgen.exe + InstallerSha256: C7B95E62D4653AE7EB7AE1A3FB765649A4AF6DA34B2B2B391D91740A3D29FA33 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CycloneDX/cdxgen/11.4.3/CycloneDX.cdxgen.locale.en-US.yaml b/manifests/c/CycloneDX/cdxgen/11.4.3/CycloneDX.cdxgen.locale.en-US.yaml new file mode 100644 index 0000000000000..91b73e11037a3 --- /dev/null +++ b/manifests/c/CycloneDX/cdxgen/11.4.3/CycloneDX.cdxgen.locale.en-US.yaml @@ -0,0 +1,133 @@ +# 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: CycloneDX.cdxgen +PackageVersion: 11.4.3 +PackageLocale: en-US +Publisher: OWASP Foundation +PublisherUrl: https://owasp.org/ +PublisherSupportUrl: https://github.com/CycloneDX/cdxgen/issues +Author: CycloneDX +PackageName: CycloneDX Generator (cdxgen) +PackageUrl: https://github.com/CycloneDX/cdxgen +License: Apache-2.0 +LicenseUrl: https://github.com/CycloneDX/cdxgen/blob/HEAD/LICENSE +ShortDescription: A polyglot tool and a library for generating various Bill of Materials in CycloneDX specification. +Description: Generate Software Bill of Materials (SBOM) for most applications and container images with a single command. Generate Operations Bill of Materials (OBOM) for Linux and Windows hosts. Integrate with any CI/CD pipeline. Automatically submit the generated BOM to your dependency track server for analysis. +Moniker: cdxgen +Tags: +- bom +- cbom +- containers +- cyclonedx +- docker +- oci +- owasp +- package-url +- purl +- saasbom +- sbom +- sca +- software-bill-of-materials +- supply-chain +ReleaseNotes: |- + Re-release of v11.4.2 because of incomplete release + What's Changed + 🧪 Testing + - Add test for boolean values by @bandhan-majumder in #2015 + 📦 Dependency Updates + - feat: biomejs 2 migration by @setchy in #1874 + - chore(deps): update docker/build-push-action action to v6 by @renovate in #1888 + - chore(deps): pin dependencies by @renovate in #1898 + - chore(deps): pin sbt/setup-sbt action to 69a46ab by @renovate in #1916 + - chore(deps): update cachix/cachix-action action to v16 by @renovate in #1913 + - chore(deps): update cachix/install-nix-action action to v31 by @renovate in #1914 + - chore(deps): update oven-sh/setup-bun action to v2 by @renovate in #1917 + - chore(deps): update actions/checkout action to v4.2.2 by @renovate in #1927 + - chore(deps): update actions/setup-node action to v4.4.0 by @renovate in #1930 + - chore(deps): update actions/setup-java action to v4.7.1 by @renovate in #1929 + - chore(deps): update actions/setup-go action to v5.5.0 - autoclosed by @renovate in #1928 + - chore(deps): update oven-sh/setup-bun action to v2.0.2 by @renovate in #1925 + - chore(deps): update docker/metadata-action action to v5.7.0 by @renovate in #1939 + - chore(deps): update github/codeql-action action to v3.29.0 by @renovate in #1942 + - chore(deps): update docker/setup-qemu-action action to v3.6.0 by @renovate in #1941 + - chore(deps): update docker/setup-buildx-action action to v3.11.1 by @renovate in #1940 + - chore(deps): update cachix/install-nix-action action to v31.4.0 by @renovate in #1934 + - chore(deps): update docker/build-push-action action to v6.18.0 by @renovate in #1937 + - chore(deps): update docker/login-action action to v3.4.0 by @renovate in #1938 + - chore(deps): update android-actions/setup-android action to v3.2.2 by @renovate in #1933 + - chore(deps): update actions/setup-python action to v5.6.0 by @renovate in #1931 + - chore(deps): update actions/upload-artifact action to v4.6.2 by @renovate in #1932 + - chore(deps): update coursier/cache-action action to v6.4.7 by @renovate in #1935 + - chore(deps): update coursier/setup-action action to v1.3.9 by @renovate in #1936 + - chore(deps): update denoland/setup-deno action to v2.0.3 by @renovate in #1924 + - chore(deps): update softprops/action-gh-release action to v2.3.2 by @renovate in #1947 + - chore(deps): update int128/docker-manifest-create-action action to v2.8.0 by @renovate in #1943 + - chore(deps): update pnpm/action-setup action to v4.1.0 by @renovate in #1945 + - chore(deps): update oras-project/setup-oras action to v1.2.3 by @renovate in #1944 + - chore(deps): update ruby/setup-ruby action to v1.245.0 by @renovate in #1946 + - chore(deps): update dependency @biomejs/biome to v2.0.4 by @renovate in #1948 + - chore(deps): update pnpm to v10.12.2 by @renovate in #1968 + - chore(deps): update endbug/add-and-commit action to v9.1.4 by @renovate in #1976 + - chore(deps): update dependency @biomejs/biome to v2.0.5 by @renovate in #1975 + - chore(deps): update pnpm to v10.12.3 by @renovate in #1980 + - chore(deps): update dependency strip-json-comments to v5 by @renovate in #1988 + - chore(deps): update mshick/add-pr-comment action to v2.8.2 by @renovate in #1995 + - chore(deps): update dependency pacote to v21 by @renovate in #1985 + - chore(deps): update dependency node-gyp to v11 by @renovate in #1984 + - chore(deps): update sbt/setup-sbt action to v1.1.10 by @renovate in #1986 + - chore(deps): update cachix/install-nix-action action to v31.4.1 by @renovate in #2003 + - chore(deps): update sbt/setup-sbt action to v1.1.11 by @renovate in #2004 + - chore(deps): update pnpm to v10.12.4 by @renovate in #2008 + - chore(deps): update github/codeql-action action to v3.29.1 by @renovate in #2011 + - chore(deps): update dependency @biomejs/biome to v2.0.6 by @renovate in #2010 + 💳 Sponsored Work + - Track optional deps in ruby by @prabhu in #1899 + Other Changes + - Move containers and containers-secure back to github-hosted by @prabhu in #1871 + - Add script for checking docker image existence by @bandhan-majumder in #1872 + - chore: bump nvmrc version by @setchy in #1875 + - Restrict the type of values that can be posted by @prabhu in #1879 + - chore: Configure Renovate by @renovate in #1886 + - fix: handle null package.json name when parsing and matching by @rlmestre in #1877 + - config(renovate): limit enabled managers by @setchy in #1892 + - config(renovate): nvm manager by @setchy in #1894 + - config(renovate): jsonata manager for biome by @setchy in #1895 + - config(renovate): pin package rules by @setchy in #1897 + - [build] Configured all checkouts to NOT persist the credentials by @malice00 in #1901 + - build: align java versions by @setchy in #1903 + - build: align node versions by @setchy in #1905 + - [build] Fixed Suse removing nodejs20 & npm20 from their repo by @malice00 in #1906 + - proto upgrade by @prabhu in #1902 + - [images] Implemented rebuild for the last 2 tags by @malice00 in #1908 + - [renovate] configured minimumReleaseAge by @malice00 in #1912 + - [build] Changed sbt/setup-sbt action to v1.1.8 by @malice00 in #1915 + - [build] Tried to optimize workflow runs even more with more detailed paths. by @malice00 in #1918 + - [renovate] Increased the renovate interval to 'daily' by @malice00 in #1921 + - config(renovate): pin github actions by @setchy in #1919 + - config(renovate): simplify setup by @setchy in #1923 + - [build] Changed the group-names to (hopefully) have runs abort on newer commits by @malice00 in #1949 + - Exclude install.sh from .dockerignore by @bandhan-majumder in #1950 + - [build] Either run on cron or push, not both by @malice00 in #1951 + - [build] Added 'nuget'-directory to .dockerignore by @malice00 in #1952 + - chore(deps): bump node versions by @bandhan-majumder in #1960 + - config(renovate): enable _VERSION dockerfile updates for node by @setchy in #1961 + - [renotavate] Addded 'postUpgradeTasks' to renovate, to have it generate a correct pnpm-lock by @malice00 in #1967 + - [build] Run binary-builds on PRs by @malice00 in #1969 + - [renovate] Removed renovate scheduling -- just send PRs when updates are found by @malice00 in #1973 + - [renovate] Adding a comment to the PR that explains the usage of the updated dependency by @malice00 in #1994 + - [renovate] Make sure there is output in the file that is used as a comment by @malice00 in #1996 + - [build] More tuning on when workflows run by @malice00 in #1997 + - [renovate] Added generating an SBOM and grepping dependency by @malice00 in #1998 + - allowlist+trace for commands and http by @prabhu in #1992 + - Bugfix - Added MVN_ARGS usage when calculating firstPom + added option to server to get boolean values by @bo156 in #2006 + - Add docs and fix for allowlist of hosts and commands by @bandhan-majumder in #2005 + - chore: GH workflow permissions by @jkowalleck in #2009 + New Contributors + - @renovate made their first contribution in #1886 + - @rlmestre made their first contribution in #1877 + - @bo156 made their first contribution in #2006 + Full Changelog: v11.4.1...v11.4.3 +ReleaseNotesUrl: https://github.com/CycloneDX/cdxgen/releases/tag/v11.4.3 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CycloneDX/cdxgen/11.4.3/CycloneDX.cdxgen.yaml b/manifests/c/CycloneDX/cdxgen/11.4.3/CycloneDX.cdxgen.yaml new file mode 100644 index 0000000000000..6e7666ecaafe5 --- /dev/null +++ b/manifests/c/CycloneDX/cdxgen/11.4.3/CycloneDX.cdxgen.yaml @@ -0,0 +1,8 @@ +# 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: CycloneDX.cdxgen +PackageVersion: 11.4.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.1.10/c0re100.qBittorrent-Enhanced-Edition.installer.yaml b/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.1.10/c0re100.qBittorrent-Enhanced-Edition.installer.yaml new file mode 100644 index 0000000000000..67eadc1d29ae9 --- /dev/null +++ b/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.1.10/c0re100.qBittorrent-Enhanced-Edition.installer.yaml @@ -0,0 +1,31 @@ +# 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: c0re100.qBittorrent-Enhanced-Edition +PackageVersion: 5.1.1.10 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- magnet +FileExtensions: +- torrent +ProductCode: qBittorrent +ReleaseDate: 2025-06-28 +AppsAndFeaturesEntries: +- DisplayName: qBittorrent + ProductCode: qBittorrent +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\qBittorrent' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/c0re100/qBittorrent-Enhanced-Edition/releases/download/release-5.1.1.10/qbittorrent_enhanced_5.1.1.10_x64_setup.exe + InstallerSha256: DFD83FE350208D7372B1D1E95E17989C410755D128CB559C9B8D01FECF8606B5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.1.10/c0re100.qBittorrent-Enhanced-Edition.locale.en-US.yaml b/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.1.10/c0re100.qBittorrent-Enhanced-Edition.locale.en-US.yaml new file mode 100644 index 0000000000000..53a3186b24188 --- /dev/null +++ b/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.1.10/c0re100.qBittorrent-Enhanced-Edition.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: c0re100.qBittorrent-Enhanced-Edition +PackageVersion: 5.1.1.10 +PackageLocale: en-US +Publisher: The qBittorrent project +PublisherUrl: https://github.com/c0re100/qBittorrent-Enhanced-Edition +PublisherSupportUrl: https://github.com/c0re100/qBittorrent-Enhanced-Edition/issues +Author: c0re100 +PackageName: qBittorrent Enhanced Edition +PackageUrl: https://github.com/c0re100/qBittorrent-Enhanced-Edition +License: GPL-2.0-only +LicenseUrl: https://raw.githubusercontent.com/c0re100/qBittorrent-Enhanced-Edition/v4_3_x/COPYING +CopyrightUrl: https://raw.githubusercontent.com/c0re100/qBittorrent-Enhanced-Edition/v4_3_x/COPYING +ShortDescription: Unofficial qBittorrent BitTorrent client (Enhanced Edition) +Description: |- + qBittorrent is a bittorrent client programmed in C++ / Qt that uses libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg. 1. + Auto Ban Xunlei, QQ, Baidu, Xfplay, DLBT and Offline downloader 2. + Temporary IP Filter API for advanced user 3. + Update MessageBox with changelog if NEW version is available 4. + Auto Ban Unknown Peer from China Option 5. + Auto Update Public Trackers List 6. + Auto Ban BitTorrent Media Player Peer Option +Moniker: qbittorrent-enhanced-edition +Tags: +- bittorrent +- foss +- open-source +- p2p +- qbittorent-fork +- sharing +- torrent-client +ReleaseNotes: |- + Changelog + 1. Official Update (v5.1.1) +ReleaseNotesUrl: https://github.com/c0re100/qBittorrent-Enhanced-Edition/releases/tag/release-5.1.1.10 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.1.10/c0re100.qBittorrent-Enhanced-Edition.yaml b/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.1.10/c0re100.qBittorrent-Enhanced-Edition.yaml new file mode 100644 index 0000000000000..860d7958a7a9e --- /dev/null +++ b/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.1.10/c0re100.qBittorrent-Enhanced-Edition.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: c0re100.qBittorrent-Enhanced-Edition +PackageVersion: 5.1.1.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.2.10/c0re100.qBittorrent-Enhanced-Edition.installer.yaml b/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.2.10/c0re100.qBittorrent-Enhanced-Edition.installer.yaml new file mode 100644 index 0000000000000..15cb96df0a014 --- /dev/null +++ b/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.2.10/c0re100.qBittorrent-Enhanced-Edition.installer.yaml @@ -0,0 +1,31 @@ +# 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: c0re100.qBittorrent-Enhanced-Edition +PackageVersion: 5.1.2.10 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- magnet +FileExtensions: +- torrent +ProductCode: qBittorrent +ReleaseDate: 2025-07-09 +AppsAndFeaturesEntries: +- DisplayName: qBittorrent + ProductCode: qBittorrent +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\qBittorrent' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/c0re100/qBittorrent-Enhanced-Edition/releases/download/release-5.1.2.10/qbittorrent_enhanced_5.1.2.10_x64_setup.exe + InstallerSha256: 7908CB34BAD76A313B69FB7B770C81EE2E3ABC7510F5BC7EC4312030304F92F4 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.2.10/c0re100.qBittorrent-Enhanced-Edition.locale.en-US.yaml b/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.2.10/c0re100.qBittorrent-Enhanced-Edition.locale.en-US.yaml new file mode 100644 index 0000000000000..bbd12e73f4375 --- /dev/null +++ b/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.2.10/c0re100.qBittorrent-Enhanced-Edition.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: c0re100.qBittorrent-Enhanced-Edition +PackageVersion: 5.1.2.10 +PackageLocale: en-US +Publisher: The qBittorrent project +PublisherUrl: https://github.com/c0re100/qBittorrent-Enhanced-Edition +PublisherSupportUrl: https://github.com/c0re100/qBittorrent-Enhanced-Edition/issues +Author: c0re100 +PackageName: qBittorrent Enhanced Edition +PackageUrl: https://github.com/c0re100/qBittorrent-Enhanced-Edition +License: GPL-2.0-only +LicenseUrl: https://raw.githubusercontent.com/c0re100/qBittorrent-Enhanced-Edition/v4_3_x/COPYING +CopyrightUrl: https://raw.githubusercontent.com/c0re100/qBittorrent-Enhanced-Edition/v4_3_x/COPYING +ShortDescription: Unofficial qBittorrent BitTorrent client (Enhanced Edition) +Description: |- + qBittorrent is a bittorrent client programmed in C++ / Qt that uses libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg. 1. + Auto Ban Xunlei, QQ, Baidu, Xfplay, DLBT and Offline downloader 2. + Temporary IP Filter API for advanced user 3. + Update MessageBox with changelog if NEW version is available 4. + Auto Ban Unknown Peer from China Option 5. + Auto Update Public Trackers List 6. + Auto Ban BitTorrent Media Player Peer Option +Moniker: qbittorrent-enhanced-edition +Tags: +- bittorrent +- foss +- open-source +- p2p +- qbittorent-fork +- sharing +- torrent-client +ReleaseNotes: |- + Changelog + 1. Official Update (v5.1.2) +ReleaseNotesUrl: https://github.com/c0re100/qBittorrent-Enhanced-Edition/releases/tag/release-5.1.2.10 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.2.10/c0re100.qBittorrent-Enhanced-Edition.yaml b/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.2.10/c0re100.qBittorrent-Enhanced-Edition.yaml new file mode 100644 index 0000000000000..242137759462c --- /dev/null +++ b/manifests/c/c0re100/qBittorrent-Enhanced-Edition/5.1.2.10/c0re100.qBittorrent-Enhanced-Edition.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: c0re100.qBittorrent-Enhanced-Edition +PackageVersion: 5.1.2.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/ca/duan/tre-command/0.4.0/ca.duan.tre-command.installer.yaml b/manifests/c/ca/duan/tre-command/0.4.0/ca.duan.tre-command.installer.yaml deleted file mode 100644 index 7e284f0618d54..0000000000000 --- a/manifests/c/ca/duan/tre-command/0.4.0/ca.duan.tre-command.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Created using wingetcreate 1.0.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.1.0.schema.json - -PackageIdentifier: ca.duan.tre-command -PackageVersion: 0.4.0 -Installers: -- InstallerUrl: https://github.com/dduan/tre/releases/download/v0.4.0/tre-v0.4.1-x86_64-pc-windows-msvc.msi - InstallerLocale: en-US - Architecture: x64 - InstallerType: wix - InstallerSha256: 154FF87E848CEFA8176E69CBF06318456CD782BC55BF067E18F385C226D268CF - ProductCode: '{719C2B87-D777-41F4-841A-F2538C9F82A5}' -ManifestType: installer -ManifestVersion: 1.1.0 - diff --git a/manifests/c/ca/duan/tre-command/0.4.0/ca.duan.tre-command.locale.en-US.yaml b/manifests/c/ca/duan/tre-command/0.4.0/ca.duan.tre-command.locale.en-US.yaml deleted file mode 100644 index f7b409c5cd74d..0000000000000 --- a/manifests/c/ca/duan/tre-command/0.4.0/ca.duan.tre-command.locale.en-US.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Created using wingetcreate 1.0.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.1.0.schema.json - -PackageIdentifier: ca.duan.tre-command -PackageVersion: 0.4.0 -PackageLocale: en-US -Publisher: Daniel Duan -PackageName: tre-command -License: MIT License -ShortDescription: Tree command, improved. -ManifestType: defaultLocale -ManifestVersion: 1.1.0 - diff --git a/manifests/c/ca/duan/tre-command/0.4.0/ca.duan.tre-command.yaml b/manifests/c/ca/duan/tre-command/0.4.0/ca.duan.tre-command.yaml deleted file mode 100644 index 3a0b83eeb84df..0000000000000 --- a/manifests/c/ca/duan/tre-command/0.4.0/ca.duan.tre-command.yaml +++ /dev/null @@ -1,9 +0,0 @@ -# Created using wingetcreate 1.0.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.1.0.schema.json - -PackageIdentifier: ca.duan.tre-command -PackageVersion: 0.4.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.1.0 - diff --git a/manifests/c/ccccraz/cogmoteGO/0.1.15/ccccraz.cogmoteGO.installer.yaml b/manifests/c/ccccraz/cogmoteGO/0.1.15/ccccraz.cogmoteGO.installer.yaml new file mode 100644 index 0000000000000..a5bf8c5ab3889 --- /dev/null +++ b/manifests/c/ccccraz/cogmoteGO/0.1.15/ccccraz.cogmoteGO.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ccccraz.cogmoteGO +PackageVersion: 0.1.15 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cogmoteGO.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-21 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ccccraz/cogmoteGO/releases/download/v0.1.15/cogmoteGO-windows-amd64-v0.1.15.zip + InstallerSha256: 9F7E7B623EA1645ABDFCCD6E6CBB069DB06987DB53CDF1A833D870122C8ACF08 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/ccccraz/cogmoteGO/0.1.15/ccccraz.cogmoteGO.locale.en-US.yaml b/manifests/c/ccccraz/cogmoteGO/0.1.15/ccccraz.cogmoteGO.locale.en-US.yaml new file mode 100644 index 0000000000000..d5b5a2950709c --- /dev/null +++ b/manifests/c/ccccraz/cogmoteGO/0.1.15/ccccraz.cogmoteGO.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ccccraz.cogmoteGO +PackageVersion: 0.1.15 +PackageLocale: en-US +Publisher: Ccccraz +PublisherUrl: https://github.com/Ccccraz +PublisherSupportUrl: https://github.com/Ccccraz/cogmoteGO/issues +Author: Ccccraz +PackageName: cogmoteGO +PackageUrl: https://github.com/Ccccraz/cogmoteGO +License: LGPL-3.0 +LicenseUrl: https://github.com/Ccccraz/cogmoteGO/blob/HEAD/LICENSE +ShortDescription: '"air traffic control" for remote neuroexperiments' +Description: 'cogmoteGO is the "air traffic control" for remote neuroexperiments: a lightweight Go system coordinating distributed data streams, commands, and full experiment lifecycle management - from deployment to data collection' +Moniker: cogmotego +ReleaseNotes: |- + [0.1.15] - 2025-06-21 + 🚀 Features + - ✨ Add CORS middleware to allow requests from localhost:1420 (#98) by @Ccccraz in #98 + - ✨ Add device routes to display system and hardware information (#102) by @Ccccraz in #102 + - 💥 add /api prefix for all endpoint (#103) by @Ccccraz in #103 + 📚 Documentation + - 📝 add winget (#95) by @Ccccraz in #95 + Full Changelog: v0.1.14...v0.1.15 +ReleaseNotesUrl: https://github.com/Ccccraz/cogmoteGO/releases/tag/v0.1.15 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/ccccraz/cogmoteGO/0.1.15/ccccraz.cogmoteGO.yaml b/manifests/c/ccccraz/cogmoteGO/0.1.15/ccccraz.cogmoteGO.yaml new file mode 100644 index 0000000000000..7e1d228511566 --- /dev/null +++ b/manifests/c/ccccraz/cogmoteGO/0.1.15/ccccraz.cogmoteGO.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: ccccraz.cogmoteGO +PackageVersion: 0.1.15 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/cebby2420/VIADesktop/2025.6.30/cebby2420.VIADesktop.installer.yaml b/manifests/c/cebby2420/VIADesktop/2025.6.30/cebby2420.VIADesktop.installer.yaml new file mode 100644 index 0000000000000..7f40a3d1bbafb --- /dev/null +++ b/manifests/c/cebby2420/VIADesktop/2025.6.30/cebby2420.VIADesktop.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: cebby2420.VIADesktop +PackageVersion: 2025.6.30 +InstallerType: exe +Scope: user +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +ProductCode: via_desktop +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/cebby2420/via-desktop/releases/download/v2025.6.30/via-desktop-2025.6.30.Setup.exe + InstallerSha256: ACD2CFB6D0470258171F6BAAE551463114CBBD7F7887EB2213231DFA9C0F439F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/cebby2420/VIADesktop/2025.6.30/cebby2420.VIADesktop.locale.en-US.yaml b/manifests/c/cebby2420/VIADesktop/2025.6.30/cebby2420.VIADesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..9f709bd77999f --- /dev/null +++ b/manifests/c/cebby2420/VIADesktop/2025.6.30/cebby2420.VIADesktop.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: cebby2420.VIADesktop +PackageVersion: 2025.6.30 +PackageLocale: en-US +Publisher: Cebby +PublisherUrl: https://github.com/cebby2420 +PublisherSupportUrl: https://github.com/cebby2420/via-desktop/issues +PackageName: via-desktop +PackageUrl: https://github.com/cebby2420/via-desktop +License: GPL-3.0 +LicenseUrl: https://github.com/cebby2420/via-desktop/blob/HEAD/LICENSE +ShortDescription: An Electron application designed to provide an offline experience for VIA. +Tags: +- keyboard +- via +ReleaseNotesUrl: https://github.com/cebby2420/via-desktop/releases/tag/v2025.6.30 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/cebby2420/VIADesktop/2025.6.30/cebby2420.VIADesktop.locale.zh-CN.yaml b/manifests/c/cebby2420/VIADesktop/2025.6.30/cebby2420.VIADesktop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9f45616cf1042 --- /dev/null +++ b/manifests/c/cebby2420/VIADesktop/2025.6.30/cebby2420.VIADesktop.locale.zh-CN.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: cebby2420.VIADesktop +PackageVersion: 2025.6.30 +PackageLocale: zh-CN +ShortDescription: 一款专为离线使用 VIA 而设计的 Electron 应用程序。 +Tags: +- via +- 键盘 +ReleaseNotesUrl: https://github.com/cebby2420/via-desktop/releases/tag/v2025.6.30 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/cebby2420/VIADesktop/2025.6.30/cebby2420.VIADesktop.yaml b/manifests/c/cebby2420/VIADesktop/2025.6.30/cebby2420.VIADesktop.yaml new file mode 100644 index 0000000000000..7bae3514c0e2c --- /dev/null +++ b/manifests/c/cebby2420/VIADesktop/2025.6.30/cebby2420.VIADesktop.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: cebby2420.VIADesktop +PackageVersion: 2025.6.30 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/cebby2420/VIADesktop/2025.7.7/cebby2420.VIADesktop.installer.yaml b/manifests/c/cebby2420/VIADesktop/2025.7.7/cebby2420.VIADesktop.installer.yaml new file mode 100644 index 0000000000000..a1a25556577dd --- /dev/null +++ b/manifests/c/cebby2420/VIADesktop/2025.7.7/cebby2420.VIADesktop.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: cebby2420.VIADesktop +PackageVersion: 2025.7.7 +InstallerType: exe +Scope: user +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +ProductCode: via_desktop +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/cebby2420/via-desktop/releases/download/v2025.7.7/via-desktop-2025.7.7.Setup.exe + InstallerSha256: 3943398F8468A489C3D34B70A3FDE8301CAAB1C000792166DC64C8BD1CA4E4EC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/cebby2420/VIADesktop/2025.7.7/cebby2420.VIADesktop.locale.en-US.yaml b/manifests/c/cebby2420/VIADesktop/2025.7.7/cebby2420.VIADesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..e2f9812e3b408 --- /dev/null +++ b/manifests/c/cebby2420/VIADesktop/2025.7.7/cebby2420.VIADesktop.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: cebby2420.VIADesktop +PackageVersion: 2025.7.7 +PackageLocale: en-US +Publisher: Cebby +PublisherUrl: https://github.com/cebby2420 +PublisherSupportUrl: https://github.com/cebby2420/via-desktop/issues +PackageName: via-desktop +PackageUrl: https://github.com/cebby2420/via-desktop +License: GPL-3.0 +LicenseUrl: https://github.com/cebby2420/via-desktop/blob/HEAD/LICENSE +ShortDescription: An Electron application designed to provide an offline experience for VIA. +Tags: +- keyboard +- via +ReleaseNotesUrl: https://github.com/cebby2420/via-desktop/releases/tag/v2025.7.7 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/cebby2420/VIADesktop/2025.7.7/cebby2420.VIADesktop.locale.zh-CN.yaml b/manifests/c/cebby2420/VIADesktop/2025.7.7/cebby2420.VIADesktop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2327b860e57eb --- /dev/null +++ b/manifests/c/cebby2420/VIADesktop/2025.7.7/cebby2420.VIADesktop.locale.zh-CN.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: cebby2420.VIADesktop +PackageVersion: 2025.7.7 +PackageLocale: zh-CN +ShortDescription: 一款专为离线使用 VIA 而设计的 Electron 应用程序。 +Tags: +- via +- 键盘 +ReleaseNotesUrl: https://github.com/cebby2420/via-desktop/releases/tag/v2025.7.7 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/cebby2420/VIADesktop/2025.7.7/cebby2420.VIADesktop.yaml b/manifests/c/cebby2420/VIADesktop/2025.7.7/cebby2420.VIADesktop.yaml new file mode 100644 index 0000000000000..74211d224a5ec --- /dev/null +++ b/manifests/c/cebby2420/VIADesktop/2025.7.7/cebby2420.VIADesktop.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: cebby2420.VIADesktop +PackageVersion: 2025.7.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/chaosweasl/interva/1.0.1/chaosweasl.interva.installer.yaml b/manifests/c/chaosweasl/interva/1.0.1/chaosweasl.interva.installer.yaml deleted file mode 100644 index 1bef5e7a29952..0000000000000 --- a/manifests/c/chaosweasl/interva/1.0.1/chaosweasl.interva.installer.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Created using wingetcreate 1.9.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: chaosweasl.interva -PackageVersion: 1.0.1 -InstallerLocale: en-US -InstallerType: wix -ProductCode: '{7ADF93EB-1C83-4441-8316-F39D8CB30DF2}' -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/chaosweasl/interva/releases/download/v1.0.1/interva_1.0.1_x64_en-US.msi - InstallerSha256: A19071572E002045E53A7F36E2508147D75B6A871B9C348B7D586D9658138DB4 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/c/chaosweasl/interva/1.0.1/chaosweasl.interva.locale.en-US.yaml b/manifests/c/chaosweasl/interva/1.0.1/chaosweasl.interva.locale.en-US.yaml deleted file mode 100644 index 8d141fd15b9f2..0000000000000 --- a/manifests/c/chaosweasl/interva/1.0.1/chaosweasl.interva.locale.en-US.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Created using wingetcreate 1.9.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: chaosweasl.interva -PackageVersion: 1.0.1 -PackageLocale: en-US -Publisher: chaosweasl -PackageName: interva -License: MIT License -ShortDescription: Pomodoro timer for boosting productivity -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/c/chaosweasl/interva/1.0.1/chaosweasl.interva.yaml b/manifests/c/chaosweasl/interva/1.0.1/chaosweasl.interva.yaml deleted file mode 100644 index 488a60c8f257e..0000000000000 --- a/manifests/c/chaosweasl/interva/1.0.1/chaosweasl.interva.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.9.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: chaosweasl.interva -PackageVersion: 1.0.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/c/chaosweasl/interva/1.2.0/chaosweasl.interva.installer.yaml b/manifests/c/chaosweasl/interva/1.2.0/chaosweasl.interva.installer.yaml new file mode 100644 index 0000000000000..8c73eeb4e9a07 --- /dev/null +++ b/manifests/c/chaosweasl/interva/1.2.0/chaosweasl.interva.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: chaosweasl.interva +PackageVersion: 1.2.0 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{30E046EF-2C8B-471E-8400-D4282EC36E32}' +ReleaseDate: 2025-06-22 +AppsAndFeaturesEntries: +- Publisher: interva + ProductCode: '{30E046EF-2C8B-471E-8400-D4282EC36E32}' + UpgradeCode: '{A6E0A20C-F36C-526C-B801-BDB156DA8DE5}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\interva' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/chaosweasl/interva/releases/download/v1.2.0/interva_1.2.0_x64_en-US.msi + InstallerSha256: 48CC5B4EE6C4C62743C2609ED4CB3105343BD9D2CF19A92D16A1B94F52854E83 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/chaosweasl/interva/1.2.0/chaosweasl.interva.locale.en-US.yaml b/manifests/c/chaosweasl/interva/1.2.0/chaosweasl.interva.locale.en-US.yaml new file mode 100644 index 0000000000000..b5789b76f44bb --- /dev/null +++ b/manifests/c/chaosweasl/interva/1.2.0/chaosweasl.interva.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: chaosweasl.interva +PackageVersion: 1.2.0 +PackageLocale: en-US +Publisher: chaosweasl +PublisherUrl: https://github.com/chaosweasl +PublisherSupportUrl: https://github.com/chaosweasl/interva/issues +PackageName: interva +PackageUrl: https://github.com/chaosweasl/interva +License: MIT +LicenseUrl: https://github.com/chaosweasl/interva/blob/HEAD/LICENSE +ShortDescription: Pomodoro timer for boosting productivity +Tags: +- app +- open-source +- students +- tauri +ReleaseNotes: |- + Interva is now officially supported on Linux and macOS too! + For MacOS: + - Download the .dmg file + - If you're having trouble installing it (which you likely will, since the app isn't signed with a developer license), try running the following command: + - sudo xattr -rd com.apple.quarantine "/Users/(your username)/Downloads/interva_1.2.0_aarch64.dmg" (replace 'your username' with your actual macOS username) + For Windows: + - Download the .msi file + - Run the file. If the Windows Defender pops up, click on 'more info' and then on 'run anyway'. Additionally, if that doesn't work, try temporarily disabling the Windows antivirus real-time protection. + Linux users, I trust you to figure it out, you use Linux for a reason +ReleaseNotesUrl: https://github.com/chaosweasl/interva/releases/tag/v1.2.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/chaosweasl/interva/1.2.0/chaosweasl.interva.yaml b/manifests/c/chaosweasl/interva/1.2.0/chaosweasl.interva.yaml new file mode 100644 index 0000000000000..43dc488ddc9cd --- /dev/null +++ b/manifests/c/chaosweasl/interva/1.2.0/chaosweasl.interva.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: chaosweasl.interva +PackageVersion: 1.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/chaosweasl/interva/1.2.1/chaosweasl.interva.installer.yaml b/manifests/c/chaosweasl/interva/1.2.1/chaosweasl.interva.installer.yaml new file mode 100644 index 0000000000000..4f9b7d5d89f36 --- /dev/null +++ b/manifests/c/chaosweasl/interva/1.2.1/chaosweasl.interva.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: chaosweasl.interva +PackageVersion: 1.2.1 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{332833D5-CE2E-4749-ACD8-A03C464FAC2D}' +ReleaseDate: 2025-06-28 +AppsAndFeaturesEntries: +- Publisher: interva + ProductCode: '{332833D5-CE2E-4749-ACD8-A03C464FAC2D}' + UpgradeCode: '{A6E0A20C-F36C-526C-B801-BDB156DA8DE5}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\interva' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/chaosweasl/interva/releases/download/v1.2.1/interva_1.2.1_x64_en-US.msi + InstallerSha256: AE67F68EE8E3516E10F4CC8615B75D1B1E01EBBB1FD93514A92EB960A526F33E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/chaosweasl/interva/1.2.1/chaosweasl.interva.locale.en-US.yaml b/manifests/c/chaosweasl/interva/1.2.1/chaosweasl.interva.locale.en-US.yaml new file mode 100644 index 0000000000000..38d3db0834591 --- /dev/null +++ b/manifests/c/chaosweasl/interva/1.2.1/chaosweasl.interva.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: chaosweasl.interva +PackageVersion: 1.2.1 +PackageLocale: en-US +Publisher: chaosweasl +PublisherUrl: https://github.com/chaosweasl +PublisherSupportUrl: https://github.com/chaosweasl/interva/issues +PackageName: interva +PackageUrl: https://github.com/chaosweasl/interva +License: MIT +LicenseUrl: https://github.com/chaosweasl/interva/blob/HEAD/LICENSE +ShortDescription: Pomodoro timer for boosting productivity +Tags: +- app +- open-source +- students +- tauri +ReleaseNotes: |- + Fixed major performance issues + 🛠️ macOS Installation Guide + Note: This guide is for users downloading the unsigned .dmg build on macOS. You can also download the app using the .app.tar.gz, but this guide is not valid for that. + 1. Download & Mount + 1. Download the DMG file (e.g. interva_1.2.1_aarch64.dmg). + 2. Double-click it to mount. + 2. Remove Gatekeeper Quarantine Flag + macOS may block unsigned apps. To bypass: + 1. Open Terminal (Applications → Utilities). + 2. Run: + sudo xattr -rd com.apple.quarantine "/Users/$(whoami)/Downloads/interva_1.2.1_aarch64.dmg" + 🛠️ Windows Installation Guide: + 1. Download the .msi file + 2.Run the file. + - If the Windows Defender pops up, click on 'more info' and then on 'run anyway'. + - Additionally, if that doesn't work, try temporarily disabling the Windows antivirus real-time protection. + 🛠️ Linux users, I trust you to figure it out, you use Linux for a reason +ReleaseNotesUrl: https://github.com/chaosweasl/interva/releases/tag/v1.2.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/chaosweasl/interva/1.2.1/chaosweasl.interva.yaml b/manifests/c/chaosweasl/interva/1.2.1/chaosweasl.interva.yaml new file mode 100644 index 0000000000000..01f837a2f3eb3 --- /dev/null +++ b/manifests/c/chaosweasl/interva/1.2.1/chaosweasl.interva.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: chaosweasl.interva +PackageVersion: 1.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/gum/0.16.2/charmbracelet.gum.installer.yaml b/manifests/c/charmbracelet/gum/0.16.2/charmbracelet.gum.installer.yaml new file mode 100644 index 0000000000000..ae0d29558f593 --- /dev/null +++ b/manifests/c/charmbracelet/gum/0.16.2/charmbracelet.gum.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: charmbracelet.gum +PackageVersion: 0.16.2 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-06-23" +Installers: + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: gum_0.16.2_Windows_i386\gum.exe + PortableCommandAlias: gum + InstallerUrl: https://github.com/charmbracelet/gum/releases/download/v0.16.2/gum_0.16.2_Windows_i386.zip + InstallerSha256: 042e24db644c140ff3f33b8c1147877f84c9b31267ed911c8cc3f7ce0bac7e9a + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: gum_0.16.2_Windows_x86_64\gum.exe + PortableCommandAlias: gum + InstallerUrl: https://github.com/charmbracelet/gum/releases/download/v0.16.2/gum_0.16.2_Windows_x86_64.zip + InstallerSha256: d7b93d74fce3dfebea38b16913cd933f7033e7f4237ac1aa6d28b529fbaec004 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/gum/0.16.2/charmbracelet.gum.locale.en-US.yaml b/manifests/c/charmbracelet/gum/0.16.2/charmbracelet.gum.locale.en-US.yaml new file mode 100644 index 0000000000000..18ec1a055b7ce --- /dev/null +++ b/manifests/c/charmbracelet/gum/0.16.2/charmbracelet.gum.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.gum +PackageVersion: 0.16.2 +PackageLocale: en-US +Publisher: charmbracelet +PackageName: gum +PackageUrl: https://charm.sh/ +License: MIT +Copyright: Charmbracelet, Inc +ShortDescription: A tool for glamorous shell scripts +Moniker: gum +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/gum/0.16.2/charmbracelet.gum.yaml b/manifests/c/charmbracelet/gum/0.16.2/charmbracelet.gum.yaml new file mode 100644 index 0000000000000..f8354cd43ea86 --- /dev/null +++ b/manifests/c/charmbracelet/gum/0.16.2/charmbracelet.gum.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.gum +PackageVersion: 0.16.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/mods/1.8.0/charmbracelet.mods.installer.yaml b/manifests/c/charmbracelet/mods/1.8.0/charmbracelet.mods.installer.yaml new file mode 100644 index 0000000000000..4cffc3476ac60 --- /dev/null +++ b/manifests/c/charmbracelet/mods/1.8.0/charmbracelet.mods.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: charmbracelet.mods +PackageVersion: 1.8.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-03" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: mods_1.8.0_Windows_x86_64\mods.exe + PortableCommandAlias: mods + InstallerUrl: https://github.com/charmbracelet/mods/releases/download/v1.8.0/mods_1.8.0_Windows_x86_64.zip + InstallerSha256: 12ad17b0ff1b4c67e9c34f215acaac843c9c03bc5d5865968c5193f110a2c00f + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: mods_1.8.0_Windows_arm64\mods.exe + PortableCommandAlias: mods + InstallerUrl: https://github.com/charmbracelet/mods/releases/download/v1.8.0/mods_1.8.0_Windows_arm64.zip + InstallerSha256: 710d49da76f6aadc2974075919226249b69acd9a432874101d366bee18a167c7 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/mods/1.8.0/charmbracelet.mods.locale.en-US.yaml b/manifests/c/charmbracelet/mods/1.8.0/charmbracelet.mods.locale.en-US.yaml new file mode 100644 index 0000000000000..7d943666bb321 --- /dev/null +++ b/manifests/c/charmbracelet/mods/1.8.0/charmbracelet.mods.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.mods +PackageVersion: 1.8.0 +PackageLocale: en-US +Publisher: charmbracelet +PackageName: mods +PackageUrl: https://charm.sh/ +License: MIT +Copyright: Charmbracelet, Inc +ShortDescription: AI on the command line +Moniker: mods +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/mods/1.8.0/charmbracelet.mods.yaml b/manifests/c/charmbracelet/mods/1.8.0/charmbracelet.mods.yaml new file mode 100644 index 0000000000000..cd77511563b2b --- /dev/null +++ b/manifests/c/charmbracelet/mods/1.8.0/charmbracelet.mods.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.mods +PackageVersion: 1.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/soft-serve/0.9.0/charmbracelet.soft-serve.installer.yaml b/manifests/c/charmbracelet/soft-serve/0.9.0/charmbracelet.soft-serve.installer.yaml new file mode 100644 index 0000000000000..7c55717738dda --- /dev/null +++ b/manifests/c/charmbracelet/soft-serve/0.9.0/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.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-03" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: soft-serve_0.9.0_Windows_x86_64\soft.exe + PortableCommandAlias: soft + InstallerUrl: https://github.com/charmbracelet/soft-serve/releases/download/v0.9.0/soft-serve_0.9.0_Windows_x86_64.zip + InstallerSha256: 1a67886677fd763275fe74ea74c35dd7eb5975f3d264aec8c8063bda6e107bbd + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/soft-serve/0.9.0/charmbracelet.soft-serve.locale.en-US.yaml b/manifests/c/charmbracelet/soft-serve/0.9.0/charmbracelet.soft-serve.locale.en-US.yaml new file mode 100644 index 0000000000000..bc9f26702c20d --- /dev/null +++ b/manifests/c/charmbracelet/soft-serve/0.9.0/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.0 +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.0/charmbracelet.soft-serve.yaml b/manifests/c/charmbracelet/soft-serve/0.9.0/charmbracelet.soft-serve.yaml new file mode 100644 index 0000000000000..d0ea9fea95824 --- /dev/null +++ b/manifests/c/charmbracelet/soft-serve/0.9.0/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.0 +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/c/charmbracelet/vhs/0.10.0/charmbracelet.vhs.installer.yaml b/manifests/c/charmbracelet/vhs/0.10.0/charmbracelet.vhs.installer.yaml new file mode 100644 index 0000000000000..5ed50252800e9 --- /dev/null +++ b/manifests/c/charmbracelet/vhs/0.10.0/charmbracelet.vhs.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: charmbracelet.vhs +PackageVersion: 0.10.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-06-17" +Installers: + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: vhs_0.10.0_Windows_i386\vhs.exe + PortableCommandAlias: vhs + InstallerUrl: https://github.com/charmbracelet/vhs/releases/download/v0.10.0/vhs_0.10.0_Windows_i386.zip + InstallerSha256: 3877df84e95a0a48e2ed611bf5b68f69d7905f39e6cd5345f1244dbc4bf2a5e7 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: vhs_0.10.0_Windows_x86_64\vhs.exe + PortableCommandAlias: vhs + InstallerUrl: https://github.com/charmbracelet/vhs/releases/download/v0.10.0/vhs_0.10.0_Windows_x86_64.zip + InstallerSha256: 7f5cffbbd01fe4229af0540856ddc0da933af0c16c05b1fbe62e0ef2097038a8 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/vhs/0.10.0/charmbracelet.vhs.locale.en-US.yaml b/manifests/c/charmbracelet/vhs/0.10.0/charmbracelet.vhs.locale.en-US.yaml new file mode 100644 index 0000000000000..427c5fd893121 --- /dev/null +++ b/manifests/c/charmbracelet/vhs/0.10.0/charmbracelet.vhs.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.vhs +PackageVersion: 0.10.0 +PackageLocale: en-US +Publisher: charmbracelet +PackageName: vhs +PackageUrl: https://charm.sh/ +License: MIT +Copyright: Charmbracelet, Inc +ShortDescription: A tool for recording terminal GIFs +Moniker: vhs +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/vhs/0.10.0/charmbracelet.vhs.yaml b/manifests/c/charmbracelet/vhs/0.10.0/charmbracelet.vhs.yaml new file mode 100644 index 0000000000000..8d4587916991a --- /dev/null +++ b/manifests/c/charmbracelet/vhs/0.10.0/charmbracelet.vhs.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.vhs +PackageVersion: 0.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/wishlist/0.15.2/charmbracelet.wishlist.installer.yaml b/manifests/c/charmbracelet/wishlist/0.15.2/charmbracelet.wishlist.installer.yaml new file mode 100644 index 0000000000000..dcbbc8d30cf8d --- /dev/null +++ b/manifests/c/charmbracelet/wishlist/0.15.2/charmbracelet.wishlist.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: charmbracelet.wishlist +PackageVersion: 0.15.2 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-06-23" +Installers: + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: wishlist_0.15.2_Windows_i386\wishlist.exe + PortableCommandAlias: wishlist + InstallerUrl: https://github.com/charmbracelet/wishlist/releases/download/v0.15.2/wishlist_0.15.2_Windows_i386.zip + InstallerSha256: c58d5e8df11a2a12f16eb147392d3844cc9885172520e6c039e9fe92137c9bca + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: wishlist_0.15.2_Windows_x86_64\wishlist.exe + PortableCommandAlias: wishlist + InstallerUrl: https://github.com/charmbracelet/wishlist/releases/download/v0.15.2/wishlist_0.15.2_Windows_x86_64.zip + InstallerSha256: b0122f03751ba00bbc9678814d31319f823e9b0a3f4e0790f36f7c7e6e11e945 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/wishlist/0.15.2/charmbracelet.wishlist.locale.en-US.yaml b/manifests/c/charmbracelet/wishlist/0.15.2/charmbracelet.wishlist.locale.en-US.yaml new file mode 100644 index 0000000000000..a5c5c61ee6127 --- /dev/null +++ b/manifests/c/charmbracelet/wishlist/0.15.2/charmbracelet.wishlist.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.wishlist +PackageVersion: 0.15.2 +PackageLocale: en-US +Publisher: charmbracelet +PackageName: wishlist +PackageUrl: https://charm.sh/ +License: MIT +Copyright: Charmbracelet, Inc +ShortDescription: The SSH directory +Moniker: wishlist +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/wishlist/0.15.2/charmbracelet.wishlist.yaml b/manifests/c/charmbracelet/wishlist/0.15.2/charmbracelet.wishlist.yaml new file mode 100644 index 0000000000000..41555fc852bb0 --- /dev/null +++ b/manifests/c/charmbracelet/wishlist/0.15.2/charmbracelet.wishlist.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.wishlist +PackageVersion: 0.15.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/chrox/Readest/0.9.61/chrox.Readest.installer.yaml b/manifests/c/chrox/Readest/0.9.61/chrox.Readest.installer.yaml new file mode 100644 index 0000000000000..e56a128294c93 --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.61/chrox.Readest.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: chrox.Readest +PackageVersion: 0.9.61 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +Protocols: +- readest +FileExtensions: +- azw +- azw3 +- cbz +- epub +- fb2 +- mobi +- pdf +ProductCode: Readest +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/readest/readest/releases/download/v0.9.61/Readest_0.9.61_x64-setup.exe + InstallerSha256: A3E0FE5FECFB7CF564A4EED1D999A1F914E2B50CF8B1692F183ABDA56CB10D8A +- Architecture: arm64 + InstallerUrl: https://github.com/readest/readest/releases/download/v0.9.61/Readest_0.9.61_arm64-setup.exe + InstallerSha256: 8A0488A433017CAEFDEF8AFBE7FCDB037DB909D7516C3107F829E3EDB9FD1D3A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/chrox/Readest/0.9.61/chrox.Readest.locale.en-US.yaml b/manifests/c/chrox/Readest/0.9.61/chrox.Readest.locale.en-US.yaml new file mode 100644 index 0000000000000..d647143306585 --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.61/chrox.Readest.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: chrox.Readest +PackageVersion: 0.9.61 +PackageLocale: en-US +Publisher: bilingify +PublisherUrl: https://readest.com/ +PublisherSupportUrl: https://github.com/readest/readest/issues +PrivacyUrl: https://readest.com/privacy-policy +Author: Huang Xin +PackageName: Readest +PackageUrl: https://readest.com/ +License: AGPL-3.0 +LicenseUrl: https://github.com/readest/readest/blob/HEAD/LICENSE +Copyright: © 2025 Bilingify LLC. All rights reserved. +CopyrightUrl: https://readest.com/terms-of-service +ShortDescription: An open-source ebook reader designed for immersive and deep reading experiences. +Description: Readest is a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience. +Tags: +- ebook +- epub +- mobi +- pdf +- reader +- viewer +ReleaseNotes: |- + What's Changed + - doc: add donation badge and link with crypto payment by @chrox in https://github.com/readest/readest/pull/1457 + - doc: add the Support section in README by @chrox in https://github.com/readest/readest/pull/1458 + - chore: bump opennextjs and wrangler to latest versions by @chrox in https://github.com/readest/readest/pull/1460 + - fix: longer timeout to save changes before reloading page by @chrox in https://github.com/readest/readest/pull/1461 + - layout: view menu now has a maximum width, closes #1459 by @chrox in https://github.com/readest/readest/pull/1463 + - android: fix transparent icon background on Android, closes #1462 by @chrox in https://github.com/readest/readest/pull/1464 + - feat: custom css for the reader UI by @chrox in https://github.com/readest/readest/pull/1466 + - doc: adjust the priority of the readest koplugin for Koreader by @chrox in https://github.com/readest/readest/pull/1467 + - feat: add an option in the view menu to crop or fit book covers of the library page by @chrox in https://github.com/readest/readest/pull/1469 + - bump: update tauri to latest dev branch, closes #1468 by @chrox in https://github.com/readest/readest/pull/1471 + - chore: use default production supabase and posthog if not customized, closes #1454 by @chrox in https://github.com/readest/readest/pull/1473 + - chore: update assetlinks and deeplink for Android by @chrox in https://github.com/readest/readest/pull/1474 + - feat: add options to reset settings in the config dialog, closes #1111 by @chrox in https://github.com/readest/readest/pull/1475 + - fix: EPUB covers occasionally fail to display in library view, closes #1029 by @chrox in https://github.com/readest/readest/pull/1476 + - fix: get correct filename when importing txt files on iOS by @chrox in https://github.com/readest/readest/pull/1477 + - feat: add an option to show remaining pages in chapter by @chrox in https://github.com/readest/readest/pull/1478 + - release: version 0.9.61 by @chrox in https://github.com/readest/readest/pull/1479 + Full Changelog: https://github.com/readest/readest/compare/v0.9.60...v0.9.61 +ReleaseNotesUrl: https://github.com/readest/readest/releases/tag/v0.9.61 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/chrox/Readest/0.9.61/chrox.Readest.locale.zh-CN.yaml b/manifests/c/chrox/Readest/0.9.61/chrox.Readest.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8c1d97254f15c --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.61/chrox.Readest.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: chrox.Readest +PackageVersion: 0.9.61 +PackageLocale: zh-CN +ShortDescription: 一款注重沉浸式深度阅读体验的开源电子书阅读器。 +Description: Readest 是一款多功能的现代电子书阅读器,专为书迷设计,提供无缝跨平台访问、强大的工具和直观的界面,提升您的阅读体验。 +Tags: +- epub +- mobi +- pdf +- 电子书 +- 阅读器 +ReleaseNotesUrl: https://github.com/readest/readest/releases/tag/v0.9.61 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/chrox/Readest/0.9.61/chrox.Readest.yaml b/manifests/c/chrox/Readest/0.9.61/chrox.Readest.yaml new file mode 100644 index 0000000000000..54dcdef5b184a --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.61/chrox.Readest.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: chrox.Readest +PackageVersion: 0.9.61 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/chrox/Readest/0.9.62/chrox.Readest.installer.yaml b/manifests/c/chrox/Readest/0.9.62/chrox.Readest.installer.yaml new file mode 100644 index 0000000000000..76fd3bb966629 --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.62/chrox.Readest.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: chrox.Readest +PackageVersion: 0.9.62 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +Protocols: +- readest +FileExtensions: +- azw +- azw3 +- cbz +- epub +- fb2 +- mobi +- pdf +ProductCode: Readest +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/readest/readest/releases/download/v0.9.62/Readest_0.9.62_x64-setup.exe + InstallerSha256: AD8F5A4310A3772566FB25345C16D29B6BA88950A99863257A91875EB967AF4A +- Architecture: arm64 + InstallerUrl: https://github.com/readest/readest/releases/download/v0.9.62/Readest_0.9.62_arm64-setup.exe + InstallerSha256: 5087C8297211DE45D62F8D5C02A85080D3932FED6F87B9702361EE0DF84CE78D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/chrox/Readest/0.9.62/chrox.Readest.locale.en-US.yaml b/manifests/c/chrox/Readest/0.9.62/chrox.Readest.locale.en-US.yaml new file mode 100644 index 0000000000000..c2a377e5b1f08 --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.62/chrox.Readest.locale.en-US.yaml @@ -0,0 +1,50 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: chrox.Readest +PackageVersion: 0.9.62 +PackageLocale: en-US +Publisher: bilingify +PublisherUrl: https://readest.com/ +PublisherSupportUrl: https://github.com/readest/readest/issues +PrivacyUrl: https://readest.com/privacy-policy +Author: Huang Xin +PackageName: Readest +PackageUrl: https://readest.com/ +License: AGPL-3.0 +LicenseUrl: https://github.com/readest/readest/blob/HEAD/LICENSE +Copyright: © 2025 Bilingify LLC. All rights reserved. +CopyrightUrl: https://readest.com/terms-of-service +ShortDescription: An open-source ebook reader designed for immersive and deep reading experiences. +Description: Readest is a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience. +Tags: +- ebook +- epub +- mobi +- pdf +- reader +- viewer +ReleaseNotes: |- + What's Changed + - layout: apply custom css also to the library page, tweaks on fitted cover images by @chrox in https://github.com/readest/readest/pull/1481 + - chore: fix uninlined format args warning by @chrox in https://github.com/readest/readest/pull/1482 + - refactor: fix fallback cover image for fitted mode by @chrox in https://github.com/readest/readest/pull/1483 + - settings: add three new CJK fonts by @chrox in https://github.com/readest/readest/pull/1484 + - api: add subscription API by @chrox in https://github.com/readest/readest/pull/1491 + - api: cors in middleware by @chrox in https://github.com/readest/readest/pull/1493 + - feat: add subscription management for web by @chrox in https://github.com/readest/readest/pull/1494 + - feat: add subscription management for tauri platforms by @chrox in https://github.com/readest/readest/pull/1499 + - api: fix for supabase RLS by @chrox in https://github.com/readest/readest/pull/1501 + - shortcuts: add ESC to dismiss search bar, closes #1495 by @chrox in https://github.com/readest/readest/pull/1502 + - feat: add option to toggle Parallel Reading on/off when viewing multiple books, closes #1496 by @chrox in https://github.com/readest/readest/pull/1504 + - feat: add upgrade to premium option in settings menu by @chrox in https://github.com/readest/readest/pull/1505 + - layout: add overlay scrollbar for TOC on Android by @chrox in https://github.com/readest/readest/pull/1506 + - css: fix for legacy epub image dimension, closes #1507 by @chrox in https://github.com/readest/readest/pull/1508 + - layout: extend drag area outward so the scrollbar remains clickable by @chrox in https://github.com/readest/readest/pull/1509 + - feat: add an option to show/hide original text in translation, also closes #1492 by @chrox in https://github.com/readest/readest/pull/1511 + - layout: refine user profile page by @chrox in https://github.com/readest/readest/pull/1512 + - release: version 0.9.62 by @chrox in https://github.com/readest/readest/pull/1513 + Full Changelog: https://github.com/readest/readest/compare/v0.9.61...v0.9.62 +ReleaseNotesUrl: https://github.com/readest/readest/releases/tag/v0.9.62 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/chrox/Readest/0.9.62/chrox.Readest.locale.zh-CN.yaml b/manifests/c/chrox/Readest/0.9.62/chrox.Readest.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9b0374f3f3918 --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.62/chrox.Readest.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: chrox.Readest +PackageVersion: 0.9.62 +PackageLocale: zh-CN +ShortDescription: 一款注重沉浸式深度阅读体验的开源电子书阅读器。 +Description: Readest 是一款多功能的现代电子书阅读器,专为书迷设计,提供无缝跨平台访问、强大的工具和直观的界面,提升您的阅读体验。 +Tags: +- epub +- mobi +- pdf +- 电子书 +- 阅读器 +ReleaseNotesUrl: https://github.com/readest/readest/releases/tag/v0.9.62 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/chrox/Readest/0.9.62/chrox.Readest.yaml b/manifests/c/chrox/Readest/0.9.62/chrox.Readest.yaml new file mode 100644 index 0000000000000..30a5cad5b238f --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.62/chrox.Readest.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: chrox.Readest +PackageVersion: 0.9.62 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/chrox/Readest/0.9.63/chrox.Readest.installer.yaml b/manifests/c/chrox/Readest/0.9.63/chrox.Readest.installer.yaml new file mode 100644 index 0000000000000..4340e8b6eb7c4 --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.63/chrox.Readest.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: chrox.Readest +PackageVersion: 0.9.63 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +Protocols: +- readest +FileExtensions: +- azw +- azw3 +- cbz +- epub +- fb2 +- mobi +- pdf +ProductCode: Readest +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/readest/readest/releases/download/v0.9.63/Readest_0.9.63_x64-setup.exe + InstallerSha256: 0A7E7D15292A2A644B7072899CD4CE8CD908B376BBA32477F044FF015F5ADB96 +- Architecture: arm64 + InstallerUrl: https://github.com/readest/readest/releases/download/v0.9.63/Readest_0.9.63_arm64-setup.exe + InstallerSha256: 8C2BD40D7BCCB8EBAC849932120BC10D93AE8132A6AAD5088B636B154B3C89C3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/chrox/Readest/0.9.63/chrox.Readest.locale.en-US.yaml b/manifests/c/chrox/Readest/0.9.63/chrox.Readest.locale.en-US.yaml new file mode 100644 index 0000000000000..62e820d15077c --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.63/chrox.Readest.locale.en-US.yaml @@ -0,0 +1,64 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: chrox.Readest +PackageVersion: 0.9.63 +PackageLocale: en-US +Publisher: bilingify +PublisherUrl: https://readest.com/ +PublisherSupportUrl: https://github.com/readest/readest/issues +PrivacyUrl: https://readest.com/privacy-policy +Author: Huang Xin +PackageName: Readest +PackageUrl: https://readest.com/ +License: AGPL-3.0 +LicenseUrl: https://github.com/readest/readest/blob/HEAD/LICENSE +Copyright: © 2025 Bilingify LLC. All rights reserved. +CopyrightUrl: https://readest.com/terms-of-service +ShortDescription: An open-source ebook reader designed for immersive and deep reading experiences. +Description: Readest is a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience. +Tags: +- ebook +- epub +- mobi +- pdf +- reader +- viewer +ReleaseNotes: |- + Release Highlight + - Reader: Fixed links not working in some MOBI books + - TTS: Fixed an issue where some text was skipped during reading + - Library: You can now delete only the cloud backup of a book without removing the local copy + - Performance: Fonts in the font list now load only when displayed for faster startup + - Performance: Opening large MOBI books is now significantly faster + - Layout: Fixed overlay scrollbar display in virtualized book lists + - Layout: Improved grid cover image height in crop mode + - Layout: Removed unsupported screen orientation lock option on iPad + - Layout: System context menu no longer appears when selecting text on iPad 1 + - Translation: Added Thai (th-TH) language support + What's Changed + - subscription: fix action button in plan card by @chrox in https://github.com/readest/readest/pull/1514 + - chore: upload to r2 after release with retry by @chrox in https://github.com/readest/readest/pull/1516 + - chore: retry workflow for r2 uploading by @chrox in https://github.com/readest/readest/pull/1517 + - compat: footnote img size, closes #1518 by @chrox in https://github.com/readest/readest/pull/1519 + - settings: remove unsupported screen orientation lock on iPad, closes #1520 by @chrox in https://github.com/readest/readest/pull/1522 + - fix: links in mobi are now properly followed, closes #1503 by @chrox in https://github.com/readest/readest/pull/1528 + - layout: fix overlay scrollbar with virtualized list, closes #1524 by @chrox in https://github.com/readest/readest/pull/1530 + - perf: lazy loading fonts in fonts list by @chrox in https://github.com/readest/readest/pull/1533 + - chore: update Android target sdk to 35 by @chrox in https://github.com/readest/readest/pull/1534 + - layout: fix grid cover image height in crop mode by @chrox in https://github.com/readest/readest/pull/1537 + - doc: update Readme for mobile apps downloads by @chrox in https://github.com/readest/readest/pull/1540 + - doc: layout for the download badges by @chrox in https://github.com/readest/readest/pull/1541 + - fix: handling toc links for some mobi books, closes #1525 by @chrox in https://github.com/readest/readest/pull/1542 + - tts: fix some direct text being skipped in tts, closes #1515 by @chrox in https://github.com/readest/readest/pull/1543 + - feat: support deleting only the cloud backup of a book by @bhscer in https://github.com/readest/readest/pull/1546 + - perf: speed up opening for large MOBI books, closes #1544 by @chrox in https://github.com/readest/readest/pull/1547 + - i18n: add Thai (th-TH) translations by @chrox in https://github.com/readest/readest/pull/1548 + - layout: dismiss system context menu popup when selecting text on iPad, closes #1485 by @chrox in https://github.com/readest/readest/pull/1549 + - release: version 0.9.63 by @chrox in https://github.com/readest/readest/pull/1550 + New Contributors + - @bhscer made their first contribution in https://github.com/readest/readest/pull/1546 + Full Changelog: https://github.com/readest/readest/compare/v0.9.62...v0.9.63 +ReleaseNotesUrl: https://github.com/readest/readest/releases/tag/v0.9.63 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/chrox/Readest/0.9.63/chrox.Readest.locale.zh-CN.yaml b/manifests/c/chrox/Readest/0.9.63/chrox.Readest.locale.zh-CN.yaml new file mode 100644 index 0000000000000..71ffd69f5d949 --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.63/chrox.Readest.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: chrox.Readest +PackageVersion: 0.9.63 +PackageLocale: zh-CN +ShortDescription: 一款注重沉浸式深度阅读体验的开源电子书阅读器。 +Description: Readest 是一款多功能的现代电子书阅读器,专为书迷设计,提供无缝跨平台访问、强大的工具和直观的界面,提升您的阅读体验。 +Tags: +- epub +- mobi +- pdf +- 电子书 +- 阅读器 +ReleaseNotesUrl: https://github.com/readest/readest/releases/tag/v0.9.63 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/chrox/Readest/0.9.63/chrox.Readest.yaml b/manifests/c/chrox/Readest/0.9.63/chrox.Readest.yaml new file mode 100644 index 0000000000000..f0d154811f51f --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.63/chrox.Readest.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: chrox.Readest +PackageVersion: 0.9.63 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/ciromattia/KCC/7.6.0/ciromattia.KCC.installer.yaml b/manifests/c/ciromattia/KCC/7.6.0/ciromattia.KCC.installer.yaml new file mode 100644 index 0000000000000..cdc43ae03a9ce --- /dev/null +++ b/manifests/c/ciromattia/KCC/7.6.0/ciromattia.KCC.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: ciromattia.KCC +PackageVersion: 7.6.0 +InstallerType: portable +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- KCC +ReleaseDate: 2025-06-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ciromattia/kcc/releases/download/v7.6.0/KCC_7.6.0.exe + InstallerSha256: 51AEB1BBB3DCDA21D9701347D1D1C9BFD8DE4923D76170C89A5194F6BF6508EA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/ciromattia/KCC/7.6.0/ciromattia.KCC.locale.en-US.yaml b/manifests/c/ciromattia/KCC/7.6.0/ciromattia.KCC.locale.en-US.yaml new file mode 100644 index 0000000000000..fdbc3e95554af --- /dev/null +++ b/manifests/c/ciromattia/KCC/7.6.0/ciromattia.KCC.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ciromattia.KCC +PackageVersion: 7.6.0 +PackageLocale: en-US +Publisher: ciromattia +PublisherUrl: https://github.com/ciromattia +PublisherSupportUrl: https://github.com/ciromattia/kcc/issues +PackageName: Kindle Comic Converter +PackageUrl: https://github.com/ciromattia/kcc +License: ISC +LicenseUrl: https://github.com/ciromattia/kcc/blob/HEAD/LICENSE.txt +ShortDescription: Kindle Comic Converter is a Python app to convert comic/manga files or folders to EPUB, Panel View MOBI or E-Ink optimized CBZ. +Moniker: kcc +ReleaseNotes: |- + Sponsors + - Free code signing on Windows provided by SignPath.io, certificate by SignPath Foundation + Notes + ko-fi + Kindle Scribe 2480 support was added in KCC 7.5, details below. + Also looking for a software job! https://www.linkedin.com/in/alexu2/ + Email (for commisions and inquiries): kindle.comic.converter gmail + Discord: https://discord.com/invite/qj7wpnUHav + Donate on Ko-fi! https://ko-fi.com/eink_dude + YouTube tutorial (please subscribe): https://www.youtube.com/watch?v=IR2Fhcm9658 + What's Changed + - Fix png bit depth by @9783e6 in #976 + - Fixes to grayscale pages in forcecolor mode by @9783e6 in #978 + - Improve code readability by @9783e6 in #984 + - only add display-block for kindle scribe by @axu2 in #986 + - Replaced add folders with output directory button. by @Silver0006 in #977 + - Save images in GIF when output is set to MOBI and forcepng is used by @9783e6 in #981 + - Add output folder next to source files option by @axu2 in #988 + - Prevent selecting Kindle as output directory by @axu2 in #990 + - Fix quantization for colored images by @9783e6 in #991 + - fix flatpak kindlegen detection (7.5.0 regression) by @axu2 in #1000 + - exclude pkg_resources by @axu2 in #1001 + New Contributors + - @9783e6 made their first contribution in #976 + Full Changelog: v7.5.1...v7.6.0 +ReleaseNotesUrl: https://github.com/ciromattia/kcc/releases/tag/v7.6.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/ciromattia/KCC/7.6.0/ciromattia.KCC.yaml b/manifests/c/ciromattia/KCC/7.6.0/ciromattia.KCC.yaml new file mode 100644 index 0000000000000..0ab6d0a7e587a --- /dev/null +++ b/manifests/c/ciromattia/KCC/7.6.0/ciromattia.KCC.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: ciromattia.KCC +PackageVersion: 7.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/ciromattia/KCC/8.0.2/ciromattia.KCC.installer.yaml b/manifests/c/ciromattia/KCC/8.0.2/ciromattia.KCC.installer.yaml new file mode 100644 index 0000000000000..37339d477395d --- /dev/null +++ b/manifests/c/ciromattia/KCC/8.0.2/ciromattia.KCC.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: ciromattia.KCC +PackageVersion: 8.0.2 +InstallerType: portable +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- KCC +ReleaseDate: 2025-07-05 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ciromattia/kcc/releases/download/v8.0.2/KCC_8.0.2.exe + InstallerSha256: 0B03618C79FC43BDB4A23FDB3C5217EF28134461E4BD73669F9FFD59F01F3521 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/ciromattia/KCC/8.0.2/ciromattia.KCC.locale.en-US.yaml b/manifests/c/ciromattia/KCC/8.0.2/ciromattia.KCC.locale.en-US.yaml new file mode 100644 index 0000000000000..01bf4591f8d33 --- /dev/null +++ b/manifests/c/ciromattia/KCC/8.0.2/ciromattia.KCC.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ciromattia.KCC +PackageVersion: 8.0.2 +PackageLocale: en-US +Publisher: ciromattia +PublisherUrl: https://github.com/ciromattia +PublisherSupportUrl: https://github.com/ciromattia/kcc/issues +PackageName: Kindle Comic Converter +PackageUrl: https://github.com/ciromattia/kcc +License: ISC +LicenseUrl: https://github.com/ciromattia/kcc/blob/HEAD/LICENSE.txt +ShortDescription: Kindle Comic Converter is a Python app to convert comic/manga files or folders to EPUB, Panel View MOBI or E-Ink optimized CBZ. +Moniker: kcc +ReleaseNotes: |- + macOS users: brew install p7zip has been replaced with brew install sevenzip. It's faster and less buggy. + Sponsors + - Free code signing on Windows provided by SignPath.io, certificate by SignPath Foundation + Links + ko-fi + Also looking for a software job! https://www.linkedin.com/in/alexu2/ + Email (for commisions and inquiries): kindle.comic.converter gmail + Discord: https://discord.com/invite/qj7wpnUHav + Donate on Ko-fi! https://ko-fi.com/eink_dude + YouTube tutorial (please subscribe): https://www.youtube.com/watch?v=IR2Fhcm9658 + Notes + Kindle Scribe full 2480 support was added in 7.5 + The problem: The Kindle Scribe has a height of 2480 pixels. But kindlegen's limit is 1920. So images are always a little blurry compared to native resolution. + So how do you overcome this limitation? + The key idea: Instead of using a standard fixed layout epub where 1 image is 1 page, instead implement the alternate fixed layout epub where you can have multiple images per page. As long as each individual image is <1920, kindlegen is no issue. + Implementation wise, this was difficult because all the code assumed 1 image per page. If you look at the recent git commits to master, you'll see many of my commits doing an enormous refactor to account for this change. + This took many many days between experimentation and testing, this was by far the largest feature I've ever worked on for KCC. + If you feel generous, please consider donating on my Ko-fi! It's taken a lot of my time and energy to make KCC as good as it is today. https://ko-fi.com/eink_dude + Quick tip: try disabling image darkening with gamma = 1.0 if you previously used auto, things are much sharper so darkening is less neccessary. + What's Changed + - rotate first box by @axu2 in #1015 + - fix for real: macOS 15 external EXFAT drives (7.2.0 regression) by @axu2 in #1016 + Full Changelog: v8.0.1...v8.0.2 +ReleaseNotesUrl: https://github.com/ciromattia/kcc/releases/tag/v8.0.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/ciromattia/KCC/8.0.2/ciromattia.KCC.yaml b/manifests/c/ciromattia/KCC/8.0.2/ciromattia.KCC.yaml new file mode 100644 index 0000000000000..72cc285604a14 --- /dev/null +++ b/manifests/c/ciromattia/KCC/8.0.2/ciromattia.KCC.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: ciromattia.KCC +PackageVersion: 8.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/clsid2/mpc-hc/2.5.0/clsid2.mpc-hc.installer.yaml b/manifests/c/clsid2/mpc-hc/2.5.0/clsid2.mpc-hc.installer.yaml new file mode 100644 index 0000000000000..aed9131614114 --- /dev/null +++ b/manifests/c/clsid2/mpc-hc/2.5.0/clsid2.mpc-hc.installer.yaml @@ -0,0 +1,151 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: clsid2.mpc-hc +PackageVersion: 2.5.0 +Platform: +- Windows.Desktop +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +FileExtensions: +- 3g2 +- 3ga +- 3gp +- 3gp2 +- 3gpp +- aac +- ac3 +- aif +- aifc +- aiff +- alac +- amr +- amv +- aob +- ape +- apl +- asf +- asx +- au +- avi +- bdmv +- bik +- caf +- cda +- cue +- dav +- divx +- dsa +- dsm +- dss +- dsv +- dts +- dtshd +- dtsma +- dv +- evo +- f4v +- flac +- flc +- fli +- flic +- flv +- hdmov +- ifo +- ivf +- m1a +- m1v +- m2a +- m2p +- m2t +- m2ts +- m2v +- m3u +- m3u8 +- m4a +- m4b +- m4r +- m4v +- mid +- midi +- mk3d +- mka +- mkv +- mlp +- mov +- mp2 +- mp2v +- mp3 +- mp4 +- mp4v +- mpa +- mpc +- mpcpl +- mpe +- mpeg +- mpg +- mpl +- mpls +- mpv2 +- mpv4 +- mts +- mxf +- ofr +- ofs +- oga +- ogg +- ogm +- ogv +- opus +- pls +- pva +- ra +- ram +- rar +- rec +- rm +- rmi +- rmm +- rmvb +- rp +- rpm +- rt +- smi +- smil +- smk +- snd +- spx +- ssif +- swf +- tak +- thd +- tp +- trp +- ts +- tta +- vob +- wav +- wax +- webm +- wm +- wma +- wmp +- wmv +- wmx +- wv +- wvx +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/clsid2/mpc-hc/releases/download/2.5.0/MPC-HC.2.5.0.x86.exe + InstallerSha256: C39E9A831B6E09611A7FA157037180D92F851D89DA663E53FA8D4AD244CA2A8F +- Architecture: x64 + InstallerUrl: https://github.com/clsid2/mpc-hc/releases/download/2.5.0/MPC-HC.2.5.0.x64.exe + InstallerSha256: BBE3A5E0BE0CE67925414E864875D18186ED1B1B09187DC08B933085036F5225 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-27 diff --git a/manifests/c/clsid2/mpc-hc/2.5.0/clsid2.mpc-hc.locale.en-US.yaml b/manifests/c/clsid2/mpc-hc/2.5.0/clsid2.mpc-hc.locale.en-US.yaml new file mode 100644 index 0000000000000..1155dc8143d7a --- /dev/null +++ b/manifests/c/clsid2/mpc-hc/2.5.0/clsid2.mpc-hc.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: clsid2.mpc-hc +PackageVersion: 2.5.0 +PackageLocale: en-US +Publisher: MPC-HC Team +PublisherUrl: https://github.com/clsid2/mpc-hc +PublisherSupportUrl: https://github.com/clsid2/mpc-hc/issues +Author: clsid2 +PackageName: MPC-HC +PackageUrl: https://www.videohelp.com/software/Media-Player-Classic-Home-Cinema +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/clsid2/mpc-hc/develop/COPYING.txt +Copyright: Copyright (C) 2007 Free Software Foundation, Inc. +CopyrightUrl: https://raw.githubusercontent.com/clsid2/mpc-hc/develop/COPYING.txt +ShortDescription: MPC-HC is an extremely light-weight, open source media player for Windows. It supports all common video and audio file formats available for playback. +Description: |- + MPC-HC is an extremely light-weight, open source media player for Windows. + It supports all common video and audio file formats available for playback. +Moniker: mpc-hc +Tags: +- audio +- cinema +- fork +- foss +- media +- media-player +- music +- open-source +- player +- video +- video-player +ReleaseNotesUrl: https://github.com/clsid2/mpc-hc/releases/tag/2.5.0 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/c/clsid2/mpc-hc/2.5.0/clsid2.mpc-hc.yaml b/manifests/c/clsid2/mpc-hc/2.5.0/clsid2.mpc-hc.yaml new file mode 100644 index 0000000000000..91dc0d6d57fef --- /dev/null +++ b/manifests/c/clsid2/mpc-hc/2.5.0/clsid2.mpc-hc.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: clsid2.mpc-hc +PackageVersion: 2.5.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/c/cmlanche/lightningvine/3.0.3+303/cmlanche.lightningvine.installer.yaml b/manifests/c/cmlanche/lightningvine/3.0.3+303/cmlanche.lightningvine.installer.yaml new file mode 100644 index 0000000000000..c4e1ca54b323d --- /dev/null +++ b/manifests/c/cmlanche/lightningvine/3.0.3+303/cmlanche.lightningvine.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: cmlanche.lightningvine +PackageVersion: 3.0.3+303 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: 11370F74-8985-4099-A836-72497FE82A0F_is1 +Installers: +- Architecture: x64 + InstallerUrl: https://sdtpub.s3.bitiful.net/publish/303/sdt-3.0.3-windows-installer.exe + InstallerSha256: 4F6F87545EF803BE674E33619234513046316FE06A65B57B6062C6C61751DD0C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/cmlanche/lightningvine/3.0.3+303/cmlanche.lightningvine.locale.en-US.yaml b/manifests/c/cmlanche/lightningvine/3.0.3+303/cmlanche.lightningvine.locale.en-US.yaml new file mode 100644 index 0000000000000..4216095e59dcb --- /dev/null +++ b/manifests/c/cmlanche/lightningvine/3.0.3+303/cmlanche.lightningvine.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: cmlanche.lightningvine +PackageVersion: 3.0.3+303 +PackageLocale: en-US +Publisher: cmlanche +PublisherUrl: https://sdt.zishu.life/ +PublisherSupportUrl: https://github.com/cmlanche/lightningvine-docs/issues +PrivacyUrl: https://sdt.zishu.life/privacy.html +PackageName: 闪电藤 +PackageUrl: https://sdt.zishu.life/ +License: Proprietary +Copyright: © 2024 cmlanche +ShortDescription: Next Generation File Transfer Assistant +Description: Lightning Vine is a LAN file transfer product based on LocalSend with additional capabilities such as WebDAV transfer and cloud transfer, making it an versatile file transfer assistant. +Tags: +- file +- network +- send +- share +- transfer +ReleaseNotesUrl: https://lightningvine.zishu.life/history.html +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://sdt.zishu.life/qa.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/cmlanche/lightningvine/3.0.3+303/cmlanche.lightningvine.locale.zh-CN.yaml b/manifests/c/cmlanche/lightningvine/3.0.3+303/cmlanche.lightningvine.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4336db4ff2c44 --- /dev/null +++ b/manifests/c/cmlanche/lightningvine/3.0.3+303/cmlanche.lightningvine.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: cmlanche.lightningvine +PackageVersion: 3.0.3+303 +PackageLocale: zh-CN +Publisher: cmlanche +PublisherUrl: https://sdt.zishu.life/ +PublisherSupportUrl: https://github.com/cmlanche/lightningvine-docs/issues +PrivacyUrl: https://sdt.zishu.life/privacy.html +PackageName: 闪电藤 +PackageUrl: https://sdt.zishu.life/ +License: 专有软件 +Copyright: © 2024 cmlanche +ShortDescription: 新一代文件传输助手 +Description: 闪电藤是基于 LocalSend 的二次开发产品,在原有局域网文件传输基础上,增加了 WebDAV 传输和云传输的能力,是一个万能的文件传输助手。 +Tags: +- 传输 +- 共享 +- 分享 +- 发送 +- 文件 +- 网络 +ReleaseNotesUrl: https://lightningvine.zishu.life/history.html +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://sdt.zishu.life/qa.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/cmlanche/lightningvine/3.0.3+303/cmlanche.lightningvine.yaml b/manifests/c/cmlanche/lightningvine/3.0.3+303/cmlanche.lightningvine.yaml new file mode 100644 index 0000000000000..d6e2b6f2b51b6 --- /dev/null +++ b/manifests/c/cmlanche/lightningvine/3.0.3+303/cmlanche.lightningvine.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: cmlanche.lightningvine +PackageVersion: 3.0.3+303 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.18.3/codexu.NoteGen.installer.yaml b/manifests/c/codexu/NoteGen/0.18.3/codexu.NoteGen.installer.yaml new file mode 100644 index 0000000000000..4367b1dbfd8df --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.18.3/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.18.3 +UpgradeBehavior: install +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.18.3/NoteGen_0.18.3_x64-setup.exe + InstallerSha256: 3118F2C2B13FDEC61AD0BCBD4E84743FA39FC764B738355CC0B99455B6C14BF2 + ProductCode: NoteGen +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.18.3/NoteGen_0.18.3_x64_en-US.msi + InstallerSha256: 408EB2B6046A51990352FD8E5FC3C41B9D77EA36F270762FB525A04C7F7A41C6 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{0E390D4E-0BAB-4AE8-BE93-9AA4A2B73885}' + AppsAndFeaturesEntries: + - UpgradeCode: '{E353DB5D-25D7-5FA9-B7DC-C4BC524A075E}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.18.3/codexu.NoteGen.locale.en-US.yaml b/manifests/c/codexu/NoteGen/0.18.3/codexu.NoteGen.locale.en-US.yaml new file mode 100644 index 0000000000000..49cacd63f041c --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.18.3/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.18.3 +PackageLocale: en-US +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 codexu +ShortDescription: A cross-platform AI note-taking application focused on recording and writing. +Description: |- + NoteGen is a cross-platform AI note-taking application focused on recording and writing, developed based on Tauri. + The core philosophy of NoteGen is to combine recording, writing, and AI, with all three complementing each other. The recording function helps users quickly capture and organize fragmented knowledge. The organization function is the bridge connecting recording and writing, which can organize continuously recorded content into a readable note, assisting users in completing the creation process from scratch. If the AI-organized results cannot meet your requirements, you can use the writing function to refine it yourself. + Recording + Recording methods supported: + 1. 🖥️ Screenshot recording, through which users can quickly capture and record fragmented knowledge, especially in situations where text copying is not possible. + 2. 📄 Text recording, which allows copying text or manually inputting brief content as a record. + 3. 🖼️ Illustration recording, which can be automatically inserted into appropriate positions when generating notes. + 4. 📇 File recording, which recognizes content from PDF, md, html, txt, and other files for text recording. + 5. 🔗 Link recording (to be implemented), using web crawlers for page content recognition and recording. + 6. 📷 Photo recording (to be implemented), similar to illustration recording, calling the camera to record, suitable for future mobile use. + Auxiliary recording: + - 🏷️ Custom tags for better categorization and differentiation of different recording scenarios. + - 🤖 AI conversation, by default associated with records under the current tag, and you can also manually associate it with any article in your writing. + - 📋 Clipboard recognition, which automatically recognizes images or text in the clipboard after you copy them. + - 💾 Organization, when you have completed a series of records, you can try to let AI help you organize them into an article. + Writing + - 🗂 File manager, supporting management of files and folders in local and Github repositories, with unlimited directory levels. + - 📝 Support for WYSIWYG, instant rendering, and split-screen preview modes. + - 📅 Version control, if you enable synchronization, you can trace back to historically uploaded records in the history. + - 🤖 AI assistance, supporting Q&A, continuation, optimization, simplification, translation, and other functions, and you can insert records into any position of the article at any time. + - 🏞️ Image hosting, directly copy and paste images into the Markdown editor, which will automatically upload the image to the image hosting service and convert it to a Markdown image link. + - 🛠️ HTML and Markdown conversion, copying content from browsers will automatically convert it to Markdown format. + Auxiliary + - 📦 Large model support, with multiple built-in large model configurations, supporting customization and easy switching. + - 👁️ OCR, which can assist in recognizing text in images. + - 🏗️ Organization templates, which can be customized for AI to organize different types of content. + - 🔎 Global search, for quickly searching and jumping to specified content. + - 🌃 Image hosting management, for convenient management of image hosting repository content. + - 💎 Themes and appearance, supporting dark theme, and appearance settings for Markdown, code, etc. +Tags: +- ai +- bookmark +- clipping +- favorite +- knowledge +- knowledge-base +- large-language-model +- llm +- mark +- notes +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.18.3 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.18.3/codexu.NoteGen.locale.zh-CN.yaml b/manifests/c/codexu/NoteGen/0.18.3/codexu.NoteGen.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ab3336422c5e3 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.18.3/codexu.NoteGen.locale.zh-CN.yaml @@ -0,0 +1,64 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: codexu.NoteGen +PackageVersion: 0.18.3 +PackageLocale: zh-CN +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 codexu +ShortDescription: 一款专注于记录和写作的跨端 AI 笔记应用。 +Description: |- + NoteGen 是一款专注于记录和写作的跨端 AI 笔记应用,基于 Tauri 开发。 + NoteGen 的核心理念是将记录、写作和 AI 结合使用,三者相辅相成。记录功能可以帮助用户快速捕捉和整理碎片化知识。整理功能是连接记录和写作的桥梁,可将持续记录的内容整理成一篇可读的笔记,辅助用户完成从零到一的创作过程,如果 AI 整理的结果无法满足你的要求,那么你可以使用写作功能自行去完善。 + 记录 + 记录方式支持: + 1. 🖥️ 截图记录,通过截图,用户可以快速捕捉和记录碎片化知识,尤其是在遇到无法进行文本复制的情况下。 + 2. 📄 文本记录,可以复制文本或者手动输入一些简短的内容作为一次记录。 + 3. 🖼️ 插图记录,可以在笔记生成时,自动插入到合适的位置。 + 4. 📇 文件记录,识别 PDF、md、html、txt 等文件内容,进行文字记录。 + 5. 🔗 链接记录(待实现),使用爬虫进行页面内容识别与记录。 + 6. 📷 拍照记录(待实现)功能类似于插图记录,调用相机记录,适合未来移动端。 + 辅助记录: + - 🏷️ 自定义标签,更好地归类和区分不同的记录场景。 + - 🤖 AI 对话,默认关联当前标签下的记录,你也可以手动去关联写作内的任何文章。 + - 📋 剪贴板识别,在你进行图片或文本复制后,会自动识别剪贴板中的图片或文本。 + - 💾 整理,当你已经完成了一系列的记录之后,可以尝试让 AI 帮你整理为一篇文章。 + 写作 + - 🗂 文件管理器,支持本地和 Github 仓库的文件和文件夹的管理,支持无限层级目录。 + - 📝 支持所见即所得、即时渲染、分屏预览三种模式。 + - 📅 版本控制,如果你开启了同步功能,可以在历史记录中回溯历史上传过的记录。 + - 🤖 AI 辅助,支持问答、续写、优化、精简、翻译等功能,且可以随时将记录插入到文章任何位置。 + - 🏞️ 图床,直接复制图片粘贴在 Markdown 编辑器中,将自动将此图片上传至图床,并转换为 Markdown 图片链接。 + - 🛠️ HTML、Markdown 转换,复制浏览器的内容,将自动转换为 Markdown 格式。 + 辅助 + - 📦 大模型支持,内置多种大模型配置,支持自定义,随意切换。 + - 👁️ OCR,可以辅助识别图片内的文字。 + - 🏗️ 整理模板,可自定义模板,方便 AI 对不同类型的内容进行定制化整理。 + - 🔎 全局搜索,可以快速搜索并跳转至指定的内容。 + - 🌃 图床管理,可以方便的管理图床仓库的内容。 + - 💎 主题与外观,支持深色主题,支持 Markdown、代码等外观设置。 +Tags: +- 书摘 +- 书签 +- 人工智能 +- 剪藏 +- 大语言模型 +- 收藏 +- 收藏夹 +- 知识 +- 知识库 +- 笔记 +ReleaseNotes: |- + - 修复未同步 tags 使 marks 无法正确与 tags 关联,导致同步结果错误。#296 + - 设置界面增加分组展示。 + - 设置,将 Github 图床从同步配置单独抽出,放置在独立的图床配置界面中,为后期加入更多第三方图床做准备。 + - Github 图床现在支持独立的 token 设置,现在可以使用其他账户保存图床。 +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.18.3 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.18.3/codexu.NoteGen.yaml b/manifests/c/codexu/NoteGen/0.18.3/codexu.NoteGen.yaml new file mode 100644 index 0000000000000..25e90863e0f49 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.18.3/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.18.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.0/codexu.NoteGen.installer.yaml b/manifests/c/codexu/NoteGen/0.19.0/codexu.NoteGen.installer.yaml new file mode 100644 index 0000000000000..f550641413054 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.0/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.19.0 +UpgradeBehavior: install +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.19.0/NoteGen_0.19.0_x64-setup.exe + InstallerSha256: 7B659B730E84F12F285AC8838647224630C470C87D8FFF80D0D360E5ED4B2ED8 + ProductCode: NoteGen +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.19.0/NoteGen_0.19.0_x64_en-US.msi + InstallerSha256: E747880C71DAF9B746A317EC40571B492A99C455EA89EF6990980655E226D502 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{962C645D-EB72-4ED3-95C3-0D16B0B26088}' + AppsAndFeaturesEntries: + - UpgradeCode: '{E353DB5D-25D7-5FA9-B7DC-C4BC524A075E}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.0/codexu.NoteGen.locale.en-US.yaml b/manifests/c/codexu/NoteGen/0.19.0/codexu.NoteGen.locale.en-US.yaml new file mode 100644 index 0000000000000..9770324405670 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.0/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.19.0 +PackageLocale: en-US +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 codexu +ShortDescription: A cross-platform AI note-taking application focused on recording and writing. +Description: |- + NoteGen is a cross-platform AI note-taking application focused on recording and writing, developed based on Tauri. + The core philosophy of NoteGen is to combine recording, writing, and AI, with all three complementing each other. The recording function helps users quickly capture and organize fragmented knowledge. The organization function is the bridge connecting recording and writing, which can organize continuously recorded content into a readable note, assisting users in completing the creation process from scratch. If the AI-organized results cannot meet your requirements, you can use the writing function to refine it yourself. + Recording + Recording methods supported: + 1. 🖥️ Screenshot recording, through which users can quickly capture and record fragmented knowledge, especially in situations where text copying is not possible. + 2. 📄 Text recording, which allows copying text or manually inputting brief content as a record. + 3. 🖼️ Illustration recording, which can be automatically inserted into appropriate positions when generating notes. + 4. 📇 File recording, which recognizes content from PDF, md, html, txt, and other files for text recording. + 5. 🔗 Link recording (to be implemented), using web crawlers for page content recognition and recording. + 6. 📷 Photo recording (to be implemented), similar to illustration recording, calling the camera to record, suitable for future mobile use. + Auxiliary recording: + - 🏷️ Custom tags for better categorization and differentiation of different recording scenarios. + - 🤖 AI conversation, by default associated with records under the current tag, and you can also manually associate it with any article in your writing. + - 📋 Clipboard recognition, which automatically recognizes images or text in the clipboard after you copy them. + - 💾 Organization, when you have completed a series of records, you can try to let AI help you organize them into an article. + Writing + - 🗂 File manager, supporting management of files and folders in local and Github repositories, with unlimited directory levels. + - 📝 Support for WYSIWYG, instant rendering, and split-screen preview modes. + - 📅 Version control, if you enable synchronization, you can trace back to historically uploaded records in the history. + - 🤖 AI assistance, supporting Q&A, continuation, optimization, simplification, translation, and other functions, and you can insert records into any position of the article at any time. + - 🏞️ Image hosting, directly copy and paste images into the Markdown editor, which will automatically upload the image to the image hosting service and convert it to a Markdown image link. + - 🛠️ HTML and Markdown conversion, copying content from browsers will automatically convert it to Markdown format. + Auxiliary + - 📦 Large model support, with multiple built-in large model configurations, supporting customization and easy switching. + - 👁️ OCR, which can assist in recognizing text in images. + - 🏗️ Organization templates, which can be customized for AI to organize different types of content. + - 🔎 Global search, for quickly searching and jumping to specified content. + - 🌃 Image hosting management, for convenient management of image hosting repository content. + - 💎 Themes and appearance, supporting dark theme, and appearance settings for Markdown, code, etc. +Tags: +- ai +- bookmark +- clipping +- favorite +- knowledge +- knowledge-base +- large-language-model +- llm +- mark +- notes +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.19.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.0/codexu.NoteGen.locale.zh-CN.yaml b/manifests/c/codexu/NoteGen/0.19.0/codexu.NoteGen.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6449683784ef0 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.0/codexu.NoteGen.locale.zh-CN.yaml @@ -0,0 +1,69 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: codexu.NoteGen +PackageVersion: 0.19.0 +PackageLocale: zh-CN +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 codexu +ShortDescription: 一款专注于记录和写作的跨端 AI 笔记应用。 +Description: |- + NoteGen 是一款专注于记录和写作的跨端 AI 笔记应用,基于 Tauri 开发。 + NoteGen 的核心理念是将记录、写作和 AI 结合使用,三者相辅相成。记录功能可以帮助用户快速捕捉和整理碎片化知识。整理功能是连接记录和写作的桥梁,可将持续记录的内容整理成一篇可读的笔记,辅助用户完成从零到一的创作过程,如果 AI 整理的结果无法满足你的要求,那么你可以使用写作功能自行去完善。 + 记录 + 记录方式支持: + 1. 🖥️ 截图记录,通过截图,用户可以快速捕捉和记录碎片化知识,尤其是在遇到无法进行文本复制的情况下。 + 2. 📄 文本记录,可以复制文本或者手动输入一些简短的内容作为一次记录。 + 3. 🖼️ 插图记录,可以在笔记生成时,自动插入到合适的位置。 + 4. 📇 文件记录,识别 PDF、md、html、txt 等文件内容,进行文字记录。 + 5. 🔗 链接记录(待实现),使用爬虫进行页面内容识别与记录。 + 6. 📷 拍照记录(待实现)功能类似于插图记录,调用相机记录,适合未来移动端。 + 辅助记录: + - 🏷️ 自定义标签,更好地归类和区分不同的记录场景。 + - 🤖 AI 对话,默认关联当前标签下的记录,你也可以手动去关联写作内的任何文章。 + - 📋 剪贴板识别,在你进行图片或文本复制后,会自动识别剪贴板中的图片或文本。 + - 💾 整理,当你已经完成了一系列的记录之后,可以尝试让 AI 帮你整理为一篇文章。 + 写作 + - 🗂 文件管理器,支持本地和 Github 仓库的文件和文件夹的管理,支持无限层级目录。 + - 📝 支持所见即所得、即时渲染、分屏预览三种模式。 + - 📅 版本控制,如果你开启了同步功能,可以在历史记录中回溯历史上传过的记录。 + - 🤖 AI 辅助,支持问答、续写、优化、精简、翻译等功能,且可以随时将记录插入到文章任何位置。 + - 🏞️ 图床,直接复制图片粘贴在 Markdown 编辑器中,将自动将此图片上传至图床,并转换为 Markdown 图片链接。 + - 🛠️ HTML、Markdown 转换,复制浏览器的内容,将自动转换为 Markdown 格式。 + 辅助 + - 📦 大模型支持,内置多种大模型配置,支持自定义,随意切换。 + - 👁️ OCR,可以辅助识别图片内的文字。 + - 🏗️ 整理模板,可自定义模板,方便 AI 对不同类型的内容进行定制化整理。 + - 🔎 全局搜索,可以快速搜索并跳转至指定的内容。 + - 🌃 图床管理,可以方便的管理图床仓库的内容。 + - 💎 主题与外观,支持深色主题,支持 Markdown、代码等外观设置。 +Tags: +- 书摘 +- 书签 +- 人工智能 +- 剪藏 +- 大语言模型 +- 收藏 +- 收藏夹 +- 知识 +- 知识库 +- 笔记 +ReleaseNotes: |- + 本次更新对模型配置做了一些代码上的重构,可能导致历史模型配置错误,本次调整是未来可以更方便的接入其他供应商。 + - 重构模型配置,可通过模板创建新的模型配置。#316 + - 针对不同的厂商模板创建模型配置,提供快捷创建 API Key 按钮。 + - 现在需要手动设置主要模型,可以在对话中选择或在设置默认模型中选择。 + - 移除 Gemini 方案,使用兼容 openai 链接代替。 + - 修复 placeholder 生成时出现换行符导致未正确显示的问题。 + - 修复写作 AI 相关功能。 #315 + - 修复模型搜索切换配置时,搜索输入框的内容未重置的问题。 + - 移动端布局调整。 +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.19.0 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.0/codexu.NoteGen.yaml b/manifests/c/codexu/NoteGen/0.19.0/codexu.NoteGen.yaml new file mode 100644 index 0000000000000..bacb1f73c8813 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.0/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.19.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.1/codexu.NoteGen.installer.yaml b/manifests/c/codexu/NoteGen/0.19.1/codexu.NoteGen.installer.yaml new file mode 100644 index 0000000000000..80b0b0602fef0 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.1/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.19.1 +UpgradeBehavior: install +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.19.1/NoteGen_0.19.1_x64-setup.exe + InstallerSha256: CB568875C9DBB1936BC419F12A2217AA9AF3D784548E3C581D53739852BB198A + ProductCode: NoteGen +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.19.1/NoteGen_0.19.1_x64_en-US.msi + InstallerSha256: 9697BB280BAA180B35B75739256319C9B14E86867CA1713662924E43A9014C00 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{A0574532-43F2-4C75-955B-09268DB30444}' + AppsAndFeaturesEntries: + - UpgradeCode: '{E353DB5D-25D7-5FA9-B7DC-C4BC524A075E}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.1/codexu.NoteGen.locale.en-US.yaml b/manifests/c/codexu/NoteGen/0.19.1/codexu.NoteGen.locale.en-US.yaml new file mode 100644 index 0000000000000..e56ed7013d7e8 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.1/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.19.1 +PackageLocale: en-US +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 codexu +ShortDescription: A cross-platform AI note-taking application focused on recording and writing. +Description: |- + NoteGen is a cross-platform AI note-taking application focused on recording and writing, developed based on Tauri. + The core philosophy of NoteGen is to combine recording, writing, and AI, with all three complementing each other. The recording function helps users quickly capture and organize fragmented knowledge. The organization function is the bridge connecting recording and writing, which can organize continuously recorded content into a readable note, assisting users in completing the creation process from scratch. If the AI-organized results cannot meet your requirements, you can use the writing function to refine it yourself. + Recording + Recording methods supported: + 1. 🖥️ Screenshot recording, through which users can quickly capture and record fragmented knowledge, especially in situations where text copying is not possible. + 2. 📄 Text recording, which allows copying text or manually inputting brief content as a record. + 3. 🖼️ Illustration recording, which can be automatically inserted into appropriate positions when generating notes. + 4. 📇 File recording, which recognizes content from PDF, md, html, txt, and other files for text recording. + 5. 🔗 Link recording (to be implemented), using web crawlers for page content recognition and recording. + 6. 📷 Photo recording (to be implemented), similar to illustration recording, calling the camera to record, suitable for future mobile use. + Auxiliary recording: + - 🏷️ Custom tags for better categorization and differentiation of different recording scenarios. + - 🤖 AI conversation, by default associated with records under the current tag, and you can also manually associate it with any article in your writing. + - 📋 Clipboard recognition, which automatically recognizes images or text in the clipboard after you copy them. + - 💾 Organization, when you have completed a series of records, you can try to let AI help you organize them into an article. + Writing + - 🗂 File manager, supporting management of files and folders in local and Github repositories, with unlimited directory levels. + - 📝 Support for WYSIWYG, instant rendering, and split-screen preview modes. + - 📅 Version control, if you enable synchronization, you can trace back to historically uploaded records in the history. + - 🤖 AI assistance, supporting Q&A, continuation, optimization, simplification, translation, and other functions, and you can insert records into any position of the article at any time. + - 🏞️ Image hosting, directly copy and paste images into the Markdown editor, which will automatically upload the image to the image hosting service and convert it to a Markdown image link. + - 🛠️ HTML and Markdown conversion, copying content from browsers will automatically convert it to Markdown format. + Auxiliary + - 📦 Large model support, with multiple built-in large model configurations, supporting customization and easy switching. + - 👁️ OCR, which can assist in recognizing text in images. + - 🏗️ Organization templates, which can be customized for AI to organize different types of content. + - 🔎 Global search, for quickly searching and jumping to specified content. + - 🌃 Image hosting management, for convenient management of image hosting repository content. + - 💎 Themes and appearance, supporting dark theme, and appearance settings for Markdown, code, etc. +Tags: +- ai +- bookmark +- clipping +- favorite +- knowledge +- knowledge-base +- large-language-model +- llm +- mark +- notes +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.19.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.1/codexu.NoteGen.locale.zh-CN.yaml b/manifests/c/codexu/NoteGen/0.19.1/codexu.NoteGen.locale.zh-CN.yaml new file mode 100644 index 0000000000000..70260284c909e --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.1/codexu.NoteGen.locale.zh-CN.yaml @@ -0,0 +1,62 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: codexu.NoteGen +PackageVersion: 0.19.1 +PackageLocale: zh-CN +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 codexu +ShortDescription: 一款专注于记录和写作的跨端 AI 笔记应用。 +Description: |- + NoteGen 是一款专注于记录和写作的跨端 AI 笔记应用,基于 Tauri 开发。 + NoteGen 的核心理念是将记录、写作和 AI 结合使用,三者相辅相成。记录功能可以帮助用户快速捕捉和整理碎片化知识。整理功能是连接记录和写作的桥梁,可将持续记录的内容整理成一篇可读的笔记,辅助用户完成从零到一的创作过程,如果 AI 整理的结果无法满足你的要求,那么你可以使用写作功能自行去完善。 + 记录 + 记录方式支持: + 1. 🖥️ 截图记录,通过截图,用户可以快速捕捉和记录碎片化知识,尤其是在遇到无法进行文本复制的情况下。 + 2. 📄 文本记录,可以复制文本或者手动输入一些简短的内容作为一次记录。 + 3. 🖼️ 插图记录,可以在笔记生成时,自动插入到合适的位置。 + 4. 📇 文件记录,识别 PDF、md、html、txt 等文件内容,进行文字记录。 + 5. 🔗 链接记录(待实现),使用爬虫进行页面内容识别与记录。 + 6. 📷 拍照记录(待实现)功能类似于插图记录,调用相机记录,适合未来移动端。 + 辅助记录: + - 🏷️ 自定义标签,更好地归类和区分不同的记录场景。 + - 🤖 AI 对话,默认关联当前标签下的记录,你也可以手动去关联写作内的任何文章。 + - 📋 剪贴板识别,在你进行图片或文本复制后,会自动识别剪贴板中的图片或文本。 + - 💾 整理,当你已经完成了一系列的记录之后,可以尝试让 AI 帮你整理为一篇文章。 + 写作 + - 🗂 文件管理器,支持本地和 Github 仓库的文件和文件夹的管理,支持无限层级目录。 + - 📝 支持所见即所得、即时渲染、分屏预览三种模式。 + - 📅 版本控制,如果你开启了同步功能,可以在历史记录中回溯历史上传过的记录。 + - 🤖 AI 辅助,支持问答、续写、优化、精简、翻译等功能,且可以随时将记录插入到文章任何位置。 + - 🏞️ 图床,直接复制图片粘贴在 Markdown 编辑器中,将自动将此图片上传至图床,并转换为 Markdown 图片链接。 + - 🛠️ HTML、Markdown 转换,复制浏览器的内容,将自动转换为 Markdown 格式。 + 辅助 + - 📦 大模型支持,内置多种大模型配置,支持自定义,随意切换。 + - 👁️ OCR,可以辅助识别图片内的文字。 + - 🏗️ 整理模板,可自定义模板,方便 AI 对不同类型的内容进行定制化整理。 + - 🔎 全局搜索,可以快速搜索并跳转至指定的内容。 + - 🌃 图床管理,可以方便的管理图床仓库的内容。 + - 💎 主题与外观,支持深色主题,支持 Markdown、代码等外观设置。 +Tags: +- 书摘 +- 书签 +- 人工智能 +- 剪藏 +- 大语言模型 +- 收藏 +- 收藏夹 +- 知识 +- 知识库 +- 笔记 +ReleaseNotes: |- + - 修复 RAG 相关的嵌入模型与重排序模型无法正常使用的问题。 + - 修复查看 release 链接错误。 +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.19.1 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.1/codexu.NoteGen.yaml b/manifests/c/codexu/NoteGen/0.19.1/codexu.NoteGen.yaml new file mode 100644 index 0000000000000..18d8c7fed700a --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.1/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.19.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.2/codexu.NoteGen.installer.yaml b/manifests/c/codexu/NoteGen/0.19.2/codexu.NoteGen.installer.yaml new file mode 100644 index 0000000000000..f45fa2929c266 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.2/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.19.2 +UpgradeBehavior: install +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.19.2/NoteGen_0.19.2_x64-setup.exe + InstallerSha256: 48A5CD3FD412EDEF8B7321003520623DA2ECA437CACA8DFFA007D4DC9B80DC2C + ProductCode: NoteGen +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.19.2/NoteGen_0.19.2_x64_en-US.msi + InstallerSha256: FB14F53301AFD7F8C73EB1FB80761BC5D46E6CE69CF9BC6B1ADC370720D3A441 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{230AE9F2-CE06-46A6-897D-0003971CEC1A}' + AppsAndFeaturesEntries: + - UpgradeCode: '{E353DB5D-25D7-5FA9-B7DC-C4BC524A075E}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.2/codexu.NoteGen.locale.en-US.yaml b/manifests/c/codexu/NoteGen/0.19.2/codexu.NoteGen.locale.en-US.yaml new file mode 100644 index 0000000000000..542a5fa819e81 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.2/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.19.2 +PackageLocale: en-US +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 codexu +ShortDescription: A cross-platform AI note-taking application focused on recording and writing. +Description: |- + NoteGen is a cross-platform AI note-taking application focused on recording and writing, developed based on Tauri. + The core philosophy of NoteGen is to combine recording, writing, and AI, with all three complementing each other. The recording function helps users quickly capture and organize fragmented knowledge. The organization function is the bridge connecting recording and writing, which can organize continuously recorded content into a readable note, assisting users in completing the creation process from scratch. If the AI-organized results cannot meet your requirements, you can use the writing function to refine it yourself. + Recording + Recording methods supported: + 1. 🖥️ Screenshot recording, through which users can quickly capture and record fragmented knowledge, especially in situations where text copying is not possible. + 2. 📄 Text recording, which allows copying text or manually inputting brief content as a record. + 3. 🖼️ Illustration recording, which can be automatically inserted into appropriate positions when generating notes. + 4. 📇 File recording, which recognizes content from PDF, md, html, txt, and other files for text recording. + 5. 🔗 Link recording (to be implemented), using web crawlers for page content recognition and recording. + 6. 📷 Photo recording (to be implemented), similar to illustration recording, calling the camera to record, suitable for future mobile use. + Auxiliary recording: + - 🏷️ Custom tags for better categorization and differentiation of different recording scenarios. + - 🤖 AI conversation, by default associated with records under the current tag, and you can also manually associate it with any article in your writing. + - 📋 Clipboard recognition, which automatically recognizes images or text in the clipboard after you copy them. + - 💾 Organization, when you have completed a series of records, you can try to let AI help you organize them into an article. + Writing + - 🗂 File manager, supporting management of files and folders in local and Github repositories, with unlimited directory levels. + - 📝 Support for WYSIWYG, instant rendering, and split-screen preview modes. + - 📅 Version control, if you enable synchronization, you can trace back to historically uploaded records in the history. + - 🤖 AI assistance, supporting Q&A, continuation, optimization, simplification, translation, and other functions, and you can insert records into any position of the article at any time. + - 🏞️ Image hosting, directly copy and paste images into the Markdown editor, which will automatically upload the image to the image hosting service and convert it to a Markdown image link. + - 🛠️ HTML and Markdown conversion, copying content from browsers will automatically convert it to Markdown format. + Auxiliary + - 📦 Large model support, with multiple built-in large model configurations, supporting customization and easy switching. + - 👁️ OCR, which can assist in recognizing text in images. + - 🏗️ Organization templates, which can be customized for AI to organize different types of content. + - 🔎 Global search, for quickly searching and jumping to specified content. + - 🌃 Image hosting management, for convenient management of image hosting repository content. + - 💎 Themes and appearance, supporting dark theme, and appearance settings for Markdown, code, etc. +Tags: +- ai +- bookmark +- clipping +- favorite +- knowledge +- knowledge-base +- large-language-model +- llm +- mark +- notes +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.19.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.2/codexu.NoteGen.locale.zh-CN.yaml b/manifests/c/codexu/NoteGen/0.19.2/codexu.NoteGen.locale.zh-CN.yaml new file mode 100644 index 0000000000000..579ea6d73da43 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.2/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.19.2 +PackageLocale: zh-CN +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 codexu +ShortDescription: 一款专注于记录和写作的跨端 AI 笔记应用。 +Description: |- + NoteGen 是一款专注于记录和写作的跨端 AI 笔记应用,基于 Tauri 开发。 + NoteGen 的核心理念是将记录、写作和 AI 结合使用,三者相辅相成。记录功能可以帮助用户快速捕捉和整理碎片化知识。整理功能是连接记录和写作的桥梁,可将持续记录的内容整理成一篇可读的笔记,辅助用户完成从零到一的创作过程,如果 AI 整理的结果无法满足你的要求,那么你可以使用写作功能自行去完善。 + 记录 + 记录方式支持: + 1. 🖥️ 截图记录,通过截图,用户可以快速捕捉和记录碎片化知识,尤其是在遇到无法进行文本复制的情况下。 + 2. 📄 文本记录,可以复制文本或者手动输入一些简短的内容作为一次记录。 + 3. 🖼️ 插图记录,可以在笔记生成时,自动插入到合适的位置。 + 4. 📇 文件记录,识别 PDF、md、html、txt 等文件内容,进行文字记录。 + 5. 🔗 链接记录(待实现),使用爬虫进行页面内容识别与记录。 + 6. 📷 拍照记录(待实现)功能类似于插图记录,调用相机记录,适合未来移动端。 + 辅助记录: + - 🏷️ 自定义标签,更好地归类和区分不同的记录场景。 + - 🤖 AI 对话,默认关联当前标签下的记录,你也可以手动去关联写作内的任何文章。 + - 📋 剪贴板识别,在你进行图片或文本复制后,会自动识别剪贴板中的图片或文本。 + - 💾 整理,当你已经完成了一系列的记录之后,可以尝试让 AI 帮你整理为一篇文章。 + 写作 + - 🗂 文件管理器,支持本地和 Github 仓库的文件和文件夹的管理,支持无限层级目录。 + - 📝 支持所见即所得、即时渲染、分屏预览三种模式。 + - 📅 版本控制,如果你开启了同步功能,可以在历史记录中回溯历史上传过的记录。 + - 🤖 AI 辅助,支持问答、续写、优化、精简、翻译等功能,且可以随时将记录插入到文章任何位置。 + - 🏞️ 图床,直接复制图片粘贴在 Markdown 编辑器中,将自动将此图片上传至图床,并转换为 Markdown 图片链接。 + - 🛠️ HTML、Markdown 转换,复制浏览器的内容,将自动转换为 Markdown 格式。 + 辅助 + - 📦 大模型支持,内置多种大模型配置,支持自定义,随意切换。 + - 👁️ OCR,可以辅助识别图片内的文字。 + - 🏗️ 整理模板,可自定义模板,方便 AI 对不同类型的内容进行定制化整理。 + - 🔎 全局搜索,可以快速搜索并跳转至指定的内容。 + - 🌃 图床管理,可以方便的管理图床仓库的内容。 + - 💎 主题与外观,支持深色主题,支持 Markdown、代码等外观设置。 +Tags: +- 书摘 +- 书签 +- 人工智能 +- 剪藏 +- 大语言模型 +- 收藏 +- 收藏夹 +- 知识 +- 知识库 +- 笔记 +ReleaseNotes: |- + - 默认模型中嵌入模型和重排序模型已移至新增加的知识库设置页面。 + - 增加知识库参数设置,包括分块大小、重叠大小、检索数量、相似度阈值。 + - 系统设置增加编辑器设置,增加打字机模式控制。#311 + - 移动端对话 header 增加可以选择 prompt 和模型下拉框。 + - Windows 下查看默认工作区路径弹出文档文件夹问题。#322 +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.19.2 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.2/codexu.NoteGen.yaml b/manifests/c/codexu/NoteGen/0.19.2/codexu.NoteGen.yaml new file mode 100644 index 0000000000000..86a8753aacf11 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.2/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.19.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.3/codexu.NoteGen.installer.yaml b/manifests/c/codexu/NoteGen/0.19.3/codexu.NoteGen.installer.yaml new file mode 100644 index 0000000000000..8043e101129c4 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.3/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.19.3 +UpgradeBehavior: install +ReleaseDate: 2025-07-09 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.19.3/NoteGen_0.19.3_x64-setup.exe + InstallerSha256: 2F319AA8A0F66B9DFCB8887E807524A116450611D3D91BB60C1CD7C3F878D0C8 + ProductCode: NoteGen +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.19.3/NoteGen_0.19.3_x64_en-US.msi + InstallerSha256: 3B45197D6B07048D9A11D8C226A48E2D5D423D5A2E8A263A33A6B69B5B1BF9BD + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{7B26BDFC-B1A1-46B1-B897-E4D0C2F85551}' + AppsAndFeaturesEntries: + - UpgradeCode: '{E353DB5D-25D7-5FA9-B7DC-C4BC524A075E}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.3/codexu.NoteGen.locale.en-US.yaml b/manifests/c/codexu/NoteGen/0.19.3/codexu.NoteGen.locale.en-US.yaml new file mode 100644 index 0000000000000..a27e7d557a0ab --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.3/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.19.3 +PackageLocale: en-US +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 codexu +ShortDescription: A cross-platform AI note-taking application focused on recording and writing. +Description: |- + NoteGen is a cross-platform AI note-taking application focused on recording and writing, developed based on Tauri. + The core philosophy of NoteGen is to combine recording, writing, and AI, with all three complementing each other. The recording function helps users quickly capture and organize fragmented knowledge. The organization function is the bridge connecting recording and writing, which can organize continuously recorded content into a readable note, assisting users in completing the creation process from scratch. If the AI-organized results cannot meet your requirements, you can use the writing function to refine it yourself. + Recording + Recording methods supported: + 1. 🖥️ Screenshot recording, through which users can quickly capture and record fragmented knowledge, especially in situations where text copying is not possible. + 2. 📄 Text recording, which allows copying text or manually inputting brief content as a record. + 3. 🖼️ Illustration recording, which can be automatically inserted into appropriate positions when generating notes. + 4. 📇 File recording, which recognizes content from PDF, md, html, txt, and other files for text recording. + 5. 🔗 Link recording (to be implemented), using web crawlers for page content recognition and recording. + 6. 📷 Photo recording (to be implemented), similar to illustration recording, calling the camera to record, suitable for future mobile use. + Auxiliary recording: + - 🏷️ Custom tags for better categorization and differentiation of different recording scenarios. + - 🤖 AI conversation, by default associated with records under the current tag, and you can also manually associate it with any article in your writing. + - 📋 Clipboard recognition, which automatically recognizes images or text in the clipboard after you copy them. + - 💾 Organization, when you have completed a series of records, you can try to let AI help you organize them into an article. + Writing + - 🗂 File manager, supporting management of files and folders in local and Github repositories, with unlimited directory levels. + - 📝 Support for WYSIWYG, instant rendering, and split-screen preview modes. + - 📅 Version control, if you enable synchronization, you can trace back to historically uploaded records in the history. + - 🤖 AI assistance, supporting Q&A, continuation, optimization, simplification, translation, and other functions, and you can insert records into any position of the article at any time. + - 🏞️ Image hosting, directly copy and paste images into the Markdown editor, which will automatically upload the image to the image hosting service and convert it to a Markdown image link. + - 🛠️ HTML and Markdown conversion, copying content from browsers will automatically convert it to Markdown format. + Auxiliary + - 📦 Large model support, with multiple built-in large model configurations, supporting customization and easy switching. + - 👁️ OCR, which can assist in recognizing text in images. + - 🏗️ Organization templates, which can be customized for AI to organize different types of content. + - 🔎 Global search, for quickly searching and jumping to specified content. + - 🌃 Image hosting management, for convenient management of image hosting repository content. + - 💎 Themes and appearance, supporting dark theme, and appearance settings for Markdown, code, etc. +Tags: +- ai +- bookmark +- clipping +- favorite +- knowledge +- knowledge-base +- large-language-model +- llm +- mark +- notes +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.19.3 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.3/codexu.NoteGen.locale.zh-CN.yaml b/manifests/c/codexu/NoteGen/0.19.3/codexu.NoteGen.locale.zh-CN.yaml new file mode 100644 index 0000000000000..384f213ef82c0 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.3/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.19.3 +PackageLocale: zh-CN +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 codexu +ShortDescription: 一款专注于记录和写作的跨端 AI 笔记应用。 +Description: |- + NoteGen 是一款专注于记录和写作的跨端 AI 笔记应用,基于 Tauri 开发。 + NoteGen 的核心理念是将记录、写作和 AI 结合使用,三者相辅相成。记录功能可以帮助用户快速捕捉和整理碎片化知识。整理功能是连接记录和写作的桥梁,可将持续记录的内容整理成一篇可读的笔记,辅助用户完成从零到一的创作过程,如果 AI 整理的结果无法满足你的要求,那么你可以使用写作功能自行去完善。 + 记录 + 记录方式支持: + 1. 🖥️ 截图记录,通过截图,用户可以快速捕捉和记录碎片化知识,尤其是在遇到无法进行文本复制的情况下。 + 2. 📄 文本记录,可以复制文本或者手动输入一些简短的内容作为一次记录。 + 3. 🖼️ 插图记录,可以在笔记生成时,自动插入到合适的位置。 + 4. 📇 文件记录,识别 PDF、md、html、txt 等文件内容,进行文字记录。 + 5. 🔗 链接记录(待实现),使用爬虫进行页面内容识别与记录。 + 6. 📷 拍照记录(待实现)功能类似于插图记录,调用相机记录,适合未来移动端。 + 辅助记录: + - 🏷️ 自定义标签,更好地归类和区分不同的记录场景。 + - 🤖 AI 对话,默认关联当前标签下的记录,你也可以手动去关联写作内的任何文章。 + - 📋 剪贴板识别,在你进行图片或文本复制后,会自动识别剪贴板中的图片或文本。 + - 💾 整理,当你已经完成了一系列的记录之后,可以尝试让 AI 帮你整理为一篇文章。 + 写作 + - 🗂 文件管理器,支持本地和 Github 仓库的文件和文件夹的管理,支持无限层级目录。 + - 📝 支持所见即所得、即时渲染、分屏预览三种模式。 + - 📅 版本控制,如果你开启了同步功能,可以在历史记录中回溯历史上传过的记录。 + - 🤖 AI 辅助,支持问答、续写、优化、精简、翻译等功能,且可以随时将记录插入到文章任何位置。 + - 🏞️ 图床,直接复制图片粘贴在 Markdown 编辑器中,将自动将此图片上传至图床,并转换为 Markdown 图片链接。 + - 🛠️ HTML、Markdown 转换,复制浏览器的内容,将自动转换为 Markdown 格式。 + 辅助 + - 📦 大模型支持,内置多种大模型配置,支持自定义,随意切换。 + - 👁️ OCR,可以辅助识别图片内的文字。 + - 🏗️ 整理模板,可自定义模板,方便 AI 对不同类型的内容进行定制化整理。 + - 🔎 全局搜索,可以快速搜索并跳转至指定的内容。 + - 🌃 图床管理,可以方便的管理图床仓库的内容。 + - 💎 主题与外观,支持深色主题,支持 Markdown、代码等外观设置。 +Tags: +- 书摘 +- 书签 +- 人工智能 +- 剪藏 +- 大语言模型 +- 收藏 +- 收藏夹 +- 知识 +- 知识库 +- 笔记 +ReleaseNotes: |- + - 增加提取关键词进行模糊查询和向量查询,提高知识库识别的准确率。 + - 使用 rust 重写模糊搜索功能,提高准确度和性能。 + - Markdown 编辑器设置增加默认启用大纲和大纲位置设置。#357 + - API Key 和 Access Token 输入框默认以 password 展示。#361 + - 修复未输入 APIKey 导致无法选择默认模型。 +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.19.3 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/codexu/NoteGen/0.19.3/codexu.NoteGen.yaml b/manifests/c/codexu/NoteGen/0.19.3/codexu.NoteGen.yaml new file mode 100644 index 0000000000000..905dff1634538 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.19.3/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.19.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/commercialhaskell/stack/3.7.1/commercialhaskell.stack.installer.yaml b/manifests/c/commercialhaskell/stack/3.7.1/commercialhaskell.stack.installer.yaml new file mode 100644 index 0000000000000..1d4a7ae91193e --- /dev/null +++ b/manifests/c/commercialhaskell/stack/3.7.1/commercialhaskell.stack.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: commercialhaskell.stack +PackageVersion: 3.7.1 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: Haskell Stack +ReleaseDate: 2025-06-28 +AppsAndFeaturesEntries: +- ProductCode: Haskell Stack +InstallationMetadata: + DefaultInstallLocation: '%AppData%\local\bin' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/commercialhaskell/stack/releases/download/v3.7.1/stack-3.7.1-windows-x86_64-installer.exe + InstallerSha256: AD90D79BC3293810CB6C8A96AA297315E01F041097099C0168108B5F3B1F9606 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/commercialhaskell/stack/3.7.1/commercialhaskell.stack.locale.en-US.yaml b/manifests/c/commercialhaskell/stack/3.7.1/commercialhaskell.stack.locale.en-US.yaml new file mode 100644 index 0000000000000..0fc5f2235fb67 --- /dev/null +++ b/manifests/c/commercialhaskell/stack/3.7.1/commercialhaskell.stack.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: commercialhaskell.stack +PackageVersion: 3.7.1 +PackageLocale: en-US +Publisher: commercialhaskell +PublisherUrl: https://haskellstack.org/ +PublisherSupportUrl: https://docs.haskellstack.org/en/stable/README/ +Author: Stack contributors +PackageName: Haskell Stack +PackageUrl: https://haskellstack.org/ +License: BSD-3-Clause +LicenseUrl: https://github.com/commercialhaskell/stack/blob/HEAD/LICENSE +Copyright: Copyright (c) 2015-2022, Stack contributors +CopyrightUrl: https://raw.githubusercontent.com/commercialhaskell/stack/master/LICENSE +ShortDescription: Stack is a cross-platform program for developing Haskell projects. It is aimed at Haskellers both new and experienced. +Moniker: stack +Tags: +- cabal-build +- haskell +- stack +- stackage +ReleaseNotes: |- + See https://haskellstack.org/ for installation and upgrade instructions. + Changes since v3.5.1: + Other enhancements: + - Bump to Hpack 0.38.1. + - The --extra-dep option of Stack's script command now accepts a YAML value specifying any immutable extra-dep. Previously only an extra-dep in the package index that could be specified by a YAML string (for example, acme-missiles-0.3@rev:0) was accepted. + Bug fixes: + - stack script --package now uses GHC's -package-id option to expose the installed package, rather than GHC's -package option. For packages with public sub-libraries, -package can expose an installed package other than one listed by ghc-pkg list . + - Work around ghc-pkg bug where, on Windows only, it cannot register a package into a package database that is also listed in the GHC_PACKAGE_PATH environment variable. In previous versions of Stack, this affected stack script when copying a pre-compiled package from another package database. + - On Windows, when decompressing, and extracting tools, from archive files, Stack uses the system temporary directory, rather than the root of the destination drive, if the former is on the destination drive. + Thanks to all our contributors for this release: + - Max Ulidtko + - Mike Pilgrem + - Olivier Benz + - Simon Hengel +ReleaseNotesUrl: https://github.com/commercialhaskell/stack/releases/tag/v3.7.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/commercialhaskell/stack/3.7.1/commercialhaskell.stack.yaml b/manifests/c/commercialhaskell/stack/3.7.1/commercialhaskell.stack.yaml new file mode 100644 index 0000000000000..7218a34765c8a --- /dev/null +++ b/manifests/c/commercialhaskell/stack/3.7.1/commercialhaskell.stack.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: commercialhaskell.stack +PackageVersion: 3.7.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DBAdminX/Diff/v1.0.2/DBAdminX.Diff.installer.yaml b/manifests/d/DBAdminX/Diff/v1.0.2/DBAdminX.Diff.installer.yaml new file mode 100644 index 0000000000000..5241140e6162f --- /dev/null +++ b/manifests/d/DBAdminX/Diff/v1.0.2/DBAdminX.Diff.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: DBAdminX.Diff +PackageVersion: v1.0.2 +InstallerType: portable +Commands: +- diff +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/DBAdminX/Diff/releases/download/v1.0.2/Diff.exe + InstallerSha256: 558C45F74924E01A7A02C147185BAB297278BC9F557DA509B2561062D41E6EC4 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/d/DBAdminX/Diff/v1.0.2/DBAdminX.Diff.locale.en-US.yaml b/manifests/d/DBAdminX/Diff/v1.0.2/DBAdminX.Diff.locale.en-US.yaml new file mode 100644 index 0000000000000..5735e69e168d1 --- /dev/null +++ b/manifests/d/DBAdminX/Diff/v1.0.2/DBAdminX.Diff.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: DBAdminX.Diff +PackageVersion: v1.0.2 +PackageLocale: en-US +Publisher: DBAdminX +PublisherUrl: https://github.com/DBAdminX +PublisherSupportUrl: https://github.com/DBAdminX/Diff/issues +PackageName: Diff +PackageUrl: https://github.com/DBAdminX/Diff +License: MIT +ShortDescription: Diff Text Viewer +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/DBAdminX/Diff/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/DBAdminX/Diff/v1.0.2/DBAdminX.Diff.yaml b/manifests/d/DBAdminX/Diff/v1.0.2/DBAdminX.Diff.yaml new file mode 100644 index 0000000000000..b6ab0c987f6e4 --- /dev/null +++ b/manifests/d/DBAdminX/Diff/v1.0.2/DBAdminX.Diff.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: DBAdminX.Diff +PackageVersion: v1.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/DBAdminX/Diff/v1.0.4/DBAdminX.Diff.installer.yaml b/manifests/d/DBAdminX/Diff/v1.0.4/DBAdminX.Diff.installer.yaml new file mode 100644 index 0000000000000..ea4d85df9f6dc --- /dev/null +++ b/manifests/d/DBAdminX/Diff/v1.0.4/DBAdminX.Diff.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: DBAdminX.Diff +PackageVersion: v1.0.4 +InstallerType: portable +Commands: +- diff +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/DBAdminX/Diff/releases/download/v1.0.4/Diff.exe + InstallerSha256: 215A78EC42142DDFDABFC9C3070D953586C34B5EA29638047B906690AF3239FC +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-07 diff --git a/manifests/d/DBAdminX/Diff/v1.0.4/DBAdminX.Diff.locale.en-US.yaml b/manifests/d/DBAdminX/Diff/v1.0.4/DBAdminX.Diff.locale.en-US.yaml new file mode 100644 index 0000000000000..7dcf0b502a580 --- /dev/null +++ b/manifests/d/DBAdminX/Diff/v1.0.4/DBAdminX.Diff.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: DBAdminX.Diff +PackageVersion: v1.0.4 +PackageLocale: en-US +Publisher: DBAdminX +PublisherUrl: https://github.com/DBAdminX +PublisherSupportUrl: https://github.com/DBAdminX/Diff/issues +PackageName: Diff +PackageUrl: https://github.com/DBAdminX/Diff +License: MIT +ShortDescription: Diff Text Viewer +ReleaseNotesUrl: https://github.com/DBAdminX/Diff/releases/tag/v1.0.4 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/DBAdminX/Diff/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/DBAdminX/Diff/v1.0.4/DBAdminX.Diff.yaml b/manifests/d/DBAdminX/Diff/v1.0.4/DBAdminX.Diff.yaml new file mode 100644 index 0000000000000..02b83ecd55523 --- /dev/null +++ b/manifests/d/DBAdminX/Diff/v1.0.4/DBAdminX.Diff.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: DBAdminX.Diff +PackageVersion: v1.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/DBAdminX/Diff/v1.0.5/DBAdminX.Diff.installer.yaml b/manifests/d/DBAdminX/Diff/v1.0.5/DBAdminX.Diff.installer.yaml new file mode 100644 index 0000000000000..b38fddf5462f9 --- /dev/null +++ b/manifests/d/DBAdminX/Diff/v1.0.5/DBAdminX.Diff.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: DBAdminX.Diff +PackageVersion: v1.0.5 +InstallerType: inno +Commands: +- diff +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/DBAdminX/Diff/releases/download/v1.0.5/Diff.exe + InstallerSha256: CD604558E382ED5682911275450367AF29DB11DB2400FB3BF5F30E7340EC4733 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-08 diff --git a/manifests/d/DBAdminX/Diff/v1.0.5/DBAdminX.Diff.locale.en-US.yaml b/manifests/d/DBAdminX/Diff/v1.0.5/DBAdminX.Diff.locale.en-US.yaml new file mode 100644 index 0000000000000..9be2deee2b478 --- /dev/null +++ b/manifests/d/DBAdminX/Diff/v1.0.5/DBAdminX.Diff.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: DBAdminX.Diff +PackageVersion: v1.0.5 +PackageLocale: en-US +Publisher: DBAdminX +PublisherUrl: https://github.com/DBAdminX +PublisherSupportUrl: https://github.com/DBAdminX/Diff/issues +PackageName: Diff +PackageUrl: https://github.com/DBAdminX/Diff +License: MIT +ShortDescription: Diff Text Viewer +ReleaseNotesUrl: https://github.com/DBAdminX/Diff/releases/tag/v1.0.5 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/DBAdminX/Diff/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/DBAdminX/Diff/v1.0.5/DBAdminX.Diff.yaml b/manifests/d/DBAdminX/Diff/v1.0.5/DBAdminX.Diff.yaml new file mode 100644 index 0000000000000..5dccf006ad2da --- /dev/null +++ b/manifests/d/DBAdminX/Diff/v1.0.5/DBAdminX.Diff.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: DBAdminX.Diff +PackageVersion: v1.0.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.1.2/DBVis.DBVisualizer.installer.yaml b/manifests/d/DBVis/DBVisualizer/25.1.2/DBVis.DBVisualizer.installer.yaml deleted file mode 100644 index b86edc4152af0..0000000000000 --- a/manifests/d/DBVis/DBVisualizer/25.1.2/DBVis.DBVisualizer.installer.yaml +++ /dev/null @@ -1,41 +0,0 @@ -# Automatically updated by the winget bot at 2025/Mar/27 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: DBVis.DBVisualizer -PackageVersion: 25.1.2 -InstallerType: exe -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: -q -Dinstall4j.suppressUnattendedReboot=true - SilentWithProgress: -q -splash "" -Dinstall4j.suppressUnattendedReboot=true - InstallLocation: -dir "" - Log: -Dinstall4j.log="" -UpgradeBehavior: install -FileExtensions: -- sql -ProductCode: 8973-4025-0853-7287 -ReleaseDate: 2025-03-25 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.1.2/media/dbvis_windows-x64_25_1_2_jre.exe - InstallerSha256: F0C776133E73AFE41E909B018AA5BA34C55540D99D405CB77D20CE4EBC5E9B6B -- Architecture: x64 - Scope: machine - InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.1.2/media/dbvis_windows-x64_25_1_2_jre.exe - InstallerSha256: F0C776133E73AFE41E909B018AA5BA34C55540D99D405CB77D20CE4EBC5E9B6B - ElevationRequirement: elevationRequired -- Architecture: arm64 - Scope: user - InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.1.2/media/dbvis_windows-arm64_25_1_2_jre.exe - InstallerSha256: 8F2AD48D05506742F0FC24B65413AE3DDF00A84376F32EB8BB9647FD16A5EB7D -- Architecture: arm64 - Scope: machine - InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.1.2/media/dbvis_windows-arm64_25_1_2_jre.exe - InstallerSha256: 8F2AD48D05506742F0FC24B65413AE3DDF00A84376F32EB8BB9647FD16A5EB7D - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.1.2/DBVis.DBVisualizer.locale.en-US.yaml b/manifests/d/DBVis/DBVisualizer/25.1.2/DBVis.DBVisualizer.locale.en-US.yaml deleted file mode 100644 index e72a128e882c7..0000000000000 --- a/manifests/d/DBVis/DBVisualizer/25.1.2/DBVis.DBVisualizer.locale.en-US.yaml +++ /dev/null @@ -1,45 +0,0 @@ -# Automatically updated by the winget bot at 2025/Mar/27 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: DBVis.DBVisualizer -PackageVersion: 25.1.2 -PackageLocale: en-US -Publisher: DbVis Software AB -PublisherUrl: https://www.dbvis.com/ -PublisherSupportUrl: https://www.dbvis.com/support/ -PrivacyUrl: https://www.dbvis.com/privacy/ -Author: DbVis Software AB -PackageName: DbVisualizer -PackageUrl: https://www.dbvis.com/download/ -License: Proprietary -LicenseUrl: https://www.dbvis.com/eula/ -Copyright: Copyright 2025. -CopyrightUrl: https://www.dbvis.com/eula/ -ShortDescription: DbVisualizer is the SQL Client and Database Tool with the highest user satisfaction. It connects to all popular databases and runs on Win, macOS & Linux. -Moniker: dbvis -Tags: -- database -- db2 -- develop -- development -- ide -- mssql -- mysql -- postgres -- postgresql -- programming -- sql -- sqlite -ReleaseNotes: |- - Bugs Fixed - Query Builder - Exception when removing a table in Query Builder - Table Data Editor - Unsaved edits are lost without warning if the table is reloaded -ReleaseNotesUrl: https://www.dbvis.com/releasenotes/ -PurchaseUrl: https://www.dbvis.com/buy/ -Documentations: -- DocumentLabel: User Guide - DocumentUrl: https://www.dbvis.com/docs/ug/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.1.2/DBVis.DBVisualizer.locale.zh-CN.yaml b/manifests/d/DBVis/DBVisualizer/25.1.2/DBVis.DBVisualizer.locale.zh-CN.yaml deleted file mode 100644 index d3f4ab9cf3afc..0000000000000 --- a/manifests/d/DBVis/DBVisualizer/25.1.2/DBVis.DBVisualizer.locale.zh-CN.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Automatically updated by the winget bot at 2025/Mar/27 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: DBVis.DBVisualizer -PackageVersion: 25.1.2 -PackageLocale: zh-CN -License: 专有软件 -ShortDescription: DbVisualizer 是用户满意度最高的 SQL 客户端和数据库工具。它能够连接所有主流数据库,并兼容 Windows、macOS 和 Linux 操作系统。 -Tags: -- db2 -- mssql -- mysql -- postgres -- postgresql -- sql -- sqlite -- 代码 -- 开发 -- 数据库 -- 编程 -- 集成开发环境 -Documentations: -- DocumentLabel: 用户指南 - DocumentUrl: https://www.dbvis.com/docs/ug/ -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.1.2/DBVis.DBVisualizer.yaml b/manifests/d/DBVis/DBVisualizer/25.1.2/DBVis.DBVisualizer.yaml deleted file mode 100644 index d5463380150a4..0000000000000 --- a/manifests/d/DBVis/DBVisualizer/25.1.2/DBVis.DBVisualizer.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Mar/27 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: DBVis.DBVisualizer -PackageVersion: 25.1.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.1.3/DBVis.DBVisualizer.installer.yaml b/manifests/d/DBVis/DBVisualizer/25.1.3/DBVis.DBVisualizer.installer.yaml deleted file mode 100644 index ea5b2854e959b..0000000000000 --- a/manifests/d/DBVis/DBVisualizer/25.1.3/DBVis.DBVisualizer.installer.yaml +++ /dev/null @@ -1,41 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: DBVis.DBVisualizer -PackageVersion: 25.1.3 -InstallerType: exe -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: -q -Dinstall4j.suppressUnattendedReboot=true - SilentWithProgress: -q -splash "" -Dinstall4j.suppressUnattendedReboot=true - InstallLocation: -dir "" - Log: -Dinstall4j.log="" -UpgradeBehavior: install -FileExtensions: -- sql -ProductCode: 8973-4025-0853-7287 -ReleaseDate: 2025-04-11 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.1.3/media/dbvis_windows-x64_25_1_3_jre.exe - InstallerSha256: 86812C7CF4088BEA5CC6E1BA00DB15FC0F034713FBBB0C548440439444D25FA5 -- Architecture: x64 - Scope: machine - InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.1.3/media/dbvis_windows-x64_25_1_3_jre.exe - InstallerSha256: 86812C7CF4088BEA5CC6E1BA00DB15FC0F034713FBBB0C548440439444D25FA5 - ElevationRequirement: elevationRequired -- Architecture: arm64 - Scope: user - InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.1.3/media/dbvis_windows-arm64_25_1_3_jre.exe - InstallerSha256: 84B3812447EA80E65916B1497DF6EDA658F6795423227E270793E5575BF924E2 -- Architecture: arm64 - Scope: machine - InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.1.3/media/dbvis_windows-arm64_25_1_3_jre.exe - InstallerSha256: 84B3812447EA80E65916B1497DF6EDA658F6795423227E270793E5575BF924E2 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.1.3/DBVis.DBVisualizer.locale.en-US.yaml b/manifests/d/DBVis/DBVisualizer/25.1.3/DBVis.DBVisualizer.locale.en-US.yaml deleted file mode 100644 index f32e0d63dca4a..0000000000000 --- a/manifests/d/DBVis/DBVisualizer/25.1.3/DBVis.DBVisualizer.locale.en-US.yaml +++ /dev/null @@ -1,76 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: DBVis.DBVisualizer -PackageVersion: 25.1.3 -PackageLocale: en-US -Publisher: DbVis Software AB -PublisherUrl: https://www.dbvis.com/ -PublisherSupportUrl: https://www.dbvis.com/support/ -PrivacyUrl: https://www.dbvis.com/privacy/ -Author: DbVis Software AB -PackageName: DbVisualizer -PackageUrl: https://www.dbvis.com/download/ -License: Proprietary -LicenseUrl: https://www.dbvis.com/eula/ -Copyright: Copyright 2025. -CopyrightUrl: https://www.dbvis.com/eula/ -ShortDescription: DbVisualizer is the SQL Client and Database Tool with the highest user satisfaction. It connects to all popular databases and runs on Win, macOS & Linux. -Moniker: dbvis -Tags: -- database -- db2 -- develop -- development -- ide -- mssql -- mysql -- postgres -- postgresql -- programming -- sql -- sqlite -ReleaseNotes: |- - Improvements - DB Support: SQL Server - Add support for user-defined table types in SQL Server - DB Support: Snowflake - Add basic support for explain plan in Snowflake - Bugs Fixed - DB Support: ClickHouse - Exception when reading certain numeric data types in ClickHouse - DB Support: H2 - Owning table name for triggers in H2 is not displayed correctly - DB Support: Oracle - Possible exception when generating references graphs for large schemas in Oracle - DB Support: Snowflake - $$-quoted strings are not always handled correctly in Snowflake - Driver Manager - Possible exception when editing driver properties - Transitive dependencies may be left out when activating driver artifacts in Driver Manager - Export/Import User Settings - Configured jump servers may be lost after upgrade - Files - Symlinks are not expanded correctly in the Files tab on macOS - Metadata - Possible exception during application shutdown - Monitor - Variables are not expanded correctly in monitor queries that generate a single row - Navigator - Visual artifacts in the Navigator toolbar - OS Support: Linux - Possible exception when displaying the main menu on Linux - Procedure Editor - Possible exception when exporting a procedure to a file - SQL Commander - Possible exception when working with many editor tabs - Result set may be uneditable if the table in the query isn't quoted - SQL Editor - Tab is not expanded in multi-caret mode -ReleaseNotesUrl: https://www.dbvis.com/releasenotes/ -PurchaseUrl: https://www.dbvis.com/buy/ -Documentations: -- DocumentLabel: User Guide - DocumentUrl: https://www.dbvis.com/docs/ug/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.1.3/DBVis.DBVisualizer.locale.zh-CN.yaml b/manifests/d/DBVis/DBVisualizer/25.1.3/DBVis.DBVisualizer.locale.zh-CN.yaml deleted file mode 100644 index b6b3a5d2768dc..0000000000000 --- a/manifests/d/DBVis/DBVisualizer/25.1.3/DBVis.DBVisualizer.locale.zh-CN.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: DBVis.DBVisualizer -PackageVersion: 25.1.3 -PackageLocale: zh-CN -License: 专有软件 -ShortDescription: DbVisualizer 是用户满意度最高的 SQL 客户端和数据库工具。它能够连接所有主流数据库,并兼容 Windows、macOS 和 Linux 操作系统。 -Tags: -- db2 -- mssql -- mysql -- postgres -- postgresql -- sql -- sqlite -- 代码 -- 开发 -- 数据库 -- 编程 -- 集成开发环境 -Documentations: -- DocumentLabel: 用户指南 - DocumentUrl: https://www.dbvis.com/docs/ug/ -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.1.3/DBVis.DBVisualizer.yaml b/manifests/d/DBVis/DBVisualizer/25.1.3/DBVis.DBVisualizer.yaml deleted file mode 100644 index 878065056d5a8..0000000000000 --- a/manifests/d/DBVis/DBVisualizer/25.1.3/DBVis.DBVisualizer.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: DBVis.DBVisualizer -PackageVersion: 25.1.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.1.4/DBVis.DBVisualizer.installer.yaml b/manifests/d/DBVis/DBVisualizer/25.1.4/DBVis.DBVisualizer.installer.yaml deleted file mode 100644 index 6082026c28ff4..0000000000000 --- a/manifests/d/DBVis/DBVisualizer/25.1.4/DBVis.DBVisualizer.installer.yaml +++ /dev/null @@ -1,41 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: DBVis.DBVisualizer -PackageVersion: 25.1.4 -InstallerType: exe -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: -q -Dinstall4j.suppressUnattendedReboot=true - SilentWithProgress: -q -splash "" -Dinstall4j.suppressUnattendedReboot=true - InstallLocation: -dir "" - Log: -Dinstall4j.log="" -UpgradeBehavior: install -FileExtensions: -- sql -ProductCode: 8973-4025-0853-7287 -ReleaseDate: 2025-05-15 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.1.4/media/dbvis_windows-x64_25_1_4_jre.exe - InstallerSha256: BA669511AF212626DAB5AADD1FC0C2B02D830EE5C5215EE395F2AF45BD176E32 -- Architecture: x64 - Scope: machine - InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.1.4/media/dbvis_windows-x64_25_1_4_jre.exe - InstallerSha256: BA669511AF212626DAB5AADD1FC0C2B02D830EE5C5215EE395F2AF45BD176E32 - ElevationRequirement: elevationRequired -- Architecture: arm64 - Scope: user - InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.1.4/media/dbvis_windows-arm64_25_1_4_jre.exe - InstallerSha256: E910349D1CF0183EF096A6643D5256CFD8B4D1472AE6AFF40BE48B14B42D42A0 -- Architecture: arm64 - Scope: machine - InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.1.4/media/dbvis_windows-arm64_25_1_4_jre.exe - InstallerSha256: E910349D1CF0183EF096A6643D5256CFD8B4D1472AE6AFF40BE48B14B42D42A0 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.1.4/DBVis.DBVisualizer.locale.en-US.yaml b/manifests/d/DBVis/DBVisualizer/25.1.4/DBVis.DBVisualizer.locale.en-US.yaml deleted file mode 100644 index 6fa6192e4de3a..0000000000000 --- a/manifests/d/DBVis/DBVisualizer/25.1.4/DBVis.DBVisualizer.locale.en-US.yaml +++ /dev/null @@ -1,72 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: DBVis.DBVisualizer -PackageVersion: 25.1.4 -PackageLocale: en-US -Publisher: DbVis Software AB -PublisherUrl: https://www.dbvis.com/ -PublisherSupportUrl: https://www.dbvis.com/support/ -PrivacyUrl: https://www.dbvis.com/privacy/ -Author: DbVis Software AB -PackageName: DbVisualizer -PackageUrl: https://www.dbvis.com/download/ -License: Proprietary -LicenseUrl: https://www.dbvis.com/eula/ -Copyright: Copyright 2025. -CopyrightUrl: https://www.dbvis.com/eula/ -ShortDescription: DbVisualizer is the SQL Client and Database Tool with the highest user satisfaction. It connects to all popular databases and runs on Win, macOS & Linux. -Moniker: dbvis -Tags: -- database -- db2 -- develop -- development -- ide -- mssql -- mysql -- postgres -- postgresql -- programming -- sql -- sqlite -ReleaseNotes: |- - Improvements - DB Support: ClickHouse - Improve the efficiency of the "Max Rows" setting in the Data tab for ClickHouse - DB Support: H2 - Add default schema to the connection tab for H2 - DB Support: InterSystems IRIS - Include the maven artifact in the template driver for IRIS - DB Support: Salesforce - Add a template driver for Salesforce Data Cloud - Table Data Editor - Improve performance when editing large data sets - Bugs Fixed - Connection Setup - Possible exception in the connection view - DB Support: Exasol - Unexpected fingerprint error when connecting to Exasol - DB Support: Redshift - Materialized views owned by other users aren't listed correctly in Redshift - Email Support - Can't send test emails in Tool Properties->Mail Server Accounts - Explain Plan - Exception when opening explain plan settings from explain view - Export/Import User Settings - "Use SSH Tunnel" in connection settings is not always imported correctly - Files - Expanded nodes in the Files tab are not always restored when changing view settings - Latest used connection is not always preserved when moving files in the Files tab - Grid Component - Text wrapping doesn't work in the first column of the grid - SQL Commander - Undo doesn't work when moving text in the editor on Windows - When warning the user about uncommitted updates, SQL is displayed in lowercase -ReleaseNotesUrl: https://www.dbvis.com/releasenotes/ -PurchaseUrl: https://www.dbvis.com/buy/ -Documentations: -- DocumentLabel: User Guide - DocumentUrl: https://www.dbvis.com/docs/ug/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.1.4/DBVis.DBVisualizer.locale.zh-CN.yaml b/manifests/d/DBVis/DBVisualizer/25.1.4/DBVis.DBVisualizer.locale.zh-CN.yaml deleted file mode 100644 index 1cfdada9fadfb..0000000000000 --- a/manifests/d/DBVis/DBVisualizer/25.1.4/DBVis.DBVisualizer.locale.zh-CN.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: DBVis.DBVisualizer -PackageVersion: 25.1.4 -PackageLocale: zh-CN -License: 专有软件 -ShortDescription: DbVisualizer 是用户满意度最高的 SQL 客户端和数据库工具。它能够连接所有主流数据库,并兼容 Windows、macOS 和 Linux 操作系统。 -Tags: -- db2 -- mssql -- mysql -- postgres -- postgresql -- sql -- sqlite -- 代码 -- 开发 -- 数据库 -- 编程 -- 集成开发环境 -Documentations: -- DocumentLabel: 用户指南 - DocumentUrl: https://www.dbvis.com/docs/ug/ -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.1.4/DBVis.DBVisualizer.yaml b/manifests/d/DBVis/DBVisualizer/25.1.4/DBVis.DBVisualizer.yaml deleted file mode 100644 index b72ee8917ab73..0000000000000 --- a/manifests/d/DBVis/DBVisualizer/25.1.4/DBVis.DBVisualizer.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: DBVis.DBVisualizer -PackageVersion: 25.1.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.2.1/DBVis.DBVisualizer.installer.yaml b/manifests/d/DBVis/DBVisualizer/25.2.1/DBVis.DBVisualizer.installer.yaml new file mode 100644 index 0000000000000..eb265cf45f8d9 --- /dev/null +++ b/manifests/d/DBVis/DBVisualizer/25.2.1/DBVis.DBVisualizer.installer.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: DBVis.DBVisualizer +PackageVersion: 25.2.1 +InstallerType: exe +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: -q -Dinstall4j.suppressUnattendedReboot=true + SilentWithProgress: -q -splash "" -Dinstall4j.suppressUnattendedReboot=true + InstallLocation: -dir "" + Log: -Dinstall4j.log="" +UpgradeBehavior: install +FileExtensions: +- sql +ProductCode: 8973-4025-0853-7287 +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.2.1/media/dbvis_windows-x64_25_2_1_jre.exe + InstallerSha256: 051BE92FB549327904912E1D19F550ADAA7F130E89965D448F10DDA39FB96D11 +- Architecture: x64 + Scope: machine + InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.2.1/media/dbvis_windows-x64_25_2_1_jre.exe + InstallerSha256: 051BE92FB549327904912E1D19F550ADAA7F130E89965D448F10DDA39FB96D11 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.2.1/media/dbvis_windows-arm64_25_2_1_jre.exe + InstallerSha256: 7C3D766ECCCDCCCC345D4623305F1FFA444A23AC4C9A9D90315FA3D13808240D +- Architecture: arm64 + Scope: machine + InstallerUrl: https://www.dbvis.com/product_download/dbvis-25.2.1/media/dbvis_windows-arm64_25_2_1_jre.exe + InstallerSha256: 7C3D766ECCCDCCCC345D4623305F1FFA444A23AC4C9A9D90315FA3D13808240D + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.2.1/DBVis.DBVisualizer.locale.en-US.yaml b/manifests/d/DBVis/DBVisualizer/25.2.1/DBVis.DBVisualizer.locale.en-US.yaml new file mode 100644 index 0000000000000..85e3d90a65f70 --- /dev/null +++ b/manifests/d/DBVis/DBVisualizer/25.2.1/DBVis.DBVisualizer.locale.en-US.yaml @@ -0,0 +1,81 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DBVis.DBVisualizer +PackageVersion: 25.2.1 +PackageLocale: en-US +Publisher: DbVis Software AB +PublisherUrl: https://www.dbvis.com/ +PublisherSupportUrl: https://www.dbvis.com/support/ +PrivacyUrl: https://www.dbvis.com/privacy/ +Author: DbVis Software AB +PackageName: DbVisualizer +PackageUrl: https://www.dbvis.com/download/ +License: Proprietary +LicenseUrl: https://www.dbvis.com/eula/ +Copyright: Copyright 2025. +CopyrightUrl: https://www.dbvis.com/eula/ +ShortDescription: DbVisualizer is the SQL Client and Database Tool with the highest user satisfaction. It connects to all popular databases and runs on Win, macOS & Linux. +Moniker: dbvis +Tags: +- database +- db2 +- develop +- development +- ide +- mssql +- mysql +- postgres +- postgresql +- programming +- sql +- sqlite +ReleaseNotes: |- + Improvements + Git + Reorder Git repositories using drag and drop + Bugs Fixed + Auto-Completion + Possible exception when using auto-complete while disconnected + Connection Setup + Possible exception when trying to create a database connection + Contact Support + Possible exception when submitting a support request + DB Support: DB2 LUW + Schema names are incorrect when using Db2 12 + DB Support: MySQL + Databases are not sorted correctly in the database objects tree when using the latest MySQL driver + DB Support: Snowflake + Can't use iceberg and external tables in Query Builder + Identifiers may be unnecessarily delimited when auto-completing + Data tab + Possible exception when using reload in the Data tab + Export + Text data may be truncated during export + Files + Improved performance when working with large folders in the Files tab + Quick filter doesn’t always find matching entries in Bookmarks and Monitors in the Files tab + Grid Component + Exception for large values of Max Scale in the Aggregates tab + Possible exception when closing a grid while the Record tab is open + Possible exception when editing data in the grid + Import + Column type may be auto-detected as array instead of string when importing table data + Navigator + Relations are presented incorrectly in the Navigator view + Performance/Stability + Possible exception on application shutdown + References + Reference graph does not work for tables containing multi-column foreign keys + SQL Commander + "Show in Files" not always enabled in SQL Commander + Possible exception in SQL Commander + Possible exception when generating a chart + Tab guidelines disappear when application font size is increased +ReleaseNotesUrl: https://www.dbvis.com/releasenotes/ +PurchaseUrl: https://www.dbvis.com/buy/ +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://www.dbvis.com/docs/ug/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.2.1/DBVis.DBVisualizer.locale.zh-CN.yaml b/manifests/d/DBVis/DBVisualizer/25.2.1/DBVis.DBVisualizer.locale.zh-CN.yaml new file mode 100644 index 0000000000000..79db1cd91a168 --- /dev/null +++ b/manifests/d/DBVis/DBVisualizer/25.2.1/DBVis.DBVisualizer.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: DBVis.DBVisualizer +PackageVersion: 25.2.1 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: DbVisualizer 是用户满意度最高的 SQL 客户端和数据库工具。它能够连接所有主流数据库,并兼容 Windows、macOS 和 Linux 操作系统。 +Tags: +- db2 +- mssql +- mysql +- postgres +- postgresql +- sql +- sqlite +- 代码 +- 开发 +- 数据库 +- 编程 +- 集成开发环境 +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://www.dbvis.com/docs/ug/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DBVis/DBVisualizer/25.2.1/DBVis.DBVisualizer.yaml b/manifests/d/DBVis/DBVisualizer/25.2.1/DBVis.DBVisualizer.yaml new file mode 100644 index 0000000000000..1895a7fee0e25 --- /dev/null +++ b/manifests/d/DBVis/DBVisualizer/25.2.1/DBVis.DBVisualizer.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: DBVis.DBVisualizer +PackageVersion: 25.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DBeaver/DBeaver/Community/25.1.2/DBeaver.DBeaver.Community.installer.yaml b/manifests/d/DBeaver/DBeaver/Community/25.1.2/DBeaver.DBeaver.Community.installer.yaml new file mode 100644 index 0000000000000..69df6222d4f5e --- /dev/null +++ b/manifests/d/DBeaver/DBeaver/Community/25.1.2/DBeaver.DBeaver.Community.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: DBeaver.DBeaver.Community +PackageVersion: 25.1.2 +InstallerType: nullsoft +FileExtensions: +- sql +ReleaseDate: 2025-07-06 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/dbeaver/dbeaver/releases/download/25.1.2/dbeaver-ce-25.1.2-x86_64-setup.exe + InstallerSha256: 061F57268D7AF53923A1A1D84931EEA7960F3A50320CFA8534DAD86251B81584 + InstallerSwitches: + Custom: /currentuser + ProductCode: DBeaver (current user) +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/dbeaver/dbeaver/releases/download/25.1.2/dbeaver-ce-25.1.2-x86_64-setup.exe + InstallerSha256: 061F57268D7AF53923A1A1D84931EEA7960F3A50320CFA8534DAD86251B81584 + InstallerSwitches: + Custom: /allusers + ProductCode: DBeaver +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DBeaver/DBeaver/Community/25.1.2/DBeaver.DBeaver.Community.locale.en-US.yaml b/manifests/d/DBeaver/DBeaver/Community/25.1.2/DBeaver.DBeaver.Community.locale.en-US.yaml new file mode 100644 index 0000000000000..4bcc81595373d --- /dev/null +++ b/manifests/d/DBeaver/DBeaver/Community/25.1.2/DBeaver.DBeaver.Community.locale.en-US.yaml @@ -0,0 +1,98 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DBeaver.DBeaver.Community +PackageVersion: 25.1.2 +PackageLocale: en-US +Publisher: DBeaver Corp +PublisherUrl: https://dbeaver.io/ +PublisherSupportUrl: https://github.com/dbeaver/dbeaver/issues +Author: DBeaver Corp +PackageName: DBeaver +PackageUrl: https://dbeaver.io/download/ +License: Apache-2.0 +LicenseUrl: https://github.com/dbeaver/dbeaver/blob/HEAD/LICENSE.md +Copyright: © 2025 DBeaver Corp +ShortDescription: Free Universal Database Tool +Description: |- + DBeaver is free and open source universal database tool for developers and database administrators. + - Usability is the main goal of this project, program UI is carefully designed and implemented. + - It is free and open-source (ASL). + - It is multiplatform. + - It is based on opensource framework and allows writing of various extensions (plugins). + - It supports any database having a JDBC driver. + - It may handle any external datasource which may or may not have a JDBC driver. + - There is a set of plugins for different databases and different database management utilities (e.g. ERD, data transfer, compare, data export/import, mock data generation, etc). + - It has a great number of features. +Moniker: dbeaver +Tags: +- apache-hive +- database +- db2 +- firebird +- mssql +- mysql +- oracle +- phoenix +- postgres +- postgresql +- presto +- sql +- sqlite +- sybase +- teradata +- tool +ReleaseNotes: |- + - SQL Editor: + - Added variables for virtual column manipulation: row (a map of column names to their values) and table (with name, schema, and container fields) + - Aliases can now be used in a case-insensitive manner + - Fixed issue where the selected schema wasn’t recognized after reconnecting + - AI Assistant: + - Improved GitHub Copilot authorization: the auth token is now displayed during the authorization process and can be copied. + - GitHub Copilot now displays the up-to-date list of available models. + - Fixed the AI button not working when the AI extension is installed + - Hide script ruler when executing queries from AI chat + - Data Editor: + - Fixed incorrect code generation and saving for Virtual key updates + - Added an option to show column ordinal position next to the column name in the data grid (thanks @330079598) + - Data Transfer: Improved NVARCHAR mapping accuracy during data import + - Security: Fixed CVE-2023-48795 + - Connectivity: + - Improved UI controls on the connection settings + - Fixed "--newInstance" option when starting the application via CLI + - "Change Connection(s) Driver" option is now working again + - Fixed an issue where newly created connection types couldn't be deleted + - General: + - English is now the default language. If a user has never selected a language manually, the UI will switch to English + - Fixed an issue where UI elements disappeared when using a display scale other than 100% + - Most icons in the application have been updated to SVG format + - Based on Eclipse 2025-06. Earlier versions are no longer supported + - Development: + - JSQL Parser library was updated to version 5.3 + - Fixed the ability to install CE bundles in Eclipse + - Databases: + - BigQuery: + - Added BigQuery to the SQL category in the connection dialog + - Fix column aliases visibility validation - column aliases are not available in WHERE but are visible in other SELECT query parts + - Clickhouse: + - Fixed identifiers quotation + - Added support for complex types nested in arrays + - CUBRID: Fixed VARCHAR length not displaying in Navigator (thanks @longhaseng52) + - DB2 LUW: Added support for changing expired passwords (not available for databases running in Docker) + - MySQL: + - Fixed the ability to create a dump + - Fixed an exception when opening the partition Virtual tab (thanks to @sogladev) + - Oracle: Fixed CREATE PROCEDURE statement boundaries detection (thanks @EastLord) + - PostgreSQL: + - Fixed misplaced comment in DDL generation + - Fixed the ability to connect when the port is specified in the URL for PgPass authentication + - Fixed display issue with time zones when date formatting is enabled + - Added support for MAINTAIN privilege (thanks @f-m-t-t-m) +ReleaseNotesUrl: https://github.com/dbeaver/dbeaver/releases/tag/25.1.2 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://dbeaver.com/docs/dbeaver/ +- DocumentLabel: Wiki + DocumentUrl: https://github.com/dbeaver/dbeaver/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DBeaver/DBeaver/Community/25.1.2/DBeaver.DBeaver.Community.locale.zh-CN.yaml b/manifests/d/DBeaver/DBeaver/Community/25.1.2/DBeaver.DBeaver.Community.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9a7f299c2ac4f --- /dev/null +++ b/manifests/d/DBeaver/DBeaver/Community/25.1.2/DBeaver.DBeaver.Community.locale.zh-CN.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: DBeaver.DBeaver.Community +PackageVersion: 25.1.2 +PackageLocale: zh-CN +ShortDescription: 免费通用数据库工具 +Description: |- + DBeaver 是一款面向开发者和数据库管理员的免费开源通用数据库工具。 + - 易用性是该项目的核心目标,软件界面经过精心设计与实现。 + - 采用免费开源协议(ASL)。 + - 支持跨平台运行。 + - 基于开源框架开发,可编写多样化扩展功能(插件)。 + - 兼容所有配备 JDBC 驱动的数据库。 + - 可处理任意外部数据源(无论是否具备 JDBC 驱动)。 + - 提供针对不同数据库的插件集及多样化数据库管理功能(如 ER 图、数据传输、结构对比、数据导入/导出、模拟数据生成等)。 + - 具备丰富的功能特性。 +Tags: +- apache-hive +- db2 +- firebird +- mssql +- mysql +- oracle +- phoenix +- postgres +- postgresql +- presto +- sql +- sqlite +- sybase +- teradata +- 工具 +- 数据库 +ReleaseNotesUrl: https://github.com/dbeaver/dbeaver/releases/tag/25.1.2 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://dbeaver.com/docs/dbeaver/ +- DocumentLabel: Wiki + DocumentUrl: https://github.com/dbeaver/dbeaver/wiki +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DBeaver/DBeaver/Community/25.1.2/DBeaver.DBeaver.Community.yaml b/manifests/d/DBeaver/DBeaver/Community/25.1.2/DBeaver.DBeaver.Community.yaml new file mode 100644 index 0000000000000..c3b63eb2ae8a4 --- /dev/null +++ b/manifests/d/DBeaver/DBeaver/Community/25.1.2/DBeaver.DBeaver.Community.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: DBeaver.DBeaver.Community +PackageVersion: 25.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DJSweder/MetaRekordFixer/1.0.0/DJSweder.MetaRekordFixer.installer.yaml b/manifests/d/DJSweder/MetaRekordFixer/1.0.0/DJSweder.MetaRekordFixer.installer.yaml index 24421b1f9d35e..4e6996e8b602f 100644 --- a/manifests/d/DJSweder/MetaRekordFixer/1.0.0/DJSweder.MetaRekordFixer.installer.yaml +++ b/manifests/d/DJSweder/MetaRekordFixer/1.0.0/DJSweder.MetaRekordFixer.installer.yaml @@ -1,13 +1,13 @@ -# Automatically updated by the winget bot at 2025/Apr/26 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json PackageIdentifier: DJSweder.MetaRekordFixer PackageVersion: 1.0.0 InstallerType: inno Installers: - Architecture: x64 - InstallerUrl: https://github.com/DJSweder/MetaRekordFixer/releases/download/MetaRekordFixer-v1.0.0/metarekordfixer-1.0.0-win64-setup.exe - InstallerSha256: 0ABCD13F6CBDB4C59FA3A4D3705FD302173FFDC657EDFF1535EA9C50781DD2ED + InstallerUrl: https://github.com/DJSweder/MetaRekordFixer/releases/download/v1.0.0/metarekordfixer-1.0.0-win64-setup.exe + InstallerSha256: 188683C675133D2609E56C148BA47D798C7CED2E36431000CA1C0D815AEBCCA4 ManifestType: installer -ManifestVersion: 1.10.0 -ReleaseDate: 2025-03-18 +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-02 diff --git a/manifests/d/DJSweder/MetaRekordFixer/1.0.0/DJSweder.MetaRekordFixer.locale.en-US.yaml b/manifests/d/DJSweder/MetaRekordFixer/1.0.0/DJSweder.MetaRekordFixer.locale.en-US.yaml index 6b8f59bd1c594..9bbad4f0f4b4f 100644 --- a/manifests/d/DJSweder/MetaRekordFixer/1.0.0/DJSweder.MetaRekordFixer.locale.en-US.yaml +++ b/manifests/d/DJSweder/MetaRekordFixer/1.0.0/DJSweder.MetaRekordFixer.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Automatically updated by the winget bot at 2025/Apr/26 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json PackageIdentifier: DJSweder.MetaRekordFixer PackageVersion: 1.0.0 @@ -28,9 +28,9 @@ Tags: - rekordbox-7 - rekordbox-dj-software - media-conversion-tool -ReleaseNotesUrl: https://github.com/DJSweder/MetaRekordFixer/releases/tag/MetaRekordFixer-v1.0.0 +ReleaseNotesUrl: https://github.com/DJSweder/MetaRekordFixer/releases/tag/v1.0.0 Documentations: - DocumentLabel: Wiki DocumentUrl: https://github.com/DJSweder/MetaRekordFixer/wiki ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.9.0 diff --git a/manifests/d/DJSweder/MetaRekordFixer/1.0.0/DJSweder.MetaRekordFixer.yaml b/manifests/d/DJSweder/MetaRekordFixer/1.0.0/DJSweder.MetaRekordFixer.yaml index d21d0c17a3f84..b537d9fbdf944 100644 --- a/manifests/d/DJSweder/MetaRekordFixer/1.0.0/DJSweder.MetaRekordFixer.yaml +++ b/manifests/d/DJSweder/MetaRekordFixer/1.0.0/DJSweder.MetaRekordFixer.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Apr/26 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json PackageIdentifier: DJSweder.MetaRekordFixer PackageVersion: 1.0.0 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.9.0 diff --git a/manifests/d/DNSCrypt/dnscrypt-proxy/2.1.12/DNSCrypt.dnscrypt-proxy.locale.en-US.yaml b/manifests/d/DNSCrypt/dnscrypt-proxy/2.1.12/DNSCrypt.dnscrypt-proxy.locale.en-US.yaml index 3fb3732750978..494d5d65206e1 100644 --- a/manifests/d/DNSCrypt/dnscrypt-proxy/2.1.12/DNSCrypt.dnscrypt-proxy.locale.en-US.yaml +++ b/manifests/d/DNSCrypt/dnscrypt-proxy/2.1.12/DNSCrypt.dnscrypt-proxy.locale.en-US.yaml @@ -17,6 +17,7 @@ ShortDescription: A flexible DNS proxy, with support for modern encrypted DNS pr Description: A flexible DNS proxy, with support for modern encrypted DNS protocols such as DNSCrypt v2, DNS-over-HTTPS, Anonymized DNSCrypt and ODoH (Oblivious DoH). Tags: - dns +- adblock ReleaseNotes: |- - A new Weighted Power of Two (wp2) load balancing strategy has been implemented as the default, providing improved distribution across resolvers. - An optional Prometheus metrics endpoint has been added for monitoring and observability. diff --git a/manifests/d/DW/Spectrum/Client/6.0.3.40736/DW.Spectrum.Client.installer.yaml b/manifests/d/DW/Spectrum/Client/6.0.3.40736/DW.Spectrum.Client.installer.yaml index 7a67df5688557..26b850b242a4f 100644 --- a/manifests/d/DW/Spectrum/Client/6.0.3.40736/DW.Spectrum.Client.installer.yaml +++ b/manifests/d/DW/Spectrum/Client/6.0.3.40736/DW.Spectrum.Client.installer.yaml @@ -1,15 +1,18 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-1.Win32NT +# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DW.Spectrum.Client PackageVersion: 6.0.3.40736 -InstallerLocale: en-US InstallerType: burn Scope: machine -InstallerSwitches: - Silent: /S - SilentWithProgress: /S -UpgradeBehavior: install +Protocols: +- dw-vms +FileExtensions: +- nov +ProductCode: '{e60e13e4-4e4e-400e-a4b0-daed6fa1e274}' +ReleaseDate: 2025-04-04 +AppsAndFeaturesEntries: +- UpgradeCode: '{B40DE6BA-97AC-4591-8F27-2F1BBA285472}' Installers: - Architecture: x64 InstallerUrl: https://updates.digital-watchdog.com/digitalwatchdog/40736/windows/dwspectrum-client-6.0.3.40736-windows_x64.exe diff --git a/manifests/d/DW/Spectrum/Client/6.0.3.40736/DW.Spectrum.Client.locale.en-US.yaml b/manifests/d/DW/Spectrum/Client/6.0.3.40736/DW.Spectrum.Client.locale.en-US.yaml index 2b90a4eb9e59d..f3a7fecacb6a1 100644 --- a/manifests/d/DW/Spectrum/Client/6.0.3.40736/DW.Spectrum.Client.locale.en-US.yaml +++ b/manifests/d/DW/Spectrum/Client/6.0.3.40736/DW.Spectrum.Client.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-1.Win32NT +# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DW.Spectrum.Client @@ -6,24 +6,136 @@ PackageVersion: 6.0.3.40736 PackageLocale: en-US Publisher: Digital Watchdog PublisherUrl: https://digital-watchdog.com/ -PublisherSupportUrl: https://digital-watchdog.com/dw-support/ +PublisherSupportUrl: https://digital-watchdog.com/contact-tech-support/ PrivacyUrl: https://digital-watchdog.com/page/statement-of-privacy/ -# Author: -PackageName: DW Spectrum Client IPVMS -# PackageUrl: +Author: Kaltec Electronics, Inc. +PackageName: DW Spectrum Client +PackageUrl: https://dwspectrum.com/page/dw-client/ License: Proprietary -# LicenseUrl: -Copyright: Digital Watchdog -# CopyrightUrl: -ShortDescription: The DW Spectrum Client is a user-friendly video management software that allows users to effortlessly access, manage, and monitor video surveillance footage from multiple cameras and locations through a single intuitive interface. -# Description: -# Moniker: +LicenseUrl: https://dwspectrum.digital-watchdog.com/content/eula +Copyright: © Digital Watchdog +CopyrightUrl: https://dwspectrum.digital-watchdog.com/content/eula +ShortDescription: A rich media player with a flexible grid interface, unmatched speed and responsiveness, instant event notifications, an embedded browser, and a user experience unlike any other video management software. Tags: -- ipvms -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: +- camera +- surveillance +ReleaseNotes: |- + IN-CLIENT UPGRADE + + IMPORTANT: + + - These release notes cover changes implemented since the latest major release (6.0.2.40414). + + BREAKING CHANGES: + + - DW Witness not supported (DW Witness update in development) + + - Support for Raspberry Pi 3 is discontinued. + + - Support for Ubuntu 18.04 will be discontinued in the next major release (6.1). + + - Support for MacOS 11 will be discontinued in the next major release (6.1). + + - Support for Raspberry OS 10 will be discontinued in the next major release (6.1). + + MYDW: + + - myDW Plugin 1.0.3 included in the server installation packages for Windows and Ubuntu. + + o    Follow the myDW Quick Start Guide to register DW Spectrum to the myDW + + https://support.digital-watchdog.com/kb/article/1132-mydw-mydw-quick-start-guide/ + + DW ONLY: + + - Sometimes, Server could not detect input signal events from the DW doorbell (DWC-INTCAM02). Fixed. + + - Motion detection settings could not be accessed for the DWC-XSBA05MiM camera. Fixed. + + ANALYTICS IMPROVEMENTS / FIXES: + + - DW DWC-XPZA03Mi camera could not use H265. Fixed. + + - Analytic data from Milesight cameras with new API showed Invalid object boxes. Fixed. + + - Analytic objects could not be received from Uniview IPC328SB-ADF28K-I0. Fixed. + + - Hikvision iDS-2CD7A26G0x was initialized with a wrong manufacturer which prevented it from running Hikvision Analytics. Fixed. + + - Hikvision DS-2TD4238x thermal cameras started moving uncontrollably once a user tried to view the stream from them. Fixed. + + DEVICE SUPPORT AND FIXES: + + - Devices Specific Fixes: + + - The Desktop Client could sometimes skip notifications about I/O state changes on the Hikvision cameras. Fixed. + + - Hikvision DS-2CD2523G2x now supports alarm input events. + + - On Hikvision DS-2TD2628-x, regular and thermal streams were mixed up. Fixed. + + - Newly Supported Devices: + + - Axis C1610x + + - Multisensor Cameras: + + - Dahua: + * DHI-TPC-SD5641-T,DHI-TPC-BF4441x, DS-2CD63C5G1-IVS, DH-IPC-MFW5241T2, DH-SDT4E425 + * DHI-TPC-BF4641x thermal cameras + + - Hikvision DS-2CD6D55G2, DS-2TD4238 + + - Pelco MLE1-20V5-4H + + - Eneo INM-78M2812M0A + + - Grundig GD-CI-AT30516 + + - TrueVision TVTH-S01-0001x + + - Advanced PTZ: + + - Bolin EXU420Nx, EXU420Fx, EXU248x, EXU230x + + - Milesight MS-C2941-X30, MS-C2941-X25, MS-C5341-X42, TS5367-X12 MS-C2967-X12, MS-C8241-X36, MS-C5371-X23, MS-C2871-X20 + + - Safire Smart SF-IPSD8037ITA-4X1-L800, SF-IPSD5040ITA, SF-IPSD5032ITA-8I1 + + - Redvision RVX2S + + - Milesight MS-C4441-Xx + + - DN4MPTZ3in1 + + - Uniview IPC6658SR-X25-VF, IPC94144SR-X25-F40C, IPC6424SR-X25-VF, IPC6622SR-X33-VF and IPC6652EL-X33-VF + * Note: Advanced PTZ for cameras UNIVIEW IPC6622SR-X33-VF and IPC6652EL-X33-VF with f/w earlier than QIPC-B2202.10.23.240821 is no longer supported. Please update the camera firmware. + + BUG FIXES: + + - General Fixes: + + - URL-based authentication could fail for some Cloud users. Fixed. + + - When trying to downgrade a 6.0.x version to 5.1.4, Server updated the database back to 6.0 after it had been restored from the backup. Fixed. + + - In some cases, cameras could not be added to the cross system layout even if the user had permissions to access it. Fixed. + + - UI Fixes: + + - Calendar could jump to the first day of recording instead of the current data, if the recording was more than 1 month old. Fixed. + + - Video streams failed to play with fast rewind after switching between fullscreen and layout modes. Fixed. + + - The Desktop Client could unexpectedly terminate if running multiple instances. Fixed. + + - Web Admin Fixes: + + - Some features in camera details in the View page (transcoding, quality switch) were missing in Web Admin. Fixed. + + - Server name changes were not reflected in Web Admin without browser refresh. Fixed. + + - Web Admin could not run the Desktop Client from a link. Fixed. +ReleaseNotesUrl: https://digital-watchdog.com/DWSpectrum-Releasenote/DWSpectrum.html ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/d/DW/Spectrum/Client/6.0.3.40736/DW.Spectrum.Client.locale.zh-CN.yaml b/manifests/d/DW/Spectrum/Client/6.0.3.40736/DW.Spectrum.Client.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f34dedd94f315 --- /dev/null +++ b/manifests/d/DW/Spectrum/Client/6.0.3.40736/DW.Spectrum.Client.locale.zh-CN.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: DW.Spectrum.Client +PackageVersion: 6.0.3.40736 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 一款功能强大的媒体播放器,具备灵活的网格界面、无与伦比的运行速度与响应能力、实时事件通知功能、内置浏览器,以及超越其他视频管理软件的独特用户体验。 +Tags: +- 摄像头 +- 监控 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DW/Spectrum/Client/6.0.3.40736/DW.Spectrum.Client.yaml b/manifests/d/DW/Spectrum/Client/6.0.3.40736/DW.Spectrum.Client.yaml index 1786516745e10..17e4c33eba558 100644 --- a/manifests/d/DW/Spectrum/Client/6.0.3.40736/DW.Spectrum.Client.yaml +++ b/manifests/d/DW/Spectrum/Client/6.0.3.40736/DW.Spectrum.Client.yaml @@ -1,4 +1,4 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-1.Win32NT +# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DW.Spectrum.Client diff --git a/manifests/d/DW/Spectrum/Server/6.0.3.40736/DW.Spectrum.Server.installer.yaml b/manifests/d/DW/Spectrum/Server/6.0.3.40736/DW.Spectrum.Server.installer.yaml new file mode 100644 index 0000000000000..f3ea27501f815 --- /dev/null +++ b/manifests/d/DW/Spectrum/Server/6.0.3.40736/DW.Spectrum.Server.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: DW.Spectrum.Server +PackageVersion: 6.0.3.40736 +InstallerType: burn +Scope: machine +ProductCode: '{eca37875-fda2-47cf-88e0-3ad28faa58ef}' +ReleaseDate: 2025-04-04 +AppsAndFeaturesEntries: +- UpgradeCode: '{631F8466-9BAA-430D-AE15-DA0E76DAE3CD}' +Installers: +- Architecture: x64 + InstallerUrl: https://updates.digital-watchdog.com/digitalwatchdog/40736/windows/dwspectrum-bundle-6.0.3.40736-windows_x64.exe + InstallerSha256: 98349AC3E73EE26848C642AFCBC481D7D2B0AF4C25C43C1F6DBA6A3D9FA5C071 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DW/Spectrum/Server/6.0.3.40736/DW.Spectrum.Server.locale.en-US.yaml b/manifests/d/DW/Spectrum/Server/6.0.3.40736/DW.Spectrum.Server.locale.en-US.yaml new file mode 100644 index 0000000000000..2e333e5f5a29d --- /dev/null +++ b/manifests/d/DW/Spectrum/Server/6.0.3.40736/DW.Spectrum.Server.locale.en-US.yaml @@ -0,0 +1,91 @@ +# 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: DW.Spectrum.Server +PackageVersion: 6.0.3.40736 +PackageLocale: en-US +Publisher: Digital Watchdog +PublisherUrl: https://digital-watchdog.com/ +PublisherSupportUrl: https://digital-watchdog.com/contact-tech-support/ +PrivacyUrl: https://digital-watchdog.com/page/statement-of-privacy/ +Author: Kaltec Electronics, Inc. +PackageName: DW Spectrum Server +PackageUrl: https://dwspectrum.com/page/dw-server/ +License: Proprietary +LicenseUrl: https://dwspectrum.digital-watchdog.com/content/eula +Copyright: © Digital Watchdog +CopyrightUrl: https://dwspectrum.digital-watchdog.com/content/eula +ShortDescription: The DW Spectrum® media server application is a lightweight, powerful media server responsible for discovering, connecting to, and managing DW Spectrum® system devices and data. The application is pre-loaded on all Blackjack® servers. +# Description: +# Moniker: +Tags: +- camera +- surveillance +ReleaseNotes: |- + IN-CLIENT UPGRADE + - Build Number: 40736 + IMPORTANT: + - These release notes cover changes implemented since the latest major release (6.0.2.40414). + BREAKING CHANGES: + - DW Witness not supported (DW Witness update in development) + - Support for Raspberry Pi 3 is discontinued. + - Support for Ubuntu 18.04 will be discontinued in the next major release (6.1). + - Support for MacOS 11 will be discontinued in the next major release (6.1). + - Support for Raspberry OS 10 will be discontinued in the next major release (6.1). + MYDW: + - myDW Plugin 1.0.3 included in the server installation packages for Windows and Ubuntu. + - Follow the myDW Quick Start Guide to register DW Spectrum to the myDW + https://support.digital-watchdog.com/kb/article/1132-mydw-mydw-quick-start-guide/ + DW ONLY: + - Sometimes, Server could not detect input signal events from the DW doorbell (DWC-INTCAM02). Fixed. + - Motion detection settings could not be accessed for the DWC-XSBA05MiM camera. Fixed. + ANALYTICS IMPROVEMENTS / FIXES: + - DW DWC-XPZA03Mi camera could not use H265. Fixed. + - Analytic data from Milesight cameras with new API showed Invalid object boxes. Fixed. + - Analytic objects could not be received from Uniview IPC328SB-ADF28K-I0. Fixed. + - Hikvision iDS-2CD7A26G0x was initialized with a wrong manufacturer which prevented it from running Hikvision Analytics. Fixed. + - Hikvision DS-2TD4238x thermal cameras started moving uncontrollably once a user tried to view the stream from them. Fixed. + DEVICE SUPPORT AND FIXES: + - Devices Specific Fixes: + - The Desktop Client could sometimes skip notifications about I/O state changes on the Hikvision cameras. Fixed. + - Hikvision DS-2CD2523G2x now supports alarm input events. + - On Hikvision DS-2TD2628-x, regular and thermal streams were mixed up. Fixed. + - Newly Supported Devices: + - Axis C1610x + - Multisensor Cameras: + - Dahua: + * DHI-TPC-SD5641-T,DHI-TPC-BF4441x, DS-2CD63C5G1-IVS, DH-IPC-MFW5241T2, DH-SDT4E425 + * DHI-TPC-BF4641x thermal cameras + - Hikvision DS-2CD6D55G2, DS-2TD4238 + - Pelco MLE1-20V5-4H + - Eneo INM-78M2812M0A + - Grundig GD-CI-AT30516 + - TrueVision TVTH-S01-0001x + - Advanced PTZ: + - Bolin EXU420Nx, EXU420Fx, EXU248x, EXU230x + - Milesight MS-C2941-X30, MS-C2941-X25, MS-C5341-X42, TS5367-X12 MS-C2967-X12, MS-C8241-X36, MS-C5371-X23, MS-C2871-X20 + - Safire Smart SF-IPSD8037ITA-4X1-L800, SF-IPSD5040ITA, SF-IPSD5032ITA-8I1 + - Redvision RVX2S + - Milesight MS-C4441-Xx + - DN4MPTZ3in1 + - Uniview IPC6658SR-X25-VF, IPC94144SR-X25-F40C, IPC6424SR-X25-VF, IPC6622SR-X33-VF and IPC6652EL-X33-VF + * Note: Advanced PTZ for cameras UNIVIEW IPC6622SR-X33-VF and IPC6652EL-X33-VF with f/w earlier than QIPC-B2202.10.23.240821 is no longer supported. Please update the camera firmware. + BUG FIXES: + - General Fixes: + - URL-based authentication could fail for some Cloud users. Fixed. + - When trying to downgrade a 6.0.x version to 5.1.4, Server updated the database back to 6.0 after it had been restored from the backup. Fixed. + - In some cases, cameras could not be added to the cross system layout even if the user had permissions to access it. Fixed. + - UI Fixes: + - Calendar could jump to the first day of recording instead of the current data, if the recording was more than 1 month old. Fixed. + - Video streams failed to play with fast rewind after switching between fullscreen and layout modes. Fixed. + - The Desktop Client could unexpectedly terminate if running multiple instances. Fixed. + - Web Admin Fixes: + - Some features in camera details in the View page (transcoding, quality switch) were missing in Web Admin. Fixed. + - Server name changes were not reflected in Web Admin without browser refresh. Fixed. + - Web Admin could not run the Desktop Client from a link. Fixed. +ReleaseNotesUrl: https://digital-watchdog.com/DWSpectrum-Releasenote/DWSpectrum.html +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DW/Spectrum/Server/6.0.3.40736/DW.Spectrum.Server.locale.zh-CN.yaml b/manifests/d/DW/Spectrum/Server/6.0.3.40736/DW.Spectrum.Server.locale.zh-CN.yaml new file mode 100644 index 0000000000000..08a02471dd2fc --- /dev/null +++ b/manifests/d/DW/Spectrum/Server/6.0.3.40736/DW.Spectrum.Server.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: DW.Spectrum.Server +PackageVersion: 6.0.3.40736 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: DW Spectrum® 媒体服务器应用是一款轻量级且功能强大的媒体服务器,负责发现、连接并管理 DW Spectrum® 系统的设备和数据。该应用已预装在所有 Blackjack® 服务器上。 +# Description: +# Moniker: +Tags: +- 摄像头 +- 监控 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DW/Spectrum/Server/6.0.3.40736/DW.Spectrum.Server.yaml b/manifests/d/DW/Spectrum/Server/6.0.3.40736/DW.Spectrum.Server.yaml new file mode 100644 index 0000000000000..3cf51e87aa1e3 --- /dev/null +++ b/manifests/d/DW/Spectrum/Server/6.0.3.40736/DW.Spectrum.Server.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: DW.Spectrum.Server +PackageVersion: 6.0.3.40736 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DWANGO/NAIR/experimental/1.1.20250514-unstable.1/DWANGO.NAIR.experimental.installer.yaml b/manifests/d/DWANGO/NAIR/experimental/1.1.20250514-unstable.1/DWANGO.NAIR.experimental.installer.yaml deleted file mode 100644 index 31d6251e36f50..0000000000000 --- a/manifests/d/DWANGO/NAIR/experimental/1.1.20250514-unstable.1/DWANGO.NAIR.experimental.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/15 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: DWANGO.NAIR.experimental -PackageVersion: 1.1.20250514-unstable.1 -InstallerType: nullsoft -InstallModes: -- silent -InstallerSwitches: - Silent: /s - SilentWithProgress: /S -Installers: -- Architecture: x64 - InstallerUrl: https://n-air-app.nicovideo.jp/download/windows-unstable - InstallerSha256: B52BB4F0B0435A7115BDFB5C6375DB37EE9E07E4E5F0EFF0821E7FA83B41D497 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/d/DWANGO/NAIR/experimental/1.1.20250514-unstable.1/DWANGO.NAIR.experimental.yaml b/manifests/d/DWANGO/NAIR/experimental/1.1.20250514-unstable.1/DWANGO.NAIR.experimental.yaml deleted file mode 100644 index fff193cf49966..0000000000000 --- a/manifests/d/DWANGO/NAIR/experimental/1.1.20250514-unstable.1/DWANGO.NAIR.experimental.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/15 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: DWANGO.NAIR.experimental -PackageVersion: 1.1.20250514-unstable.1 -DefaultLocale: JA-JP -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/d/DWANGO/NAIR/experimental/1.1.20250625-unstable.1/DWANGO.NAIR.experimental.installer.yaml b/manifests/d/DWANGO/NAIR/experimental/1.1.20250625-unstable.1/DWANGO.NAIR.experimental.installer.yaml new file mode 100644 index 0000000000000..8321dab089183 --- /dev/null +++ b/manifests/d/DWANGO/NAIR/experimental/1.1.20250625-unstable.1/DWANGO.NAIR.experimental.installer.yaml @@ -0,0 +1,17 @@ +# Automatically updated by the winget bot at 2025/Jun/26 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: DWANGO.NAIR.experimental +PackageVersion: 1.1.20250625-unstable.1 +InstallerType: nullsoft +InstallModes: +- silent +InstallerSwitches: + Silent: /s + SilentWithProgress: /S +Installers: +- Architecture: x64 + InstallerUrl: https://n-air-app.nicovideo.jp/download/windows-unstable + InstallerSha256: 599689AFC0299E72BF8CD9F6138F88CBF3E59C6472023CB5427B208ADF182130 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DWANGO/NAIR/experimental/1.1.20250514-unstable.1/DWANGO.NAIR.experimental.locale.JA-JP.yaml b/manifests/d/DWANGO/NAIR/experimental/1.1.20250625-unstable.1/DWANGO.NAIR.experimental.locale.JA-JP.yaml similarity index 91% rename from manifests/d/DWANGO/NAIR/experimental/1.1.20250514-unstable.1/DWANGO.NAIR.experimental.locale.JA-JP.yaml rename to manifests/d/DWANGO/NAIR/experimental/1.1.20250625-unstable.1/DWANGO.NAIR.experimental.locale.JA-JP.yaml index 4b4218b3c6ff5..22f717809029c 100644 --- a/manifests/d/DWANGO/NAIR/experimental/1.1.20250514-unstable.1/DWANGO.NAIR.experimental.locale.JA-JP.yaml +++ b/manifests/d/DWANGO/NAIR/experimental/1.1.20250625-unstable.1/DWANGO.NAIR.experimental.locale.JA-JP.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/May/15 +# Automatically updated by the winget bot at 2025/Jun/26 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DWANGO.NAIR.experimental -PackageVersion: 1.1.20250514-unstable.1 +PackageVersion: 1.1.20250625-unstable.1 PackageLocale: JA-JP Publisher: koizuka PublisherUrl: https://github.com/n-air-app/n-air-app diff --git a/manifests/d/DWANGO/NAIR/experimental/1.1.20250625-unstable.1/DWANGO.NAIR.experimental.yaml b/manifests/d/DWANGO/NAIR/experimental/1.1.20250625-unstable.1/DWANGO.NAIR.experimental.yaml new file mode 100644 index 0000000000000..c857bd2646bcf --- /dev/null +++ b/manifests/d/DWANGO/NAIR/experimental/1.1.20250625-unstable.1/DWANGO.NAIR.experimental.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jun/26 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: DWANGO.NAIR.experimental +PackageVersion: 1.1.20250625-unstable.1 +DefaultLocale: JA-JP +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dagger/Cli/0.18.11/Dagger.Cli.installer.yaml b/manifests/d/Dagger/Cli/0.18.11/Dagger.Cli.installer.yaml new file mode 100644 index 0000000000000..a0a77a90248b6 --- /dev/null +++ b/manifests/d/Dagger/Cli/0.18.11/Dagger.Cli.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.9.0.schema.json +PackageIdentifier: Dagger.Cli +PackageVersion: 0.18.11 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-06-25" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: dagger.exe + PortableCommandAlias: dagger + InstallerUrl: https://dl.dagger.io/dagger/releases/0.18.11/dagger_v0.18.11_windows_arm64.zip + InstallerSha256: b64a390030be9602c3072f9d50e60a7806cf1d4b5ba8ed809a2094216c033c81 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: dagger.exe + PortableCommandAlias: dagger + InstallerUrl: https://dl.dagger.io/dagger/releases/0.18.11/dagger_v0.18.11_windows_amd64.zip + InstallerSha256: cd168f05e945e208eaa81df8c912e7ca21687ad8e1a73933fe932fd392efad82 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/d/Dagger/Cli/0.18.11/Dagger.Cli.locale.en-US.yaml b/manifests/d/Dagger/Cli/0.18.11/Dagger.Cli.locale.en-US.yaml new file mode 100644 index 0000000000000..6623a883bf38f --- /dev/null +++ b/manifests/d/Dagger/Cli/0.18.11/Dagger.Cli.locale.en-US.yaml @@ -0,0 +1,24 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +PackageIdentifier: Dagger.Cli +PackageVersion: 0.18.11 +PackageLocale: en-US +Publisher: Dagger +PublisherUrl: https://dagger.io +PublisherSupportUrl: https://github.com/dagger/dagger/issues/new/choose +PackageName: dagger +PackageUrl: https://dagger.io +License: asl20 +ShortDescription: Dagger is an integrated platform to orchestrate the delivery of applications +Moniker: dagger +Tags: + - dagger + - cli + - cicd + - workflows + - sandbox + - containers + - devops + - llm +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/Dagger/Cli/0.18.11/Dagger.Cli.yaml b/manifests/d/Dagger/Cli/0.18.11/Dagger.Cli.yaml new file mode 100644 index 0000000000000..96fd305a1c149 --- /dev/null +++ b/manifests/d/Dagger/Cli/0.18.11/Dagger.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.9.0.schema.json +PackageIdentifier: Dagger.Cli +PackageVersion: 0.18.11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/Dagger/Cli/0.18.12/Dagger.Cli.installer.yaml b/manifests/d/Dagger/Cli/0.18.12/Dagger.Cli.installer.yaml new file mode 100644 index 0000000000000..ab588d7d7a5ba --- /dev/null +++ b/manifests/d/Dagger/Cli/0.18.12/Dagger.Cli.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.9.0.schema.json +PackageIdentifier: Dagger.Cli +PackageVersion: 0.18.12 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-06-27" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: dagger.exe + PortableCommandAlias: dagger + InstallerUrl: https://dl.dagger.io/dagger/releases/0.18.12/dagger_v0.18.12_windows_arm64.zip + InstallerSha256: 2cae4455b40973a677aa0413dbf507b0281fe7e1e5da7a9977c79a902892895e + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: dagger.exe + PortableCommandAlias: dagger + InstallerUrl: https://dl.dagger.io/dagger/releases/0.18.12/dagger_v0.18.12_windows_amd64.zip + InstallerSha256: e8cc0df3fef14dfa5269e5c99ff69564ba8cffd04feccc962c20c40b194c5f63 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/d/Dagger/Cli/0.18.12/Dagger.Cli.locale.en-US.yaml b/manifests/d/Dagger/Cli/0.18.12/Dagger.Cli.locale.en-US.yaml new file mode 100644 index 0000000000000..5be66b9a2f9c9 --- /dev/null +++ b/manifests/d/Dagger/Cli/0.18.12/Dagger.Cli.locale.en-US.yaml @@ -0,0 +1,24 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +PackageIdentifier: Dagger.Cli +PackageVersion: 0.18.12 +PackageLocale: en-US +Publisher: Dagger +PublisherUrl: https://dagger.io +PublisherSupportUrl: https://github.com/dagger/dagger/issues/new/choose +PackageName: dagger +PackageUrl: https://dagger.io +License: asl20 +ShortDescription: Dagger is an integrated platform to orchestrate the delivery of applications +Moniker: dagger +Tags: + - dagger + - cli + - cicd + - workflows + - sandbox + - containers + - devops + - llm +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/Dagger/Cli/0.18.12/Dagger.Cli.yaml b/manifests/d/Dagger/Cli/0.18.12/Dagger.Cli.yaml new file mode 100644 index 0000000000000..e124c232fe593 --- /dev/null +++ b/manifests/d/Dagger/Cli/0.18.12/Dagger.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.9.0.schema.json +PackageIdentifier: Dagger.Cli +PackageVersion: 0.18.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/DaiyuuNobori/Win10Pcap/10.2.5002/DaiyuuNobori.Win10Pcap.installer.yaml b/manifests/d/DaiyuuNobori/Win10Pcap/10.2.5002/DaiyuuNobori.Win10Pcap.installer.yaml index 2659d77c8a56c..f981994a0aa14 100644 --- a/manifests/d/DaiyuuNobori/Win10Pcap/10.2.5002/DaiyuuNobori.Win10Pcap.installer.yaml +++ b/manifests/d/DaiyuuNobori/Win10Pcap/10.2.5002/DaiyuuNobori.Win10Pcap.installer.yaml @@ -1,15 +1,18 @@ -# Modified with Sundry. +# 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: DaiyuuNobori.Win10Pcap PackageVersion: 10.2.5002 -MinimumOSVersion: 10.0.0.0 InstallerType: wix +InstallerSwitches: + InstallLocation: INSTALLDIR="" +ProductCode: '{B5B58F8A-1984-4F3E-B400-235A6E005002}' ReleaseDate: 2015-10-08 +AppsAndFeaturesEntries: +- UpgradeCode: '{711CA6BE-6851-45FD-976E-C3968900C9AB}' Installers: - - Architecture: x86 - InstallerUrl: https://www.win10pcap.org/download/Win10Pcap-v10.2-5002.msi - InstallerSha256: CE1169C7CAC4BC9BC45E159CEC069F0AB57C42FC3F636456A2E404CC6B91E855 - ProductCode: "{B5B58F8A-1984-4F3E-B400-235A6E005002}" +- Architecture: x86 + InstallerUrl: https://www.win10pcap.org/download/Win10Pcap-v10.2-5002.msi + InstallerSha256: CE1169C7CAC4BC9BC45E159CEC069F0AB57C42FC3F636456A2E404CC6B91E855 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DaiyuuNobori/Win10Pcap/10.2.5002/DaiyuuNobori.Win10Pcap.locale.en-US.yaml b/manifests/d/DaiyuuNobori/Win10Pcap/10.2.5002/DaiyuuNobori.Win10Pcap.locale.en-US.yaml index c26e8c31e9f22..16e9ffce3d0c5 100644 --- a/manifests/d/DaiyuuNobori/Win10Pcap/10.2.5002/DaiyuuNobori.Win10Pcap.locale.en-US.yaml +++ b/manifests/d/DaiyuuNobori/Win10Pcap/10.2.5002/DaiyuuNobori.Win10Pcap.locale.en-US.yaml @@ -1,26 +1,43 @@ -# Modified with Sundry. +# 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: DaiyuuNobori.Win10Pcap PackageVersion: 10.2.5002 PackageLocale: en-US Publisher: Daiyuu Nobori, University of Tsukuba, Japan -PublisherUrl: https://www.win10pcap.org -# PublisherSupportUrl: +PublisherUrl: https://www.win10pcap.org/ +PublisherSupportUrl: https://github.com/SoftEtherVPN/Win10Pcap/issues # PrivacyUrl: -# Author: +Author: Daiyuu Nobori PackageName: Win10Pcap PackageUrl: https://www.win10pcap.org/download/ -License: GNU GENERAL PUBLIC LICENSE (Version 2) -LicenseUrl: https://github.com/SoftEtherVPN/Win10Pcap/blob/master/LICENSE -# Copyright: -CopyrightUrl: https://github.com/SoftEtherVPN/Win10Pcap/blob/master/LICENSE -ShortDescription: Win10Pcap is a new WinPcap-based Ethernet packet capture library. -# Description: +License: GPL-2.0 +LicenseUrl: https://github.com/SoftEtherVPN/Win10Pcap/blob/HEAD/LICENSE +Copyright: Copyright (c) 2015 Daiyuu Nobori, University of Tsukuba, Japan. +# CopyrightUrl: +ShortDescription: New WinPcap-based packet capture library for Windows 10,8 and 7. Compatible with NDIs 6.x driver model. Supports IEEE802.1Q VLAN tags. +Description: |- + Win10Pcap is a new WinPcap-based Ethernet packet capture library. + Unlike original WinPcap, Win10Pcap is compatible with NDIS 6.x driver model to work stably with Windows 10. Win10Pcap also supports capturing IEEE802.1Q VLAN tags. + Win10Pcap has the binary-compatibility with the original WinPcap DLLs. You can run Wireshark or other WinPcap-compatible applications with Win10Pcap by simply installing Win10Pcap DLLs, instead of original WinPcap. + Win10Pcap is written as a personal project by Daiyuu Nobori, a Ph.D student of Computer Science of University of Tsukuba, Japan. The many parts of Win10Pcap was from WinPcap. # Moniker: -# Tags: -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: +Tags: +- analyzer +- capture +- network +- protocol +- sniffer +- traffic +- winpcap +ReleaseNotes: |- + Added the security check code on the read/write/ioctl procedures on the Win10Pcap kernel-mode driver. In the previous version of Win10Pcap, the kernel-mode driver did not check the virtual addresses which are passed from the user-mode. A local user was able to exploit this to read or write data bytes in the kernel-space memory. This had a risk to allow a local user to gain the escalated privilege on the local system. This security check code is to prevent such as illegal access from a local user. For details, please see https://github.com/SoftEtherVPN/Win10Pcap/commits/master. + The problem was reported by Meysam Firozi on October 7, 2015. I greatly appreciate Meysam Firozi's contribution to report this problem. +ReleaseNotesUrl: https://www.win10pcap.org/download/ +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: How to use + DocumentUrl: https://www.win10pcap.org/howto/ ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/d/DaiyuuNobori/Win10Pcap/10.2.5002/DaiyuuNobori.Win10Pcap.locale.zh-CN.yaml b/manifests/d/DaiyuuNobori/Win10Pcap/10.2.5002/DaiyuuNobori.Win10Pcap.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c81f49b85abc3 --- /dev/null +++ b/manifests/d/DaiyuuNobori/Win10Pcap/10.2.5002/DaiyuuNobori.Win10Pcap.locale.zh-CN.yaml @@ -0,0 +1,40 @@ +# 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: DaiyuuNobori.Win10Pcap +PackageVersion: 10.2.5002 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +# License: +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 基于 WinPcap 的全新 Windows 数据包捕获库,支持 Windows 10/8/7 系统。兼容 NDIs 6.x 驱动程序模型,支持 IEEE802.1Q VLAN 标签解析。 +Description: |- + Win10Pcap 是一款基于 WinPcap 的全新以太网数据包捕获库。 + 与原始 WinPcap 不同,Win10Pcap 兼容 NDIS 6.x 驱动模型,可在 Windows 10 系统上稳定运行。该库还支持捕获 IEEE802.1Q VLAN 标签数据。 + Win10Pcap 保持与原始 WinPcap 动态链接库的二进制兼容性。用户只需安装 Win10Pcap 的 DLL 文件替代原版 WinPcap,即可运行 Wireshark 等兼容 WinPcap 的应用程序。 + 本软件由日本筑波大学计算机科学专业博士生 Daiyuu Nobori 作为个人项目开发完成,其中大量代码继承自 WinPcap 项目。 +# Moniker: +Tags: +- winpcap +- 分析 +- 协议 +- 抓包 +- 流量 +- 网络 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 如何使用 + DocumentUrl: https://www.win10pcap.org/howto/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DaiyuuNobori/Win10Pcap/10.2.5002/DaiyuuNobori.Win10Pcap.yaml b/manifests/d/DaiyuuNobori/Win10Pcap/10.2.5002/DaiyuuNobori.Win10Pcap.yaml index 4fb00d6b75b37..eac9d9df67191 100644 --- a/manifests/d/DaiyuuNobori/Win10Pcap/10.2.5002/DaiyuuNobori.Win10Pcap.yaml +++ b/manifests/d/DaiyuuNobori/Win10Pcap/10.2.5002/DaiyuuNobori.Win10Pcap.yaml @@ -1,4 +1,4 @@ -# Modified with Sundry. +# 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: DaiyuuNobori.Win10Pcap diff --git a/manifests/d/Dalux/Dalux/3.3.9309.22552/Dalux.Dalux.installer.yaml b/manifests/d/Dalux/Dalux/3.3.9309.22552/Dalux.Dalux.installer.yaml new file mode 100644 index 0000000000000..760b3ca39738e --- /dev/null +++ b/manifests/d/Dalux/Dalux/3.3.9309.22552/Dalux.Dalux.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: Dalux.Dalux +PackageVersion: 3.3.9309.22552 +Platform: +- Windows.Desktop +- Windows.Universal +MinimumOSVersion: 10.0.17134.0 +InstallerType: appx +Protocols: +- dalux +PackageFamilyName: Dalux_s1jchs3t639wy +Installers: +- Architecture: x64 + InstallerUrl: https://bim.dalux.com/Desktop/DaluxDesktop_3.3.9309.22552_Production_Test/DaluxDesktop_3.3.9309.22552_x64_Production.appxbundle + InstallerSha256: 71BBA5EDD8A698A56B42654D06E20271F8918BE9B9161FAEC71D6AA9CBB3EA66 + SignatureSha256: C4727AEDBE3CF36A1A16ACE3F3177B1AC9D47CA8BA5F296F2FF977C8A73021B3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dalux/Dalux/3.3.9309.22552/Dalux.Dalux.locale.en-US.yaml b/manifests/d/Dalux/Dalux/3.3.9309.22552/Dalux.Dalux.locale.en-US.yaml new file mode 100644 index 0000000000000..debccb1c783cf --- /dev/null +++ b/manifests/d/Dalux/Dalux/3.3.9309.22552/Dalux.Dalux.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: Dalux.Dalux +PackageVersion: 3.3.9309.22552 +PackageLocale: en-US +Publisher: Dalux +PublisherUrl: https://www.dalux.com/ +PrivacyUrl: https://www.dalux.com/privacy-policy/ +Author: Dalux ApS +PackageName: Dalux +PackageUrl: https://www.dalux.com/dalux-build-windows-app/ +License: Freeware +Copyright: © 2025 Dalux +ShortDescription: Free BIM viewer +Description: Dalux BIM viewer is the world’s best at handling multiple complex BIM models. Have confidence that you can see and engage with your project information, regardless of project size, model complexity, or access device! +Tags: +- bim +- construction +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dalux/Dalux/3.3.9309.22552/Dalux.Dalux.locale.zh-CN.yaml b/manifests/d/Dalux/Dalux/3.3.9309.22552/Dalux.Dalux.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c47b00c0194be --- /dev/null +++ b/manifests/d/Dalux/Dalux/3.3.9309.22552/Dalux.Dalux.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Dalux.Dalux +PackageVersion: 3.3.9309.22552 +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 免费 BIM 查看器 +Description: Dalux BIM Viewer 是世界上最好的处理多复杂 BIM 模型的工具。无论项目规模、模型复杂度或访问设备如何,您都能自信查看并交互处理项目信息! +Tags: +- bim +- 工程 +- 建设 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dalux/Dalux/3.3.9309.22552/Dalux.Dalux.yaml b/manifests/d/Dalux/Dalux/3.3.9309.22552/Dalux.Dalux.yaml new file mode 100644 index 0000000000000..1b4e45fe9baaf --- /dev/null +++ b/manifests/d/Dalux/Dalux/3.3.9309.22552/Dalux.Dalux.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: Dalux.Dalux +PackageVersion: 3.3.9309.22552 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dalux/Dalux/MSI/3.3.9251.27370/Dalux.Dalux.MSI.installer.yaml b/manifests/d/Dalux/Dalux/MSI/3.3.9251.27370/Dalux.Dalux.MSI.installer.yaml deleted file mode 100644 index 7bb2855fb70a0..0000000000000 --- a/manifests/d/Dalux/Dalux/MSI/3.3.9251.27370/Dalux.Dalux.MSI.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Dalux.Dalux.MSI -PackageVersion: 3.3.9251.27370 -InstallerType: wix -UpgradeBehavior: install -Protocols: -- dalux -ProductCode: '{687FDDED-9158-4A6B-86AD-E4E00AAA50BD}' -AppsAndFeaturesEntries: -- UpgradeCode: '{7A7E91C3-3DE0-4069-B65D-EAA2EF116C7C}' -Installers: -- Architecture: x64 - InstallerUrl: https://bim.dalux.com/desktop/DaluxDesktop.msi - InstallerSha256: 5DAF0B38FC86F164FCBB6C33E6AFDC9ED413C97D35417A88D5DAAE0D5337D707 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/d/Dalux/Dalux/MSI/3.3.9309.22552/Dalux.Dalux.MSI.installer.yaml b/manifests/d/Dalux/Dalux/MSI/3.3.9309.22552/Dalux.Dalux.MSI.installer.yaml new file mode 100644 index 0000000000000..5cd718a7048e2 --- /dev/null +++ b/manifests/d/Dalux/Dalux/MSI/3.3.9309.22552/Dalux.Dalux.MSI.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: Dalux.Dalux.MSI +PackageVersion: 3.3.9309.22552 +InstallerType: wix +UpgradeBehavior: install +Protocols: +- dalux +ProductCode: '{00486EBA-B699-4D31-B12B-8C10B0A26BA4}' +AppsAndFeaturesEntries: +- UpgradeCode: '{7A7E91C3-3DE0-4069-B65D-EAA2EF116C7C}' +Installers: +- Architecture: x64 + InstallerUrl: https://bim.dalux.com/desktop/DaluxDesktop.msi + InstallerSha256: 932FC04C0D85D169EBB3FACBB3488D40E4E482300C9952D48CE213D1ABE01EBD +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dalux/Dalux/MSI/3.3.9251.27370/Dalux.Dalux.MSI.locale.en-US.yaml b/manifests/d/Dalux/Dalux/MSI/3.3.9309.22552/Dalux.Dalux.MSI.locale.en-US.yaml similarity index 93% rename from manifests/d/Dalux/Dalux/MSI/3.3.9251.27370/Dalux.Dalux.MSI.locale.en-US.yaml rename to manifests/d/Dalux/Dalux/MSI/3.3.9309.22552/Dalux.Dalux.MSI.locale.en-US.yaml index 8f3959f387e0a..598c03972be05 100644 --- a/manifests/d/Dalux/Dalux/MSI/3.3.9251.27370/Dalux.Dalux.MSI.locale.en-US.yaml +++ b/manifests/d/Dalux/Dalux/MSI/3.3.9309.22552/Dalux.Dalux.MSI.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Dalux.Dalux.MSI -PackageVersion: 3.3.9251.27370 +PackageVersion: 3.3.9309.22552 PackageLocale: en-US Publisher: Dalux PublisherUrl: https://www.dalux.com/ diff --git a/manifests/d/Dalux/Dalux/MSI/3.3.9251.27370/Dalux.Dalux.MSI.locale.zh-CN.yaml b/manifests/d/Dalux/Dalux/MSI/3.3.9309.22552/Dalux.Dalux.MSI.locale.zh-CN.yaml similarity index 91% rename from manifests/d/Dalux/Dalux/MSI/3.3.9251.27370/Dalux.Dalux.MSI.locale.zh-CN.yaml rename to manifests/d/Dalux/Dalux/MSI/3.3.9309.22552/Dalux.Dalux.MSI.locale.zh-CN.yaml index e0657da009671..0824bda56fb05 100644 --- a/manifests/d/Dalux/Dalux/MSI/3.3.9251.27370/Dalux.Dalux.MSI.locale.zh-CN.yaml +++ b/manifests/d/Dalux/Dalux/MSI/3.3.9309.22552/Dalux.Dalux.MSI.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Dalux.Dalux.MSI -PackageVersion: 3.3.9251.27370 +PackageVersion: 3.3.9309.22552 PackageLocale: zh-CN License: 免费软件 ShortDescription: 免费 BIM 查看器 diff --git a/manifests/d/Dalux/Dalux/MSI/3.3.9251.27370/Dalux.Dalux.MSI.yaml b/manifests/d/Dalux/Dalux/MSI/3.3.9309.22552/Dalux.Dalux.MSI.yaml similarity index 85% rename from manifests/d/Dalux/Dalux/MSI/3.3.9251.27370/Dalux.Dalux.MSI.yaml rename to manifests/d/Dalux/Dalux/MSI/3.3.9309.22552/Dalux.Dalux.MSI.yaml index 0c8c8aac16558..fdcdf3cd78703 100644 --- a/manifests/d/Dalux/Dalux/MSI/3.3.9251.27370/Dalux.Dalux.MSI.yaml +++ b/manifests/d/Dalux/Dalux/MSI/3.3.9309.22552/Dalux.Dalux.MSI.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Dalux.Dalux.MSI -PackageVersion: 3.3.9251.27370 +PackageVersion: 3.3.9309.22552 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/d/Dangbei/XiaowangScreenshot/1.2.1/Dangbei.XiaowangScreenshot.installer.yaml b/manifests/d/Dangbei/XiaowangScreenshot/1.2.1/Dangbei.XiaowangScreenshot.installer.yaml new file mode 100644 index 0000000000000..578030f38f3d1 --- /dev/null +++ b/manifests/d/Dangbei/XiaowangScreenshot/1.2.1/Dangbei.XiaowangScreenshot.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: Dangbei.XiaowangScreenshot +PackageVersion: 1.2.1 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: 小旺AI截图 +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x64 + InstallerUrl: https://ai-search-static.dangbei.net/ai-screenshot-updates/xw-screenshot-setup.exe + InstallerSha256: 836C19FCC218FF5711425A9AECC438F51317C70D4195A64AB11F57D2FD6ED871 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dangbei/XiaowangScreenshot/1.2.1/Dangbei.XiaowangScreenshot.locale.en-US.yaml b/manifests/d/Dangbei/XiaowangScreenshot/1.2.1/Dangbei.XiaowangScreenshot.locale.en-US.yaml new file mode 100644 index 0000000000000..d373b38559a85 --- /dev/null +++ b/manifests/d/Dangbei/XiaowangScreenshot/1.2.1/Dangbei.XiaowangScreenshot.locale.en-US.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: Dangbei.XiaowangScreenshot +PackageVersion: 1.2.1 +PackageLocale: en-US +Author: Nanjing Haomiyue Technology Ltd. +License: Freeware +ShortDescription: The first AI screenshot tool integrated with DeepSeek! Lightweight, easy-to-use, free, and ad-free! +Tags: +- ai +- capture +- deepseek +- image +- picture +- screenshot +ReleaseNotes: |- + 1. windows 录屏支持录音。 + 2. mac 支持长截图,支持自动滚动长截图 + 3. windows 优化长截图性能 + 4. 优化了初始占用内存过高的问题 + 5. 修复了若干 bug +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dangbei/XiaowangScreenshot/1.2.1/Dangbei.XiaowangScreenshot.locale.zh-CN.yaml b/manifests/d/Dangbei/XiaowangScreenshot/1.2.1/Dangbei.XiaowangScreenshot.locale.zh-CN.yaml new file mode 100644 index 0000000000000..56b709df9add0 --- /dev/null +++ b/manifests/d/Dangbei/XiaowangScreenshot/1.2.1/Dangbei.XiaowangScreenshot.locale.zh-CN.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: Dangbei.XiaowangScreenshot +PackageVersion: 1.2.1 +PackageLocale: zh-CN +Publisher: wangscreenshot +PublisherUrl: https://www.xiaowang.com/ +PublisherSupportUrl: https://www.bigseek.com/ai-56-1-1.html +PrivacyUrl: https://www.xiaowang.com/privacy.html +Author: 南京豪米玥科技有限公司 +PackageName: 小旺AI截图 +PackageUrl: https://www.xiaowang.com/ +License: 免费软件 +Copyright: Copyright © 2025- Nanjing Haomiyue Technology LTD. All rights reserved. +ShortDescription: 首款接入 DeepSeek 的 AI 截图神器!轻巧、好用、免费、无广告! +Tags: +- 人工智能 +- 图像 +- 图片 +- 截图 +- 捕获 +- 深度求索 +ReleaseNotesUrl: https://www.xiaowang.com/update.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dangbei/XiaowangScreenshot/1.2.1/Dangbei.XiaowangScreenshot.yaml b/manifests/d/Dangbei/XiaowangScreenshot/1.2.1/Dangbei.XiaowangScreenshot.yaml new file mode 100644 index 0000000000000..da76ee6258ac3 --- /dev/null +++ b/manifests/d/Dangbei/XiaowangScreenshot/1.2.1/Dangbei.XiaowangScreenshot.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: Dangbei.XiaowangScreenshot +PackageVersion: 1.2.1 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Danilov/Soundscape/1.6.0/Danilov.Soundscape.installer.yaml b/manifests/d/Danilov/Soundscape/1.6.0/Danilov.Soundscape.installer.yaml new file mode 100644 index 0000000000000..91741796ecf7e --- /dev/null +++ b/manifests/d/Danilov/Soundscape/1.6.0/Danilov.Soundscape.installer.yaml @@ -0,0 +1,9 @@ +PackageIdentifier: Danilov.Soundscape +PackageVersion: 1.6.0 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ddanilov/soundscape/releases/download/1.6.0/soundscape-1.6.0-win64.exe + InstallerSha256: 5715688d4a57ed51f1261c703289124cee25860bde5cc6b74fdc12181b267356 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/d/Danilov/Soundscape/1.6.0/Danilov.Soundscape.locale.en-US.yaml b/manifests/d/Danilov/Soundscape/1.6.0/Danilov.Soundscape.locale.en-US.yaml new file mode 100644 index 0000000000000..3c3aa04365629 --- /dev/null +++ b/manifests/d/Danilov/Soundscape/1.6.0/Danilov.Soundscape.locale.en-US.yaml @@ -0,0 +1,30 @@ +PackageIdentifier: Danilov.Soundscape +PackageVersion: 1.6.0 +PackageLocale: en-US +Publisher: Denis Danilov +PublisherUrl: https://github.com/ddanilov +PublisherSupportUrl: https://github.com/ddanilov/soundscape/issues +Author: Denis Danilov +PackageName: Soundscape +PackageUrl: https://github.com/ddanilov/soundscape +License: GPL-3.0-only +LicenseUrl: https://github.com/ddanilov/soundscape/blob/main/LICENSE +Copyright: Copyright (c) Denis Danilov and contributors +ShortDescription: Desktop soundscape application +Description: Soundscape is an open-source system-tray resident desktop application for playing a mix of sounds, e.g. natural sounds by animals or wind and water. +Moniker: soundscape +Tags: +- ambient +- audio +- foss +- gpl +- meditation +- nature +- noise +- open-source +- qt +- sound +- soundscape +- system-tray +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/Danilov/Soundscape/1.6.0/Danilov.Soundscape.yaml b/manifests/d/Danilov/Soundscape/1.6.0/Danilov.Soundscape.yaml new file mode 100644 index 0000000000000..5a79758a31637 --- /dev/null +++ b/manifests/d/Danilov/Soundscape/1.6.0/Danilov.Soundscape.yaml @@ -0,0 +1,5 @@ +PackageIdentifier: Danilov.Soundscape +PackageVersion: 1.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/Databricks/DatabricksCLI/0.257.0/Databricks.DatabricksCLI.installer.yaml b/manifests/d/Databricks/DatabricksCLI/0.257.0/Databricks.DatabricksCLI.installer.yaml new file mode 100644 index 0000000000000..4bd399bc50d20 --- /dev/null +++ b/manifests/d/Databricks/DatabricksCLI/0.257.0/Databricks.DatabricksCLI.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.9.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Databricks.DatabricksCLI +PackageVersion: 0.257.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: databricks.exe +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/databricks/cli/releases/download/v0.257.0/databricks_cli_0.257.0_windows_amd64-signed.zip + InstallerSha256: 807A472219D263E850D25A3D8C9EEEE3DB5DD76B22B421DA96C0E9E638E4B491 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/d/Databricks/DatabricksCLI/0.257.0/Databricks.DatabricksCLI.locale.en-US.yaml b/manifests/d/Databricks/DatabricksCLI/0.257.0/Databricks.DatabricksCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..8bc5df0f08c18 --- /dev/null +++ b/manifests/d/Databricks/DatabricksCLI/0.257.0/Databricks.DatabricksCLI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with komac v2.9.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Databricks.DatabricksCLI +PackageVersion: 0.257.0 +PackageLocale: en-US +Publisher: Databricks +PublisherUrl: https://databricks.com/ +PublisherSupportUrl: https://github.com/databricks/cli/issues +PackageName: DatabricksCLI +PackageUrl: https://github.com/databricks/cli +License: DB license +LicenseUrl: https://github.com/databricks/cli/blob/HEAD/LICENSE +ShortDescription: Databricks Command Line Interface +Tags: +- command-line-interface +- databricks +ReleaseNotes: |- + Release v0.257.0 + Bundles + - Improve error message for host mismatch between bundle and profile used (#3100) + - Remove support for deprecated experimental/pydabs config, use experimental/python instead. See Configuration in Python + . (#3102) + - Pass through OIDC token env variable to Terraform (#3113) + - The default-python template now prompts if you want to use serverless compute (default to yes) (#3051). + API Changes + - Removed databricks custom-llms command group. + - Added databricks ai-builder command group. + - Added databricks feature-store command group. +ReleaseNotesUrl: https://github.com/databricks/cli/releases/tag/v0.257.0 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/Databricks/DatabricksCLI/0.257.0/Databricks.DatabricksCLI.yaml b/manifests/d/Databricks/DatabricksCLI/0.257.0/Databricks.DatabricksCLI.yaml new file mode 100644 index 0000000000000..7575e05b6630b --- /dev/null +++ b/manifests/d/Databricks/DatabricksCLI/0.257.0/Databricks.DatabricksCLI.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.9.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Databricks.DatabricksCLI +PackageVersion: 0.257.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/Databricks/DatabricksCLI/0.258.0/Databricks.DatabricksCLI.installer.yaml b/manifests/d/Databricks/DatabricksCLI/0.258.0/Databricks.DatabricksCLI.installer.yaml new file mode 100644 index 0000000000000..aa6ac7807aaf8 --- /dev/null +++ b/manifests/d/Databricks/DatabricksCLI/0.258.0/Databricks.DatabricksCLI.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.9.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Databricks.DatabricksCLI +PackageVersion: 0.258.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: databricks.exe +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/databricks/cli/releases/download/v0.258.0/databricks_cli_0.258.0_windows_amd64-signed.zip + InstallerSha256: 55E8C9BDB393FF13E86018C3B79F6720BBF2C80567DC7AFD47CBDAF498E35AF2 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/d/Databricks/DatabricksCLI/0.258.0/Databricks.DatabricksCLI.locale.en-US.yaml b/manifests/d/Databricks/DatabricksCLI/0.258.0/Databricks.DatabricksCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..427728ea0b145 --- /dev/null +++ b/manifests/d/Databricks/DatabricksCLI/0.258.0/Databricks.DatabricksCLI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with komac v2.9.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Databricks.DatabricksCLI +PackageVersion: 0.258.0 +PackageLocale: en-US +Publisher: Databricks +PublisherUrl: https://databricks.com/ +PublisherSupportUrl: https://github.com/databricks/cli/issues +PackageName: DatabricksCLI +PackageUrl: https://github.com/databricks/cli +License: DB license +LicenseUrl: https://github.com/databricks/cli/blob/HEAD/LICENSE +ShortDescription: Databricks Command Line Interface +Tags: +- command-line-interface +- databricks +ReleaseNotes: |- + Release v0.258.0 + Notable Changes + - Switch default-python template to use pyproject.toml + dynamic_version in dev target. uv is now required. (#3042) + Dependency updates + - Upgraded TF provider to 1.84.0 (#3151) + CLI + - Fixed an issue where running databricks auth login would remove the cluster_id field from profiles in .databrickscfg. The login process now preserves the cluster_id field. (#2988) + Bundles + - Added support for pipeline environment field (#3153) + - "bundle summary" now prints diagnostic warnings to stderr (#3123) + - "bundle open" will print the URL before opening the browser (#3168) +ReleaseNotesUrl: https://github.com/databricks/cli/releases/tag/v0.258.0 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/Databricks/DatabricksCLI/0.258.0/Databricks.DatabricksCLI.yaml b/manifests/d/Databricks/DatabricksCLI/0.258.0/Databricks.DatabricksCLI.yaml new file mode 100644 index 0000000000000..813c89bd226ad --- /dev/null +++ b/manifests/d/Databricks/DatabricksCLI/0.258.0/Databricks.DatabricksCLI.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.9.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Databricks.DatabricksCLI +PackageVersion: 0.258.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.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/d/Datadog/Agent/7.67.1.1/Datadog.Agent.yaml b/manifests/d/Datadog/Agent/7.67.1.1/Datadog.Agent.yaml new file mode 100644 index 0000000000000..01397f21ca77e --- /dev/null +++ b/manifests/d/Datadog/Agent/7.67.1.1/Datadog.Agent.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: Datadog.Agent +PackageVersion: 7.67.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/d/Datadog/dd-trace-dotnet/3.20.0/Datadog.dd-trace-dotnet.installer.yaml b/manifests/d/Datadog/dd-trace-dotnet/3.20.0/Datadog.dd-trace-dotnet.installer.yaml new file mode 100644 index 0000000000000..8a188ce4cf62f --- /dev/null +++ b/manifests/d/Datadog/dd-trace-dotnet/3.20.0/Datadog.dd-trace-dotnet.installer.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Datadog.dd-trace-dotnet +PackageVersion: 3.20.0 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{D4936C92-4E4B-4000-8760-885C569621CB}' +AppsAndFeaturesEntries: +- DisplayName: Datadog .NET Tracer 64-bit + ProductCode: '{D4936C92-4E4B-4000-8760-885C569621CB}' + UpgradeCode: '{FC228E86-EAE2-4C2A-AE82-135B718C269E}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Datadog\.NET Tracer' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/DataDog/dd-trace-dotnet/releases/download/v3.20.0/datadog-dotnet-apm-3.20.0-x64.msi + InstallerSha256: 3DC93F8D160BBE56EB979AC2AE29637976023F0FB2671077BA927D8CB929C7BD +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-30 diff --git a/manifests/d/Datadog/dd-trace-dotnet/3.20.0/Datadog.dd-trace-dotnet.locale.en-US.yaml b/manifests/d/Datadog/dd-trace-dotnet/3.20.0/Datadog.dd-trace-dotnet.locale.en-US.yaml new file mode 100644 index 0000000000000..fe879e971590b --- /dev/null +++ b/manifests/d/Datadog/dd-trace-dotnet/3.20.0/Datadog.dd-trace-dotnet.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: Datadog.dd-trace-dotnet +PackageVersion: 3.20.0 +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 .NET Tracer +PackageUrl: https://docs.datadoghq.com/tracing +License: Apache-2.0 +LicenseUrl: https://github.com/DataDog/dd-trace-dotnet/blob/HEAD/LICENSE +Copyright: Copyright 2017 Datadog, Inc. +CopyrightUrl: https://github.com/DataDog/dd-trace-dotnet/blob/master/NOTICE +ShortDescription: Automatic instrumentation for .NET applications +Moniker: dd-trace-dotnet +Tags: +- apm +- tracing +ReleaseNotesUrl: https://github.com/DataDog/dd-trace-dotnet/releases/tag/v3.20.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/DataDog/dd-trace-dotnet/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/Datadog/dd-trace-dotnet/3.20.0/Datadog.dd-trace-dotnet.yaml b/manifests/d/Datadog/dd-trace-dotnet/3.20.0/Datadog.dd-trace-dotnet.yaml new file mode 100644 index 0000000000000..a91c70e4fe246 --- /dev/null +++ b/manifests/d/Datadog/dd-trace-dotnet/3.20.0/Datadog.dd-trace-dotnet.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: Datadog.dd-trace-dotnet +PackageVersion: 3.20.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/Datadog/dd-trace-dotnet/3.20.1/Datadog.dd-trace-dotnet.installer.yaml b/manifests/d/Datadog/dd-trace-dotnet/3.20.1/Datadog.dd-trace-dotnet.installer.yaml new file mode 100644 index 0000000000000..1dcb9639b0568 --- /dev/null +++ b/manifests/d/Datadog/dd-trace-dotnet/3.20.1/Datadog.dd-trace-dotnet.installer.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Datadog.dd-trace-dotnet +PackageVersion: 3.20.1 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{B07FEA9C-751A-4159-B999-26BB84BC6179}' +AppsAndFeaturesEntries: +- DisplayName: Datadog .NET Tracer 64-bit + ProductCode: '{B07FEA9C-751A-4159-B999-26BB84BC6179}' + UpgradeCode: '{FC228E86-EAE2-4C2A-AE82-135B718C269E}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Datadog\.NET Tracer' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/DataDog/dd-trace-dotnet/releases/download/v3.20.1/datadog-dotnet-apm-3.20.1-x64.msi + InstallerSha256: F3CA4B74E8070CF77DCE0C8FF340181D7C76ADA28626D7B5259FDB4B30998D99 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-07 diff --git a/manifests/d/Datadog/dd-trace-dotnet/3.20.1/Datadog.dd-trace-dotnet.locale.en-US.yaml b/manifests/d/Datadog/dd-trace-dotnet/3.20.1/Datadog.dd-trace-dotnet.locale.en-US.yaml new file mode 100644 index 0000000000000..b0c5caeb4b3ee --- /dev/null +++ b/manifests/d/Datadog/dd-trace-dotnet/3.20.1/Datadog.dd-trace-dotnet.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: Datadog.dd-trace-dotnet +PackageVersion: 3.20.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 .NET Tracer +PackageUrl: https://docs.datadoghq.com/tracing +License: Apache-2.0 +LicenseUrl: https://github.com/DataDog/dd-trace-dotnet/blob/HEAD/LICENSE +Copyright: Copyright 2017 Datadog, Inc. +CopyrightUrl: https://github.com/DataDog/dd-trace-dotnet/blob/master/NOTICE +ShortDescription: Automatic instrumentation for .NET applications +Moniker: dd-trace-dotnet +Tags: +- apm +- tracing +ReleaseNotesUrl: https://github.com/DataDog/dd-trace-dotnet/releases/tag/v3.20.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/DataDog/dd-trace-dotnet/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/Datadog/dd-trace-dotnet/3.20.1/Datadog.dd-trace-dotnet.yaml b/manifests/d/Datadog/dd-trace-dotnet/3.20.1/Datadog.dd-trace-dotnet.yaml new file mode 100644 index 0000000000000..b8199e651ba67 --- /dev/null +++ b/manifests/d/Datadog/dd-trace-dotnet/3.20.1/Datadog.dd-trace-dotnet.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: Datadog.dd-trace-dotnet +PackageVersion: 3.20.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/Datronicsoft/SpacedeskDriver/Server/2.1.51.0/Datronicsoft.SpacedeskDriver.Server.locale.en-US.yaml b/manifests/d/Datronicsoft/SpacedeskDriver/Server/2.1.51.0/Datronicsoft.SpacedeskDriver.Server.locale.en-US.yaml index 32e32b6d40070..e860cd387769b 100644 --- a/manifests/d/Datronicsoft/SpacedeskDriver/Server/2.1.51.0/Datronicsoft.SpacedeskDriver.Server.locale.en-US.yaml +++ b/manifests/d/Datronicsoft/SpacedeskDriver/Server/2.1.51.0/Datronicsoft.SpacedeskDriver.Server.locale.en-US.yaml @@ -13,12 +13,20 @@ PackageName: spacedesk Windows DRIVER PackageUrl: https://spacedesk.net/##box_430 License: Proprietary LicenseUrl: https://spacedesk.net/#licensing -Copyright: Copyright (c) 2021 – datronicsoft +Copyright: Copyright © 2021 – datronicsoft CopyrightUrl: https://spacedesk.net/legal-notice/ ShortDescription: Spacedesk Driver Software for Windows PRIMARY PC (server) runs only with Windows 11 and Windows 10 Moniker: spacedesk-server Tags: - display - network +- spacedeskdisplay.inf +- spacedeskdriverbus.inf +- spacedeskvideocapture.inf +- spacedeskdriverhid.inf +- spacedeskktminputmouse.inf +- spacedeskdriveraudio.inf +- spacedeskdriverandroidusb.inf +- spacedeskdriverandroidcontrol.inf ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/d/Datronicsoft/SpacedeskDriver/Server/2.2.02.0/Datronicsoft.SpacedeskDriver.Server.installer.yaml b/manifests/d/Datronicsoft/SpacedeskDriver/Server/2.2.02.0/Datronicsoft.SpacedeskDriver.Server.installer.yaml new file mode 100644 index 0000000000000..bb6ee12f00050 --- /dev/null +++ b/manifests/d/Datronicsoft/SpacedeskDriver/Server/2.2.02.0/Datronicsoft.SpacedeskDriver.Server.installer.yaml @@ -0,0 +1,48 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Datronicsoft.SpacedeskDriver.Server +PackageVersion: 2.2.02.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Custom: REBOOT=ReallySuppress +UpgradeBehavior: install +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x86 + InstallerUrl: https://downloads.spacedesk.net/downloads/spacedesk_driver_Win_10_32_v2202.msi + InstallerSha256: CB43259D4DA3D0B762A9A2B58A2D75EFB482501F23EFF8A6647A8C2A004F1186 + ProductCode: '{1FFFBA1F-C7B8-421B-98B7-616305CAD7C1}' + AppsAndFeaturesEntries: + - ProductCode: '{1FFFBA1F-C7B8-421B-98B7-616305CAD7C1}' + UpgradeCode: '{960B967D-8BE1-46CF-9BCB-1C57E489E1A9}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\datronicsoft' +- Architecture: x64 + InstallerUrl: https://downloads.spacedesk.net/downloads/spacedesk_driver_Win_10_64_v2202.msi + InstallerSha256: BD03F5659400B8A04ABDFBC09E3479666983201730073858C34B1F4F65BCF092 + ProductCode: '{7B45112A-10FF-46B9-B69F-7383D474C856}' + AppsAndFeaturesEntries: + - ProductCode: '{7B45112A-10FF-46B9-B69F-7383D474C856}' + UpgradeCode: '{3CBC4D7B-B6A4-4107-BB9E-66EDFF3909B0}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\datronicsoft' +- Architecture: arm64 + InstallerUrl: https://downloads.spacedesk.net/downloads/spacedesk_driver_Win_10_ARM64_v2202.msi + InstallerSha256: 20BEC3D0724705FF3C43FBBF68F14116D741F34324B399C9DC36DF3BD2B31F39 + ProductCode: '{7B45112A-10FF-46B9-B69F-7383D474C856}' + AppsAndFeaturesEntries: + - ProductCode: '{7B45112A-10FF-46B9-B69F-7383D474C856}' + UpgradeCode: '{3CBC4D7B-B6A4-4107-BB9E-66EDFF3909B0}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\datronicsoft' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Datronicsoft/SpacedeskDriver/Server/2.2.02.0/Datronicsoft.SpacedeskDriver.Server.locale.en-US.yaml b/manifests/d/Datronicsoft/SpacedeskDriver/Server/2.2.02.0/Datronicsoft.SpacedeskDriver.Server.locale.en-US.yaml new file mode 100644 index 0000000000000..e899b3e050fda --- /dev/null +++ b/manifests/d/Datronicsoft/SpacedeskDriver/Server/2.2.02.0/Datronicsoft.SpacedeskDriver.Server.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Datronicsoft.SpacedeskDriver.Server +PackageVersion: 2.2.02.0 +PackageLocale: en-US +Publisher: datronicsoft Inc. +PublisherUrl: https://spacedesk.net/ +PublisherSupportUrl: https://forum.spacedesk.ph/ +PrivacyUrl: https://spacedesk.net/privacy-policy/ +Author: datronicsoft +PackageName: spacedesk Windows DRIVER +PackageUrl: https://spacedesk.net/##box_430 +License: Proprietary +LicenseUrl: https://spacedesk.net/#licensing +Copyright: Copyright © 2021 – datronicsoft +CopyrightUrl: https://spacedesk.net/legal-notice/ +ShortDescription: Spacedesk Driver Software for Windows PRIMARY PC (server) runs only with Windows 11 and Windows 10 +Moniker: spacedesk-server +Tags: +- display +- network +- spacedeskdisplay.inf +- spacedeskdriverandroidcontrol.inf +- spacedeskdriverandroidusb.inf +- spacedeskdriveraudio.inf +- spacedeskdriverbus.inf +- spacedeskdriverhid.inf +- spacedeskktminputmouse.inf +- spacedeskvideocapture.inf +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Datronicsoft/SpacedeskDriver/Server/2.2.02.0/Datronicsoft.SpacedeskDriver.Server.yaml b/manifests/d/Datronicsoft/SpacedeskDriver/Server/2.2.02.0/Datronicsoft.SpacedeskDriver.Server.yaml new file mode 100644 index 0000000000000..6260f35226688 --- /dev/null +++ b/manifests/d/Datronicsoft/SpacedeskDriver/Server/2.2.02.0/Datronicsoft.SpacedeskDriver.Server.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: Datronicsoft.SpacedeskDriver.Server +PackageVersion: 2.2.02.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Daum/PotPlayer/25.05.14.0/Daum.PotPlayer.yaml b/manifests/d/Daum/PotPlayer/25.05.14.0/Daum.PotPlayer.yaml deleted file mode 100644 index 6b8cb82f3f187..0000000000000 --- a/manifests/d/Daum/PotPlayer/25.05.14.0/Daum.PotPlayer.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: Daum.PotPlayer -PackageVersion: 25.05.14.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/d/Daum/PotPlayer/25.05.14.0/Daum.PotPlayer.installer.yaml b/manifests/d/Daum/PotPlayer/25.06.25.0/Daum.PotPlayer.installer.yaml similarity index 79% rename from manifests/d/Daum/PotPlayer/25.05.14.0/Daum.PotPlayer.installer.yaml rename to manifests/d/Daum/PotPlayer/25.06.25.0/Daum.PotPlayer.installer.yaml index 732fcaaa76580..eb6cc541cc3d1 100644 --- a/manifests/d/Daum/PotPlayer/25.05.14.0/Daum.PotPlayer.installer.yaml +++ b/manifests/d/Daum/PotPlayer/25.06.25.0/Daum.PotPlayer.installer.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.9.4.0 +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json PackageIdentifier: Daum.PotPlayer -PackageVersion: 25.05.14.0 +PackageVersion: 25.06.25.0 InstallerType: nullsoft Scope: machine InstallModes: @@ -124,13 +124,13 @@ ElevationRequirement: elevatesSelf Installers: - Architecture: x86 InstallerUrl: https://t1.daumcdn.net/potplayer/PotPlayer/Version/Latest/PotPlayerSetup.exe - InstallerSha256: DBE3F3A9416BC54D153E819073FBE094875C41E5E6575EF65BE8FA744F86D291 + InstallerSha256: 6C7399185D24A403F291D6DF3AD957706D8704B0261E899F3E5174295620ECD1 AppsAndFeaturesEntries: - Publisher: Kakao Corp. ProductCode: PotPlayer - Architecture: x64 InstallerUrl: https://t1.daumcdn.net/potplayer/PotPlayer/Version/Latest/PotPlayerSetup64.exe - InstallerSha256: BC51CA3572091BD6BCF026928A20161CCD101072018C78968358F255A6133772 + InstallerSha256: E290A654AFBE4554B45568BC536E2B0DC47D9E9CBE47B22337757100FDCCB265 AppsAndFeaturesEntries: - Publisher: Kakao Corp. ProductCode: PotPlayer64 diff --git a/manifests/d/Daum/PotPlayer/25.05.14.0/Daum.PotPlayer.locale.en-US.yaml b/manifests/d/Daum/PotPlayer/25.06.25.0/Daum.PotPlayer.locale.en-US.yaml similarity index 88% rename from manifests/d/Daum/PotPlayer/25.05.14.0/Daum.PotPlayer.locale.en-US.yaml rename to manifests/d/Daum/PotPlayer/25.06.25.0/Daum.PotPlayer.locale.en-US.yaml index e6ba736d3f5e8..0255a8814a7ab 100644 --- a/manifests/d/Daum/PotPlayer/25.05.14.0/Daum.PotPlayer.locale.en-US.yaml +++ b/manifests/d/Daum/PotPlayer/25.06.25.0/Daum.PotPlayer.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.9.4.0 +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json PackageIdentifier: Daum.PotPlayer -PackageVersion: 25.05.14.0 +PackageVersion: 25.06.25.0 PackageLocale: en-US Publisher: Kakao Corp. PublisherUrl: https://potplayer.tv/ diff --git a/manifests/d/Daum/PotPlayer/25.05.14.0/Daum.PotPlayer.locale.zh-CN.yaml b/manifests/d/Daum/PotPlayer/25.06.25.0/Daum.PotPlayer.locale.zh-CN.yaml similarity index 88% rename from manifests/d/Daum/PotPlayer/25.05.14.0/Daum.PotPlayer.locale.zh-CN.yaml rename to manifests/d/Daum/PotPlayer/25.06.25.0/Daum.PotPlayer.locale.zh-CN.yaml index 6f27dc7be3056..3e9d7db0b97f1 100644 --- a/manifests/d/Daum/PotPlayer/25.05.14.0/Daum.PotPlayer.locale.zh-CN.yaml +++ b/manifests/d/Daum/PotPlayer/25.06.25.0/Daum.PotPlayer.locale.zh-CN.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.9.4.0 +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json PackageIdentifier: Daum.PotPlayer -PackageVersion: 25.05.14.0 +PackageVersion: 25.06.25.0 PackageLocale: zh-CN Publisher: Kakao Corp. PublisherUrl: https://potplayer.tv/ diff --git a/manifests/d/Daum/PotPlayer/25.06.25.0/Daum.PotPlayer.yaml b/manifests/d/Daum/PotPlayer/25.06.25.0/Daum.PotPlayer.yaml new file mode 100644 index 0000000000000..90b58d4ee83ad --- /dev/null +++ b/manifests/d/Daum/PotPlayer/25.06.25.0/Daum.PotPlayer.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: Daum.PotPlayer +PackageVersion: 25.06.25.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/DaxStudio/DaxStudio/3.3.1/DaxStudio.DaxStudio.installer.yaml b/manifests/d/DaxStudio/DaxStudio/3.3.1/DaxStudio.DaxStudio.installer.yaml new file mode 100644 index 0000000000000..968234a2321a0 --- /dev/null +++ b/manifests/d/DaxStudio/DaxStudio/3.3.1/DaxStudio.DaxStudio.installer.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: DaxStudio.DaxStudio +PackageVersion: 3.3.1 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{CE2CEA93-9DD3-4724-8FE3-FCBF0A0915C1}_is1' +AppsAndFeaturesEntries: +- ProductCode: '{CE2CEA93-9DD3-4724-8FE3-FCBF0A0915C1}_is1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/DaxStudio/DaxStudio/releases/download/v3.3.1/DaxStudio_3_3_1_setup.exe + InstallerSha256: FA81E655142D8A44AC8D0AB36B577F751D916A04DBD741D262A09E9CDDA126EC + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/DaxStudio/DaxStudio/releases/download/v3.3.1/DaxStudio_3_3_1_setup.exe + InstallerSha256: FA81E655142D8A44AC8D0AB36B577F751D916A04DBD741D262A09E9CDDA126EC + InstallerSwitches: + Custom: /ALLUSERS + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\DAX Studio' +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-26 diff --git a/manifests/d/DaxStudio/DaxStudio/3.3.1/DaxStudio.DaxStudio.locale.en-US.yaml b/manifests/d/DaxStudio/DaxStudio/3.3.1/DaxStudio.DaxStudio.locale.en-US.yaml new file mode 100644 index 0000000000000..ebbe5fb00a5ce --- /dev/null +++ b/manifests/d/DaxStudio/DaxStudio/3.3.1/DaxStudio.DaxStudio.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: DaxStudio.DaxStudio +PackageVersion: 3.3.1 +PackageLocale: en-US +Publisher: DAX Studio +PublisherUrl: https://github.com/DaxStudio/DaxStudio +PublisherSupportUrl: https://github.com/DaxStudio/DaxStudio/issues +Author: DaxStudio.org +PackageName: DAX Studio +PackageUrl: https://daxstudio.org/ +License: Microsoft Reciprocal License (Ms-RL) +LicenseUrl: https://github.com/DaxStudio/DaxStudio/blob/HEAD/license.rtf +ShortDescription: The ultimate tool for working with DAX queries +Tags: +- dax +- powerbi +ReleaseNotesUrl: https://github.com/DaxStudio/DaxStudio/releases/tag/v3.3.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/DaxStudio/DaxStudio/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/DaxStudio/DaxStudio/3.3.1/DaxStudio.DaxStudio.yaml b/manifests/d/DaxStudio/DaxStudio/3.3.1/DaxStudio.DaxStudio.yaml new file mode 100644 index 0000000000000..ff28057259b80 --- /dev/null +++ b/manifests/d/DaxStudio/DaxStudio/3.3.1/DaxStudio.DaxStudio.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: DaxStudio.DaxStudio +PackageVersion: 3.3.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/Deezer/Deezer/7.0.110/Deezer.Deezer.installer.yaml b/manifests/d/Deezer/Deezer/7.0.110/Deezer.Deezer.installer.yaml new file mode 100644 index 0000000000000..f23d92f79cc9e --- /dev/null +++ b/manifests/d/Deezer/Deezer/7.0.110/Deezer.Deezer.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: Deezer.Deezer +PackageVersion: 7.0.110 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +FileExtensions: +- deezer +- dzr +ProductCode: 67490f87-0893-5593-ae76-b1e5d0acd13f +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x86 + InstallerUrl: https://www.deezer.com/desktop/update/artifact-win32-x86-7.0.110 + InstallerSha256: 2F33DBD89A96D5CC76702022D160AFD17565DB656C4DA4C0D08B8191E1EFE62B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Deezer/Deezer/7.0.110/Deezer.Deezer.locale.en-US.yaml b/manifests/d/Deezer/Deezer/7.0.110/Deezer.Deezer.locale.en-US.yaml new file mode 100644 index 0000000000000..c0651fbf61e7d --- /dev/null +++ b/manifests/d/Deezer/Deezer/7.0.110/Deezer.Deezer.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: Deezer.Deezer +PackageVersion: 7.0.110 +PackageLocale: en-US +Publisher: Deezer +PublisherUrl: https://www.deezer.com/ +PublisherSupportUrl: https://support.deezer.com/ +PrivacyUrl: https://www.deezer.com/legal/personal-datas +Author: Deezer S.A. +PackageName: Deezer +PackageUrl: https://www.deezer.com/explore/download/ +License: Proprietary +LicenseUrl: https://www.deezer.com/legal/cgu +Copyright: © 2025 Deezer +CopyrightUrl: https://www.deezer.com/legal/cgu +ShortDescription: A French online music streaming service. +Moniker: deezer +Tags: +- album +- artist +- audio +- episode +- music +- playlist +- podcast +- radio +- song +- sound +- streaming +PurchaseUrl: https://www.deezer.com/offers +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Deezer/Deezer/7.0.110/Deezer.Deezer.locale.zh-CN.yaml b/manifests/d/Deezer/Deezer/7.0.110/Deezer.Deezer.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f42083ef1dd1d --- /dev/null +++ b/manifests/d/Deezer/Deezer/7.0.110/Deezer.Deezer.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: Deezer.Deezer +PackageVersion: 7.0.110 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 来自法国的在线音乐流媒体服务 +Tags: +- 专辑 +- 广播 +- 播客 +- 歌单 +- 歌手 +- 歌曲 +- 流媒体 +- 艺人 +- 节目 +- 音乐 +- 音频 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Deezer/Deezer/7.0.110/Deezer.Deezer.yaml b/manifests/d/Deezer/Deezer/7.0.110/Deezer.Deezer.yaml new file mode 100644 index 0000000000000..dacff8147b810 --- /dev/null +++ b/manifests/d/Deezer/Deezer/7.0.110/Deezer.Deezer.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: Deezer.Deezer +PackageVersion: 7.0.110 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DefangLabs/Defang/1.2.6/DefangLabs.Defang.installer.yaml b/manifests/d/DefangLabs/Defang/1.2.6/DefangLabs.Defang.installer.yaml new file mode 100644 index 0000000000000..d18ee8053c7cc --- /dev/null +++ b/manifests/d/DefangLabs/Defang/1.2.6/DefangLabs.Defang.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: DefangLabs.Defang +PackageVersion: 1.2.6 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-06-26" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: defang.exe + PortableCommandAlias: defang + InstallerUrl: https://s.defang.io/defang_1.2.6_windows_arm64.zip?x-defang-source=winget + InstallerSha256: 42c2dc831c91e6086a5798f49fa25c1764c75f68c7b197b446614f845e572434 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: defang.exe + PortableCommandAlias: defang + InstallerUrl: https://s.defang.io/defang_1.2.6_windows_amd64.zip?x-defang-source=winget + InstallerSha256: 810a4d2b55e49f1b1cc6e226bdb07c4d2987ed78b39d0b74664951fe58d584b1 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DefangLabs/Defang/1.2.6/DefangLabs.Defang.locale.en-US.yaml b/manifests/d/DefangLabs/Defang/1.2.6/DefangLabs.Defang.locale.en-US.yaml new file mode 100644 index 0000000000000..6bcbde28be1b8 --- /dev/null +++ b/manifests/d/DefangLabs/Defang/1.2.6/DefangLabs.Defang.locale.en-US.yaml @@ -0,0 +1,17 @@ +# 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: DefangLabs.Defang +PackageVersion: 1.2.6 +PackageLocale: en-US +Publisher: DefangLabs +PublisherUrl: https://defang.io/ +PublisherSupportUrl: https://github.com/DefangLabs/defang/issues/ +PackageName: Defang +PackageUrl: https://github.com/DefangLabs/defang/ +License: MIT +Copyright: Defang Software Labs Inc. +ShortDescription: The Defang command-line interface (CLI) +Description: Develop Anything, Deploy Anywhere. +Moniker: Defang +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DefangLabs/Defang/1.2.6/DefangLabs.Defang.yaml b/manifests/d/DefangLabs/Defang/1.2.6/DefangLabs.Defang.yaml new file mode 100644 index 0000000000000..2ca9bb670f2a3 --- /dev/null +++ b/manifests/d/DefangLabs/Defang/1.2.6/DefangLabs.Defang.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: DefangLabs.Defang +PackageVersion: 1.2.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/DelineaConnectionManager/2.6.1.6/Delinea.DelineaConnectionManager.installer.yaml b/manifests/d/Delinea/DelineaConnectionManager/2.6.1.6/Delinea.DelineaConnectionManager.installer.yaml deleted file mode 100644 index 5399a2802ed6e..0000000000000 --- a/manifests/d/Delinea/DelineaConnectionManager/2.6.1.6/Delinea.DelineaConnectionManager.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Delinea.DelineaConnectionManager -PackageVersion: 2.6.1.6 -InstallerType: wix -Scope: machine -InstallerSwitches: - InstallLocation: INSTALLFOLDER="" -UpgradeBehavior: install -Protocols: -- sslauncher -ProductCode: '{B9779FDA-5E33-45EA-B8D8-34DD9DDA1944}' -AppsAndFeaturesEntries: -- UpgradeCode: '{2C9B6482-0E2E-4584-83F0-432A62B05822}' -Installers: -- Architecture: x64 - InstallerUrl: https://downloads.cm.thycotic.com/Delinea.ConnectionManager.WindowsInstaller.msi - InstallerSha256: DCFED77D1A525881447CAE028003DBFEAB6ED0EE84074FBF3AC9B276EFA966A7 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/DelineaConnectionManager/2.6.1.6/Delinea.DelineaConnectionManager.locale.zh-CN.yaml b/manifests/d/Delinea/DelineaConnectionManager/2.6.1.6/Delinea.DelineaConnectionManager.locale.zh-CN.yaml deleted file mode 100644 index 5ddd25a5915a8..0000000000000 --- a/manifests/d/Delinea/DelineaConnectionManager/2.6.1.6/Delinea.DelineaConnectionManager.locale.zh-CN.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Delinea.DelineaConnectionManager -PackageVersion: 2.6.1.6 -PackageLocale: zh-CN -# Publisher: -# PublisherUrl: -# PublisherSupportUrl: -# PrivacyUrl: -# Author: -# PackageName: -# PackageUrl: -License: 专有软件 -# LicenseUrl: -# Copyright: -# CopyrightUrl: -ShortDescription: 通过 RDP 和 SSH 提供安全的远程服务器连接,帮助 IT 团队快速发起临时连接以管理远程资源会话。 -Description: Connection Manager 通过 RDP 和 SSH 提供安全的远程服务器连接,帮助 IT 团队快速发起临时连接以管理远程资源会话。轻松管理多个活动会话,您可以通过添加连接至收藏夹以进行存储和分类,并导入其他工具中的任意文件夹结构或连接,实现统一管理枢纽。 -# Moniker: -# Tags: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/DelineaConnectionManager/2.6.1.6/Delinea.DelineaConnectionManager.yaml b/manifests/d/Delinea/DelineaConnectionManager/2.6.1.6/Delinea.DelineaConnectionManager.yaml deleted file mode 100644 index d3eb41c043e4e..0000000000000 --- a/manifests/d/Delinea/DelineaConnectionManager/2.6.1.6/Delinea.DelineaConnectionManager.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Delinea.DelineaConnectionManager -PackageVersion: 2.6.1.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/DelineaConnectionManager/2.7.0.19/Delinea.DelineaConnectionManager.installer.yaml b/manifests/d/Delinea/DelineaConnectionManager/2.7.0.19/Delinea.DelineaConnectionManager.installer.yaml new file mode 100644 index 0000000000000..bdd8034b0c2cc --- /dev/null +++ b/manifests/d/Delinea/DelineaConnectionManager/2.7.0.19/Delinea.DelineaConnectionManager.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: Delinea.DelineaConnectionManager +PackageVersion: 2.7.0.19 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLFOLDER="" +UpgradeBehavior: install +Protocols: +- sslauncher +ProductCode: '{19347351-7EE0-4939-98ED-87E1D80A9B9C}' +AppsAndFeaturesEntries: +- UpgradeCode: '{2C9B6482-0E2E-4584-83F0-432A62B05822}' +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.cm.thycotic.com/Delinea.ConnectionManager.WindowsInstaller.msi + InstallerSha256: EE9754ED7B0F11B7FA9E8BA113A0580E8F16C15EC32FEC558EC4228848376FA1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/DelineaConnectionManager/2.6.1.6/Delinea.DelineaConnectionManager.locale.en-US.yaml b/manifests/d/Delinea/DelineaConnectionManager/2.7.0.19/Delinea.DelineaConnectionManager.locale.en-US.yaml similarity index 86% rename from manifests/d/Delinea/DelineaConnectionManager/2.6.1.6/Delinea.DelineaConnectionManager.locale.en-US.yaml rename to manifests/d/Delinea/DelineaConnectionManager/2.7.0.19/Delinea.DelineaConnectionManager.locale.en-US.yaml index 01e29ed1e0221..05128b5fcc734 100644 --- a/manifests/d/Delinea/DelineaConnectionManager/2.6.1.6/Delinea.DelineaConnectionManager.locale.en-US.yaml +++ b/manifests/d/Delinea/DelineaConnectionManager/2.7.0.19/Delinea.DelineaConnectionManager.locale.en-US.yaml @@ -1,28 +1,21 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Delinea.DelineaConnectionManager -PackageVersion: 2.6.1.6 -PackageLocale: en-US -Publisher: Delinea Inc. -PublisherUrl: https://delinea.com/ -PublisherSupportUrl: https://delinea.com/support -PrivacyUrl: https://delinea.com/privacy-policy -Author: Delinea Inc. -PackageName: Delinea Connection Manager -PackageUrl: https://docs.delinea.com/online-help/connection-manager/start.htm -License: Proprietary -LicenseUrl: https://delinea.com/terms-of-use -Copyright: Copyright © 2025 Delinea Inc. All rights reserved. -CopyrightUrl: https://delinea.com/terms-of-use -ShortDescription: Provide secure connections to remote servers using RDP and SSH, allowing IT teams to launch ad-hoc connections to manage sessions with remote resources. -Description: Connection Manager provides secure connections to remote servers using RDP and SSH, allowing IT teams to launch ad-hoc connections to manage sessions with remote resources. Management of multiple active sessions is easy. You can store and organize connections by adding them to your favorites and import any folder structure or connections used in other tools for a single management hub. -# Moniker: -# Tags: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.10.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Delinea.DelineaConnectionManager +PackageVersion: 2.7.0.19 +PackageLocale: en-US +Publisher: Delinea Inc. +PublisherUrl: https://delinea.com/ +PublisherSupportUrl: https://delinea.com/support +PrivacyUrl: https://delinea.com/privacy-policy +Author: Delinea Inc. +PackageName: Delinea Connection Manager +PackageUrl: https://docs.delinea.com/online-help/connection-manager/start.htm +License: Proprietary +LicenseUrl: https://delinea.com/terms-of-use +Copyright: Copyright © 2025 Delinea Inc. All rights reserved. +CopyrightUrl: https://delinea.com/terms-of-use +ShortDescription: Provide secure connections to remote servers using RDP and SSH, allowing IT teams to launch ad-hoc connections to manage sessions with remote resources. +Description: Connection Manager provides secure connections to remote servers using RDP and SSH, allowing IT teams to launch ad-hoc connections to manage sessions with remote resources. Management of multiple active sessions is easy. You can store and organize connections by adding them to your favorites and import any folder structure or connections used in other tools for a single management hub. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/DelineaConnectionManager/2.7.0.19/Delinea.DelineaConnectionManager.locale.zh-CN.yaml b/manifests/d/Delinea/DelineaConnectionManager/2.7.0.19/Delinea.DelineaConnectionManager.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9d5ddad00bd73 --- /dev/null +++ b/manifests/d/Delinea/DelineaConnectionManager/2.7.0.19/Delinea.DelineaConnectionManager.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: Delinea.DelineaConnectionManager +PackageVersion: 2.7.0.19 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 通过 RDP 和 SSH 提供安全的远程服务器连接,帮助 IT 团队快速发起临时连接以管理远程资源会话。 +Description: Connection Manager 通过 RDP 和 SSH 提供安全的远程服务器连接,帮助 IT 团队快速发起临时连接以管理远程资源会话。轻松管理多个活动会话,您可以通过添加连接至收藏夹以进行存储和分类,并导入其他工具中的任意文件夹结构或连接,实现统一管理枢纽。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/DelineaConnectionManager/2.7.0.19/Delinea.DelineaConnectionManager.yaml b/manifests/d/Delinea/DelineaConnectionManager/2.7.0.19/Delinea.DelineaConnectionManager.yaml new file mode 100644 index 0000000000000..68923527c7b62 --- /dev/null +++ b/manifests/d/Delinea/DelineaConnectionManager/2.7.0.19/Delinea.DelineaConnectionManager.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: Delinea.DelineaConnectionManager +PackageVersion: 2.7.0.19 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/PrivilegeManagerAgents/12.0.4237/Delinea.PrivilegeManagerAgents.installer.yaml b/manifests/d/Delinea/PrivilegeManagerAgents/12.0.4237/Delinea.PrivilegeManagerAgents.installer.yaml new file mode 100644 index 0000000000000..88679ff231569 --- /dev/null +++ b/manifests/d/Delinea/PrivilegeManagerAgents/12.0.4237/Delinea.PrivilegeManagerAgents.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Delinea.PrivilegeManagerAgents +PackageVersion: 12.0.4237 +InstallerType: burn +Scope: machine +InstallerSuccessCodes: +- 3010 +UpgradeBehavior: install +ProductCode: '{bf7a2135-f0d3-43e9-93f3-c6a2e4bb6625}' +AppsAndFeaturesEntries: +- UpgradeCode: '{BF6548FF-792A-4A0E-8C24-64EF47AECDE5}' +Installers: +- Architecture: x86 + InstallerUrl: https://tmsnuget.thycotic.com/software/Agents/PMAgents_12_0_4237.exe + InstallerSha256: 12F436EFAD28447A18594E33C005FD38267CE616286B8FF541D3195C813781B3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/PrivilegeManagerAgents/12.0.4237/Delinea.PrivilegeManagerAgents.locale.en-US.yaml b/manifests/d/Delinea/PrivilegeManagerAgents/12.0.4237/Delinea.PrivilegeManagerAgents.locale.en-US.yaml new file mode 100644 index 0000000000000..ae747034af134 --- /dev/null +++ b/manifests/d/Delinea/PrivilegeManagerAgents/12.0.4237/Delinea.PrivilegeManagerAgents.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Delinea.PrivilegeManagerAgents +PackageVersion: 12.0.4237 +PackageLocale: en-US +Publisher: Delinea Inc. +PublisherUrl: https://delinea.com/ +PublisherSupportUrl: https://delinea.com/support +PrivacyUrl: https://delinea.com/privacy-policy +Author: Delinea Inc. +PackageName: Privilege Manager Agents +PackageUrl: https://docs.delinea.com/online-help/privilege-manager/install/sw-downloads.htm +License: Proprietary +LicenseUrl: https://delinea.com/terms-of-use +Copyright: © 2025 Copyright Delinea. +CopyrightUrl: https://delinea.com/terms-of-use +ShortDescription: Bundled Privilege Manager Agents including Thycotic Agent, Thycotic Application Control Agent and Thycotic Directory Services Agent. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/PrivilegeManagerAgents/12.0.4237/Delinea.PrivilegeManagerAgents.locale.zh-CN.yaml b/manifests/d/Delinea/PrivilegeManagerAgents/12.0.4237/Delinea.PrivilegeManagerAgents.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6a3809420c9d4 --- /dev/null +++ b/manifests/d/Delinea/PrivilegeManagerAgents/12.0.4237/Delinea.PrivilegeManagerAgents.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Delinea.PrivilegeManagerAgents +PackageVersion: 12.0.4237 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 包含核心代理(Thycotic Agent)、应用程序控制代理(Thycotic Application Control Agent)和目录服务代理(Thycotic Directory Services Agent)的权限管理代理(Privilege Manager Agent)合集包。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/PrivilegeManagerAgents/12.0.4237/Delinea.PrivilegeManagerAgents.yaml b/manifests/d/Delinea/PrivilegeManagerAgents/12.0.4237/Delinea.PrivilegeManagerAgents.yaml new file mode 100644 index 0000000000000..625240c70870f --- /dev/null +++ b/manifests/d/Delinea/PrivilegeManagerAgents/12.0.4237/Delinea.PrivilegeManagerAgents.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: Delinea.PrivilegeManagerAgents +PackageVersion: 12.0.4237 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/ThycoticAgent/12.0.4237/Delinea.ThycoticAgent.installer.yaml b/manifests/d/Delinea/ThycoticAgent/12.0.4237/Delinea.ThycoticAgent.installer.yaml new file mode 100644 index 0000000000000..d9ec596e7f9a6 --- /dev/null +++ b/manifests/d/Delinea/ThycoticAgent/12.0.4237/Delinea.ThycoticAgent.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Delinea.ThycoticAgent +PackageVersion: 12.0.4237 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLFOLDER="" +UpgradeBehavior: install +AppsAndFeaturesEntries: +- UpgradeCode: '{60306BC4-455F-4F5F-A280-3FA0635ED535}' +Installers: +- Architecture: x86 + InstallerUrl: https://tmsnuget.thycotic.com/software/Agents/ThycoticAgent_x86_12_0_4237.msi + InstallerSha256: 3D396DECE5E51DC507AA6094EED393CFB586D196DEAD0A1CEDD41FEA2040320E + ProductCode: '{FB0950F4-4301-4D4F-AE00-2FA015BA515B}' +- Architecture: x64 + InstallerUrl: https://tmsnuget.thycotic.com/software/Agents/ThycoticAgent_x64_12_0_4237.msi + InstallerSha256: 0C94852BA36279963B259620CB3E4A4A90597B7C31A2724CFB156451C322F59D + ProductCode: '{B52FE762-BFDE-4B8C-9136-D3084004C571}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/ThycoticAgent/12.0.4237/Delinea.ThycoticAgent.locale.en-US.yaml b/manifests/d/Delinea/ThycoticAgent/12.0.4237/Delinea.ThycoticAgent.locale.en-US.yaml new file mode 100644 index 0000000000000..40a07463f8121 --- /dev/null +++ b/manifests/d/Delinea/ThycoticAgent/12.0.4237/Delinea.ThycoticAgent.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Delinea.ThycoticAgent +PackageVersion: 12.0.4237 +PackageLocale: en-US +Publisher: Delinea Inc. +PublisherUrl: https://delinea.com/ +PublisherSupportUrl: https://delinea.com/support +PrivacyUrl: https://delinea.com/privacy-policy +Author: Delinea Inc. +PackageName: Thycotic Agent +PackageUrl: https://docs.delinea.com/online-help/privilege-manager/install/sw-downloads.htm +License: Proprietary +LicenseUrl: https://delinea.com/terms-of-use +Copyright: © 2025 Copyright Delinea. +CopyrightUrl: https://delinea.com/terms-of-use +ShortDescription: The core agent for all reporting and monitoring communication on the endpoint. It can be considered the managing agent, while the Application Control and Local Security Agents are the worker agents. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/ThycoticAgent/12.0.4237/Delinea.ThycoticAgent.locale.zh-CN.yaml b/manifests/d/Delinea/ThycoticAgent/12.0.4237/Delinea.ThycoticAgent.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e855c56452c54 --- /dev/null +++ b/manifests/d/Delinea/ThycoticAgent/12.0.4237/Delinea.ThycoticAgent.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Delinea.ThycoticAgent +PackageVersion: 12.0.4237 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 终端所有报告与监控通信的核心代理。可将其视为主管代理,而 Application Control Agent 和 Local Security Agent 则是作业代理。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/ThycoticAgent/12.0.4237/Delinea.ThycoticAgent.yaml b/manifests/d/Delinea/ThycoticAgent/12.0.4237/Delinea.ThycoticAgent.yaml new file mode 100644 index 0000000000000..723e1f414df3a --- /dev/null +++ b/manifests/d/Delinea/ThycoticAgent/12.0.4237/Delinea.ThycoticAgent.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: Delinea.ThycoticAgent +PackageVersion: 12.0.4237 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/ThycoticApplicationControlAgent/12.0.4237/Delinea.ThycoticApplicationControlAgent.installer.yaml b/manifests/d/Delinea/ThycoticApplicationControlAgent/12.0.4237/Delinea.ThycoticApplicationControlAgent.installer.yaml new file mode 100644 index 0000000000000..ef54f1188f544 --- /dev/null +++ b/manifests/d/Delinea/ThycoticApplicationControlAgent/12.0.4237/Delinea.ThycoticApplicationControlAgent.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: Delinea.ThycoticApplicationControlAgent +PackageVersion: 12.0.4237 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLFOLDER="" +UpgradeBehavior: install +AppsAndFeaturesEntries: +- UpgradeCode: '{3A30BD3D-7C14-428C-BE4B-38C6750EBE8F}' +Installers: +- Architecture: x86 + InstallerUrl: https://tmsnuget.thycotic.com/software/Agents/Thycotic_ApplicationControlAgent_x86_12_0_4237.msi + InstallerSha256: 739DB5F26F342AC24456DF77FC49BD687F835AD9792ABFE2E71130115DB739C7 + ProductCode: '{BB06A090-5B7E-4F86-B1DC-EF5EDE4A0531}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Thycotic\Agents\ApplicationControl\.' +- Architecture: x64 + InstallerUrl: https://tmsnuget.thycotic.com/software/Agents/Thycotic_ApplicationControlAgent_x64_12_0_4237.msi + InstallerSha256: 987DE86405A757C403D3EC50120F66158A8E52B92772254E57234A8E3A35C25A + ProductCode: '{01CEB8C9-FA65-447A-B062-0CCCD5A5FFC9}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Thycotic\Agents\ApplicationControl\.' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/ThycoticApplicationControlAgent/12.0.4237/Delinea.ThycoticApplicationControlAgent.locale.en-US.yaml b/manifests/d/Delinea/ThycoticApplicationControlAgent/12.0.4237/Delinea.ThycoticApplicationControlAgent.locale.en-US.yaml new file mode 100644 index 0000000000000..6aedc1bcff0c6 --- /dev/null +++ b/manifests/d/Delinea/ThycoticApplicationControlAgent/12.0.4237/Delinea.ThycoticApplicationControlAgent.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Delinea.ThycoticApplicationControlAgent +PackageVersion: 12.0.4237 +PackageLocale: en-US +Publisher: Delinea Inc. +PublisherUrl: https://delinea.com/ +PublisherSupportUrl: https://delinea.com/support +PrivacyUrl: https://delinea.com/privacy-policy +Author: Delinea Inc. +PackageName: Thycotic Application Control Agent +PackageUrl: https://docs.delinea.com/online-help/privilege-manager/install/sw-downloads.htm +License: Proprietary +LicenseUrl: https://delinea.com/terms-of-use +Copyright: © 2025 Copyright Delinea. +CopyrightUrl: https://delinea.com/terms-of-use +ShortDescription: Monitor processes executing the Privilege Manager Application Control Functions on the endpoint. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/ThycoticApplicationControlAgent/12.0.4237/Delinea.ThycoticApplicationControlAgent.locale.zh-CN.yaml b/manifests/d/Delinea/ThycoticApplicationControlAgent/12.0.4237/Delinea.ThycoticApplicationControlAgent.locale.zh-CN.yaml new file mode 100644 index 0000000000000..aa9972aa47827 --- /dev/null +++ b/manifests/d/Delinea/ThycoticApplicationControlAgent/12.0.4237/Delinea.ThycoticApplicationControlAgent.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Delinea.ThycoticApplicationControlAgent +PackageVersion: 12.0.4237 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 监视在终端上执行特权管理器应用程序控制功能的进程。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/ThycoticApplicationControlAgent/12.0.4237/Delinea.ThycoticApplicationControlAgent.yaml b/manifests/d/Delinea/ThycoticApplicationControlAgent/12.0.4237/Delinea.ThycoticApplicationControlAgent.yaml new file mode 100644 index 0000000000000..79dfa2b9dc5de --- /dev/null +++ b/manifests/d/Delinea/ThycoticApplicationControlAgent/12.0.4237/Delinea.ThycoticApplicationControlAgent.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: Delinea.ThycoticApplicationControlAgent +PackageVersion: 12.0.4237 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/ThycoticLocalSecurityAgent/12.0.4237/Delinea.ThycoticLocalSecurityAgent.installer.yaml b/manifests/d/Delinea/ThycoticLocalSecurityAgent/12.0.4237/Delinea.ThycoticLocalSecurityAgent.installer.yaml new file mode 100644 index 0000000000000..ee3425d6758a6 --- /dev/null +++ b/manifests/d/Delinea/ThycoticLocalSecurityAgent/12.0.4237/Delinea.ThycoticLocalSecurityAgent.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: Delinea.ThycoticLocalSecurityAgent +PackageVersion: 12.0.4237 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLFOLDER="" +UpgradeBehavior: install +AppsAndFeaturesEntries: +- UpgradeCode: '{16A921FF-12EE-4C8D-AE3B-0E9D0BAAA0E1}' +Installers: +- Architecture: x86 + InstallerUrl: https://tmsnuget.thycotic.com/software/Agents/Thycotic_LocalSecurityAgent_x86_12_0_4237.msi + InstallerSha256: 2F76BA1D92108C089D08D2B60C3B635C309ECE774EB4841FD4598E2304A57621 + ProductCode: '{DE63D03D-D1F3-4ED9-A827-890785CE9F07}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Thycotic\Agents\LocalSecurity\.' +- Architecture: x64 + InstallerUrl: https://tmsnuget.thycotic.com/software/Agents/Thycotic_LocalSecurityAgent_x64_12_0_4237.msi + InstallerSha256: 440F811B1D990DE198DB064CC8C5B801C5472E787B5CB1444DC9BACF250DFBAF + ProductCode: '{27D4CC68-2C0E-43F9-86E3-7975D036F717}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Thycotic\Agents\LocalSecurity\.' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/ThycoticLocalSecurityAgent/12.0.4237/Delinea.ThycoticLocalSecurityAgent.locale.en-US.yaml b/manifests/d/Delinea/ThycoticLocalSecurityAgent/12.0.4237/Delinea.ThycoticLocalSecurityAgent.locale.en-US.yaml new file mode 100644 index 0000000000000..49cca7f52d397 --- /dev/null +++ b/manifests/d/Delinea/ThycoticLocalSecurityAgent/12.0.4237/Delinea.ThycoticLocalSecurityAgent.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Delinea.ThycoticLocalSecurityAgent +PackageVersion: 12.0.4237 +PackageLocale: en-US +Publisher: Delinea Inc. +PublisherUrl: https://delinea.com/ +PublisherSupportUrl: https://delinea.com/support +PrivacyUrl: https://delinea.com/privacy-policy +Author: Delinea Inc. +PackageName: Thycotic Local Security Agent +PackageUrl: https://docs.delinea.com/online-help/privilege-manager/install/sw-downloads.htm +License: Proprietary +LicenseUrl: https://delinea.com/terms-of-use +Copyright: © 2025 Copyright Delinea. +CopyrightUrl: https://delinea.com/terms-of-use +ShortDescription: Monitor and execute Local Security functions on Windows based endpoints. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/ThycoticLocalSecurityAgent/12.0.4237/Delinea.ThycoticLocalSecurityAgent.locale.zh-CN.yaml b/manifests/d/Delinea/ThycoticLocalSecurityAgent/12.0.4237/Delinea.ThycoticLocalSecurityAgent.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b921e43455121 --- /dev/null +++ b/manifests/d/Delinea/ThycoticLocalSecurityAgent/12.0.4237/Delinea.ThycoticLocalSecurityAgent.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Delinea.ThycoticLocalSecurityAgent +PackageVersion: 12.0.4237 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 在基于 Windows 的终端上监视和执行本地安全功能。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Delinea/ThycoticLocalSecurityAgent/12.0.4237/Delinea.ThycoticLocalSecurityAgent.yaml b/manifests/d/Delinea/ThycoticLocalSecurityAgent/12.0.4237/Delinea.ThycoticLocalSecurityAgent.yaml new file mode 100644 index 0000000000000..c47d68baa89ab --- /dev/null +++ b/manifests/d/Delinea/ThycoticLocalSecurityAgent/12.0.4237/Delinea.ThycoticLocalSecurityAgent.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: Delinea.ThycoticLocalSecurityAgent +PackageVersion: 12.0.4237 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dell/CommandUpdate/5.5.0/Dell.CommandUpdate.installer.yaml b/manifests/d/Dell/CommandUpdate/5.5.0/Dell.CommandUpdate.installer.yaml index 1637925e658cb..11b545d11f8ed 100644 --- a/manifests/d/Dell/CommandUpdate/5.5.0/Dell.CommandUpdate.installer.yaml +++ b/manifests/d/Dell/CommandUpdate/5.5.0/Dell.CommandUpdate.installer.yaml @@ -32,7 +32,7 @@ AppsAndFeaturesEntries: InstallerType: msi Installers: - Architecture: x64 - InstallerUrl: https://dl.dell.com/FOLDER13256957M/1/Dell-Command-Update-Application_99DD9_WIN64_5.5.0_A00.EXE - InstallerSha256: AEE4C562D0F46AF849876F518198299523C734506C7E54E1B3CF1F193A01EF4C + InstallerUrl: https://dl.dell.com/FOLDER13309509M/1/Dell-Command-Update-Application_PPWHH_WIN64_5.5.0_A00.EXE + InstallerSha256: E80D51ABC9E8171BB30A5B6E992C3BD860DFE877CAFCD99C077BAB922349048C ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/Dell/CommandUpdate/5.5.0/Dell.CommandUpdate.locale.en-US.yaml b/manifests/d/Dell/CommandUpdate/5.5.0/Dell.CommandUpdate.locale.en-US.yaml index d32a62dec8792..4b7808f214c69 100644 --- a/manifests/d/Dell/CommandUpdate/5.5.0/Dell.CommandUpdate.locale.en-US.yaml +++ b/manifests/d/Dell/CommandUpdate/5.5.0/Dell.CommandUpdate.locale.en-US.yaml @@ -31,6 +31,7 @@ Tags: - update - vostro - xps +- dellinstrumentation.inf ReleaseNotes: |- - Enhanced software update mechanism by downloading the driver packages specific to the operating system during the Advance Driver Restore operation. - User interface refinements with rebranding of the splash screen for Dell Command | Update application. diff --git a/manifests/d/Dell/CommandUpdate/Universal/5.5.0/Dell.CommandUpdate.Universal.installer.yaml b/manifests/d/Dell/CommandUpdate/Universal/5.5.0/Dell.CommandUpdate.Universal.installer.yaml index be86b93b9fc12..9355d9f960956 100644 --- a/manifests/d/Dell/CommandUpdate/Universal/5.5.0/Dell.CommandUpdate.Universal.installer.yaml +++ b/manifests/d/Dell/CommandUpdate/Universal/5.5.0/Dell.CommandUpdate.Universal.installer.yaml @@ -25,14 +25,14 @@ Dependencies: PackageDependencies: - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 ProductCode: '{3F2A9AE0-4FB2-41C7-A9DF-611E6FAC2B31}' -ReleaseDate: 2025-06-18 +ReleaseDate: 2025-06-30 AppsAndFeaturesEntries: - ProductCode: '{3F2A9AE0-4FB2-41C7-A9DF-611E6FAC2B31}' UpgradeCode: '{69488F91-BE5B-40E1-9202-CD793CA948ED}' InstallerType: msi Installers: - Architecture: x64 - InstallerUrl: https://dl.dell.com/FOLDER13257249M/1/Dell-Command-Update-Windows-Universal-Application_66WNX_WIN64_5.5.0_A00.EXE - InstallerSha256: 68551C7F2BB6C77A18A293DB98064F9A6D4067BFE3887B131D1AA563B309B138 + InstallerUrl: https://dl.dell.com/FOLDER13309588M/1/Dell-Command-Update-Windows-Universal-Application_C8JXV_WIN64_5.5.0_A00.EXE + InstallerSha256: AA888F9970D4DD7F61E923061AB750EEA0879F7711BFEC4E2F200AEB40261875 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.20/Dell.DisplayAndPeripheralManager.installer.yaml b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.20/Dell.DisplayAndPeripheralManager.installer.yaml new file mode 100644 index 0000000000000..5a73a4e58c073 --- /dev/null +++ b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.20/Dell.DisplayAndPeripheralManager.installer.yaml @@ -0,0 +1,21 @@ +# 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: Dell.DisplayAndPeripheralManager +PackageVersion: 2.1.0.20 +InstallerType: exe # InstallShield +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /Silent + SilentWithProgress: /Silent +ProductCode: '{21A24609-08A2-423E-80DE-4D33A933F1A1}' +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.dell.com/FOLDER13312208M/1/DDPM-Setup_2.1.0.20.exe + InstallerSha256: CBBB510100A00758DD4FFCAF4587687275BEEF030A3761579F7A1AF1A8D6A67F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.20/Dell.DisplayAndPeripheralManager.locale.en-US.yaml b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.20/Dell.DisplayAndPeripheralManager.locale.en-US.yaml new file mode 100644 index 0000000000000..d0f17c67c198b --- /dev/null +++ b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.20/Dell.DisplayAndPeripheralManager.locale.en-US.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.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Dell.DisplayAndPeripheralManager +PackageVersion: 2.1.0.20 +PackageLocale: en-US +Publisher: Dell Technologies +PublisherUrl: https://www.dell.com/ +PublisherSupportUrl: https://www.dell.com/support/home/ +PrivacyUrl: https://www.dell.com/learn/us/en/uscorp1/policies-privacy +Author: Dell Inc. +PackageName: Dell Display and Peripheral Manager +# PackageUrl: https://www.dell.com/support/home/drivers/DriversDetails?driverId=hh0k8 +License: Proprietary +LicenseUrl: https://www.dell.com/learn/us/en/uscorp1/terms-of-sale +Copyright: Copyright (C) 2020 - 2025 Dell Inc.or its subsidiaries. All rights reserved +CopyrightUrl: https://www.dell.com/learn/us/en/uscorp1/terms-conditions/trademarks-us +ShortDescription: Set up and configure your Dell monitors and peripherals such as keyboards, mice, webcams, audio devices and active pens. +Description: Dell Display and Peripheral Manager helps you set up and configure your Dell monitors and peripherals such as keyboards, mice, webcams, audio devices and active pens. This app replaces Dell Display Manager and Dell Peripheral Manager. +# Moniker: +# Tags: +ReleaseNotes: |- + [1] New Supported Devices + Dell Pro Premium Conferencing Soundbar - SB725 + [2] New Features + Dock firmware updates for ARM-based systems + Auto Off: Customize your Dell wireless audio devices to automatically power off after a period of inactivity + Windows 11 for Education OS supported + [3] Bug Fixes + Enhanced stability and performance + User experience enhancements +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.20/Dell.DisplayAndPeripheralManager.locale.zh-CN.yaml b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.20/Dell.DisplayAndPeripheralManager.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b0a5ce50d7325 --- /dev/null +++ b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.20/Dell.DisplayAndPeripheralManager.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: Dell.DisplayAndPeripheralManager +PackageVersion: 2.1.0.20 +PackageLocale: zh-CN +# Publisher: +PublisherUrl: https://www.dell.com/zh-cn +PublisherSupportUrl: https://www.dell.com/support/home/zh-cn +PrivacyUrl: https://www.dell.com/learn/cn/zh/cncorp1/policies-privacy +# Author: +# PackageName: +# PackageUrl: https://www.dell.com/support/home/zh-cn/drivers/DriversDetails?driverId=hh0k8 +License: 专有软件 +LicenseUrl: https://www.dell.com/learn/cn/zh/cncorp1/terms-of-sale +# Copyright: +CopyrightUrl: https://www.dell.com/learn/cn/zh/cncorp1/site-terms-of-use-copyright +ShortDescription: 设置和配置戴尔显示器及键盘、鼠标、网络摄像头、音频设备和主动式触控笔等外围设备。 +Description: Dell Display and Peripheral Manager 可帮助您设置和配置戴尔显示器及键盘、鼠标、网络摄像头、音频设备和主动式触控笔等外围设备。该应用程序取代原有的 Dell Display Manager 和 Dell Peripheral Manager. +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.20/Dell.DisplayAndPeripheralManager.yaml b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.20/Dell.DisplayAndPeripheralManager.yaml new file mode 100644 index 0000000000000..295ab7e16b36a --- /dev/null +++ b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.20/Dell.DisplayAndPeripheralManager.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: Dell.DisplayAndPeripheralManager +PackageVersion: 2.1.0.20 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.23/Dell.DisplayAndPeripheralManager.installer.yaml b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.23/Dell.DisplayAndPeripheralManager.installer.yaml new file mode 100644 index 0000000000000..2c8d969a538e0 --- /dev/null +++ b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.23/Dell.DisplayAndPeripheralManager.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: Dell.DisplayAndPeripheralManager +PackageVersion: 2.1.0.23 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /Silent + SilentWithProgress: /Silent +ProductCode: '{21A24609-08A2-423E-80DE-4D33A933F1A1}' +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.dell.com/FOLDER13347317M/1/DDPM-Setup_2.1.0.23.exe + InstallerSha256: 4F6C2FD86025604EE1787BD1ED5B31EACAC7951BF51C2DB65AB82B1A8A80121B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.23/Dell.DisplayAndPeripheralManager.locale.en-US.yaml b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.23/Dell.DisplayAndPeripheralManager.locale.en-US.yaml new file mode 100644 index 0000000000000..b79c45556d99e --- /dev/null +++ b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.23/Dell.DisplayAndPeripheralManager.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Dell.DisplayAndPeripheralManager +PackageVersion: 2.1.0.23 +PackageLocale: en-US +Publisher: Dell Technologies +PublisherUrl: https://www.dell.com/ +PublisherSupportUrl: https://www.dell.com/support/home/ +PrivacyUrl: https://www.dell.com/learn/us/en/uscorp1/policies-privacy +Author: Dell Inc. +PackageName: Dell Display and Peripheral Manager +License: Proprietary +LicenseUrl: https://www.dell.com/learn/us/en/uscorp1/terms-of-sale +Copyright: Copyright (C) 2020 - 2025 Dell Inc.or its subsidiaries. All rights reserved +CopyrightUrl: https://www.dell.com/learn/us/en/uscorp1/terms-conditions/trademarks-us +ShortDescription: Set up and configure your Dell monitors and peripherals such as keyboards, mice, webcams, audio devices and active pens. +Description: Dell Display and Peripheral Manager helps you set up and configure your Dell monitors and peripherals such as keyboards, mice, webcams, audio devices and active pens. This app replaces Dell Display Manager and Dell Peripheral Manager. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.23/Dell.DisplayAndPeripheralManager.locale.zh-CN.yaml b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.23/Dell.DisplayAndPeripheralManager.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fbd9aa19df11e --- /dev/null +++ b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.23/Dell.DisplayAndPeripheralManager.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: Dell.DisplayAndPeripheralManager +PackageVersion: 2.1.0.23 +PackageLocale: zh-CN +PublisherUrl: https://www.dell.com/zh-cn +PublisherSupportUrl: https://www.dell.com/support/home/zh-cn +PrivacyUrl: https://www.dell.com/learn/cn/zh/cncorp1/policies-privacy +License: 专有软件 +LicenseUrl: https://www.dell.com/learn/cn/zh/cncorp1/terms-of-sale +CopyrightUrl: https://www.dell.com/learn/cn/zh/cncorp1/site-terms-of-use-copyright +ShortDescription: 设置和配置戴尔显示器及键盘、鼠标、网络摄像头、音频设备和主动式触控笔等外围设备。 +Description: Dell Display and Peripheral Manager 可帮助您设置和配置戴尔显示器及键盘、鼠标、网络摄像头、音频设备和主动式触控笔等外围设备。该应用程序取代原有的 Dell Display Manager 和 Dell Peripheral Manager. +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.23/Dell.DisplayAndPeripheralManager.yaml b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.23/Dell.DisplayAndPeripheralManager.yaml new file mode 100644 index 0000000000000..7c0a674dcc066 --- /dev/null +++ b/manifests/d/Dell/DisplayAndPeripheralManager/2.1.0.23/Dell.DisplayAndPeripheralManager.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: Dell.DisplayAndPeripheralManager +PackageVersion: 2.1.0.23 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DenoLand/Deno/2.3.7/DenoLand.Deno.installer.yaml b/manifests/d/DenoLand/Deno/2.3.7/DenoLand.Deno.installer.yaml new file mode 100644 index 0000000000000..dbcb375354ebc --- /dev/null +++ b/manifests/d/DenoLand/Deno/2.3.7/DenoLand.Deno.installer.yaml @@ -0,0 +1,18 @@ +# Created with AutoPublish using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: DenoLand.Deno +PackageVersion: 2.3.7 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: deno.exe +Commands: +- deno +ReleaseDate: 2025-06-23 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/denoland/deno/releases/download/v2.3.7/deno-x86_64-pc-windows-msvc.zip + InstallerSha256: 5C3B396D190EFA2C348A1935CBFEC8E7EAC2D428EFEF3B413174EBEBBB6817D4 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DenoLand/Deno/2.3.7/DenoLand.Deno.locale.en-US.yaml b/manifests/d/DenoLand/Deno/2.3.7/DenoLand.Deno.locale.en-US.yaml new file mode 100644 index 0000000000000..ba8477268fecb --- /dev/null +++ b/manifests/d/DenoLand/Deno/2.3.7/DenoLand.Deno.locale.en-US.yaml @@ -0,0 +1,87 @@ +# Created with AutoPublish using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DenoLand.Deno +PackageVersion: 2.3.7 +PackageLocale: en-US +Publisher: Deno Land Inc. +PublisherUrl: https://deno.com/ +PublisherSupportUrl: https://github.com/denoland/deno/issues +PrivacyUrl: https://docs.deno.com/deploy/manual/privacy-policy/ +Author: Deno Land Inc. +PackageName: Deno +PackageUrl: https://deno.com/ +License: MIT +LicenseUrl: https://github.com/denoland/deno/blob/HEAD/LICENSE.md +Copyright: Copyright 2018-2024 the Deno authors +ShortDescription: A modern runtime for JavaScript and TypeScript +Description: Deno is a simple, modern and secure runtime for JavaScript, TypeScript, and WebAssembly that uses V8 and is built in Rust. +Tags: +- develop +- development +- environment +- javascript +- js +- programming +- runtime +- typescript +- v8 +ReleaseNotes: |- + 2.3.7 / 2025.06.23 + - feat(unstable): add --platform flag to deno bundle (#29697) + - feat(unstable): add --sourcemap flag to deno bundle (#29735) + - feat(unstable): add watch mode to deno bundle (#29795) + - feat: allow base64 ca cert in args (#29814) + - fix(bundle): enable sloppy imports by default when bundling (#29731) + - fix(bundle): improve error handling and reporting (#29744) + - fix(bundle): parse the allow-import flag, fix example in help text (#29733) + - fix(bundle): transform import.meta.main (#29830) + - fix(ext/napi): ensure the finalizer callback will be called (#29710) + - fix(ext/node): DiffieHellman constructor behaviors (#29718) + - fix(ext/node): Fix crypto.pbkdf2 compat (#29738) + - fix(ext/node): Module.wrap cleanup for npm:v8-code-cache (#29725) + - fix(ext/node): add fchmod and fchmodSync (#29791) + - fix(ext/node): add key length validation in + DiffieHellman.prototype.computeSecret (#29757) + - fix(ext/node): add validation to Cipheriv methods (#29800) + - fix(ext/node): crypto.timingSafeEqual (#29758) + - fix(ext/node): deprecate Hash and Hmac constructors (#29774) + - fix(ext/node): fix assertion error message of assert.ok (#29803) + - fix(ext/node): fix error type in DiffieHellman constructor (#29721) + - fix(ext/node): fix events.once (#29716) + - fix(ext/node): fix input validation of crypto hkdf (#29775) + - fix(ext/node): fix oneshot hash validation (#29661) + - fix(ext/node): implement Certificate API (#29828) + - fix(ext/node): improve assert.ifError (#29846) + - fix(ext/node): improve comparison of faked objects in deepStrictEqual + (#29819) + - fix(ext/node): improve scrypt support (#29773) + - fix(ext/node): support KeyObject in publicEncrypt/privateDecrypt (#29798) + - fix(ext/node): throw invalid state from getAuthTag (#29752) + - fix(ext/node): use primordials in + ext/node/polyfills/internal/event_target.mjs (#29772) + - fix(ext/node): use primordials in ext/node/polyfills/internal/fs/utils.mjs + (#29708) + - fix(ext/node): validate auth tag for GCM mode cipher (#29739) + - fix(fmt): fix handling of indent inside template language (#29616) + - fix(fmt): handle TS as syntax in Svelte each block (#29789) + - fix(install): ignore unknown JSR export errors on top level install (#29807) + - fix(install): infer name from @scope/cli pattern (#29694) + - fix(install,outdated): try to avoid building graph with incorrect exports + (#29713) + - fix(jsr): allow using import.meta.resolve to resolve non-jsr remote urls + (#29831) + - fix(lsp): respect media type for tsx jupyter cells (#29712) + - fix(npm): support resolving npm specifiers not in graph with + import.meta.resolve for resolved packages (#29732) + - fix: import.meta.resolve - do not error for non-existent files in npm + packages (#29741) + - fix: do not panic when logging from outside a tokio runtime (#29728) + - fix: move win32job under windows dependencies in tests/util/server (#29745) + - fix: remove self from global middleware (#29734) +ReleaseNotesUrl: https://github.com/denoland/deno/releases/tag/v2.3.7 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.deno.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DenoLand/Deno/2.3.7/DenoLand.Deno.locale.zh-CN.yaml b/manifests/d/DenoLand/Deno/2.3.7/DenoLand.Deno.locale.zh-CN.yaml new file mode 100644 index 0000000000000..215adb548ca41 --- /dev/null +++ b/manifests/d/DenoLand/Deno/2.3.7/DenoLand.Deno.locale.zh-CN.yaml @@ -0,0 +1,22 @@ +# Created with AutoPublish using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: DenoLand.Deno +PackageVersion: 2.3.7 +PackageLocale: zh-CN +ShortDescription: JavaScript 和 TypeScript 的现代运行时 +Description: Deno 是一个简单、现代、安全的运行时,适用于 JavaScript、TypeScript 和 WebAssembly,使用 V8 和 Rust 构建。 +Tags: +- javascript +- js +- typescript +- v8 +- 开发 +- 环境 +- 编程 +- 运行时 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.deno.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DenoLand/Deno/2.3.7/DenoLand.Deno.yaml b/manifests/d/DenoLand/Deno/2.3.7/DenoLand.Deno.yaml new file mode 100644 index 0000000000000..0cbdc8b945ba5 --- /dev/null +++ b/manifests/d/DenoLand/Deno/2.3.7/DenoLand.Deno.yaml @@ -0,0 +1,8 @@ +# Created with AutoPublish using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: DenoLand.Deno +PackageVersion: 2.3.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DenoLand/Deno/2.4.0/DenoLand.Deno.installer.yaml b/manifests/d/DenoLand/Deno/2.4.0/DenoLand.Deno.installer.yaml new file mode 100644 index 0000000000000..426e003bd354f --- /dev/null +++ b/manifests/d/DenoLand/Deno/2.4.0/DenoLand.Deno.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: DenoLand.Deno +PackageVersion: 2.4.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: deno.exe +Commands: +- deno +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/denoland/deno/releases/download/v2.4.0/deno-x86_64-pc-windows-msvc.zip + InstallerSha256: 25CBB76B4A1CE404A4EBFE1995EDB475D206D5FDAA92B1632838256D552CD026 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DenoLand/Deno/2.4.0/DenoLand.Deno.locale.en-US.yaml b/manifests/d/DenoLand/Deno/2.4.0/DenoLand.Deno.locale.en-US.yaml new file mode 100644 index 0000000000000..11aa5edf21af7 --- /dev/null +++ b/manifests/d/DenoLand/Deno/2.4.0/DenoLand.Deno.locale.en-US.yaml @@ -0,0 +1,90 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DenoLand.Deno +PackageVersion: 2.4.0 +PackageLocale: en-US +Publisher: Deno Land Inc. +PublisherUrl: https://deno.com/ +PublisherSupportUrl: https://github.com/denoland/deno/issues +PrivacyUrl: https://docs.deno.com/deploy/manual/privacy-policy/ +Author: Deno Land Inc. +PackageName: Deno +PackageUrl: https://deno.com/ +License: MIT +LicenseUrl: https://github.com/denoland/deno/blob/HEAD/LICENSE.md +Copyright: Copyright 2018-2024 the Deno authors +ShortDescription: A modern runtime for JavaScript and TypeScript +Description: Deno is a simple, modern and secure runtime for JavaScript, TypeScript, and WebAssembly that uses V8 and is built in Rust. +Tags: +- develop +- development +- environment +- javascript +- js +- programming +- runtime +- typescript +- v8 +ReleaseNotes: |- + - feat(bundle): support text and bytes imports in bundle (#29908) + - feat(check): tsconfig "references", "extends", "files", "include" and + "exclude" (#29843) + - feat(cli): add --coverage flag to deno run command (#29329) + - feat(cli): alias --unstable-sloppy-imports to --sloppy-imports (#29780) + - feat(ext/http): support onListen() callback in deno serve (#29449) + - feat(fmt): add support for .xml, .svg and .mustache files (#29851) + - feat(fmt): remove UTF-8 BOM instead of maintaining it (#29796) + - feat(node API): add fs.glob, fs.globSync, fs.promises.glob (#28972) + - feat(otel): stabilize OpenTelemetry support (#29822) + - feat(process): add detached option to Deno.Command (#29933) + - feat(run): resolve main module with workspace resolver (#29928) + - feat(signals): support listening for ctrl+close on Windows (#27880) + - feat(unstable): add DENO_NODE_CONDITIONS env var (#29848) + - feat(unstable): bytes and text imports (#29855) + - feat(unstable): support bytes and text imports in deno compile (#29924) + - feat: --allow-net supports CIDR ranges (#29704) + - feat: Add --deny-import flag (#29702) + - feat: Deno.execPath() no longer requires --allow-read permission (#29620) + - feat: add 'deno update' subcommand (#29187) + - feat: add DENO_AUTO_SERVE env var (#29852) + - feat: add DENO_COMPAT env var (#29889) + - feat: add support for --preload/--import flag (#29626) + - feat: deprecate --unstable-node-globals flag (#29887) + - feat: make 'Buffer' and 'global' available as globals (#29416) + - feat: make setImmediate and clearImmediate as globals (#29877) + - feat: rename --unstable-node-conditions to --unstable-conditions (#29885) + - feat: stabilize --allow-net subdomain wildcards (#29902) + - feat: stabilize --node-conditions flag (#29628) + - feat: unflag the deploy subcommand (#29863) + - fix(bench): Make output table markdown compatible (#29532) + - fix(bundle): only replace require shim in js files, spruce up output (#29892) + - fix(check): don't detect tsconfigs with no deno.json/package.json or + --no-config (#29925) + - fix(coverage): Make output table markdown compatible (#29533) + - fix(ext/node): add lchmod, lchmod promise, lchmodSync to node:fs + (#29833) + - fix(ext/node): add type check to LibuvStreamWrap.writeBuffer (#29879) + - fix(ext/node): don't show deprecation warnings for dependencies (#29909) + - fix(ext/node): export promise based lchown and lutimes from + node:fs/promises (#29870) + - fix(ext/node): fix reference error in node:stream (#29894) + - fix(ext/node): improve assert.fail (#29850) + - fix(ext/node): improve input validations of stream/consumers (#29880) + - fix(ext/node): keep BOM in buffer.toString('utf8') (#29896) + - fix(ext/node): remove duplicated stream classes (#29860) + - fix(fmt/css): prefer collapsing font-family values (#29864) + - fix(install): purge more packages from lockfile on config change (#29953) + - fix(install/global): resolve bin name from npm packument (#29884) + - fix(lsp): don't show no-export diagnostics for type-only npm imports (#29888) + - fix(node): use primordials more consistently in _events.mjs (#29930) + - fix(publish): disallow publishing with bytes or text imports (#29954) + - fix: support Deno.permissions.query({name:"import"}) (#29610) + - perf: skip loading bytes and text imports into memory when already cached and + building module graph (#29931) +ReleaseNotesUrl: https://github.com/denoland/deno/releases/tag/v2.4.0 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.deno.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DenoLand/Deno/2.4.0/DenoLand.Deno.locale.zh-CN.yaml b/manifests/d/DenoLand/Deno/2.4.0/DenoLand.Deno.locale.zh-CN.yaml new file mode 100644 index 0000000000000..548d627b975fa --- /dev/null +++ b/manifests/d/DenoLand/Deno/2.4.0/DenoLand.Deno.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: DenoLand.Deno +PackageVersion: 2.4.0 +PackageLocale: zh-CN +ShortDescription: JavaScript 和 TypeScript 的现代运行时 +Description: Deno 是一个简单、现代、安全的运行时,适用于 JavaScript、TypeScript 和 WebAssembly,使用 V8 和 Rust 构建。 +Tags: +- javascript +- js +- typescript +- v8 +- 开发 +- 环境 +- 编程 +- 运行时 +ReleaseNotesUrl: https://github.com/denoland/deno/releases/tag/v2.4.0 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.deno.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DenoLand/Deno/2.4.0/DenoLand.Deno.yaml b/manifests/d/DenoLand/Deno/2.4.0/DenoLand.Deno.yaml new file mode 100644 index 0000000000000..68cf31ed27ed8 --- /dev/null +++ b/manifests/d/DenoLand/Deno/2.4.0/DenoLand.Deno.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: DenoLand.Deno +PackageVersion: 2.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DenoLand/Deno/2.4.1/DenoLand.Deno.installer.yaml b/manifests/d/DenoLand/Deno/2.4.1/DenoLand.Deno.installer.yaml new file mode 100644 index 0000000000000..a26ff933a0959 --- /dev/null +++ b/manifests/d/DenoLand/Deno/2.4.1/DenoLand.Deno.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: DenoLand.Deno +PackageVersion: 2.4.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: deno.exe +Commands: +- deno +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/denoland/deno/releases/download/v2.4.1/deno-x86_64-pc-windows-msvc.zip + InstallerSha256: 34B67EF8DFD0E9A0AD06C73B2E22647D5164543E68A2F5FD0673376D8295421B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DenoLand/Deno/2.4.1/DenoLand.Deno.locale.en-US.yaml b/manifests/d/DenoLand/Deno/2.4.1/DenoLand.Deno.locale.en-US.yaml new file mode 100644 index 0000000000000..0af1382c09fcb --- /dev/null +++ b/manifests/d/DenoLand/Deno/2.4.1/DenoLand.Deno.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: DenoLand.Deno +PackageVersion: 2.4.1 +PackageLocale: en-US +Publisher: Deno Land Inc. +PublisherUrl: https://deno.com/ +PublisherSupportUrl: https://github.com/denoland/deno/issues +PrivacyUrl: https://docs.deno.com/deploy/manual/privacy-policy/ +Author: Deno Land Inc. +PackageName: Deno +PackageUrl: https://deno.com/ +License: MIT +LicenseUrl: https://github.com/denoland/deno/blob/HEAD/LICENSE.md +Copyright: Copyright 2018-2024 the Deno authors +ShortDescription: A modern runtime for JavaScript and TypeScript +Description: Deno is a simple, modern and secure runtime for JavaScript, TypeScript, and WebAssembly that uses V8 and is built in Rust. +Tags: +- develop +- development +- environment +- javascript +- js +- programming +- runtime +- typescript +- v8 +ReleaseNotes: |- + - feat(unstable/otel): support vsock transport for telemetry (#30001) + - feat(unstable): tunnelling (#30022) + - fix(bundle): don't use createRequire when targeting browser, make hack not + depend on variable names (#30023) + - fix(bundle): make the "dynamic require" hack work on minified output (#29997) + - fix(bundle): resolve "sloppy imports" in npm packages when bundling (#29989) + - fix(ext/http2): fix oob buffer reads in http2 requests (#29969) + - fix(serve): actually wire up resolving main module with import map for deno + serve (#29974) + - fix(unstable): bytes and text imports from npm dependencies should require + --allow-read (#29990) + - Revert "fix(ext/napi): ensure the finalizer callback will be called (… + (#30018) + - Revert "fix(otel): flush data when terminating signal is received (#2… + (#30019) + - perf: bust emit cache only on deno_ast version change (#29984) + - perf: skip jsx transpile when disabled (#29995) +ReleaseNotesUrl: https://github.com/denoland/deno/releases/tag/v2.4.1 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.deno.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DenoLand/Deno/2.4.1/DenoLand.Deno.locale.zh-CN.yaml b/manifests/d/DenoLand/Deno/2.4.1/DenoLand.Deno.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6930edefe429a --- /dev/null +++ b/manifests/d/DenoLand/Deno/2.4.1/DenoLand.Deno.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: DenoLand.Deno +PackageVersion: 2.4.1 +PackageLocale: zh-CN +ShortDescription: JavaScript 和 TypeScript 的现代运行时 +Description: Deno 是一个简单、现代、安全的运行时,适用于 JavaScript、TypeScript 和 WebAssembly,使用 V8 和 Rust 构建。 +Tags: +- javascript +- js +- typescript +- v8 +- 开发 +- 环境 +- 编程 +- 运行时 +ReleaseNotesUrl: https://github.com/denoland/deno/releases/tag/v2.4.1 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.deno.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DenoLand/Deno/2.4.1/DenoLand.Deno.yaml b/manifests/d/DenoLand/Deno/2.4.1/DenoLand.Deno.yaml new file mode 100644 index 0000000000000..8155b640023ea --- /dev/null +++ b/manifests/d/DenoLand/Deno/2.4.1/DenoLand.Deno.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: DenoLand.Deno +PackageVersion: 2.4.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Derailed/k9s/0.50.7/Derailed.k9s.installer.yaml b/manifests/d/Derailed/k9s/0.50.7/Derailed.k9s.installer.yaml new file mode 100644 index 0000000000000..76b3b2c3f3baa --- /dev/null +++ b/manifests/d/Derailed/k9s/0.50.7/Derailed.k9s.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: Derailed.k9s +PackageVersion: 0.50.7 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: k9s.exe +ReleaseDate: 2025-07-05 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/derailed/k9s/releases/download/v0.50.7/k9s_Windows_amd64.zip + InstallerSha256: BD40A550BBAF8CB26EB4D86177A79175BA34B0A965A7EBCAD406A85945B0212B +- Architecture: arm64 + InstallerUrl: https://github.com/derailed/k9s/releases/download/v0.50.7/k9s_Windows_arm64.zip + InstallerSha256: 5480F61781E2DC5097523E9192F43EAF64CFA67736E5CBEC26D1E1168BC1B159 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Derailed/k9s/0.50.7/Derailed.k9s.locale.en-US.yaml b/manifests/d/Derailed/k9s/0.50.7/Derailed.k9s.locale.en-US.yaml new file mode 100644 index 0000000000000..32ed1a3b3e2f3 --- /dev/null +++ b/manifests/d/Derailed/k9s/0.50.7/Derailed.k9s.locale.en-US.yaml @@ -0,0 +1,59 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Derailed.k9s +PackageVersion: 0.50.7 +PackageLocale: en-US +Publisher: Derailed +PublisherUrl: https://github.com/derailed +PublisherSupportUrl: https://github.com/derailed/k9s/issues +PackageName: k9s +PackageUrl: https://github.com/derailed/k9s +License: Apache-2.0 +LicenseUrl: https://github.com/derailed/k9s/blob/HEAD/LICENSE +ShortDescription: Kubernetes CLI To Manage Your Clusters In Style! +Tags: +- go +- golang +- k8s +- k8s-cluster +- k9s +- kubernetes +- kubernetes-cli +- kubernetes-clusters +ReleaseNotes: |- + Release v0.50.7 + Notes + Thank you to all that contributed with flushing out issues and enhancements for K9s! + I'll try to mark some of these issues as fixed. But if you don't mind grab the latest rev + and see if we're happier with some of the fixes! + If you've filed an issue please help me verify and close. + Your support, kindness and awesome suggestions to make K9s better are, as ever, very much noted and appreciated! + Also big thanks to all that have allocated their own time to help others on both slack and on this repo!! + As you may know, K9s is not pimped out by corps with deep pockets, thus if you feel K9s is helping your Kubernetes journey, + please consider joining our sponsorship program and/or make some noise on social! @kitesurfer + On Slack? Please join us K9slackers + Maintenance Release! + Resolved Issues + - #3435 noExitOnCtrlC + - #3434 Pulses - navigation selection is invisible + - #3424 feat: Add GPUs to nodes view + - #3422 Changing ns should keep current kind + - #3412 "Toggle Decode" for secret has no effect + - #3406 History navigation: new view after going back should truncate forward history + - #3398 Improve the UX of FieldManager field on restart + - #3383 Triggering a CronJob fails as Unauthorized since v0.50 + - #3406 History navigation: new view after going back should truncate forward history + Contributed PRs + Please be sure to give Big Thanks! and ATTA Girls/Boys! to all the fine contributors for making K9s better for all of us!! + - #3433 feat(plugins): add kube-metrics plugin + - #3371 Add context to condition in keda-toggle plugin + - #3347 Fix GVR Title option in readme + - #3346 revert: #3322 + © 2025 Imhotep Software LLC. All materials licensed under Apache v2.0# +ReleaseNotesUrl: https://github.com/derailed/k9s/releases/tag/v0.50.7 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/derailed/k9s/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Derailed/k9s/0.50.7/Derailed.k9s.yaml b/manifests/d/Derailed/k9s/0.50.7/Derailed.k9s.yaml new file mode 100644 index 0000000000000..0fc18f86f5553 --- /dev/null +++ b/manifests/d/Derailed/k9s/0.50.7/Derailed.k9s.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: Derailed.k9s +PackageVersion: 0.50.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Deskflow/Deskflow/1.22.0/Deskflow.Deskflow.installer.yaml b/manifests/d/Deskflow/Deskflow/1.22.0/Deskflow.Deskflow.installer.yaml index 63d0806ebf6c5..28a81f984d6d4 100644 --- a/manifests/d/Deskflow/Deskflow/1.22.0/Deskflow.Deskflow.installer.yaml +++ b/manifests/d/Deskflow/Deskflow/1.22.0/Deskflow.Deskflow.installer.yaml @@ -1,17 +1,18 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Deskflow.Deskflow PackageVersion: 1.22.0 InstallerLocale: en-US InstallerType: wix -Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.VCRedist.2015+.x64 ProductCode: '{52D5BC78-5A98-42AD-940A-77EEAC6C0880}' Installers: - Architecture: x64 InstallerUrl: https://github.com/deskflow/deskflow/releases/download/v1.22.0/deskflow-1.22.0-win-x64.msi InstallerSha256: 855810AEC1A7123EE351EED58D6D46E0D2FAD68C6BF5CBA1599EA24DA0C8709F + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 +ReleaseDate: 2025-05-29 diff --git a/manifests/d/Deskflow/Deskflow/1.22.0/Deskflow.Deskflow.locale.en-US.yaml b/manifests/d/Deskflow/Deskflow/1.22.0/Deskflow.Deskflow.locale.en-US.yaml index b466935630bed..29840dbf61baf 100644 --- a/manifests/d/Deskflow/Deskflow/1.22.0/Deskflow.Deskflow.locale.en-US.yaml +++ b/manifests/d/Deskflow/Deskflow/1.22.0/Deskflow.Deskflow.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Deskflow.Deskflow PackageVersion: 1.22.0 @@ -17,8 +17,9 @@ Tags: - mouse - mouse-emulation - network +ReleaseNotesUrl: https://github.com/deskflow/deskflow/releases/tag/v1.22.0 Documentations: - DocumentLabel: Wiki DocumentUrl: https://github.com/deskflow/deskflow/wiki ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Deskflow/Deskflow/1.22.0/Deskflow.Deskflow.yaml b/manifests/d/Deskflow/Deskflow/1.22.0/Deskflow.Deskflow.yaml index 647f6b5531304..73fdb0502e96d 100644 --- a/manifests/d/Deskflow/Deskflow/1.22.0/Deskflow.Deskflow.yaml +++ b/manifests/d/Deskflow/Deskflow/1.22.0/Deskflow.Deskflow.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 +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Deskflow.Deskflow PackageVersion: 1.22.0 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/DevProxy/DevProxy/Beta/1.0.0-beta.2/DevProxy.DevProxy.Beta.installer.yaml b/manifests/d/DevProxy/DevProxy/Beta/1.0.0-beta.2/DevProxy.DevProxy.Beta.installer.yaml new file mode 100644 index 0000000000000..b38cd6c802f86 --- /dev/null +++ b/manifests/d/DevProxy/DevProxy/Beta/1.0.0-beta.2/DevProxy.DevProxy.Beta.installer.yaml @@ -0,0 +1,11 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: DevProxy.DevProxy.Beta +PackageVersion: 1.0.0-beta.2 +InstallerType: inno +Installers: + - InstallerUrl: https://github.com/dotnet/dev-proxy/releases/download/v1.0.0-beta.2/dev-proxy-installer-win-x64-v1.0.0-beta.2.exe + Architecture: x64 + InstallerSha256: 5472ec397f61a743848e2f683fd09d6fc7aec6f1f9d3ccc2d3a7c974a423d1c5 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/d/DevProxy/DevProxy/Beta/1.0.0-beta.2/DevProxy.DevProxy.Beta.locale.en-US.yaml b/manifests/d/DevProxy/DevProxy/Beta/1.0.0-beta.2/DevProxy.DevProxy.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..ec429c15bd1ee --- /dev/null +++ b/manifests/d/DevProxy/DevProxy/Beta/1.0.0-beta.2/DevProxy.DevProxy.Beta.locale.en-US.yaml @@ -0,0 +1,11 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: DevProxy.DevProxy.Beta +PackageVersion: 1.0.0-beta.2 +PackageLocale: en-US +Publisher: .NET Foundation +PackageName: Dev Proxy Beta +License: MIT License +ShortDescription: Dev Proxy Beta Installer +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/d/DevProxy/DevProxy/Beta/1.0.0-beta.2/DevProxy.DevProxy.Beta.yaml b/manifests/d/DevProxy/DevProxy/Beta/1.0.0-beta.2/DevProxy.DevProxy.Beta.yaml new file mode 100644 index 0000000000000..a52bc4565cfdf --- /dev/null +++ b/manifests/d/DevProxy/DevProxy/Beta/1.0.0-beta.2/DevProxy.DevProxy.Beta.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: DevProxy.DevProxy.Beta +PackageVersion: 1.0.0-beta.2 +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/Devolutions/HubImporter/2025.2.17.0/Devolutions.HubImporter.installer.yaml b/manifests/d/Devolutions/HubImporter/2025.2.17.0/Devolutions.HubImporter.installer.yaml new file mode 100644 index 0000000000000..ede09d9b1c9cc --- /dev/null +++ b/manifests/d/Devolutions/HubImporter/2025.2.17.0/Devolutions.HubImporter.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Devolutions.HubImporter +PackageVersion: 2025.2.17.0 +InstallerType: msi +Scope: machine +InstallerSwitches: + InstallLocation: APPDIR="" +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.9 +ProductCode: '{3644A8E5-2A35-4591-9642-8BF810A01682}' +ReleaseDate: 2025-06-27 +AppsAndFeaturesEntries: +- UpgradeCode: '{238A506E-1BC1-4749-8656-48C76582E8C7}' +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.devolutions.net/download/Setup.Hub.Importer.2025.2.17.0.msi + InstallerSha256: 374310E69683F2D74BE457392E676BD6169ED4A512FEE4B17E9061B57CDA7C40 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/HubImporter/2025.2.17.0/Devolutions.HubImporter.locale.en-US.yaml b/manifests/d/Devolutions/HubImporter/2025.2.17.0/Devolutions.HubImporter.locale.en-US.yaml new file mode 100644 index 0000000000000..d2a5f58a4b860 --- /dev/null +++ b/manifests/d/Devolutions/HubImporter/2025.2.17.0/Devolutions.HubImporter.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.HubImporter +PackageVersion: 2025.2.17.0 +PackageLocale: en-US +Publisher: Devolutions inc. +PublisherUrl: https://devolutions.net/ +PublisherSupportUrl: https://devolutions.net/support/ +PrivacyUrl: https://devolutions.net/legal/privacy +Author: Devolutions inc. +PackageName: Devolutions Hub Importer +PackageUrl: https://devolutions.net/password-hub-importer/ +License: Proprietary +LicenseUrl: https://devolutions.net/legal/software-license-agreements +Copyright: Copyright (c) 2006-2025 Devolutions Inc. +CopyrightUrl: https://devolutions.net/legal/software-license-agreements +ShortDescription: The essential tool designed to easily and quickly import credentials into your Devolutions Hub from multiple third-party applications or services. +ReleaseNotes: '- Minor update' +ReleaseNotesUrl: https://devolutions.net/password-hub-importer/release-notes/#v2025.2.17.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/HubImporter/2025.2.17.0/Devolutions.HubImporter.locale.zh-CN.yaml b/manifests/d/Devolutions/HubImporter/2025.2.17.0/Devolutions.HubImporter.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ec6e760947c65 --- /dev/null +++ b/manifests/d/Devolutions/HubImporter/2025.2.17.0/Devolutions.HubImporter.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Devolutions.HubImporter +PackageVersion: 2025.2.17.0 +PackageLocale: zh-CN +ShortDescription: 专为轻松快速将凭证从多个第三方应用或服务导入至 Devolutions Hub 而设计的核心工具。 +ReleaseNotesUrl: https://devolutions.net/password-hub-importer/release-notes/#v2025.2.17.0 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/HubImporter/2025.2.17.0/Devolutions.HubImporter.yaml b/manifests/d/Devolutions/HubImporter/2025.2.17.0/Devolutions.HubImporter.yaml new file mode 100644 index 0000000000000..adf3b1b68add2 --- /dev/null +++ b/manifests/d/Devolutions/HubImporter/2025.2.17.0/Devolutions.HubImporter.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.HubImporter +PackageVersion: 2025.2.17.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/HubImporter/2025.2.20.0/Devolutions.HubImporter.installer.yaml b/manifests/d/Devolutions/HubImporter/2025.2.20.0/Devolutions.HubImporter.installer.yaml new file mode 100644 index 0000000000000..d329802e630dc --- /dev/null +++ b/manifests/d/Devolutions/HubImporter/2025.2.20.0/Devolutions.HubImporter.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Devolutions.HubImporter +PackageVersion: 2025.2.20.0 +InstallerType: msi +Scope: machine +InstallerSwitches: + InstallLocation: APPDIR="" +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.9 +ProductCode: '{EA0C8D86-6275-43AC-A457-C5847D121441}' +ReleaseDate: 2025-07-03 +AppsAndFeaturesEntries: +- UpgradeCode: '{238A506E-1BC1-4749-8656-48C76582E8C7}' +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.devolutions.net/download/Setup.Hub.Importer.2025.2.20.0.msi + InstallerSha256: FFC74929F110F3DDE941B9721BBF47D57604C8430100F02228B452A8042800F4 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/HubImporter/2025.2.20.0/Devolutions.HubImporter.locale.en-US.yaml b/manifests/d/Devolutions/HubImporter/2025.2.20.0/Devolutions.HubImporter.locale.en-US.yaml new file mode 100644 index 0000000000000..8e10872b7c189 --- /dev/null +++ b/manifests/d/Devolutions/HubImporter/2025.2.20.0/Devolutions.HubImporter.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.HubImporter +PackageVersion: 2025.2.20.0 +PackageLocale: en-US +Publisher: Devolutions inc. +PublisherUrl: https://devolutions.net/ +PublisherSupportUrl: https://devolutions.net/support/ +PrivacyUrl: https://devolutions.net/legal/privacy +Author: Devolutions inc. +PackageName: Devolutions Hub Importer +PackageUrl: https://devolutions.net/password-hub-importer/ +License: Proprietary +LicenseUrl: https://devolutions.net/legal/software-license-agreements +Copyright: Copyright (c) 2006-2025 Devolutions Inc. +CopyrightUrl: https://devolutions.net/legal/software-license-agreements +ShortDescription: The essential tool designed to easily and quickly import credentials into your Devolutions Hub from multiple third-party applications or services. +ReleaseNotes: '- Minor update' +ReleaseNotesUrl: https://devolutions.net/password-hub-importer/release-notes/#v2025.2.20.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/HubImporter/2025.2.20.0/Devolutions.HubImporter.locale.zh-CN.yaml b/manifests/d/Devolutions/HubImporter/2025.2.20.0/Devolutions.HubImporter.locale.zh-CN.yaml new file mode 100644 index 0000000000000..30be5a17055a5 --- /dev/null +++ b/manifests/d/Devolutions/HubImporter/2025.2.20.0/Devolutions.HubImporter.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Devolutions.HubImporter +PackageVersion: 2025.2.20.0 +PackageLocale: zh-CN +ShortDescription: 专为轻松快速将凭证从多个第三方应用或服务导入至 Devolutions Hub 而设计的核心工具。 +ReleaseNotesUrl: https://devolutions.net/password-hub-importer/release-notes/#v2025.2.20.0 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/HubImporter/2025.2.20.0/Devolutions.HubImporter.yaml b/manifests/d/Devolutions/HubImporter/2025.2.20.0/Devolutions.HubImporter.yaml new file mode 100644 index 0000000000000..4f05f4fbebb21 --- /dev/null +++ b/manifests/d/Devolutions/HubImporter/2025.2.20.0/Devolutions.HubImporter.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.HubImporter +PackageVersion: 2025.2.20.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/Launcher/2025.2.17.0/Devolutions.Launcher.installer.yaml b/manifests/d/Devolutions/Launcher/2025.2.17.0/Devolutions.Launcher.installer.yaml new file mode 100644 index 0000000000000..e39b915c7de28 --- /dev/null +++ b/manifests/d/Devolutions/Launcher/2025.2.17.0/Devolutions.Launcher.installer.yaml @@ -0,0 +1,39 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Devolutions.Launcher +PackageVersion: 2025.2.17.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: msi +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 +Protocols: +- rdp +- ssh +- vnc +- telnet +- http +- https +- ftp +- sftp +- ard +- webdav +ProductCode: '{0873D771-69B5-4445-8EF6-3C96E60F2838}' +ReleaseDate: 2025-06-27 +AppsAndFeaturesEntries: +- UpgradeCode: '{CB5FC4EF-9B66-411D-8F6E-2713D2B8F664}' +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.devolutions.net/download/Setup.Devolutions.Launcher.2025.2.17.0.msi + InstallerSha256: CC9E5072FE3F4FB0327E37E2DFDFB87F5A5B89AF41AE4A618950B3AF79BC2B11 +ManifestType: installer +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/Launcher/2025.2.17.0/Devolutions.Launcher.locale.en-US.yaml b/manifests/d/Devolutions/Launcher/2025.2.17.0/Devolutions.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..2784dbac6f1fd --- /dev/null +++ b/manifests/d/Devolutions/Launcher/2025.2.17.0/Devolutions.Launcher.locale.en-US.yaml @@ -0,0 +1,31 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Devolutions.Launcher +PackageVersion: 2025.2.17.0 +PackageLocale: en-US +Publisher: Devolutions inc. +PublisherUrl: https://devolutions.net/ +PublisherSupportUrl: https://devolutions.net/support +PrivacyUrl: https://devolutions.net/legal/privacy +Author: Devolutions +PackageName: Launcher +PackageUrl: https://devolutions.net/launcher/ +License: Proprietary +LicenseUrl: https://devolutions.net/legal/software-license-agreements +Copyright: Copyright (c) 2006-2025 Devolutions Inc. +ShortDescription: Remote Connection Launching Tool for Devolutions Server & Devolutions Hub Business! +Moniker: launcher +Tags: +- devolutions +- rdm +- rdp +- remote-desktop +- remote-desktop-manager +- launcher +- ssh +- tool +- utility +- vnc +ManifestType: defaultLocale +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/Launcher/2025.2.17.0/Devolutions.Launcher.yaml b/manifests/d/Devolutions/Launcher/2025.2.17.0/Devolutions.Launcher.yaml new file mode 100644 index 0000000000000..0d1887e8743cb --- /dev/null +++ b/manifests/d/Devolutions/Launcher/2025.2.17.0/Devolutions.Launcher.yaml @@ -0,0 +1,8 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Devolutions.Launcher +PackageVersion: 2025.2.17.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/Launcher/2025.2.20.0/Devolutions.Launcher.installer.yaml b/manifests/d/Devolutions/Launcher/2025.2.20.0/Devolutions.Launcher.installer.yaml new file mode 100644 index 0000000000000..74f7c527af4de --- /dev/null +++ b/manifests/d/Devolutions/Launcher/2025.2.20.0/Devolutions.Launcher.installer.yaml @@ -0,0 +1,39 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Devolutions.Launcher +PackageVersion: 2025.2.20.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: msi +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 +Protocols: +- rdp +- ssh +- vnc +- telnet +- http +- https +- ftp +- sftp +- ard +- webdav +ProductCode: '{6EF9DBFD-085D-4746-B3FA-764D47FE8329}' +ReleaseDate: 2025-07-03 +AppsAndFeaturesEntries: +- UpgradeCode: '{CB5FC4EF-9B66-411D-8F6E-2713D2B8F664}' +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.devolutions.net/download/Setup.Devolutions.Launcher.2025.2.20.0.msi + InstallerSha256: 7186F81AF163E0A47A3473D4000562AD6AE3FE3D831DB39543B56726FFC4CB57 +ManifestType: installer +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/Launcher/2025.2.20.0/Devolutions.Launcher.locale.en-US.yaml b/manifests/d/Devolutions/Launcher/2025.2.20.0/Devolutions.Launcher.locale.en-US.yaml new file mode 100644 index 0000000000000..0b48ad393e584 --- /dev/null +++ b/manifests/d/Devolutions/Launcher/2025.2.20.0/Devolutions.Launcher.locale.en-US.yaml @@ -0,0 +1,31 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Devolutions.Launcher +PackageVersion: 2025.2.20.0 +PackageLocale: en-US +Publisher: Devolutions inc. +PublisherUrl: https://devolutions.net/ +PublisherSupportUrl: https://devolutions.net/support +PrivacyUrl: https://devolutions.net/legal/privacy +Author: Devolutions +PackageName: Launcher +PackageUrl: https://devolutions.net/launcher/ +License: Proprietary +LicenseUrl: https://devolutions.net/legal/software-license-agreements +Copyright: Copyright (c) 2006-2025 Devolutions Inc. +ShortDescription: Remote Connection Launching Tool for Devolutions Server & Devolutions Hub Business! +Moniker: launcher +Tags: +- devolutions +- rdm +- rdp +- remote-desktop +- remote-desktop-manager +- launcher +- ssh +- tool +- utility +- vnc +ManifestType: defaultLocale +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/Launcher/2025.2.20.0/Devolutions.Launcher.yaml b/manifests/d/Devolutions/Launcher/2025.2.20.0/Devolutions.Launcher.yaml new file mode 100644 index 0000000000000..54ca15bb19f83 --- /dev/null +++ b/manifests/d/Devolutions/Launcher/2025.2.20.0/Devolutions.Launcher.yaml @@ -0,0 +1,8 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Devolutions.Launcher +PackageVersion: 2025.2.20.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/RemoteDesktopManager/2025.2.17.0/Devolutions.RemoteDesktopManager.installer.yaml b/manifests/d/Devolutions/RemoteDesktopManager/2025.2.17.0/Devolutions.RemoteDesktopManager.installer.yaml new file mode 100644 index 0000000000000..3e5777197c737 --- /dev/null +++ b/manifests/d/Devolutions/RemoteDesktopManager/2025.2.17.0/Devolutions.RemoteDesktopManager.installer.yaml @@ -0,0 +1,42 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Devolutions.RemoteDesktopManager +PackageVersion: 2025.2.17.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: msi +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 +Protocols: +- rdp +FileExtensions: +- csv +- psafe3 +- rde +- rdg +- rdm +- rdp +- vnc +- vrb +- vrd +- vre +- xml +ProductCode: '{8BDCD508-0C69-460E-BA33-B035E7B86598}' +ReleaseDate: 2025-06-27 +AppsAndFeaturesEntries: +- UpgradeCode: '{2707F3BF-4D7B-40C2-882F-14B0ED869EE8}' +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.devolutions.net/download/Setup.RemoteDesktopManager.2025.2.17.0.msi + InstallerSha256: 35E840F2D8A53E231BBB221059370ACAB4FE1D41EEC08E5D46D325043A1C487A +ManifestType: installer +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/RemoteDesktopManager/2025.2.17.0/Devolutions.RemoteDesktopManager.locale.en-US.yaml b/manifests/d/Devolutions/RemoteDesktopManager/2025.2.17.0/Devolutions.RemoteDesktopManager.locale.en-US.yaml new file mode 100644 index 0000000000000..27c1d6806150b --- /dev/null +++ b/manifests/d/Devolutions/RemoteDesktopManager/2025.2.17.0/Devolutions.RemoteDesktopManager.locale.en-US.yaml @@ -0,0 +1,30 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Devolutions.RemoteDesktopManager +PackageVersion: 2025.2.17.0 +PackageLocale: en-US +Publisher: Devolutions inc. +PublisherUrl: https://devolutions.net/ +PublisherSupportUrl: https://devolutions.net/support +PrivacyUrl: https://devolutions.net/legal/privacy +Author: Devolutions +PackageName: Remote Desktop Manager +PackageUrl: https://remotedesktopmanager.com/ +License: Proprietary +LicenseUrl: https://devolutions.net/legal/software-license-agreements +Copyright: Copyright (c) 2006-2025 Devolutions Inc. +ShortDescription: Remote Connections & Passwords. Everywhere! +Moniker: rdm +Tags: +- devolutions +- rdm +- rdp +- remote-desktop +- remote-desktop-manager +- ssh +- tool +- utility +- vnc +ManifestType: defaultLocale +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/RemoteDesktopManager/2025.2.17.0/Devolutions.RemoteDesktopManager.yaml b/manifests/d/Devolutions/RemoteDesktopManager/2025.2.17.0/Devolutions.RemoteDesktopManager.yaml new file mode 100644 index 0000000000000..ab1053f150d8c --- /dev/null +++ b/manifests/d/Devolutions/RemoteDesktopManager/2025.2.17.0/Devolutions.RemoteDesktopManager.yaml @@ -0,0 +1,8 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Devolutions.RemoteDesktopManager +PackageVersion: 2025.2.17.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/RemoteDesktopManager/2025.2.20.0/Devolutions.RemoteDesktopManager.installer.yaml b/manifests/d/Devolutions/RemoteDesktopManager/2025.2.20.0/Devolutions.RemoteDesktopManager.installer.yaml new file mode 100644 index 0000000000000..e1468918e5122 --- /dev/null +++ b/manifests/d/Devolutions/RemoteDesktopManager/2025.2.20.0/Devolutions.RemoteDesktopManager.installer.yaml @@ -0,0 +1,42 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Devolutions.RemoteDesktopManager +PackageVersion: 2025.2.20.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: msi +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 +Protocols: +- rdp +FileExtensions: +- csv +- psafe3 +- rde +- rdg +- rdm +- rdp +- vnc +- vrb +- vrd +- vre +- xml +ProductCode: '{A45FC903-2B3F-41BD-9221-11922C6FB4AE}' +ReleaseDate: 2025-07-03 +AppsAndFeaturesEntries: +- UpgradeCode: '{2707F3BF-4D7B-40C2-882F-14B0ED869EE8}' +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.devolutions.net/download/Setup.RemoteDesktopManager.2025.2.20.0.msi + InstallerSha256: 81AF0EDDB8E11D9B681C98D1AD81A1B4B0E1045A0D9F181DEC460DA8F191C898 +ManifestType: installer +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/RemoteDesktopManager/2025.2.20.0/Devolutions.RemoteDesktopManager.locale.en-US.yaml b/manifests/d/Devolutions/RemoteDesktopManager/2025.2.20.0/Devolutions.RemoteDesktopManager.locale.en-US.yaml new file mode 100644 index 0000000000000..d01fcb98104ab --- /dev/null +++ b/manifests/d/Devolutions/RemoteDesktopManager/2025.2.20.0/Devolutions.RemoteDesktopManager.locale.en-US.yaml @@ -0,0 +1,30 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Devolutions.RemoteDesktopManager +PackageVersion: 2025.2.20.0 +PackageLocale: en-US +Publisher: Devolutions inc. +PublisherUrl: https://devolutions.net/ +PublisherSupportUrl: https://devolutions.net/support +PrivacyUrl: https://devolutions.net/legal/privacy +Author: Devolutions +PackageName: Remote Desktop Manager +PackageUrl: https://remotedesktopmanager.com/ +License: Proprietary +LicenseUrl: https://devolutions.net/legal/software-license-agreements +Copyright: Copyright (c) 2006-2025 Devolutions Inc. +ShortDescription: Remote Connections & Passwords. Everywhere! +Moniker: rdm +Tags: +- devolutions +- rdm +- rdp +- remote-desktop +- remote-desktop-manager +- ssh +- tool +- utility +- vnc +ManifestType: defaultLocale +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/RemoteDesktopManager/2025.2.20.0/Devolutions.RemoteDesktopManager.yaml b/manifests/d/Devolutions/RemoteDesktopManager/2025.2.20.0/Devolutions.RemoteDesktopManager.yaml new file mode 100644 index 0000000000000..91d049512b72f --- /dev/null +++ b/manifests/d/Devolutions/RemoteDesktopManager/2025.2.20.0/Devolutions.RemoteDesktopManager.yaml @@ -0,0 +1,8 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Devolutions.RemoteDesktopManager +PackageVersion: 2025.2.20.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.17.0/Devolutions.RemoteDesktopManagerAgent.installer.yaml b/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.17.0/Devolutions.RemoteDesktopManagerAgent.installer.yaml new file mode 100644 index 0000000000000..236a50154f9b9 --- /dev/null +++ b/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.17.0/Devolutions.RemoteDesktopManagerAgent.installer.yaml @@ -0,0 +1,33 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Devolutions.RemoteDesktopManagerAgent +PackageVersion: 2025.2.17.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: msi +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 +Protocols: +- rdp +- powershell +FileExtensions: +- rdm +ProductCode: '{E3DA9C67-1A87-40D5-88E8-701FB05E7615}' +ReleaseDate: 2025-06-27 +AppsAndFeaturesEntries: +- UpgradeCode: '{D3ECDF42-9073-4760-94D5-73F8D2AFDF8A}' +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.devolutions.net/download/Setup.RemoteDesktopManagerAgent.2025.2.17.0.msi + InstallerSha256: 4BD57323522A0B777ABEF39010841F5CE049360424B0124500A8EEF98B66C0E6 +ManifestType: installer +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.17.0/Devolutions.RemoteDesktopManagerAgent.locale.en-US.yaml b/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.17.0/Devolutions.RemoteDesktopManagerAgent.locale.en-US.yaml new file mode 100644 index 0000000000000..880379de9830e --- /dev/null +++ b/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.17.0/Devolutions.RemoteDesktopManagerAgent.locale.en-US.yaml @@ -0,0 +1,28 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Devolutions.RemoteDesktopManagerAgent +PackageVersion: 2025.2.17.0 +PackageLocale: en-US +Publisher: Devolutions inc. +PublisherUrl: https://devolutions.net/ +PublisherSupportUrl: https://devolutions.net/support +PrivacyUrl: https://devolutions.net/legal/privacy +Author: Devolutions +PackageName: Remote Desktop Manager Agent +PackageUrl: +License: Proprietary +LicenseUrl: https://devolutions.net/legal/software-license-agreements +Copyright: Copyright (c) 2006-2025 Devolutions Inc. +ShortDescription: Run commands on multiple remote hosts at the same time! +Moniker: rdmagent +Tags: +- devolutions +- rdm +- agent +- rdm-agent +- remote-desktop-manager +- tool +- utility +ManifestType: defaultLocale +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.17.0/Devolutions.RemoteDesktopManagerAgent.yaml b/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.17.0/Devolutions.RemoteDesktopManagerAgent.yaml new file mode 100644 index 0000000000000..3338bed8d7f13 --- /dev/null +++ b/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.17.0/Devolutions.RemoteDesktopManagerAgent.yaml @@ -0,0 +1,8 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Devolutions.RemoteDesktopManagerAgent +PackageVersion: 2025.2.17.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.20.0/Devolutions.RemoteDesktopManagerAgent.installer.yaml b/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.20.0/Devolutions.RemoteDesktopManagerAgent.installer.yaml new file mode 100644 index 0000000000000..7d1ffb5dcbf75 --- /dev/null +++ b/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.20.0/Devolutions.RemoteDesktopManagerAgent.installer.yaml @@ -0,0 +1,33 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Devolutions.RemoteDesktopManagerAgent +PackageVersion: 2025.2.20.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: msi +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 +Protocols: +- rdp +- powershell +FileExtensions: +- rdm +ProductCode: '{0340EB4B-DC0E-4182-BB44-A7ABE60AF107}' +ReleaseDate: 2025-07-03 +AppsAndFeaturesEntries: +- UpgradeCode: '{D3ECDF42-9073-4760-94D5-73F8D2AFDF8A}' +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.devolutions.net/download/Setup.RemoteDesktopManagerAgent.2025.2.20.0.msi + InstallerSha256: 764D737DFCA2BC464FC62C927CEBFC927CA2EE6343E45EEE8588A1D20A4B78C1 +ManifestType: installer +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.20.0/Devolutions.RemoteDesktopManagerAgent.locale.en-US.yaml b/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.20.0/Devolutions.RemoteDesktopManagerAgent.locale.en-US.yaml new file mode 100644 index 0000000000000..e57f65f5bb4a3 --- /dev/null +++ b/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.20.0/Devolutions.RemoteDesktopManagerAgent.locale.en-US.yaml @@ -0,0 +1,28 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Devolutions.RemoteDesktopManagerAgent +PackageVersion: 2025.2.20.0 +PackageLocale: en-US +Publisher: Devolutions inc. +PublisherUrl: https://devolutions.net/ +PublisherSupportUrl: https://devolutions.net/support +PrivacyUrl: https://devolutions.net/legal/privacy +Author: Devolutions +PackageName: Remote Desktop Manager Agent +PackageUrl: +License: Proprietary +LicenseUrl: https://devolutions.net/legal/software-license-agreements +Copyright: Copyright (c) 2006-2025 Devolutions Inc. +ShortDescription: Run commands on multiple remote hosts at the same time! +Moniker: rdmagent +Tags: +- devolutions +- rdm +- agent +- rdm-agent +- remote-desktop-manager +- tool +- utility +ManifestType: defaultLocale +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.20.0/Devolutions.RemoteDesktopManagerAgent.yaml b/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.20.0/Devolutions.RemoteDesktopManagerAgent.yaml new file mode 100644 index 0000000000000..dd750d911661d --- /dev/null +++ b/manifests/d/Devolutions/RemoteDesktopManagerAgent/2025.2.20.0/Devolutions.RemoteDesktopManagerAgent.yaml @@ -0,0 +1,8 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Devolutions.RemoteDesktopManagerAgent +PackageVersion: 2025.2.20.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/ServerConsole/2025.2.4.0/Devolutions.ServerConsole.installer.yaml b/manifests/d/Devolutions/ServerConsole/2025.2.4.0/Devolutions.ServerConsole.installer.yaml new file mode 100644 index 0000000000000..4f31b68fd05c4 --- /dev/null +++ b/manifests/d/Devolutions/ServerConsole/2025.2.4.0/Devolutions.ServerConsole.installer.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Devolutions.ServerConsole +PackageVersion: 2025.2.4.0 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /exenoui /quiet /norestart + SilentWithProgress: /exenoui /passive /norestart + InstallLocation: APPDIR="" + Log: /log "" +ExpectedReturnCodes: +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish +- InstallerReturnCode: 1654 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1650 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1649 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1644 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1643 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1640 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated +- InstallerReturnCode: 1639 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1638 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 1633 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1628 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1625 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1623 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress +- InstallerReturnCode: 1602 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1601 + ReturnResponse: contactSupport +- InstallerReturnCode: 87 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1 + ReturnResponse: invalidParameter +- InstallerReturnCode: -1 + ReturnResponse: cancelledByUser +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.9 +ProductCode: '{EF9C32C6-E769-4D0A-B53C-B9CA1DF28B4B}' +ReleaseDate: 2025-06-23 +AppsAndFeaturesEntries: +- UpgradeCode: '{F036F415-628F-4FE1-A550-13AE231667EF}' + InstallerType: msi +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.devolutions.net/download/Setup.DVLS.Console.2025.2.4.0.exe + InstallerSha256: 35C4F3FB8AA9A84D2503413C374F58D8DCED95C4EF0A5DD586774A5889611412 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/ServerConsole/2025.2.4.0/Devolutions.ServerConsole.locale.en-US.yaml b/manifests/d/Devolutions/ServerConsole/2025.2.4.0/Devolutions.ServerConsole.locale.en-US.yaml new file mode 100644 index 0000000000000..83b61fca6b298 --- /dev/null +++ b/manifests/d/Devolutions/ServerConsole/2025.2.4.0/Devolutions.ServerConsole.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Devolutions.ServerConsole +PackageVersion: 2025.2.4.0 +PackageLocale: en-US +Publisher: Devolutions inc. +PublisherUrl: https://devolutions.net/ +PublisherSupportUrl: https://devolutions.net/support +PrivacyUrl: https://devolutions.net/legal/privacy +Author: Devolutions inc. +PackageName: Devolutions Server Console +PackageUrl: https://devolutions.net/server/ +License: Proprietary +LicenseUrl: https://devolutions.net/legal/software-license-agreements +Copyright: Copyright (c) 2006-2025 Devolutions Inc. +CopyrightUrl: https://devolutions.net/legal/software-license-agreements +ShortDescription: The management console for installing and managing Devolutions Server. +ReleaseNotes: '- Minor update' +ReleaseNotesUrl: https://devolutions.net/server/release-notes/console/#v2025.2.4.0 +PurchaseUrl: https://store.devolutions.net/store +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/ServerConsole/2025.2.4.0/Devolutions.ServerConsole.locale.zh-CN.yaml b/manifests/d/Devolutions/ServerConsole/2025.2.4.0/Devolutions.ServerConsole.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fae4ba45f6aa1 --- /dev/null +++ b/manifests/d/Devolutions/ServerConsole/2025.2.4.0/Devolutions.ServerConsole.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.ServerConsole +PackageVersion: 2025.2.4.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: Devolutions Server 安装与管理控制台。 +ReleaseNotesUrl: https://devolutions.net/server/release-notes/console/#v2025.2.4.0 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/ServerConsole/2025.2.4.0/Devolutions.ServerConsole.yaml b/manifests/d/Devolutions/ServerConsole/2025.2.4.0/Devolutions.ServerConsole.yaml new file mode 100644 index 0000000000000..3776800b1ae84 --- /dev/null +++ b/manifests/d/Devolutions/ServerConsole/2025.2.4.0/Devolutions.ServerConsole.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.ServerConsole +PackageVersion: 2025.2.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/Workspace/2025.2.2.0/Devolutions.Workspace.installer.yaml b/manifests/d/Devolutions/Workspace/2025.2.2.0/Devolutions.Workspace.installer.yaml new file mode 100644 index 0000000000000..2c20690f8e3c1 --- /dev/null +++ b/manifests/d/Devolutions/Workspace/2025.2.2.0/Devolutions.Workspace.installer.yaml @@ -0,0 +1,29 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Devolutions.Workspace +PackageVersion: 2025.2.2.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: msi +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Protocols: +- credential +- http +- https +ProductCode: '{2A46710F-9E5E-4F79-BD59-E5C10AFD1A04}' +ReleaseDate: 2025-07-03 +AppsAndFeaturesEntries: +- UpgradeCode: '{EA58A259-5C39-43E8-9183-EAAB09293D3F}' +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.devolutions.net/download/Devolutions.Workspace-2025.2.2.0-x64.msi + InstallerSha256: AC850E8DAEB1D8ECBE05C212FC2A7F47041E731F5D11F39D57CA766B0B9447A5 +ManifestType: installer +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/Workspace/2025.2.2.0/Devolutions.Workspace.locale.en-US.yaml b/manifests/d/Devolutions/Workspace/2025.2.2.0/Devolutions.Workspace.locale.en-US.yaml new file mode 100644 index 0000000000000..877ffa2f29a2d --- /dev/null +++ b/manifests/d/Devolutions/Workspace/2025.2.2.0/Devolutions.Workspace.locale.en-US.yaml @@ -0,0 +1,25 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Devolutions.Workspace +PackageVersion: 2025.2.2.0 +PackageLocale: en-US +Publisher: Devolutions inc. +PublisherUrl: https://devolutions.net/ +PublisherSupportUrl: https://devolutions.net/support +PrivacyUrl: https://devolutions.net/legal/privacy +Author: Devolutions +PackageName: Devolutions Workspace +PackageUrl: https://devolutions.net/workspace/ +License: Proprietary +LicenseUrl: https://devolutions.net/legal/software-license-agreements +Copyright: Copyright (c) 2006-2025 Devolutions Inc. +ShortDescription: A single application to access your Authenticator, Devolutions Hub, and Devolutions Server accounts! +Moniker: workspace +Tags: +- devolutions +- workspace +- authenticator +- credentials +ManifestType: defaultLocale +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Devolutions/Workspace/2025.2.2.0/Devolutions.Workspace.yaml b/manifests/d/Devolutions/Workspace/2025.2.2.0/Devolutions.Workspace.yaml new file mode 100644 index 0000000000000..aa235781f1476 --- /dev/null +++ b/manifests/d/Devolutions/Workspace/2025.2.2.0/Devolutions.Workspace.yaml @@ -0,0 +1,8 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Devolutions.Workspace +PackageVersion: 2025.2.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 + diff --git a/manifests/d/Dialpad/Dialpad/2506.3.1/Dialpad.Dialpad.installer.yaml b/manifests/d/Dialpad/Dialpad/2506.3.1/Dialpad.Dialpad.installer.yaml new file mode 100644 index 0000000000000..86bb11641d9fa --- /dev/null +++ b/manifests/d/Dialpad/Dialpad/2506.3.1/Dialpad.Dialpad.installer.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Dialpad.Dialpad +PackageVersion: 2506.3.1 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- dialpad +- tel +ProductCode: dialpad +Installers: +- Architecture: x86 + InstallerUrl: https://storage.googleapis.com/dialpad_native/stable/win32/ia32/DialpadSetup-2506.3.1.exe + InstallerSha256: AD7BA022AA69C79D818D3B68E5251463C7B88EF614646823BFEA0D4219DE62C3 +- Architecture: x64 + InstallerUrl: https://storage.googleapis.com/dialpad_native/stable/win32/x64/DialpadSetup-2506.3.1_x64.exe + InstallerSha256: 656001BBB8A5532CA20C80BE153B42A31B2ABD4F4E949FB10303AF16D3526693 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dialpad/Dialpad/2506.3.1/Dialpad.Dialpad.locale.en-US.yaml b/manifests/d/Dialpad/Dialpad/2506.3.1/Dialpad.Dialpad.locale.en-US.yaml new file mode 100644 index 0000000000000..37339ea9b4b59 --- /dev/null +++ b/manifests/d/Dialpad/Dialpad/2506.3.1/Dialpad.Dialpad.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Dialpad.Dialpad +PackageVersion: 2506.3.1 +PackageLocale: en-US +Publisher: Dialpad +PublisherUrl: https://www.dialpad.com/ +PublisherSupportUrl: https://help.dialpad.com/ +PrivacyUrl: https://www.dialpad.com/legal/#privacy +Author: Dialpad, Inc. +PackageName: Dialpad +PackageUrl: https://www.dialpad.com/download/ +License: Proprietary +LicenseUrl: https://www.dialpad.com/legal/#terms-of-service +Copyright: © 2025 DIALPAD, INC. +CopyrightUrl: https://www.dialpad.com/legal/#terms-of-service +ShortDescription: All in one AI-powered customer communications platform +Description: With Dialpad, you can connect to customers, coach customer-facing teams, & deliver amazing experiences—all with one AI-powered communications platform. +Moniker: dialpad +Tags: +- bussiness +- communicate +- communication +- crm +- customer +- customer-service +- enterprise +- marketing +- opertion +- service +PurchaseUrl: https://www.dialpad.com/pricing/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dialpad/Dialpad/2506.3.1/Dialpad.Dialpad.locale.zh-CN.yaml b/manifests/d/Dialpad/Dialpad/2506.3.1/Dialpad.Dialpad.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c6d0bc88fe795 --- /dev/null +++ b/manifests/d/Dialpad/Dialpad/2506.3.1/Dialpad.Dialpad.locale.zh-CN.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Dialpad.Dialpad +PackageVersion: 2506.3.1 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 一体化 AI 驱动的客户通信平台 +Description: 借助 Dialpad,您可以通过一个 AI 驱动的通信平台连接客户、指导面向客户的团队,并提供卓越的体验。 +Tags: +- crm +- 企业 +- 商务 +- 客户 +- 客服 +- 服务 +- 沟通 +- 营销 +- 运营 +- 销售 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dialpad/Dialpad/2506.3.1/Dialpad.Dialpad.yaml b/manifests/d/Dialpad/Dialpad/2506.3.1/Dialpad.Dialpad.yaml new file mode 100644 index 0000000000000..6ce4e8609c00c --- /dev/null +++ b/manifests/d/Dialpad/Dialpad/2506.3.1/Dialpad.Dialpad.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: Dialpad.Dialpad +PackageVersion: 2506.3.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DigiDNA/iMazing/3.3.1.0/DigiDNA.iMazing.installer.yaml b/manifests/d/DigiDNA/iMazing/3.3.1.0/DigiDNA.iMazing.installer.yaml new file mode 100644 index 0000000000000..1b7daf128779d --- /dev/null +++ b/manifests/d/DigiDNA/iMazing/3.3.1.0/DigiDNA.iMazing.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: DigiDNA.iMazing +PackageVersion: 3.3.1.0 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Commands: +- iMazing-CLI +Protocols: +- imz +FileExtensions: +- imazing +- imazingapp +ProductCode: iMazing_is1 +ReleaseDate: 2025-07-03 +AppsAndFeaturesEntries: +- ProductCode: iMazing_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\DigiDNA\iMazing' +Installers: +- Architecture: x86 + InstallerUrl: https://downloads.imazing.com/windows/iMazing/3.3.1/iMazing_3.3.1.exe + InstallerSha256: 9913A5B076B13BED7036120B1135316CEB6785BFF6398EDA7457194E0D2821A6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DigiDNA/iMazing/3.3.1.0/DigiDNA.iMazing.locale.en-US.yaml b/manifests/d/DigiDNA/iMazing/3.3.1.0/DigiDNA.iMazing.locale.en-US.yaml new file mode 100644 index 0000000000000..00b8890363cfa --- /dev/null +++ b/manifests/d/DigiDNA/iMazing/3.3.1.0/DigiDNA.iMazing.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DigiDNA.iMazing +PackageVersion: 3.3.1.0 +PackageLocale: en-US +Publisher: DigiDNA +PublisherUrl: https://digidna.ch/ +PublisherSupportUrl: https://support.imazing.com/ +PrivacyUrl: https://imazing.com/privacy-policy +Author: DigiDNA SARL +PackageName: iMazing +PackageUrl: https://imazing.com/ +License: Proprietary +LicenseUrl: https://imazing.com/uploads/iMazing-EULA.pdf +Copyright: Copyright © DigiDNA SARL, 2008-2024. All rights reserved. +ShortDescription: Manage your iPhone. Your way. +Description: iMazing lets you transfer music, files, messages, apps and more from any iPhone, iPad, or iPod to a computer, Mac or PC. Manage and backup your iOS device simply without iTunes. (was DiskAid) +Tags: +- apple +- backup +- data +- file +- ios +- ipad +- iphone +- ipod +- mobile +- phone +- recover +- recovery +- restore +- smartphone +- transfer +PurchaseUrl: https://imazing.com/store +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://imazing.com/faq +- DocumentLabel: Guides + DocumentUrl: https://imazing.com/guides +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DigiDNA/iMazing/3.3.1.0/DigiDNA.iMazing.locale.zh-CN.yaml b/manifests/d/DigiDNA/iMazing/3.3.1.0/DigiDNA.iMazing.locale.zh-CN.yaml new file mode 100644 index 0000000000000..0c1336ee68356 --- /dev/null +++ b/manifests/d/DigiDNA/iMazing/3.3.1.0/DigiDNA.iMazing.locale.zh-CN.yaml @@ -0,0 +1,40 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: DigiDNA.iMazing +PackageVersion: 3.3.1.0 +PackageLocale: zh-CN +Publisher: DigiDNA +PublisherUrl: https://digidna.ch/ +PublisherSupportUrl: https://support.imazing.com/ +PrivacyUrl: https://imazing.com/privacy-policy +Author: DigiDNA SARL +PackageName: iMazing +PackageUrl: https://imazing.com/zh +License: 专有软件 +LicenseUrl: https://imazing.com/uploads/iMazing-EULA.pdf +Copyright: Copyright © DigiDNA SARL, 2008-2024. All rights reserved. +ShortDescription: 以自己的方式管理 iPhone +Description: iMazing 能够将音乐、文件、消息和应用等数据从任何 iPhone、iPad 或 iPod 传输到 Mac 或 PC 上。轻松管理和备份您的 iOS 设备,无需使用 iTunes。(前身为 DiskAid) +Tags: +- ios +- ipad +- iphone +- ipod +- 传输 +- 备份 +- 恢复 +- 手机 +- 数据 +- 文件 +- 智能手机 +- 苹果 +- 还原 +PurchaseUrl: https://imazing.com/zh/store +Documentations: +- DocumentLabel: 使用指南 + DocumentUrl: https://imazing.com/guides +- DocumentLabel: 常见问题 + DocumentUrl: https://imazing.com/zh/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DigiDNA/iMazing/3.3.1.0/DigiDNA.iMazing.yaml b/manifests/d/DigiDNA/iMazing/3.3.1.0/DigiDNA.iMazing.yaml new file mode 100644 index 0000000000000..3c2eaa49aad18 --- /dev/null +++ b/manifests/d/DigiDNA/iMazing/3.3.1.0/DigiDNA.iMazing.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: DigiDNA.iMazing +PackageVersion: 3.3.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.installer.yaml b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.installer.yaml index 9f6d490091557..0b3c1aae0d5a5 100644 --- a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.installer.yaml +++ b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/May/23 +# 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: DigitalExtremes.Warframe @@ -20,6 +20,6 @@ InstallationMetadata: Installers: - Architecture: x64 InstallerUrl: https://content.warframe.com/dl/Warframe.msi - InstallerSha256: F64D0879E5FF3A5D9F40BD91DF0BC156E7A03D9C601ED592A53DD9FDBD3AE004 + InstallerSha256: 40742A879FB2038B39FAAA4B1AF5B5C2D9505356F43F87667D811E240725CE5C ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.locale.en-US.yaml b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.locale.en-US.yaml index 3ab358c6731d6..7b0e285c76327 100644 --- a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.locale.en-US.yaml +++ b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/May/23 +# 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: DigitalExtremes.Warframe diff --git a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.yaml b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.yaml index ba0587094ba4e..731cf294f1aa0 100644 --- a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.yaml +++ b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/May/23 +# 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: DigitalExtremes.Warframe diff --git a/manifests/d/DigitalOcean/Doctl/1.132.0/DigitalOcean.Doctl.installer.yaml b/manifests/d/DigitalOcean/Doctl/1.132.0/DigitalOcean.Doctl.installer.yaml new file mode 100644 index 0000000000000..ed3b565a13022 --- /dev/null +++ b/manifests/d/DigitalOcean/Doctl/1.132.0/DigitalOcean.Doctl.installer.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: DigitalOcean.Doctl +PackageVersion: 1.132.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: doctl.exe +FileExtensions: +- json +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/digitalocean/doctl/releases/download/v1.132.0/doctl-1.132.0-windows-386.zip + InstallerSha256: 325B973E3BE3931398282DC0C9E0B51280BF49E7E64034A7386FEECC0D2C9727 +- Architecture: x64 + InstallerUrl: https://github.com/digitalocean/doctl/releases/download/v1.132.0/doctl-1.132.0-windows-amd64.zip + InstallerSha256: 7DA4511A03A250E07C6D73619D935AA24CE77FEA847142291EBC9202302A90F9 +- Architecture: arm64 + InstallerUrl: https://github.com/digitalocean/doctl/releases/download/v1.132.0/doctl-1.132.0-windows-arm64.zip + InstallerSha256: 92D7861266952EA71299A32A8EF1514A53F38C41D21C11EDF17122E434063B31 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DigitalOcean/Doctl/1.132.0/DigitalOcean.Doctl.locale.en-US.yaml b/manifests/d/DigitalOcean/Doctl/1.132.0/DigitalOcean.Doctl.locale.en-US.yaml new file mode 100644 index 0000000000000..844318ccb2691 --- /dev/null +++ b/manifests/d/DigitalOcean/Doctl/1.132.0/DigitalOcean.Doctl.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DigitalOcean.Doctl +PackageVersion: 1.132.0 +PackageLocale: en-US +Publisher: DigitalOcean +PublisherUrl: https://www.digitalocean.com/ +PublisherSupportUrl: https://github.com/digitalocean/doctl/issues +Author: DigitalOcean +PackageName: doctl +PackageUrl: https://github.com/digitalocean/doctl +License: Apache-2.0 +LicenseUrl: https://github.com/digitalocean/doctl/blob/HEAD/LICENSE.txt +Copyright: Copyright (c) DigitalOcean +CopyrightUrl: https://github.com/digitalocean/doctl/blob/main/LICENSE.txt +ShortDescription: The official command line interface for the DigitalOcean API. +Moniker: doctl +Tags: +- digitalocean +- doctl +ReleaseNotes: |- + Changelog + - 26711bc Fix vpc nat gateway default timeout values (#1714) + - e411d7e Added byoip prefix commands (#1713) +ReleaseNotesUrl: https://github.com/digitalocean/doctl/releases/tag/v1.132.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DigitalOcean/Doctl/1.132.0/DigitalOcean.Doctl.yaml b/manifests/d/DigitalOcean/Doctl/1.132.0/DigitalOcean.Doctl.yaml new file mode 100644 index 0000000000000..646065999a47c --- /dev/null +++ b/manifests/d/DigitalOcean/Doctl/1.132.0/DigitalOcean.Doctl.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: DigitalOcean.Doctl +PackageVersion: 1.132.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DigitalScholar/Zotero/7.0.18/DigitalScholar.Zotero.installer.yaml b/manifests/d/DigitalScholar/Zotero/7.0.18/DigitalScholar.Zotero.installer.yaml new file mode 100644 index 0000000000000..05b2f5f23d28e --- /dev/null +++ b/manifests/d/DigitalScholar/Zotero/7.0.18/DigitalScholar.Zotero.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: DigitalScholar.Zotero +PackageVersion: 7.0.18 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Protocols: +- zotero +FileExtensions: +- bib +- bibtex +- csl +- isi +- marc +- mods +- rdf +- ris +ReleaseDate: 2025-06-26 +RequireExplicitUpgrade: true +Installers: +- Architecture: x86 + InstallerUrl: https://download.zotero.org/client/release/7.0.18/Zotero-7.0.18_win32_setup.exe + InstallerSha256: 43F0D3EFF928688C1C7F08474C32103C954079E679DA16369B0E84F0679E9682 +- Architecture: x64 + InstallerUrl: https://download.zotero.org/client/release/7.0.18/Zotero-7.0.18_x64_setup.exe + InstallerSha256: BA3C3919A04E59BB08FDBE2EC5B090C91D77F4E1448113B989CB0005B83DC839 +- Architecture: arm64 + InstallerUrl: https://download.zotero.org/client/release/7.0.18/Zotero-7.0.18_arm64_setup.exe + InstallerSha256: E31F8E48C62736A6A405BA82905581C9DB04C4D571C72817F4D634954D0B5EF8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DigitalScholar/Zotero/7.0.18/DigitalScholar.Zotero.locale.en-US.yaml b/manifests/d/DigitalScholar/Zotero/7.0.18/DigitalScholar.Zotero.locale.en-US.yaml new file mode 100644 index 0000000000000..83153db04d6dc --- /dev/null +++ b/manifests/d/DigitalScholar/Zotero/7.0.18/DigitalScholar.Zotero.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: DigitalScholar.Zotero +PackageVersion: 7.0.18 +PackageLocale: en-US +Publisher: Corporation for Digital Scholarship +PublisherUrl: https://digitalscholar.org/ +PublisherSupportUrl: https://www.zotero.org/support/ +PrivacyUrl: https://www.zotero.org/support/privacy +Author: Corporation for Digital Scholarship +PackageName: Zotero +PackageUrl: https://www.zotero.org/ +License: AGPL-3.0 +LicenseUrl: https://www.zotero.org/support/licensing +Copyright: © Corporation for Digital Scholarship +CopyrightUrl: https://www.zotero.org/support/terms/trademark +ShortDescription: Your personal research assistant +Description: Zotero is a free, easy-to-use tool to help you collect, organize, annotate, cite, and share research. +Tags: +- academics +- article +- citation +- cite +- literature +- paper +- research +- thesis +ReleaseNotes: |- + - Potentially fixed launch failure on some Windows systems + - Added Date field to Podcast item type + - Fixed in-app saving (feeds, Find Full Text) from some websites + - EPUB: Fixed view being pushed off-screen after switching sections +ReleaseNotesUrl: https://www.zotero.org/support/changelog#changes_in_7018_june_26_2025 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DigitalScholar/Zotero/7.0.18/DigitalScholar.Zotero.locale.zh-CN.yaml b/manifests/d/DigitalScholar/Zotero/7.0.18/DigitalScholar.Zotero.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7068cf119b4c2 --- /dev/null +++ b/manifests/d/DigitalScholar/Zotero/7.0.18/DigitalScholar.Zotero.locale.zh-CN.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: DigitalScholar.Zotero +PackageVersion: 7.0.18 +PackageLocale: zh-CN +Publisher: Corporation for Digital Scholarship +PublisherUrl: https://digitalscholar.org/ +PublisherSupportUrl: https://www.zotero.org/support/ +PrivacyUrl: https://www.zotero.org/support/privacy +Author: Corporation for Digital Scholarship +PackageName: Zotero +PackageUrl: https://www.zotero.org/ +License: AGPL-3.0 +LicenseUrl: https://www.zotero.org/support/licensing +Copyright: © Corporation for Digital Scholarship +CopyrightUrl: https://www.zotero.org/support/terms/trademark +ShortDescription: 你的个人研究助理 +Description: Zotero 是一款免费易用的工具,帮助您收集、组织、注释、引用和分享研究。 +Tags: +- 学术 +- 引用 +- 文献 +- 研究 +- 论文 +ReleaseNotesUrl: https://www.zotero.org/support/changelog#changes_in_7018_june_26_2025 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DigitalScholar/Zotero/7.0.18/DigitalScholar.Zotero.yaml b/manifests/d/DigitalScholar/Zotero/7.0.18/DigitalScholar.Zotero.yaml new file mode 100644 index 0000000000000..23da294bcaa84 --- /dev/null +++ b/manifests/d/DigitalScholar/Zotero/7.0.18/DigitalScholar.Zotero.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: DigitalScholar.Zotero +PackageVersion: 7.0.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DigitalScholar/Zotero/7.0.19/DigitalScholar.Zotero.installer.yaml b/manifests/d/DigitalScholar/Zotero/7.0.19/DigitalScholar.Zotero.installer.yaml new file mode 100644 index 0000000000000..536eb822b403e --- /dev/null +++ b/manifests/d/DigitalScholar/Zotero/7.0.19/DigitalScholar.Zotero.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: DigitalScholar.Zotero +PackageVersion: 7.0.19 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Protocols: +- zotero +FileExtensions: +- bib +- bibtex +- csl +- isi +- marc +- mods +- rdf +- ris +RequireExplicitUpgrade: true +Installers: +- Architecture: x86 + InstallerUrl: https://download.zotero.org/client/release/7.0.19/Zotero-7.0.19_win32_setup.exe + InstallerSha256: 077B49B74F5B122DC06B03DD88919BBBF3B506C4628F9998F8E1648D57E22D6D +- Architecture: x64 + InstallerUrl: https://download.zotero.org/client/release/7.0.19/Zotero-7.0.19_x64_setup.exe + InstallerSha256: 92F93545461D452C1A829D2B2D6EB324002FF28A43C73BD02639A301A2E39152 +- Architecture: arm64 + InstallerUrl: https://download.zotero.org/client/release/7.0.19/Zotero-7.0.19_arm64_setup.exe + InstallerSha256: D1C4ADB2000D2CB7DF8E462490487F0AEA3139B88B6C8604ECAB7D6054D20B1B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DigitalScholar/Zotero/7.0.19/DigitalScholar.Zotero.locale.en-US.yaml b/manifests/d/DigitalScholar/Zotero/7.0.19/DigitalScholar.Zotero.locale.en-US.yaml new file mode 100644 index 0000000000000..6985e632e6a8a --- /dev/null +++ b/manifests/d/DigitalScholar/Zotero/7.0.19/DigitalScholar.Zotero.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: DigitalScholar.Zotero +PackageVersion: 7.0.19 +PackageLocale: en-US +Publisher: Corporation for Digital Scholarship +PublisherUrl: https://digitalscholar.org/ +PublisherSupportUrl: https://www.zotero.org/support/ +PrivacyUrl: https://www.zotero.org/support/privacy +Author: Corporation for Digital Scholarship +PackageName: Zotero +PackageUrl: https://www.zotero.org/ +License: AGPL-3.0 +LicenseUrl: https://www.zotero.org/support/licensing +Copyright: © Corporation for Digital Scholarship +CopyrightUrl: https://www.zotero.org/support/terms/trademark +ShortDescription: Your personal research assistant +Description: Zotero is a free, easy-to-use tool to help you collect, organize, annotate, cite, and share research. +Tags: +- academics +- article +- citation +- cite +- literature +- paper +- research +- thesis +ReleaseNotesUrl: https://www.zotero.org/support/changelog +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DigitalScholar/Zotero/7.0.19/DigitalScholar.Zotero.locale.zh-CN.yaml b/manifests/d/DigitalScholar/Zotero/7.0.19/DigitalScholar.Zotero.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f917b33f44e0e --- /dev/null +++ b/manifests/d/DigitalScholar/Zotero/7.0.19/DigitalScholar.Zotero.locale.zh-CN.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: DigitalScholar.Zotero +PackageVersion: 7.0.19 +PackageLocale: zh-CN +Publisher: Corporation for Digital Scholarship +PublisherUrl: https://digitalscholar.org/ +PublisherSupportUrl: https://www.zotero.org/support/ +PrivacyUrl: https://www.zotero.org/support/privacy +Author: Corporation for Digital Scholarship +PackageName: Zotero +PackageUrl: https://www.zotero.org/ +License: AGPL-3.0 +LicenseUrl: https://www.zotero.org/support/licensing +Copyright: © Corporation for Digital Scholarship +CopyrightUrl: https://www.zotero.org/support/terms/trademark +ShortDescription: 你的个人研究助理 +Description: Zotero 是一款免费易用的工具,帮助您收集、组织、注释、引用和分享研究。 +Tags: +- 学术 +- 引用 +- 文献 +- 研究 +- 论文 +ReleaseNotesUrl: https://www.zotero.org/support/changelog +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DigitalScholar/Zotero/7.0.19/DigitalScholar.Zotero.yaml b/manifests/d/DigitalScholar/Zotero/7.0.19/DigitalScholar.Zotero.yaml new file mode 100644 index 0000000000000..d8f76f61c255c --- /dev/null +++ b/manifests/d/DigitalScholar/Zotero/7.0.19/DigitalScholar.Zotero.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: DigitalScholar.Zotero +PackageVersion: 7.0.19 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Digola/LockCursorTools/10.0/Digola.LockCursorTools.installer.yaml b/manifests/d/Digola/LockCursorTools/10.0/Digola.LockCursorTools.installer.yaml new file mode 100644 index 0000000000000..b7ff8f5c91522 --- /dev/null +++ b/manifests/d/Digola/LockCursorTools/10.0/Digola.LockCursorTools.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: Digola.LockCursorTools +PackageVersion: "10.0" +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: '{51615C26-AC9C-483F-BDEA-77AE9EBF8E89}_is1' +Installers: +- Architecture: x86 + InstallerUrl: https://digola.com/setupLockCursor.exe + InstallerSha256: AB4949490FEFF9DC6C9E668A568A60E89C4A555E398DD9F5B7DDF6FF8185F479 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Digola/LockCursorTools/9.1/Digola.LockCursorTools.locale.en-US.yaml b/manifests/d/Digola/LockCursorTools/10.0/Digola.LockCursorTools.locale.en-US.yaml similarity index 94% rename from manifests/d/Digola/LockCursorTools/9.1/Digola.LockCursorTools.locale.en-US.yaml rename to manifests/d/Digola/LockCursorTools/10.0/Digola.LockCursorTools.locale.en-US.yaml index 89f37648c2560..ba5fca1055c9a 100644 --- a/manifests/d/Digola/LockCursorTools/9.1/Digola.LockCursorTools.locale.en-US.yaml +++ b/manifests/d/Digola/LockCursorTools/10.0/Digola.LockCursorTools.locale.en-US.yaml @@ -1,8 +1,8 @@ # 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: Digola.LockCursorTools -PackageVersion: "9.1" +PackageVersion: "10.0" PackageLocale: en-US Publisher: Digola PublisherUrl: https://digola.com/ @@ -22,4 +22,4 @@ Tags: - lock - mouse ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Digola/LockCursorTools/9.1/Digola.LockCursorTools.locale.zh-CN.yaml b/manifests/d/Digola/LockCursorTools/10.0/Digola.LockCursorTools.locale.zh-CN.yaml similarity index 93% rename from manifests/d/Digola/LockCursorTools/9.1/Digola.LockCursorTools.locale.zh-CN.yaml rename to manifests/d/Digola/LockCursorTools/10.0/Digola.LockCursorTools.locale.zh-CN.yaml index 4faa5d828c0f5..a6b99c09100ed 100644 --- a/manifests/d/Digola/LockCursorTools/9.1/Digola.LockCursorTools.locale.zh-CN.yaml +++ b/manifests/d/Digola/LockCursorTools/10.0/Digola.LockCursorTools.locale.zh-CN.yaml @@ -1,8 +1,8 @@ # 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: Digola.LockCursorTools -PackageVersion: "9.1" +PackageVersion: "10.0" PackageLocale: zh-CN Publisher: Digola PublisherUrl: https://digola.com/ @@ -22,4 +22,4 @@ Tags: - 锁定 - 鼠标 ManifestType: locale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Digola/LockCursorTools/10.0/Digola.LockCursorTools.yaml b/manifests/d/Digola/LockCursorTools/10.0/Digola.LockCursorTools.yaml new file mode 100644 index 0000000000000..60d30a00d2bc3 --- /dev/null +++ b/manifests/d/Digola/LockCursorTools/10.0/Digola.LockCursorTools.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: Digola.LockCursorTools +PackageVersion: "10.0" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Digola/LockCursorTools/9.1/Digola.LockCursorTools.installer.yaml b/manifests/d/Digola/LockCursorTools/9.1/Digola.LockCursorTools.installer.yaml deleted file mode 100644 index 0c5920706f88c..0000000000000 --- a/manifests/d/Digola/LockCursorTools/9.1/Digola.LockCursorTools.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: Digola.LockCursorTools -PackageVersion: "9.1" -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: '{51615C26-AC9C-483F-BDEA-77AE9EBF8E89}_is1' -Installers: -- Architecture: x86 - InstallerUrl: https://digola.com/setupLockCursor.exe - InstallerSha256: 696437D5E5177DCAE07A605DA464C37C9345C62C0F753FAFC1A859FC63FE4ECC -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/d/Digola/LockCursorTools/9.1/Digola.LockCursorTools.yaml b/manifests/d/Digola/LockCursorTools/9.1/Digola.LockCursorTools.yaml deleted file mode 100644 index 7b912540ca3c5..0000000000000 --- a/manifests/d/Digola/LockCursorTools/9.1/Digola.LockCursorTools.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: Digola.LockCursorTools -PackageVersion: "9.1" -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/d/DimisAIO/DindeGDPS/2025.06.20/DimisAIO.DindeGDPS.installer.yaml b/manifests/d/DimisAIO/DindeGDPS/2025.06.20/DimisAIO.DindeGDPS.installer.yaml deleted file mode 100644 index 5037e5aa8eb34..0000000000000 --- a/manifests/d/DimisAIO/DindeGDPS/2025.06.20/DimisAIO.DindeGDPS.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/20 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: DimisAIO.DindeGDPS -PackageVersion: 2025.06.20 -InstallerType: exe -InstallerSwitches: - Silent: /quiet - SilentWithProgress: /passive -ReleaseDate: 2024-08-12 -Installers: -- Architecture: x86 - InstallerUrl: https://cdn-dinde.141412.xyz/DindeGDPS.exe - InstallerSha256: 315D723F6413BA6E2DB6E994A3E79F657B60C120E6AA7CCB6228E220D85C7EC1 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/d/DimisAIO/DindeGDPS/2025.06.20/DimisAIO.DindeGDPS.yaml b/manifests/d/DimisAIO/DindeGDPS/2025.06.20/DimisAIO.DindeGDPS.yaml deleted file mode 100644 index 258c8441f3d56..0000000000000 --- a/manifests/d/DimisAIO/DindeGDPS/2025.06.20/DimisAIO.DindeGDPS.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/20 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: DimisAIO.DindeGDPS -PackageVersion: 2025.06.20 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/d/DimisAIO/DindeGDPS/2025.06.24/DimisAIO.DindeGDPS.installer.yaml b/manifests/d/DimisAIO/DindeGDPS/2025.06.24/DimisAIO.DindeGDPS.installer.yaml new file mode 100644 index 0000000000000..d1bbf505b9ebe --- /dev/null +++ b/manifests/d/DimisAIO/DindeGDPS/2025.06.24/DimisAIO.DindeGDPS.installer.yaml @@ -0,0 +1,16 @@ +# Automatically updated by the winget bot at 2025/Jun/25 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: DimisAIO.DindeGDPS +PackageVersion: 2025.06.24 +InstallerType: exe +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive +ReleaseDate: 2024-08-12 +Installers: +- Architecture: x86 + InstallerUrl: https://cdn-dinde.141412.xyz/DindeGDPS.exe + InstallerSha256: 0CB5888964CFD00CDBE7B1B8CF95ACCEA9C8FFE88A5811AC2E5F6BA01E4ADBEB +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DimisAIO/DindeGDPS/2025.06.20/DimisAIO.DindeGDPS.locale.en-US.yaml b/manifests/d/DimisAIO/DindeGDPS/2025.06.24/DimisAIO.DindeGDPS.locale.en-US.yaml similarity index 82% rename from manifests/d/DimisAIO/DindeGDPS/2025.06.20/DimisAIO.DindeGDPS.locale.en-US.yaml rename to manifests/d/DimisAIO/DindeGDPS/2025.06.24/DimisAIO.DindeGDPS.locale.en-US.yaml index 9626ee32cdcc1..a3d7e867084dc 100644 --- a/manifests/d/DimisAIO/DindeGDPS/2025.06.20/DimisAIO.DindeGDPS.locale.en-US.yaml +++ b/manifests/d/DimisAIO/DindeGDPS/2025.06.24/DimisAIO.DindeGDPS.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jun/20 +# Automatically updated by the winget bot at 2025/Jun/25 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DimisAIO.DindeGDPS -PackageVersion: 2025.06.20 +PackageVersion: 2025.06.24 PackageLocale: en-US Publisher: DimisAIO PackageName: DindeGDPS diff --git a/manifests/d/DimisAIO/DindeGDPS/2025.06.24/DimisAIO.DindeGDPS.yaml b/manifests/d/DimisAIO/DindeGDPS/2025.06.24/DimisAIO.DindeGDPS.yaml new file mode 100644 index 0000000000000..9fe6ffea08c3f --- /dev/null +++ b/manifests/d/DimisAIO/DindeGDPS/2025.06.24/DimisAIO.DindeGDPS.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jun/25 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: DimisAIO.DindeGDPS +PackageVersion: 2025.06.24 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DimonSmart/NugetMcpServer/1.0.6/DimonSmart.NugetMcpServer.installer.yaml b/manifests/d/DimonSmart/NugetMcpServer/1.0.6/DimonSmart.NugetMcpServer.installer.yaml new file mode 100644 index 0000000000000..4017121f3d1cc --- /dev/null +++ b/manifests/d/DimonSmart/NugetMcpServer/1.0.6/DimonSmart.NugetMcpServer.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: DimonSmart.NugetMcpServer +PackageVersion: 1.0.6 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: NugetMcpServer.exe + PortableCommandAlias: DimonSmart.NugetMcpServer +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/DimonSmart/NugetMcpServer/releases/download/v1.0.6/nuget-mcp-server-win-x64-1.0.6.zip + InstallerSha256: 22AEE750A63246CC7B4725CA35B69E2040E9728F6E8F95E51D00E8090776D04C +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-24 diff --git a/manifests/d/DimonSmart/NugetMcpServer/1.0.6/DimonSmart.NugetMcpServer.locale.en-US.yaml b/manifests/d/DimonSmart/NugetMcpServer/1.0.6/DimonSmart.NugetMcpServer.locale.en-US.yaml new file mode 100644 index 0000000000000..8da11a236eec4 --- /dev/null +++ b/manifests/d/DimonSmart/NugetMcpServer/1.0.6/DimonSmart.NugetMcpServer.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: DimonSmart.NugetMcpServer +PackageVersion: 1.0.6 +PackageLocale: en-US +Publisher: DimonSmart +PublisherUrl: https://github.com/DimonSmart +PublisherSupportUrl: https://github.com/DimonSmart/NugetMcpServer/issues +PackageName: DimonSmart.NugetMcpServer +PackageUrl: https://github.com/DimonSmart/NugetMcpServer +License: Unlicense +ShortDescription: MCP server for searching interfaces and their methods inside NuGet packages +ReleaseNotesUrl: https://github.com/DimonSmart/NugetMcpServer/releases/tag/v1.0.6 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/DimonSmart/NugetMcpServer/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/DimonSmart/NugetMcpServer/1.0.6/DimonSmart.NugetMcpServer.yaml b/manifests/d/DimonSmart/NugetMcpServer/1.0.6/DimonSmart.NugetMcpServer.yaml new file mode 100644 index 0000000000000..59a411e33c0a1 --- /dev/null +++ b/manifests/d/DimonSmart/NugetMcpServer/1.0.6/DimonSmart.NugetMcpServer.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: DimonSmart.NugetMcpServer +PackageVersion: 1.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.installer.yaml b/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.installer.yaml index 246d7f6b3250d..0293813b1cbc1 100644 --- a/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.installer.yaml +++ b/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.installer.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20230331" @@ -7,199 +7,199 @@ InstallerType: nullsoft Scope: machine UpgradeBehavior: install Protocols: -- potplayer -- potrun -- rtmp -- rtsp + - potplayer + - potrun + - rtmp + - rtsp FileExtensions: -- "264" -- "265" -- 3g2 -- 3ga -- 3gp -- 3gp2 -- 3gpp -- aac -- ac3 -- aif -- aifc -- aiff -- alac -- amr -- amv -- aob -- ape -- apl -- asf -- ass -- asx -- au -- avi -- avs -- awb -- bdmv -- bik -- caf -- cda -- cue -- dav -- dff -- divx -- dmskm -- dpg -- dpl -- dsa -- dsf -- dsm -- dss -- dsv -- dts -- dtshd -- dtsma -- dv -- dvr-ms -- eac3 -- ec3 -- evo -- f4v -- flac -- flc -- fli -- flic -- flv -- h264 -- h265 -- hdmov -- hevc -- hm10 -- idx -- ifo -- ismv -- ivf -- k3g -- lmp4 -- m1a -- m1v -- m2a -- m2p -- m2t -- m2ts -- m2v -- m3u -- m3u8 -- m4a -- m4b -- m4p -- m4r -- m4v -- mid -- midi -- mk3d -- mka -- mkv -- mlp -- mod -- mov -- mp2 -- mp2v -- mp3 -- mp4 -- mp4v -- mpa -- mpc -- mpcpl -- mpd -- mpe -- mpeg -- mpg -- mpl -- mpls -- mpv2 -- mpv4 -- mqv -- mts -- mxf -- nsr -- nsv -- nut -- obu -- ofr -- ofs -- oga -- ogg -- ogm -- ogv -- opus -- pbf -- pls -- psb -- pva -- qt -- ra -- ram -- rec -- rm -- rmi -- rmm -- rmvb -- roq -- rp -- rpm -- rt -- sbv -- sfd -- skm -- smi -- smil -- smk -- snd -- spx -- srt -- ssa -- ssf -- ssif -- sub -- sup -- swf -- tak -- thd -- tp -- tpr -- trp -- ts -- tta -- ttml -- usf -- vc1 -- vob -- vpy -- vtt -- w64 -- wav -- wax -- weba -- webm -- wm -- wma -- wmp -- wmv -- wmx -- wpl -- wtv -- wv -- wvx -- xspf -- xss -- y4m + - "264" + - "265" + - 3g2 + - 3ga + - 3gp + - 3gp2 + - 3gpp + - aac + - ac3 + - aif + - aifc + - aiff + - alac + - amr + - amv + - aob + - ape + - apl + - asf + - ass + - asx + - au + - avi + - avs + - awb + - bdmv + - bik + - caf + - cda + - cue + - dav + - dff + - divx + - dmskm + - dpg + - dpl + - dsa + - dsf + - dsm + - dss + - dsv + - dts + - dtshd + - dtsma + - dv + - dvr-ms + - eac3 + - ec3 + - evo + - f4v + - flac + - flc + - fli + - flic + - flv + - h264 + - h265 + - hdmov + - hevc + - hm10 + - idx + - ifo + - ismv + - ivf + - k3g + - lmp4 + - m1a + - m1v + - m2a + - m2p + - m2t + - m2ts + - m2v + - m3u + - m3u8 + - m4a + - m4b + - m4p + - m4r + - m4v + - mid + - midi + - mk3d + - mka + - mkv + - mlp + - mod + - mov + - mp2 + - mp2v + - mp3 + - mp4 + - mp4v + - mpa + - mpc + - mpcpl + - mpd + - mpe + - mpeg + - mpg + - mpl + - mpls + - mpv2 + - mpv4 + - mqv + - mts + - mxf + - nsr + - nsv + - nut + - obu + - ofr + - ofs + - oga + - ogg + - ogm + - ogv + - opus + - pbf + - pls + - psb + - pva + - qt + - ra + - ram + - rec + - rm + - rmi + - rmm + - rmvb + - roq + - rp + - rpm + - rt + - sbv + - sfd + - skm + - smi + - smil + - smk + - snd + - spx + - srt + - ssa + - ssf + - ssif + - sub + - sup + - swf + - tak + - thd + - tp + - tpr + - trp + - ts + - tta + - ttml + - usf + - vc1 + - vob + - vpy + - vtt + - w64 + - wav + - wax + - weba + - webm + - wm + - wma + - wmp + - wmv + - wmx + - wpl + - wtv + - wv + - wvx + - xspf + - xss + - y4m ReleaseDate: 2023-03-31 Installers: -- Architecture: x86 - InstallerUrl: http://dl-t1.wmzhe.com/13/13163/PureCodec20230331.exe - InstallerSha256: C4161B2BD2A1D228ED94F606AF7C0B24F3B125605843025A92C68F4682B7867E - ProductCode: PureCodec -- Architecture: x64 - InstallerUrl: http://dl-t1.wmzhe.com/13/13163/PureCodec20230331.exe - InstallerSha256: C4161B2BD2A1D228ED94F606AF7C0B24F3B125605843025A92C68F4682B7867E - ProductCode: PureCodec + - Architecture: x86 + InstallerUrl: https://dl-t1.wmzhe.com/13/13163/PureCodec20230331.exe + InstallerSha256: C4161B2BD2A1D228ED94F606AF7C0B24F3B125605843025A92C68F4682B7867E + ProductCode: PureCodec + - Architecture: x64 + InstallerUrl: https://dl-t1.wmzhe.com/13/13163/PureCodec20230331.exe + InstallerSha256: C4161B2BD2A1D228ED94F606AF7C0B24F3B125605843025A92C68F4682B7867E + ProductCode: PureCodec ManifestType: installer -ManifestVersion: 1.4.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.locale.en-US.yaml b/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.locale.en-US.yaml index d887fb8cf9bfc..7ff7df913ee51 100644 --- a/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.locale.en-US.yaml +++ b/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20230331" @@ -19,20 +19,20 @@ ShortDescription: Codec pack for HD fans Description: Pure Codec is a well-built codec pack for HD fans, capable of decoding and playing popular video and audio formats by hardware and software. It integrates multimedia player PotPlayer, MPC-HC and MPC-BE, splitter and decoder suite LAV Filters, high quality renderer madVR, and supports Chinese and English. # Moniker: Tags: -- audio -- codec -- decode -- lav -- madvr -- media -- mpc -- mpc-be -- mpc-hc -- multimedia -- music -- player -- potplayer -- video + - audio + - codec + - decode + - lav + - madvr + - media + - mpc + - mpc-be + - mpc-hc + - multimedia + - music + - player + - potplayer + - video # Agreements: # ReleaseNotes: ReleaseNotesUrl: http://qxys.hkfree.work/ShowPost.asp?ThreadID=206 @@ -40,4 +40,4 @@ ReleaseNotesUrl: http://qxys.hkfree.work/ShowPost.asp?ThreadID=206 # InstallationNotes: # Documentations: ManifestType: defaultLocale -ManifestVersion: 1.4.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.locale.zh-CN.yaml b/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.locale.zh-CN.yaml index 8f07ff5e17977..6d26398145647 100644 --- a/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.locale.zh-CN.yaml +++ b/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20230331" @@ -19,21 +19,21 @@ ShortDescription: 追求极致,只为完美视听体验 Description: 完美解码是一款为高清影视爱好者精心打造的影音解码包,能软硬件解码播放流行的视频和音频格式。集成多媒体播放器 PotPlayer、MPC-HC、MPC-BE,分离器解码器套件 LAV Filters,高画质渲染器 madVR,支持中英语言安装使用。 # Moniker: Tags: -- lav -- madvr -- mpc -- mpc-be -- mpc-hc -- potplayer -- 多媒体 -- 媒体 -- 影音 -- 播放器 -- 视频 -- 解码 -- 解码器 -- 音乐 -- 音频 + - lav + - madvr + - mpc + - mpc-be + - mpc-hc + - potplayer + - 多媒体 + - 媒体 + - 影音 + - 播放器 + - 视频 + - 解码 + - 解码器 + - 音乐 + - 音频 # Agreements: ReleaseNotes: |- + 更新 LAVFilters v0.77.2 @@ -43,4 +43,4 @@ ReleaseNotesUrl: http://qxys.hkfree.work/ShowPost.asp?ThreadID=206 # InstallationNotes: # Documentations: ManifestType: locale -ManifestVersion: 1.4.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.yaml b/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.yaml index 4420b4c58ed59..e977a9454504c 100644 --- a/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.yaml +++ b/manifests/d/Dio/PureCodec/20230331/Dio.PureCodec.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20230331" DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.4.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.installer.yaml b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.installer.yaml index 297643368cff1..8ceac6125560b 100644 --- a/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.installer.yaml +++ b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.installer.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20240131" @@ -7,199 +7,199 @@ InstallerType: nullsoft Scope: machine UpgradeBehavior: install Protocols: -- potplayer -- potrun -- rtmp -- rtsp + - potplayer + - potrun + - rtmp + - rtsp FileExtensions: -- "264" -- "265" -- 3g2 -- 3ga -- 3gp -- 3gp2 -- 3gpp -- aac -- ac3 -- aif -- aifc -- aiff -- alac -- amr -- amv -- aob -- ape -- apl -- asf -- ass -- asx -- au -- avi -- avs -- awb -- bdmv -- bik -- caf -- cda -- cue -- dav -- dff -- divx -- dmskm -- dpg -- dpl -- dsa -- dsf -- dsm -- dss -- dsv -- dts -- dtshd -- dtsma -- dv -- dvr-ms -- eac3 -- ec3 -- evo -- f4v -- flac -- flc -- fli -- flic -- flv -- h264 -- h265 -- hdmov -- hevc -- hm10 -- idx -- ifo -- ismv -- ivf -- k3g -- lmp4 -- m1a -- m1v -- m2a -- m2p -- m2t -- m2ts -- m2v -- m3u -- m3u8 -- m4a -- m4b -- m4p -- m4r -- m4v -- mid -- midi -- mk3d -- mka -- mkv -- mlp -- mod -- mov -- mp2 -- mp2v -- mp3 -- mp4 -- mp4v -- mpa -- mpc -- mpcpl -- mpd -- mpe -- mpeg -- mpg -- mpl -- mpls -- mpv2 -- mpv4 -- mqv -- mts -- mxf -- nsr -- nsv -- nut -- obu -- ofr -- ofs -- oga -- ogg -- ogm -- ogv -- opus -- pbf -- pls -- psb -- pva -- qt -- ra -- ram -- rec -- rm -- rmi -- rmm -- rmvb -- roq -- rp -- rpm -- rt -- sbv -- sfd -- skm -- smi -- smil -- smk -- snd -- spx -- srt -- ssa -- ssf -- ssif -- sub -- sup -- swf -- tak -- thd -- tp -- tpr -- trp -- ts -- tta -- ttml -- usf -- vc1 -- vob -- vpy -- vtt -- w64 -- wav -- wax -- weba -- webm -- wm -- wma -- wmp -- wmv -- wmx -- wpl -- wtv -- wv -- wvx -- xspf -- xss -- y4m + - "264" + - "265" + - 3g2 + - 3ga + - 3gp + - 3gp2 + - 3gpp + - aac + - ac3 + - aif + - aifc + - aiff + - alac + - amr + - amv + - aob + - ape + - apl + - asf + - ass + - asx + - au + - avi + - avs + - awb + - bdmv + - bik + - caf + - cda + - cue + - dav + - dff + - divx + - dmskm + - dpg + - dpl + - dsa + - dsf + - dsm + - dss + - dsv + - dts + - dtshd + - dtsma + - dv + - dvr-ms + - eac3 + - ec3 + - evo + - f4v + - flac + - flc + - fli + - flic + - flv + - h264 + - h265 + - hdmov + - hevc + - hm10 + - idx + - ifo + - ismv + - ivf + - k3g + - lmp4 + - m1a + - m1v + - m2a + - m2p + - m2t + - m2ts + - m2v + - m3u + - m3u8 + - m4a + - m4b + - m4p + - m4r + - m4v + - mid + - midi + - mk3d + - mka + - mkv + - mlp + - mod + - mov + - mp2 + - mp2v + - mp3 + - mp4 + - mp4v + - mpa + - mpc + - mpcpl + - mpd + - mpe + - mpeg + - mpg + - mpl + - mpls + - mpv2 + - mpv4 + - mqv + - mts + - mxf + - nsr + - nsv + - nut + - obu + - ofr + - ofs + - oga + - ogg + - ogm + - ogv + - opus + - pbf + - pls + - psb + - pva + - qt + - ra + - ram + - rec + - rm + - rmi + - rmm + - rmvb + - roq + - rp + - rpm + - rt + - sbv + - sfd + - skm + - smi + - smil + - smk + - snd + - spx + - srt + - ssa + - ssf + - ssif + - sub + - sup + - swf + - tak + - thd + - tp + - tpr + - trp + - ts + - tta + - ttml + - usf + - vc1 + - vob + - vpy + - vtt + - w64 + - wav + - wax + - weba + - webm + - wm + - wma + - wmp + - wmv + - wmx + - wpl + - wtv + - wv + - wvx + - xspf + - xss + - y4m ReleaseDate: 2024-01-31 Installers: -- Architecture: x86 - InstallerUrl: http://dl-t1.wmzhe.com/13/13163/PureCodec20240131.exe - InstallerSha256: 2C79A99D73D043EC2461E9BC39E1DEBDDA0B992583B620B4740D7480753C07C4 - ProductCode: PureCodec -- Architecture: x64 - InstallerUrl: http://dl-t1.wmzhe.com/13/13163/PureCodec20240131.exe - InstallerSha256: 2C79A99D73D043EC2461E9BC39E1DEBDDA0B992583B620B4740D7480753C07C4 - ProductCode: PureCodec + - Architecture: x86 + InstallerUrl: https://dl-t1.wmzhe.com/13/13163/PureCodec20240131.exe + InstallerSha256: 2C79A99D73D043EC2461E9BC39E1DEBDDA0B992583B620B4740D7480753C07C4 + ProductCode: PureCodec + - Architecture: x64 + InstallerUrl: https://dl-t1.wmzhe.com/13/13163/PureCodec20240131.exe + InstallerSha256: 2C79A99D73D043EC2461E9BC39E1DEBDDA0B992583B620B4740D7480753C07C4 + ProductCode: PureCodec ManifestType: installer -ManifestVersion: 1.5.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.locale.en-US.yaml b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.locale.en-US.yaml index 4c72d55a362b1..05aab1a157971 100644 --- a/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.locale.en-US.yaml +++ b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20240131" @@ -19,24 +19,24 @@ ShortDescription: Codec pack for HD fans Description: Pure Codec is a well-built codec pack for HD fans, capable of decoding and playing popular video and audio formats by hardware and software. It integrates multimedia player PotPlayer, MPC-HC and MPC-BE, splitter and decoder suite LAV Filters, high quality renderer madVR, and supports Chinese and English. # Moniker: Tags: -- audio -- codec -- decode -- lav -- madvr -- media -- mpc -- mpc-be -- mpc-hc -- multimedia -- music -- player -- potplayer -- video + - audio + - codec + - decode + - lav + - madvr + - media + - mpc + - mpc-be + - mpc-hc + - multimedia + - music + - player + - potplayer + - video # ReleaseNotes: ReleaseNotesUrl: http://qxys.hkfree.work/ShowPost.asp?ThreadID=206 # PurchaseUrl: # InstallationNotes: # Documentations: ManifestType: defaultLocale -ManifestVersion: 1.5.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.locale.zh-CN.yaml b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.locale.zh-CN.yaml index a1dc2e4e81b1c..4c9b06d8ec584 100644 --- a/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.locale.zh-CN.yaml +++ b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20240131" @@ -19,21 +19,21 @@ ShortDescription: 追求极致,只为完美视听体验 Description: 完美解码是一款为高清影视爱好者精心打造的影音解码包,能软硬件解码播放流行的视频和音频格式。集成多媒体播放器 PotPlayer、MPC-HC、MPC-BE,分离器解码器套件 LAV Filters,高画质渲染器 madVR,支持中英语言安装使用。 # Moniker: Tags: -- lav -- madvr -- mpc -- mpc-be -- mpc-hc -- potplayer -- 多媒体 -- 媒体 -- 影音 -- 播放器 -- 视频 -- 解码 -- 解码器 -- 音乐 -- 音频 + - lav + - madvr + - mpc + - mpc-be + - mpc-hc + - potplayer + - 多媒体 + - 媒体 + - 影音 + - 播放器 + - 视频 + - 解码 + - 解码器 + - 音乐 + - 音频 ReleaseNotes: |- + 更新 PotPlayer v1.7.22077 + 更新 MPC-HC v2.1.4 @@ -44,4 +44,4 @@ ReleaseNotesUrl: http://qxys.hkfree.work/ShowPost.asp?ThreadID=206 # InstallationNotes: # Documentations: ManifestType: locale -ManifestVersion: 1.5.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.yaml b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.yaml index cda4434635b0e..617e10cb890c5 100644 --- a/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.yaml +++ b/manifests/d/Dio/PureCodec/20240131/Dio.PureCodec.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20240131" DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.5.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.installer.yaml b/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.installer.yaml index ede0fd63bdecc..886b9eecad338 100644 --- a/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.installer.yaml +++ b/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.installer.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20240520" @@ -7,199 +7,199 @@ InstallerType: nullsoft Scope: machine UpgradeBehavior: install Protocols: -- potplayer -- potrun -- rtmp -- rtsp + - potplayer + - potrun + - rtmp + - rtsp FileExtensions: -- "264" -- "265" -- 3g2 -- 3ga -- 3gp -- 3gp2 -- 3gpp -- aac -- ac3 -- aif -- aifc -- aiff -- alac -- amr -- amv -- aob -- ape -- apl -- asf -- ass -- asx -- au -- avi -- avs -- awb -- bdmv -- bik -- caf -- cda -- cue -- dav -- dff -- divx -- dmskm -- dpg -- dpl -- dsa -- dsf -- dsm -- dss -- dsv -- dts -- dtshd -- dtsma -- dv -- dvr-ms -- eac3 -- ec3 -- evo -- f4v -- flac -- flc -- fli -- flic -- flv -- h264 -- h265 -- hdmov -- hevc -- hm10 -- idx -- ifo -- ismv -- ivf -- k3g -- lmp4 -- m1a -- m1v -- m2a -- m2p -- m2t -- m2ts -- m2v -- m3u -- m3u8 -- m4a -- m4b -- m4p -- m4r -- m4v -- mid -- midi -- mk3d -- mka -- mkv -- mlp -- mod -- mov -- mp2 -- mp2v -- mp3 -- mp4 -- mp4v -- mpa -- mpc -- mpcpl -- mpd -- mpe -- mpeg -- mpg -- mpl -- mpls -- mpv2 -- mpv4 -- mqv -- mts -- mxf -- nsr -- nsv -- nut -- obu -- ofr -- ofs -- oga -- ogg -- ogm -- ogv -- opus -- pbf -- pls -- psb -- pva -- qt -- ra -- ram -- rec -- rm -- rmi -- rmm -- rmvb -- roq -- rp -- rpm -- rt -- sbv -- sfd -- skm -- smi -- smil -- smk -- snd -- spx -- srt -- ssa -- ssf -- ssif -- sub -- sup -- swf -- tak -- thd -- tp -- tpr -- trp -- ts -- tta -- ttml -- usf -- vc1 -- vob -- vpy -- vtt -- w64 -- wav -- wax -- weba -- webm -- wm -- wma -- wmp -- wmv -- wmx -- wpl -- wtv -- wv -- wvx -- xspf -- xss -- y4m + - "264" + - "265" + - 3g2 + - 3ga + - 3gp + - 3gp2 + - 3gpp + - aac + - ac3 + - aif + - aifc + - aiff + - alac + - amr + - amv + - aob + - ape + - apl + - asf + - ass + - asx + - au + - avi + - avs + - awb + - bdmv + - bik + - caf + - cda + - cue + - dav + - dff + - divx + - dmskm + - dpg + - dpl + - dsa + - dsf + - dsm + - dss + - dsv + - dts + - dtshd + - dtsma + - dv + - dvr-ms + - eac3 + - ec3 + - evo + - f4v + - flac + - flc + - fli + - flic + - flv + - h264 + - h265 + - hdmov + - hevc + - hm10 + - idx + - ifo + - ismv + - ivf + - k3g + - lmp4 + - m1a + - m1v + - m2a + - m2p + - m2t + - m2ts + - m2v + - m3u + - m3u8 + - m4a + - m4b + - m4p + - m4r + - m4v + - mid + - midi + - mk3d + - mka + - mkv + - mlp + - mod + - mov + - mp2 + - mp2v + - mp3 + - mp4 + - mp4v + - mpa + - mpc + - mpcpl + - mpd + - mpe + - mpeg + - mpg + - mpl + - mpls + - mpv2 + - mpv4 + - mqv + - mts + - mxf + - nsr + - nsv + - nut + - obu + - ofr + - ofs + - oga + - ogg + - ogm + - ogv + - opus + - pbf + - pls + - psb + - pva + - qt + - ra + - ram + - rec + - rm + - rmi + - rmm + - rmvb + - roq + - rp + - rpm + - rt + - sbv + - sfd + - skm + - smi + - smil + - smk + - snd + - spx + - srt + - ssa + - ssf + - ssif + - sub + - sup + - swf + - tak + - thd + - tp + - tpr + - trp + - ts + - tta + - ttml + - usf + - vc1 + - vob + - vpy + - vtt + - w64 + - wav + - wax + - weba + - webm + - wm + - wma + - wmp + - wmv + - wmx + - wpl + - wtv + - wv + - wvx + - xspf + - xss + - y4m ReleaseDate: 2024-05-20 Installers: -- Architecture: x86 - InstallerUrl: http://dl-t1.wmzhe.com/13/13163/PureCodec20240520.exe - InstallerSha256: B8A3A2A63E57DE8229766FC7B5468CE83A2990C0D1E4F2CBC1D2F15835F64BC2 - ProductCode: PureCodec -- Architecture: x64 - InstallerUrl: http://dl-t1.wmzhe.com/13/13163/PureCodec20240520.exe - InstallerSha256: B8A3A2A63E57DE8229766FC7B5468CE83A2990C0D1E4F2CBC1D2F15835F64BC2 - ProductCode: PureCodec + - Architecture: x86 + InstallerUrl: https://dl-t1.wmzhe.com/13/13163/PureCodec20240520.exe + InstallerSha256: B8A3A2A63E57DE8229766FC7B5468CE83A2990C0D1E4F2CBC1D2F15835F64BC2 + ProductCode: PureCodec + - Architecture: x64 + InstallerUrl: https://dl-t1.wmzhe.com/13/13163/PureCodec20240520.exe + InstallerSha256: B8A3A2A63E57DE8229766FC7B5468CE83A2990C0D1E4F2CBC1D2F15835F64BC2 + ProductCode: PureCodec ManifestType: installer -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.locale.en-US.yaml b/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.locale.en-US.yaml index ff95636d1120c..3f2bb25cef13c 100644 --- a/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.locale.en-US.yaml +++ b/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20240520" @@ -19,24 +19,24 @@ ShortDescription: Codec pack for HD fans Description: Pure Codec is a well-built codec pack for HD fans, capable of decoding and playing popular video and audio formats by hardware and software. It integrates multimedia player PotPlayer, MPC-HC and MPC-BE, splitter and decoder suite LAV Filters, high quality renderer madVR, and supports Chinese and English. # Moniker: Tags: -- audio -- codec -- decode -- lav -- madvr -- media -- mpc -- mpc-be -- mpc-hc -- multimedia -- music -- player -- potplayer -- video + - audio + - codec + - decode + - lav + - madvr + - media + - mpc + - mpc-be + - mpc-hc + - multimedia + - music + - player + - potplayer + - video # ReleaseNotes: ReleaseNotesUrl: http://diodiy.top/?thread-1.htm # PurchaseUrl: # InstallationNotes: # Documentations: ManifestType: defaultLocale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.locale.zh-CN.yaml b/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.locale.zh-CN.yaml index 0f32cb27cd7d5..2d41237ef7f25 100644 --- a/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.locale.zh-CN.yaml +++ b/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20240520" @@ -19,21 +19,21 @@ ShortDescription: 追求极致,只为完美视听体验 Description: 完美解码是一款为高清影视爱好者精心打造的影音解码包,能软硬件解码播放流行的视频和音频格式。集成多媒体播放器 PotPlayer、MPC-HC、MPC-BE,分离器解码器套件 LAV Filters,高画质渲染器 madVR,支持中英语言安装使用。 # Moniker: Tags: -- lav -- madvr -- mpc -- mpc-be -- mpc-hc -- potplayer -- 多媒体 -- 媒体 -- 影音 -- 播放器 -- 视频 -- 解码 -- 解码器 -- 音乐 -- 音频 + - lav + - madvr + - mpc + - mpc-be + - mpc-hc + - potplayer + - 多媒体 + - 媒体 + - 影音 + - 播放器 + - 视频 + - 解码 + - 解码器 + - 音乐 + - 音频 ReleaseNotes: |- + 更新 PotPlayer v240509(1.7.22232) + 更新 MPC-BE v1.7.1 @@ -43,4 +43,4 @@ ReleaseNotesUrl: http://diodiy.top/?thread-1.htm # InstallationNotes: # Documentations: ManifestType: locale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.yaml b/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.yaml index 064306ec83ff8..a3d3f2f25edc3 100644 --- a/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.yaml +++ b/manifests/d/Dio/PureCodec/20240520/Dio.PureCodec.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-2.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20240520" DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.installer.yaml b/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.installer.yaml index c1b7143845385..f8299b78b7d02 100644 --- a/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.installer.yaml +++ b/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.installer.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20240730" @@ -7,199 +7,199 @@ InstallerType: nullsoft Scope: machine UpgradeBehavior: install Protocols: -- potplayer -- potrun -- rtmp -- rtsp + - potplayer + - potrun + - rtmp + - rtsp FileExtensions: -- "264" -- "265" -- 3g2 -- 3ga -- 3gp -- 3gp2 -- 3gpp -- aac -- ac3 -- aif -- aifc -- aiff -- alac -- amr -- amv -- aob -- ape -- apl -- asf -- ass -- asx -- au -- avi -- avs -- awb -- bdmv -- bik -- caf -- cda -- cue -- dav -- dff -- divx -- dmskm -- dpg -- dpl -- dsa -- dsf -- dsm -- dss -- dsv -- dts -- dtshd -- dtsma -- dv -- dvr-ms -- eac3 -- ec3 -- evo -- f4v -- flac -- flc -- fli -- flic -- flv -- h264 -- h265 -- hdmov -- hevc -- hm10 -- idx -- ifo -- ismv -- ivf -- k3g -- lmp4 -- m1a -- m1v -- m2a -- m2p -- m2t -- m2ts -- m2v -- m3u -- m3u8 -- m4a -- m4b -- m4p -- m4r -- m4v -- mid -- midi -- mk3d -- mka -- mkv -- mlp -- mod -- mov -- mp2 -- mp2v -- mp3 -- mp4 -- mp4v -- mpa -- mpc -- mpcpl -- mpd -- mpe -- mpeg -- mpg -- mpl -- mpls -- mpv2 -- mpv4 -- mqv -- mts -- mxf -- nsr -- nsv -- nut -- obu -- ofr -- ofs -- oga -- ogg -- ogm -- ogv -- opus -- pbf -- pls -- psb -- pva -- qt -- ra -- ram -- rec -- rm -- rmi -- rmm -- rmvb -- roq -- rp -- rpm -- rt -- sbv -- sfd -- skm -- smi -- smil -- smk -- snd -- spx -- srt -- ssa -- ssf -- ssif -- sub -- sup -- swf -- tak -- thd -- tp -- tpr -- trp -- ts -- tta -- ttml -- usf -- vc1 -- vob -- vpy -- vtt -- w64 -- wav -- wax -- weba -- webm -- wm -- wma -- wmp -- wmv -- wmx -- wpl -- wtv -- wv -- wvx -- xspf -- xss -- y4m + - "264" + - "265" + - 3g2 + - 3ga + - 3gp + - 3gp2 + - 3gpp + - aac + - ac3 + - aif + - aifc + - aiff + - alac + - amr + - amv + - aob + - ape + - apl + - asf + - ass + - asx + - au + - avi + - avs + - awb + - bdmv + - bik + - caf + - cda + - cue + - dav + - dff + - divx + - dmskm + - dpg + - dpl + - dsa + - dsf + - dsm + - dss + - dsv + - dts + - dtshd + - dtsma + - dv + - dvr-ms + - eac3 + - ec3 + - evo + - f4v + - flac + - flc + - fli + - flic + - flv + - h264 + - h265 + - hdmov + - hevc + - hm10 + - idx + - ifo + - ismv + - ivf + - k3g + - lmp4 + - m1a + - m1v + - m2a + - m2p + - m2t + - m2ts + - m2v + - m3u + - m3u8 + - m4a + - m4b + - m4p + - m4r + - m4v + - mid + - midi + - mk3d + - mka + - mkv + - mlp + - mod + - mov + - mp2 + - mp2v + - mp3 + - mp4 + - mp4v + - mpa + - mpc + - mpcpl + - mpd + - mpe + - mpeg + - mpg + - mpl + - mpls + - mpv2 + - mpv4 + - mqv + - mts + - mxf + - nsr + - nsv + - nut + - obu + - ofr + - ofs + - oga + - ogg + - ogm + - ogv + - opus + - pbf + - pls + - psb + - pva + - qt + - ra + - ram + - rec + - rm + - rmi + - rmm + - rmvb + - roq + - rp + - rpm + - rt + - sbv + - sfd + - skm + - smi + - smil + - smk + - snd + - spx + - srt + - ssa + - ssf + - ssif + - sub + - sup + - swf + - tak + - thd + - tp + - tpr + - trp + - ts + - tta + - ttml + - usf + - vc1 + - vob + - vpy + - vtt + - w64 + - wav + - wax + - weba + - webm + - wm + - wma + - wmp + - wmv + - wmx + - wpl + - wtv + - wv + - wvx + - xspf + - xss + - y4m ReleaseDate: 2024-07-30 Installers: -- Architecture: x86 - InstallerUrl: http://dl-t1.wmzhe.com/13/13163/PureCodec20240730.exe - InstallerSha256: BB06559C87EBC00CA3DDFBA6C1FAD6F2A9BCFFE9D13E6A885A1EF971AF2E3BD7 - ProductCode: PureCodec -- Architecture: x64 - InstallerUrl: http://dl-t1.wmzhe.com/13/13163/PureCodec20240730.exe - InstallerSha256: BB06559C87EBC00CA3DDFBA6C1FAD6F2A9BCFFE9D13E6A885A1EF971AF2E3BD7 - ProductCode: PureCodec + - Architecture: x86 + InstallerUrl: https://dl-t1.wmzhe.com/13/13163/PureCodec20240730.exe + InstallerSha256: BB06559C87EBC00CA3DDFBA6C1FAD6F2A9BCFFE9D13E6A885A1EF971AF2E3BD7 + ProductCode: PureCodec + - Architecture: x64 + InstallerUrl: https://dl-t1.wmzhe.com/13/13163/PureCodec20240730.exe + InstallerSha256: BB06559C87EBC00CA3DDFBA6C1FAD6F2A9BCFFE9D13E6A885A1EF971AF2E3BD7 + ProductCode: PureCodec ManifestType: installer -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.locale.en-US.yaml b/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.locale.en-US.yaml index 1dce31a72c7d8..dcd9d0da9a0c5 100644 --- a/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.locale.en-US.yaml +++ b/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20240730" @@ -19,24 +19,24 @@ ShortDescription: Codec pack for HD fans Description: Pure Codec is a well-built codec pack for HD fans, capable of decoding and playing popular video and audio formats by hardware and software. It integrates multimedia player PotPlayer, MPC-HC and MPC-BE, splitter and decoder suite LAV Filters, high quality renderer madVR, and supports Chinese and English. # Moniker: Tags: -- audio -- codec -- decode -- lav -- madvr -- media -- mpc -- mpc-be -- mpc-hc -- multimedia -- music -- player -- potplayer -- video + - audio + - codec + - decode + - lav + - madvr + - media + - mpc + - mpc-be + - mpc-hc + - multimedia + - music + - player + - potplayer + - video # ReleaseNotes: ReleaseNotesUrl: http://diodiy.top/?thread-1.htm # PurchaseUrl: # InstallationNotes: # Documentations: ManifestType: defaultLocale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.locale.zh-CN.yaml b/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.locale.zh-CN.yaml index 175e52b2066dc..8f6b84e44b2ad 100644 --- a/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.locale.zh-CN.yaml +++ b/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20240730" @@ -19,21 +19,21 @@ ShortDescription: 追求极致,只为完美视听体验 Description: 完美解码是一款为高清影视爱好者精心打造的影音解码包,能软硬件解码播放流行的视频和音频格式。集成多媒体播放器 PotPlayer、MPC-HC、MPC-BE,分离器解码器套件 LAV Filters,高画质渲染器 madVR,支持中英语言安装使用。 # Moniker: Tags: -- lav -- madvr -- mpc -- mpc-be -- mpc-hc -- potplayer -- 多媒体 -- 媒体 -- 影音 -- 播放器 -- 视频 -- 解码 -- 解码器 -- 音乐 -- 音频 + - lav + - madvr + - mpc + - mpc-be + - mpc-hc + - potplayer + - 多媒体 + - 媒体 + - 影音 + - 播放器 + - 视频 + - 解码 + - 解码器 + - 音乐 + - 音频 ReleaseNotes: |- + 更新 PotPlayer v240618(1.7.22262) 未加壳修改版 + 更新 MPC-HC v2.3.3 @@ -43,4 +43,4 @@ ReleaseNotesUrl: http://diodiy.top/?thread-1.htm # InstallationNotes: # Documentations: ManifestType: locale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.yaml b/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.yaml index 251c62714f11f..eccbbba6ff6e8 100644 --- a/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.yaml +++ b/manifests/d/Dio/PureCodec/20240730/Dio.PureCodec.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Dio.PureCodec PackageVersion: "20240730" DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/DirSoft/ARPro/17.0.1.1140/DirSoft.ARPro.installer.yaml b/manifests/d/DirSoft/ARPro/17.0.1.1140/DirSoft.ARPro.installer.yaml deleted file mode 100644 index bc203470a2b0d..0000000000000 --- a/manifests/d/DirSoft/ARPro/17.0.1.1140/DirSoft.ARPro.installer.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: DirSoft.ARPro -PackageVersion: 17.0.1.1140 -InstallerType: exe -InstallerSwitches: - Silent: /q -Installers: -- Architecture: x64 - InstallerUrl: https://www.dirigosoftware.com/dlfiles/ARSuite/arpro-setup.exe - InstallerSha256: 04DE3F9ADA27B4FCBC8501AC23114FFFE37ACAAF9CF4AEEB6971B3F93660B8DD -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/d/DirSoft/ARPro/17.0.1.1140/DirSoft.ARPro.locale.en-US.yaml b/manifests/d/DirSoft/ARPro/17.0.1.1140/DirSoft.ARPro.locale.en-US.yaml deleted file mode 100644 index deb2105280070..0000000000000 --- a/manifests/d/DirSoft/ARPro/17.0.1.1140/DirSoft.ARPro.locale.en-US.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: DirSoft.ARPro -PackageVersion: 17.0.1.1140 -PackageLocale: en-US -Publisher: Dirigo Software -PackageName: Accident Reconstruction Professional -License: Dirigo Software License -Copyright: Copyright © Dirigo Software -ShortDescription: Installer for Accident Reconstruction Professional -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/d/DirSoft/ARPro/17.0.1.1140/DirSoft.ARPro.yaml b/manifests/d/DirSoft/ARPro/17.0.1.1140/DirSoft.ARPro.yaml deleted file mode 100644 index f9ef37f0fbb7a..0000000000000 --- a/manifests/d/DirSoft/ARPro/17.0.1.1140/DirSoft.ARPro.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: DirSoft.ARPro -PackageVersion: 17.0.1.1140 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/d/DirkJansen/MailCheck2/2.141 (Build 581)/DirkJansen.MailCheck2.installer.yaml b/manifests/d/DirkJansen/MailCheck2/2.141 (Build 581)/DirkJansen.MailCheck2.installer.yaml deleted file mode 100644 index 0c06d3da4bc61..0000000000000 --- a/manifests/d/DirkJansen/MailCheck2/2.141 (Build 581)/DirkJansen.MailCheck2.installer.yaml +++ /dev/null @@ -1,19 +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: DirkJansen.MailCheck2 -PackageVersion: 2.141 (Build 581) -InstallerType: inno -Installers: -- Architecture: x64 - InstallerUrl: https://www.d-jan.de/MailCheck2Setup141Build581-64bit.exe - InstallerSha256: 41D7F314F2E0FA4EB223F9ACF87433E87A8A50AF025207046925BFED04885920 - AppsAndFeaturesEntries: - - DisplayVersion: 2.141 (Build 581-64bit) -- Architecture: x86 - InstallerUrl: https://www.d-jan.de/MailCheck2Setup141Build581.exe - InstallerSha256: E15C29B84559437D1C1CCEBFE1AD60B6EDB48607E4D429C27089A01E33E3322A - AppsAndFeaturesEntries: - - DisplayVersion: 2.141 (Build 581) -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/d/DirkJansen/MailCheck2/2.141 (Build 581)/DirkJansen.MailCheck2.yaml b/manifests/d/DirkJansen/MailCheck2/2.141 (Build 581)/DirkJansen.MailCheck2.yaml deleted file mode 100644 index 3c2b0f5bbd5dc..0000000000000 --- a/manifests/d/DirkJansen/MailCheck2/2.141 (Build 581)/DirkJansen.MailCheck2.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: DirkJansen.MailCheck2 -PackageVersion: 2.141 (Build 581) -DefaultLocale: de-DE -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/d/DirkJansen/MailCheck2/2.142 (Build 582)/DirkJansen.MailCheck2.installer.yaml b/manifests/d/DirkJansen/MailCheck2/2.142 (Build 582)/DirkJansen.MailCheck2.installer.yaml new file mode 100644 index 0000000000000..9905e8bd50a98 --- /dev/null +++ b/manifests/d/DirkJansen/MailCheck2/2.142 (Build 582)/DirkJansen.MailCheck2.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: DirkJansen.MailCheck2 +PackageVersion: 2.142 (Build 582) +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://www.d-jan.de/MailCheck2Setup142Build582-64bit.exe + InstallerSha256: C54A3C480DCA2715C94F6BD83C1CDC34685BF54E43384E3B09AB85CCCA1C57FF + AppsAndFeaturesEntries: + - DisplayVersion: 2.142 (Build 582-64bit) +- Architecture: x86 + InstallerUrl: https://www.d-jan.de/MailCheck2Setup142Build582.exe + InstallerSha256: E6DD9116B56AD3178571B4E4BB2DF78F4AE3EC8651D9C9C361A7AE75827603B0 + AppsAndFeaturesEntries: + - DisplayVersion: 2.142 (Build 582) +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/d/DirkJansen/MailCheck2/2.141 (Build 581)/DirkJansen.MailCheck2.locale.de-DE.yaml b/manifests/d/DirkJansen/MailCheck2/2.142 (Build 582)/DirkJansen.MailCheck2.locale.de-DE.yaml similarity index 85% rename from manifests/d/DirkJansen/MailCheck2/2.141 (Build 581)/DirkJansen.MailCheck2.locale.de-DE.yaml rename to manifests/d/DirkJansen/MailCheck2/2.142 (Build 582)/DirkJansen.MailCheck2.locale.de-DE.yaml index 9c89242b80a6e..998ff0f448e30 100644 --- a/manifests/d/DirkJansen/MailCheck2/2.141 (Build 581)/DirkJansen.MailCheck2.locale.de-DE.yaml +++ b/manifests/d/DirkJansen/MailCheck2/2.142 (Build 582)/DirkJansen.MailCheck2.locale.de-DE.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.9.4.0 +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json PackageIdentifier: DirkJansen.MailCheck2 -PackageVersion: 2.141 (Build 581) +PackageVersion: 2.142 (Build 582) PackageLocale: de-DE Publisher: Dirk Jansen PublisherUrl: https://www.d-jan.de/ diff --git a/manifests/d/DirkJansen/MailCheck2/2.142 (Build 582)/DirkJansen.MailCheck2.yaml b/manifests/d/DirkJansen/MailCheck2/2.142 (Build 582)/DirkJansen.MailCheck2.yaml new file mode 100644 index 0000000000000..aadeb1f335230 --- /dev/null +++ b/manifests/d/DirkJansen/MailCheck2/2.142 (Build 582)/DirkJansen.MailCheck2.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: DirkJansen.MailCheck2 +PackageVersion: 2.142 (Build 582) +DefaultLocale: de-DE +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/Discord/Discord/1.0.9198/Discord.Discord.installer.yaml b/manifests/d/Discord/Discord/1.0.9198/Discord.Discord.installer.yaml new file mode 100644 index 0000000000000..bb2d0bc8d4b8a --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9198/Discord.Discord.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 +PackageVersion: 1.0.9198 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: deny +Protocols: +- discord +RequireExplicitUpgrade: true +Installers: +- Architecture: x64 + InstallerUrl: https://stable.dl2.discordapp.net/distro/app/stable/win/x64/1.0.9198/DiscordSetup.exe + InstallerSha256: 533926EF46646E67FC66184B3C9606F50ECACA65CC8D96E03C305419948E67DB +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/1.0.9198/Discord.Discord.locale.en-US.yaml b/manifests/d/Discord/Discord/1.0.9198/Discord.Discord.locale.en-US.yaml new file mode 100644 index 0000000000000..0673396469205 --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9198/Discord.Discord.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 +PackageVersion: 1.0.9198 +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 +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 +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/1.0.9198/Discord.Discord.locale.pt-BR.yaml b/manifests/d/Discord/Discord/1.0.9198/Discord.Discord.locale.pt-BR.yaml new file mode 100644 index 0000000000000..ba1c7f7e10b0b --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9198/Discord.Discord.locale.pt-BR.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: Discord.Discord +PackageVersion: 1.0.9198 +PackageLocale: pt-BR +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2024 Discord Inc. All rights reserved. +ShortDescription: Seu Lugar para Papear e Ficar De Boa +Description: |- + O Discord é a forma mais fácil de falar por voz, vídeo e texto. + Fale, converse, saia e mantenha-se próximo dos seus amigos e comunidades. +Tags: +- conversa +- conversação-por-voz +- conversar +- jogos +- voz +PurchaseUrl: https://discord.com/nitro +Documentations: +- DocumentLabel: Support +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/1.0.9198/Discord.Discord.locale.zh-CN.yaml b/manifests/d/Discord/Discord/1.0.9198/Discord.Discord.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8466a1db24c35 --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9198/Discord.Discord.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 +PackageVersion: 1.0.9198 +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 +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/1.0.9198/Discord.Discord.yaml b/manifests/d/Discord/Discord/1.0.9198/Discord.Discord.yaml new file mode 100644 index 0000000000000..04f0336de5f38 --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9198/Discord.Discord.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 +PackageVersion: 1.0.9198 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/1.0.9199/Discord.Discord.installer.yaml b/manifests/d/Discord/Discord/1.0.9199/Discord.Discord.installer.yaml new file mode 100644 index 0000000000000..32ee9ee18fb76 --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9199/Discord.Discord.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 +PackageVersion: 1.0.9199 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: deny +Protocols: +- discord +RequireExplicitUpgrade: true +Installers: +- Architecture: x64 + InstallerUrl: https://stable.dl2.discordapp.net/distro/app/stable/win/x64/1.0.9199/DiscordSetup.exe + InstallerSha256: 97B78CCFF740DE8B3F9377F8A30D8B11ED21E009D8895A407F4A9780C0911864 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/1.0.9199/Discord.Discord.locale.en-US.yaml b/manifests/d/Discord/Discord/1.0.9199/Discord.Discord.locale.en-US.yaml new file mode 100644 index 0000000000000..57937a32c7bfb --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9199/Discord.Discord.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 +PackageVersion: 1.0.9199 +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 +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 +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/1.0.9199/Discord.Discord.locale.pt-BR.yaml b/manifests/d/Discord/Discord/1.0.9199/Discord.Discord.locale.pt-BR.yaml new file mode 100644 index 0000000000000..71fd6462f8b94 --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9199/Discord.Discord.locale.pt-BR.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: Discord.Discord +PackageVersion: 1.0.9199 +PackageLocale: pt-BR +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2024 Discord Inc. All rights reserved. +ShortDescription: Seu Lugar para Papear e Ficar De Boa +Description: |- + O Discord é a forma mais fácil de falar por voz, vídeo e texto. + Fale, converse, saia e mantenha-se próximo dos seus amigos e comunidades. +Tags: +- conversa +- conversação-por-voz +- conversar +- jogos +- voz +PurchaseUrl: https://discord.com/nitro +Documentations: +- DocumentLabel: Support +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/1.0.9199/Discord.Discord.locale.zh-CN.yaml b/manifests/d/Discord/Discord/1.0.9199/Discord.Discord.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d6603bf3d0b2a --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9199/Discord.Discord.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 +PackageVersion: 1.0.9199 +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 +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/1.0.9199/Discord.Discord.yaml b/manifests/d/Discord/Discord/1.0.9199/Discord.Discord.yaml new file mode 100644 index 0000000000000..6bb79073d6d98 --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9199/Discord.Discord.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 +PackageVersion: 1.0.9199 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.661/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.661/Discord.Discord.Canary.installer.yaml new file mode 100644 index 0000000000000..28c29588fafc1 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.661/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.661 +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.661/DiscordCanarySetup.exe + InstallerSha256: D1E70ADD31412EB6B439E9B7A77AEDC65D3546FC99BE5E5EA1C7D958F42FA670 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.661/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.661/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..9d57208793502 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.661/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.661 +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.661/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.661/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1ad9b97bc13a4 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.661/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.661 +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.661/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.661/Discord.Discord.Canary.yaml new file mode 100644 index 0000000000000..0136c30c53a84 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.661/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.661 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.662/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.662/Discord.Discord.Canary.installer.yaml new file mode 100644 index 0000000000000..a09202d7fdbec --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.662/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.662 +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.662/DiscordCanarySetup.exe + InstallerSha256: 54DBA0BDBFD35705EDB3AF02941E9F40F734A206CC8666BAB049290D76088F5D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.662/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.662/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..4d29ba21eaa07 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.662/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.662 +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.662/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.662/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..eea584c513aa4 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.662/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.662 +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.662/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.662/Discord.Discord.Canary.yaml new file mode 100644 index 0000000000000..b2471330d87dc --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.662/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.662 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.663/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.663/Discord.Discord.Canary.installer.yaml new file mode 100644 index 0000000000000..55c27d0e34566 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.663/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.663 +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.663/DiscordCanarySetup.exe + InstallerSha256: E3E70C9B46E589C8DBBB30710BB55BB7A5E4BB72E13035A05FAAFC3E7A352CD9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.663/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.663/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..3c6bc2a98cfdf --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.663/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.663 +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.663/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.663/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5149e5460af2d --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.663/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.663 +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.663/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.663/Discord.Discord.Canary.yaml new file mode 100644 index 0000000000000..8fd3e6f62bca4 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.663/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.663 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.664/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.664/Discord.Discord.Canary.installer.yaml new file mode 100644 index 0000000000000..c1b6fe3a8569e --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.664/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.664 +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.664/DiscordCanarySetup.exe + InstallerSha256: AE13D69A425549803842DA667AB3DCE0F85D70A64AA06940411F1DA8C0ED770C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.664/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.664/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..8f01729b62a49 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.664/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.664 +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.664/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.664/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..dc89213441db7 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.664/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.664 +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.664/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.664/Discord.Discord.Canary.yaml new file mode 100644 index 0000000000000..a01bcf475faf2 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.664/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.664 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.666/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.666/Discord.Discord.Canary.installer.yaml new file mode 100644 index 0000000000000..f2ab3290174da --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.666/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.666 +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.666/DiscordCanarySetup.exe + InstallerSha256: 9D2DC4594BAF14F75A540BA097C45A2E7D4037A6F9208657DA9BFEBC24A51EA6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.666/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.666/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..3f066142abda3 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.666/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.666 +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.666/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.666/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..af5322b8ef0fc --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.666/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.666 +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.666/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.666/Discord.Discord.Canary.yaml new file mode 100644 index 0000000000000..50ae9d592271c --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.666/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.666 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.667/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.667/Discord.Discord.Canary.installer.yaml new file mode 100644 index 0000000000000..ee3c48eb4f059 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.667/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.667 +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.667/DiscordCanarySetup.exe + InstallerSha256: B2E3B9ACA27DB6A1220A61615D3476759D37896654496CECE12CA25D4F57B013 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.667/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.667/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..71c06b30706ca --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.667/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.667 +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.667/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.667/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d7e60c6c37d2a --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.667/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.667 +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.667/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.667/Discord.Discord.Canary.yaml new file mode 100644 index 0000000000000..84fee69e9d283 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.667/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.667 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.668/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.668/Discord.Discord.Canary.installer.yaml new file mode 100644 index 0000000000000..0e2f51e2e2f70 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.668/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.668 +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.668/DiscordCanarySetup.exe + InstallerSha256: 9204BA63D8F764C94630F36BB897279B581F81DF1CFEDCB3C4C84340DF23A66A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.668/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.668/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..35c740ac79ac5 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.668/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.668 +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.668/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.668/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1a65f37072914 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.668/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.668 +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.668/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.668/Discord.Discord.Canary.yaml new file mode 100644 index 0000000000000..34804213f8b1e --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.668/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.668 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.669/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.669/Discord.Discord.Canary.installer.yaml new file mode 100644 index 0000000000000..d3ddbfb2991fe --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.669/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.669 +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.669/DiscordCanarySetup.exe + InstallerSha256: 7BC3AFE54BB82912782873D9B07A6A801618EBB287FEF79451749EDCCCD732E0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.669/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.669/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..b7a84411a49a1 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.669/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.669 +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.669/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.669/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4cdf56056733c --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.669/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.669 +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.669/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.669/Discord.Discord.Canary.yaml new file mode 100644 index 0000000000000..71f556584d487 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.669/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.669 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.670/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.670/Discord.Discord.Canary.installer.yaml new file mode 100644 index 0000000000000..d20261cf0b8c7 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.670/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.670 +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.670/DiscordCanarySetup.exe + InstallerSha256: FA0DC7BCC518A8D7543C45427D771C408CB50DEE138E67992820743EDEB013B0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.670/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.670/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..e9f5b53b26d1f --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.670/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.670 +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.670/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.670/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..797a3638c8c61 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.670/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.670 +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.670/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.670/Discord.Discord.Canary.yaml new file mode 100644 index 0000000000000..e61b0ac8e6be8 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.670/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.670 +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/Canary/1.0.672/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.672/Discord.Discord.Canary.installer.yaml new file mode 100644 index 0000000000000..d5732262bfecc --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.672/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.672 +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.672/DiscordCanarySetup.exe + InstallerSha256: 65025C33BF3899AACC4E0FA24FD00D852D796F393BD5B45645859386E476D662 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.672/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.672/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..85dd6faa2d55b --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.672/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.672 +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.672/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.672/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d7f3ea73c42b0 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.672/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.672 +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.672/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.672/Discord.Discord.Canary.yaml new file mode 100644 index 0000000000000..35c0ff740791c --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.672/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.672 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.924/Discord.Discord.Development.installer.yaml b/manifests/d/Discord/Discord/Development/1.0.924/Discord.Discord.Development.installer.yaml new file mode 100644 index 0000000000000..1b4b0b6ccb25f --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.924/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.924 +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.924/DiscordDevelopmentSetup.exe + InstallerSha256: A251BE8FF3C40071A7B364BC522DC0D84D706121CD7FB04D4EB5A3E9E8A6E6BC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.924/Discord.Discord.Development.locale.en-US.yaml b/manifests/d/Discord/Discord/Development/1.0.924/Discord.Discord.Development.locale.en-US.yaml new file mode 100644 index 0000000000000..cad84208a9eca --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.924/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.924 +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.924/Discord.Discord.Development.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Development/1.0.924/Discord.Discord.Development.locale.zh-CN.yaml new file mode 100644 index 0000000000000..dcb9e379262c3 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.924/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.924 +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.924/Discord.Discord.Development.yaml b/manifests/d/Discord/Discord/Development/1.0.924/Discord.Discord.Development.yaml new file mode 100644 index 0000000000000..7e55a2e913e2d --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.924/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.924 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.925/Discord.Discord.Development.installer.yaml b/manifests/d/Discord/Discord/Development/1.0.925/Discord.Discord.Development.installer.yaml new file mode 100644 index 0000000000000..cfab7d8c4a7c6 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.925/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.925 +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.925/DiscordDevelopmentSetup.exe + InstallerSha256: 4C68074E39FCCC0911999E2BEA31F9F26EDA8CE1888E6F1AB832127B76D13198 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.925/Discord.Discord.Development.locale.en-US.yaml b/manifests/d/Discord/Discord/Development/1.0.925/Discord.Discord.Development.locale.en-US.yaml new file mode 100644 index 0000000000000..4de7da83ce471 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.925/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.925 +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.925/Discord.Discord.Development.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Development/1.0.925/Discord.Discord.Development.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d833a71c4d4f3 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.925/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.925 +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.925/Discord.Discord.Development.yaml b/manifests/d/Discord/Discord/Development/1.0.925/Discord.Discord.Development.yaml new file mode 100644 index 0000000000000..9dfc264c42b09 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.925/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.925 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.926/Discord.Discord.Development.installer.yaml b/manifests/d/Discord/Discord/Development/1.0.926/Discord.Discord.Development.installer.yaml new file mode 100644 index 0000000000000..eb36e7e27dc7d --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.926/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.926 +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.926/DiscordDevelopmentSetup.exe + InstallerSha256: 6452EB6902A6717275D35A817363177B98C1A1461771F441FDBBC0A9A7024372 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.926/Discord.Discord.Development.locale.en-US.yaml b/manifests/d/Discord/Discord/Development/1.0.926/Discord.Discord.Development.locale.en-US.yaml new file mode 100644 index 0000000000000..dbe7f43e89fc6 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.926/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.926 +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.926/Discord.Discord.Development.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Development/1.0.926/Discord.Discord.Development.locale.zh-CN.yaml new file mode 100644 index 0000000000000..aa210e86199db --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.926/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.926 +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.926/Discord.Discord.Development.yaml b/manifests/d/Discord/Discord/Development/1.0.926/Discord.Discord.Development.yaml new file mode 100644 index 0000000000000..84331d2176936 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.926/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.926 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.927/Discord.Discord.Development.installer.yaml b/manifests/d/Discord/Discord/Development/1.0.927/Discord.Discord.Development.installer.yaml new file mode 100644 index 0000000000000..3d4ab6a052a4f --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.927/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.927 +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.927/DiscordDevelopmentSetup.exe + InstallerSha256: AF74E285363E089358DD48689A38BA6E251731FDEFDCE341BF774908AFD08CAD +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.927/Discord.Discord.Development.locale.en-US.yaml b/manifests/d/Discord/Discord/Development/1.0.927/Discord.Discord.Development.locale.en-US.yaml new file mode 100644 index 0000000000000..b55e38485e405 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.927/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.927 +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.927/Discord.Discord.Development.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Development/1.0.927/Discord.Discord.Development.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2f036128b52ff --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.927/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.927 +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.927/Discord.Discord.Development.yaml b/manifests/d/Discord/Discord/Development/1.0.927/Discord.Discord.Development.yaml new file mode 100644 index 0000000000000..63398be9ab97c --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.927/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.927 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.928/Discord.Discord.Development.installer.yaml b/manifests/d/Discord/Discord/Development/1.0.928/Discord.Discord.Development.installer.yaml new file mode 100644 index 0000000000000..0f0074d4fe90d --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.928/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.928 +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.928/DiscordDevelopmentSetup.exe + InstallerSha256: 8706357262167A1B934739C860655E154AF0DD8A630F2F65462534DEB13EC3BC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.928/Discord.Discord.Development.locale.en-US.yaml b/manifests/d/Discord/Discord/Development/1.0.928/Discord.Discord.Development.locale.en-US.yaml new file mode 100644 index 0000000000000..319d1dacb219a --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.928/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.928 +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.928/Discord.Discord.Development.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Development/1.0.928/Discord.Discord.Development.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c5991366d0d0d --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.928/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.928 +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.928/Discord.Discord.Development.yaml b/manifests/d/Discord/Discord/Development/1.0.928/Discord.Discord.Development.yaml new file mode 100644 index 0000000000000..eb252b9b4be9a --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.928/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.928 +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/Discord/Discord/Development/1.0.930/Discord.Discord.Development.installer.yaml b/manifests/d/Discord/Discord/Development/1.0.930/Discord.Discord.Development.installer.yaml new file mode 100644 index 0000000000000..3f0074a613ab1 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.930/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.930 +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.930/DiscordDevelopmentSetup.exe + InstallerSha256: 1B9EECD538704AA4E4FB049FC94BA3E66BA1B2773CEF09311488AED1C0375DB8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.930/Discord.Discord.Development.locale.en-US.yaml b/manifests/d/Discord/Discord/Development/1.0.930/Discord.Discord.Development.locale.en-US.yaml new file mode 100644 index 0000000000000..64c728bda2074 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.930/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.930 +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.930/Discord.Discord.Development.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Development/1.0.930/Discord.Discord.Development.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2d4e6e02ec1e5 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.930/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.930 +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.930/Discord.Discord.Development.yaml b/manifests/d/Discord/Discord/Development/1.0.930/Discord.Discord.Development.yaml new file mode 100644 index 0000000000000..16c2b24aa764e --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.930/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.930 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.931/Discord.Discord.Development.installer.yaml b/manifests/d/Discord/Discord/Development/1.0.931/Discord.Discord.Development.installer.yaml new file mode 100644 index 0000000000000..3dfa49e558cc2 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.931/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.931 +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.931/DiscordDevelopmentSetup.exe + InstallerSha256: 7365A5A97FD0E2E192CD4540BCC9C7F1712D3DFB5829F10871E49D5F4950B86B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.931/Discord.Discord.Development.locale.en-US.yaml b/manifests/d/Discord/Discord/Development/1.0.931/Discord.Discord.Development.locale.en-US.yaml new file mode 100644 index 0000000000000..5f5a046b4b085 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.931/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.931 +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.931/Discord.Discord.Development.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Development/1.0.931/Discord.Discord.Development.locale.zh-CN.yaml new file mode 100644 index 0000000000000..dcf46305cfe0b --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.931/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.931 +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.931/Discord.Discord.Development.yaml b/manifests/d/Discord/Discord/Development/1.0.931/Discord.Discord.Development.yaml new file mode 100644 index 0000000000000..e84aa75fdb676 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.931/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.931 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/PTB/1.0.1150/Discord.Discord.PTB.installer.yaml b/manifests/d/Discord/Discord/PTB/1.0.1150/Discord.Discord.PTB.installer.yaml new file mode 100644 index 0000000000000..011a71462443f --- /dev/null +++ b/manifests/d/Discord/Discord/PTB/1.0.1150/Discord.Discord.PTB.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: Discord.Discord.PTB +PackageVersion: 1.0.1150 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: deny +Protocols: +- discord +ProductCode: DiscordPTB +RequireExplicitUpgrade: true +Installers: +- Architecture: x64 + InstallerUrl: https://ptb.dl2.discordapp.net/distro/app/ptb/win/x64/1.0.1150/DiscordPTBSetup.exe + InstallerSha256: 1E652BCDA2BB83AC4155FC8F3026FAD3A7FF1756F39AA5BA46B227822750E097 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/PTB/1.0.1150/Discord.Discord.PTB.locale.en-US.yaml b/manifests/d/Discord/Discord/PTB/1.0.1150/Discord.Discord.PTB.locale.en-US.yaml new file mode 100644 index 0000000000000..1ad6af4ba5773 --- /dev/null +++ b/manifests/d/Discord/Discord/PTB/1.0.1150/Discord.Discord.PTB.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.PTB +PackageVersion: 1.0.1150 +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 PTB +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-ptb +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/PTB/1.0.1150/Discord.Discord.PTB.locale.zh-CN.yaml b/manifests/d/Discord/Discord/PTB/1.0.1150/Discord.Discord.PTB.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d0a5662c8a4c6 --- /dev/null +++ b/manifests/d/Discord/Discord/PTB/1.0.1150/Discord.Discord.PTB.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.PTB +PackageVersion: 1.0.1150 +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 PTB +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/PTB/1.0.1150/Discord.Discord.PTB.yaml b/manifests/d/Discord/Discord/PTB/1.0.1150/Discord.Discord.PTB.yaml new file mode 100644 index 0000000000000..a8aeda83c76eb --- /dev/null +++ b/manifests/d/Discord/Discord/PTB/1.0.1150/Discord.Discord.PTB.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.PTB +PackageVersion: 1.0.1150 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/PTB/1.0.1151/Discord.Discord.PTB.installer.yaml b/manifests/d/Discord/Discord/PTB/1.0.1151/Discord.Discord.PTB.installer.yaml new file mode 100644 index 0000000000000..4e6972e33eb63 --- /dev/null +++ b/manifests/d/Discord/Discord/PTB/1.0.1151/Discord.Discord.PTB.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: Discord.Discord.PTB +PackageVersion: 1.0.1151 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: deny +Protocols: +- discord +ProductCode: DiscordPTB +RequireExplicitUpgrade: true +Installers: +- Architecture: x64 + InstallerUrl: https://ptb.dl2.discordapp.net/distro/app/ptb/win/x64/1.0.1151/DiscordPTBSetup.exe + InstallerSha256: 3090224BFA9DA548E273EC378D9F7B1847CF83B11A9FD184BA815DA6F023048B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/PTB/1.0.1151/Discord.Discord.PTB.locale.en-US.yaml b/manifests/d/Discord/Discord/PTB/1.0.1151/Discord.Discord.PTB.locale.en-US.yaml new file mode 100644 index 0000000000000..78f75cc63fabc --- /dev/null +++ b/manifests/d/Discord/Discord/PTB/1.0.1151/Discord.Discord.PTB.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.PTB +PackageVersion: 1.0.1151 +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 PTB +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-ptb +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/PTB/1.0.1151/Discord.Discord.PTB.locale.zh-CN.yaml b/manifests/d/Discord/Discord/PTB/1.0.1151/Discord.Discord.PTB.locale.zh-CN.yaml new file mode 100644 index 0000000000000..509964ff621d1 --- /dev/null +++ b/manifests/d/Discord/Discord/PTB/1.0.1151/Discord.Discord.PTB.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.PTB +PackageVersion: 1.0.1151 +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 PTB +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/PTB/1.0.1151/Discord.Discord.PTB.yaml b/manifests/d/Discord/Discord/PTB/1.0.1151/Discord.Discord.PTB.yaml new file mode 100644 index 0000000000000..bd0ef96f7699f --- /dev/null +++ b/manifests/d/Discord/Discord/PTB/1.0.1151/Discord.Discord.PTB.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.PTB +PackageVersion: 1.0.1151 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DisplayLink/GraphicsDriver/11.7.5493.0/DisplayLink.GraphicsDriver.installer.yaml b/manifests/d/DisplayLink/GraphicsDriver/11.7.5493.0/DisplayLink.GraphicsDriver.installer.yaml new file mode 100644 index 0000000000000..72ff8716f57f8 --- /dev/null +++ b/manifests/d/DisplayLink/GraphicsDriver/11.7.5493.0/DisplayLink.GraphicsDriver.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: DisplayLink.GraphicsDriver +PackageVersion: 11.7.5493.0 +InstallerType: zip +NestedInstallerType: msi +Scope: machine +InstallerSwitches: + InstallLocation: APPDIR="" +UpgradeBehavior: install +ReleaseDate: 2025-06-16 +Installers: +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: PublicSoftware - Displaylink\DisplayLink_Win10RS.msi + InstallerUrl: https://www.synaptics.com/sites/default/files/msi_files/2025-06/DisplayLink%20USB%20Graphics%20Software%20for%20Windows11.7%20M3-MSI.zip + InstallerSha256: E5B0CC8FEA4838A0FFB32BDFB34F5541EAFE20C362A9E3F6ED78DA1FAE6643BB + ProductCode: '{96F49A78-AF1C-4F1E-8DA1-E4D2A2CAD959}' +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: PublicSoftware - Displaylink\DisplayLink_arm64.msi + InstallerUrl: https://www.synaptics.com/sites/default/files/msi_files/2025-06/DisplayLink%20USB%20Graphics%20Software%20for%20Windows11.7%20M3-MSI.zip + InstallerSha256: E5B0CC8FEA4838A0FFB32BDFB34F5541EAFE20C362A9E3F6ED78DA1FAE6643BB + ProductCode: '{645400C1-2072-4F8C-8084-496D7BCE8D3B}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DisplayLink/GraphicsDriver/11.7.5493.0/DisplayLink.GraphicsDriver.locale.en-US.yaml b/manifests/d/DisplayLink/GraphicsDriver/11.7.5493.0/DisplayLink.GraphicsDriver.locale.en-US.yaml new file mode 100644 index 0000000000000..86a430eab7f1d --- /dev/null +++ b/manifests/d/DisplayLink/GraphicsDriver/11.7.5493.0/DisplayLink.GraphicsDriver.locale.en-US.yaml @@ -0,0 +1,56 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DisplayLink.GraphicsDriver +PackageVersion: 11.7.5493.0 +PackageLocale: en-US +Publisher: DisplayLink Corp. +PublisherUrl: https://www.synaptics.com/ +PublisherSupportUrl: https://support.displaylink.com/ +PrivacyUrl: https://www.synaptics.com/privacy +Author: Displaylink (UK) Limited +PackageName: DisplayLink Graphics +PackageUrl: https://www.synaptics.com/products/displaylink-graphics +License: Proprietary +LicenseUrl: https://www.synaptics.com/legal +Copyright: © Copyright 2015-2024 DisplayLink +ShortDescription: Driver for DisplayLink USB graphics chipsets incorporated in your dock, adapter or monitor +Tags: +- displaylink +ReleaseNotes: |- + DisplayLink software release 11.7 delivers: + - New features for DL-7xxx series + - MSI installer for ARM64 + - General stability updates and bug fixes + + C1. Issues Fixed Since 11.6 M0 Release (11.6.7168.0) + Issues Fixed in 11.7 M3 Release (11.7.5493.0) + ---------------------------------------------------- + - DL-7xxx: Some monitors emits noise when changing resolution or frequency (VIFR-6027) + - DL-7xxx: Resolved an issue where certain monitors could intermittently blink during normal operation (VIFR-6380) + - DL-7xxx: Addressed an issue preventing some monitors from being activated (VIFR-6412) + + Issues Fixed in 11.7 M2 Release (11.7.5277.0) + ---------------------------------------------------- + - DL-7xxx: Monitors interoperability issues (VIFR-6199, VIFR-6200, VIFR-6278) + - DL-1xx: Monitor keeps reconnecting (VIFR-5564, VIFR-5497, VIFR-5576, VIFR-6237) + + Issues Fixed in 11.7 M1 Release (11.7.5026.0) + ---------------------------------------------------- + - DL-3xx0: Improved Ethernet stability after locking machine (VIFR-6044) + + Issues Fixed in 11.7 M0 Release (11.7.4969.0) + ---------------------------------------------------- + - Added extension INF for MS usbaudio2 driver that enables selective suspend during inactivity (VIFR-5435) + - DL-7xxx: Fixed driver stability issues that could lead to unexpected splash screen apperance during cold boot (VIFR-5828) + + Issues Fixed in 11.6 M1 Release (11.6.7533.0) + ---------------------------------------------------- + - DL-6xxx: Avoid blanking extended display while host PC is under heavy load. (VIFR-5507) + + Issues Fixed in 11.6 M0 Release (11.6.7168.0) + ---------------------------------------------------- + - DL-7xxx: Display drops to 640x480 resolution if connected via DP to HDMI active adapter. (VIFR-5406) +ReleaseNotesUrl: https://www.synaptics.com/sites/default/files/release_notes/2025-06/DisplayLink%20USB%20Graphics%20Software%20for%20Windows11.7%20M3-Release%20Notes.txt +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DisplayLink/GraphicsDriver/11.7.5493.0/DisplayLink.GraphicsDriver.locale.zh-CN.yaml b/manifests/d/DisplayLink/GraphicsDriver/11.7.5493.0/DisplayLink.GraphicsDriver.locale.zh-CN.yaml new file mode 100644 index 0000000000000..83455550969c7 --- /dev/null +++ b/manifests/d/DisplayLink/GraphicsDriver/11.7.5493.0/DisplayLink.GraphicsDriver.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: DisplayLink.GraphicsDriver +PackageVersion: 11.7.5493.0 +PackageLocale: zh-CN +Publisher: DisplayLink Corp. +PublisherUrl: https://www.synaptics.com/ +PublisherSupportUrl: https://support.displaylink.com/ +PrivacyUrl: https://www.synaptics.com/privacy +Author: Displaylink (UK) Limited +PackageName: DisplayLink Graphics +PackageUrl: https://www.synaptics.com/products/displaylink-graphics +License: 专有软件 +LicenseUrl: https://www.synaptics.com/legal +Copyright: © Copyright 2015-2024 DisplayLink +ShortDescription: 底座、适配器或显示器中集成的 DisplayLink USB 图形芯片组的驱动程序 +Tags: +- displaylink +ReleaseNotesUrl: https://www.synaptics.com/sites/default/files/release_notes/2025-06/DisplayLink%20USB%20Graphics%20Software%20for%20Windows11.7%20M3-Release%20Notes.txt +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DisplayLink/GraphicsDriver/11.7.5493.0/DisplayLink.GraphicsDriver.yaml b/manifests/d/DisplayLink/GraphicsDriver/11.7.5493.0/DisplayLink.GraphicsDriver.yaml new file mode 100644 index 0000000000000..20aad100d31f3 --- /dev/null +++ b/manifests/d/DisplayLink/GraphicsDriver/11.7.5493.0/DisplayLink.GraphicsDriver.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: DisplayLink.GraphicsDriver +PackageVersion: 11.7.5493.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DisplayLink/GraphicsDriver/HotDesking/11.7.5493.0/DisplayLink.GraphicsDriver.HotDesking.installer.yaml b/manifests/d/DisplayLink/GraphicsDriver/HotDesking/11.7.5493.0/DisplayLink.GraphicsDriver.HotDesking.installer.yaml new file mode 100644 index 0000000000000..f5bd2ae8735e8 --- /dev/null +++ b/manifests/d/DisplayLink/GraphicsDriver/HotDesking/11.7.5493.0/DisplayLink.GraphicsDriver.HotDesking.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: DisplayLink.GraphicsDriver.HotDesking +PackageVersion: 11.7.5493.0 +InstallerType: zip +NestedInstallerType: msi +Scope: machine +InstallerSwitches: + InstallLocation: APPDIR="" +UpgradeBehavior: install +ReleaseDate: 2025-06-16 +Installers: +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: HotDesking - Displaylink\DisplayLink_Win10RS.msi + InstallerUrl: https://www.synaptics.com/sites/default/files/msi_files/2025-06/DisplayLink%20USB%20Graphics%20Software%20for%20Windows%20with%20Hot%20Desking11.7%20M3-MSI.zip + InstallerSha256: E3946B07C4F2D82EE641FC287FCD84D7695E7ED465B45067AF4BFC88C81B0CB1 + ProductCode: '{CD1151B1-9F37-4E07-841A-58A9D51DC9AD}' +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: HotDesking - Displaylink\DisplayLink_arm64.msi + InstallerUrl: https://www.synaptics.com/sites/default/files/msi_files/2025-06/DisplayLink%20USB%20Graphics%20Software%20for%20Windows%20with%20Hot%20Desking11.7%20M3-MSI.zip + InstallerSha256: E3946B07C4F2D82EE641FC287FCD84D7695E7ED465B45067AF4BFC88C81B0CB1 + ProductCode: '{95E8CFF6-5F7A-4077-AF37-231808565455}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DisplayLink/GraphicsDriver/HotDesking/11.7.5493.0/DisplayLink.GraphicsDriver.HotDesking.locale.en-US.yaml b/manifests/d/DisplayLink/GraphicsDriver/HotDesking/11.7.5493.0/DisplayLink.GraphicsDriver.HotDesking.locale.en-US.yaml new file mode 100644 index 0000000000000..3b90bd32cf06b --- /dev/null +++ b/manifests/d/DisplayLink/GraphicsDriver/HotDesking/11.7.5493.0/DisplayLink.GraphicsDriver.HotDesking.locale.en-US.yaml @@ -0,0 +1,56 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DisplayLink.GraphicsDriver.HotDesking +PackageVersion: 11.7.5493.0 +PackageLocale: en-US +Publisher: DisplayLink Corp. +PublisherUrl: https://www.synaptics.com/ +PublisherSupportUrl: https://support.displaylink.com/ +PrivacyUrl: https://www.synaptics.com/privacy +Author: Displaylink (UK) Limited +PackageName: DisplayLink Graphics (with Hot Desking) +PackageUrl: https://www.synaptics.com/products/displaylink-graphics +License: Proprietary +LicenseUrl: https://www.synaptics.com/legal +Copyright: © Copyright 2015-2024 DisplayLink +ShortDescription: Driver for DisplayLink USB graphics chipsets incorporated in your dock, adapter or monitor in a hot desking and hoteling environment, where DisplayLink devices can be configured to apply a predefined layout automatically with display layout provisioning. +Tags: +- displaylink +ReleaseNotes: |- + DisplayLink software release 11.7 delivers: + - New features for DL-7xxx series + - MSI installer for ARM64 + - General stability updates and bug fixes + + C1. Issues Fixed Since 11.6 M0 Release (11.6.7168.0) + Issues Fixed in 11.7 M3 Release (11.7.5493.0) + ---------------------------------------------------- + - DL-7xxx: Some monitors emits noise when changing resolution or frequency (VIFR-6027) + - DL-7xxx: Resolved an issue where certain monitors could intermittently blink during normal operation (VIFR-6380) + - DL-7xxx: Addressed an issue preventing some monitors from being activated (VIFR-6412) + + Issues Fixed in 11.7 M2 Release (11.7.5277.0) + ---------------------------------------------------- + - DL-7xxx: Monitors interoperability issues (VIFR-6199, VIFR-6200, VIFR-6278) + - DL-1xx: Monitor keeps reconnecting (VIFR-5564, VIFR-5497, VIFR-5576, VIFR-6237) + + Issues Fixed in 11.7 M1 Release (11.7.5026.0) + ---------------------------------------------------- + - DL-3xx0: Improved Ethernet stability after locking machine (VIFR-6044) + + Issues Fixed in 11.7 M0 Release (11.7.4969.0) + ---------------------------------------------------- + - Added extension INF for MS usbaudio2 driver that enables selective suspend during inactivity (VIFR-5435) + - DL-7xxx: Fixed driver stability issues that could lead to unexpected splash screen apperance during cold boot (VIFR-5828) + + Issues Fixed in 11.6 M1 Release (11.6.7533.0) + ---------------------------------------------------- + - DL-6xxx: Avoid blanking extended display while host PC is under heavy load. (VIFR-5507) + + Issues Fixed in 11.6 M0 Release (11.6.7168.0) + ---------------------------------------------------- + - DL-7xxx: Display drops to 640x480 resolution if connected via DP to HDMI active adapter. (VIFR-5406) +ReleaseNotesUrl: https://www.synaptics.com/sites/default/files/release_notes/2025-06/DisplayLink%20USB%20Graphics%20Software%20for%20Windows%20with%20Hot%20Desking11.7%20M3-Release%20Notes.txt +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DisplayLink/GraphicsDriver/HotDesking/11.7.5493.0/DisplayLink.GraphicsDriver.HotDesking.locale.zh-CN.yaml b/manifests/d/DisplayLink/GraphicsDriver/HotDesking/11.7.5493.0/DisplayLink.GraphicsDriver.HotDesking.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a47c8bb8826ae --- /dev/null +++ b/manifests/d/DisplayLink/GraphicsDriver/HotDesking/11.7.5493.0/DisplayLink.GraphicsDriver.HotDesking.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: DisplayLink.GraphicsDriver.HotDesking +PackageVersion: 11.7.5493.0 +PackageLocale: zh-CN +Publisher: DisplayLink Corp. +PublisherUrl: https://www.synaptics.com/ +PublisherSupportUrl: https://support.displaylink.com/ +PrivacyUrl: https://www.synaptics.com/privacy +Author: Displaylink (UK) Limited +PackageName: DisplayLink Graphics (with Hot Desking) +PackageUrl: https://www.synaptics.com/products/displaylink-graphics +License: 专有软件 +LicenseUrl: https://www.synaptics.com/legal +Copyright: © Copyright 2015-2024 DisplayLink +ShortDescription: 用于在办公桌轮用或酒店环境中将 DisplayLink USB 图形芯片组集成到基座、适配器或显示器中的驱动程序。在这些环境中,DisplayLink 设备可通过显示布局配置自动应用预定义的布局。 +Tags: +- displaylink +ReleaseNotesUrl: https://www.synaptics.com/sites/default/files/release_notes/2025-06/DisplayLink%20USB%20Graphics%20Software%20for%20Windows%20with%20Hot%20Desking11.7%20M3-Release%20Notes.txt +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DisplayLink/GraphicsDriver/HotDesking/11.7.5493.0/DisplayLink.GraphicsDriver.HotDesking.yaml b/manifests/d/DisplayLink/GraphicsDriver/HotDesking/11.7.5493.0/DisplayLink.GraphicsDriver.HotDesking.yaml new file mode 100644 index 0000000000000..724e015f268a6 --- /dev/null +++ b/manifests/d/DisplayLink/GraphicsDriver/HotDesking/11.7.5493.0/DisplayLink.GraphicsDriver.HotDesking.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: DisplayLink.GraphicsDriver.HotDesking +PackageVersion: 11.7.5493.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerCLI/28.3.0/Docker.DockerCLI.installer.yaml b/manifests/d/Docker/DockerCLI/28.3.0/Docker.DockerCLI.installer.yaml new file mode 100644 index 0000000000000..ec8417ba8b72a --- /dev/null +++ b/manifests/d/Docker/DockerCLI/28.3.0/Docker.DockerCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Docker.DockerCLI +PackageVersion: 28.3.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: docker\docker.exe + PortableCommandAlias: docker +- RelativeFilePath: docker\dockerd.exe + PortableCommandAlias: dockerd +Installers: +- Architecture: x64 + InstallerUrl: https://download.docker.com/win/static/stable/x86_64/docker-28.3.0.zip + InstallerSha256: E775311A05F7829F9A3A46310A5CC8985427F42DEE4E57E4CFF364860C164D74 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerCLI/28.3.0/Docker.DockerCLI.locale.en-US.yaml b/manifests/d/Docker/DockerCLI/28.3.0/Docker.DockerCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..32bea3300fdba --- /dev/null +++ b/manifests/d/Docker/DockerCLI/28.3.0/Docker.DockerCLI.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Docker.DockerCLI +PackageVersion: 28.3.0 +PackageLocale: en-US +Publisher: Docker Inc. +PackageName: Docker CLI +License: Apache-2.0 +ShortDescription: Docker CLI & Docker Engine for Windows containers. Docker is an open platform for developing, shipping, and running applications. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerCLI/28.3.0/Docker.DockerCLI.yaml b/manifests/d/Docker/DockerCLI/28.3.0/Docker.DockerCLI.yaml new file mode 100644 index 0000000000000..fcadabd228931 --- /dev/null +++ b/manifests/d/Docker/DockerCLI/28.3.0/Docker.DockerCLI.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: Docker.DockerCLI +PackageVersion: 28.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerCLI/28.3.1/Docker.DockerCLI.installer.yaml b/manifests/d/Docker/DockerCLI/28.3.1/Docker.DockerCLI.installer.yaml new file mode 100644 index 0000000000000..22408f18d0604 --- /dev/null +++ b/manifests/d/Docker/DockerCLI/28.3.1/Docker.DockerCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Docker.DockerCLI +PackageVersion: 28.3.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: docker\docker.exe + PortableCommandAlias: docker +- RelativeFilePath: docker\dockerd.exe + PortableCommandAlias: dockerd +Installers: +- Architecture: x64 + InstallerUrl: https://download.docker.com/win/static/stable/x86_64/docker-28.3.1.zip + InstallerSha256: 8360CF63AC342B1ED29C9EC9CB816209E13B7CA381CCF1F7B602DD8284024382 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerCLI/28.3.1/Docker.DockerCLI.locale.en-US.yaml b/manifests/d/Docker/DockerCLI/28.3.1/Docker.DockerCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..083bd91025309 --- /dev/null +++ b/manifests/d/Docker/DockerCLI/28.3.1/Docker.DockerCLI.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Docker.DockerCLI +PackageVersion: 28.3.1 +PackageLocale: en-US +Publisher: Docker Inc. +PackageName: Docker CLI +License: Apache-2.0 +ShortDescription: Docker CLI & Docker Engine for Windows containers. Docker is an open platform for developing, shipping, and running applications. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerCLI/28.3.1/Docker.DockerCLI.yaml b/manifests/d/Docker/DockerCLI/28.3.1/Docker.DockerCLI.yaml new file mode 100644 index 0000000000000..1ae536039bf16 --- /dev/null +++ b/manifests/d/Docker/DockerCLI/28.3.1/Docker.DockerCLI.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: Docker.DockerCLI +PackageVersion: 28.3.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerCompose/2.37.3/Docker.DockerCompose.installer.yaml b/manifests/d/Docker/DockerCompose/2.37.3/Docker.DockerCompose.installer.yaml new file mode 100644 index 0000000000000..1d10327962d88 --- /dev/null +++ b/manifests/d/Docker/DockerCompose/2.37.3/Docker.DockerCompose.installer.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Docker.DockerCompose +PackageVersion: 2.37.3 +InstallerType: portable +Commands: +- docker-compose +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-windows-x86_64.exe + InstallerSha256: 771FEE0BAD6DADDE4EA68D99EC9AEFAFFCAB2574AD70E64B54560E4E139EB804 +- Architecture: arm64 + InstallerUrl: https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-windows-aarch64.exe + InstallerSha256: 34A520EB6D3858CE30A14A08DEC10C85B71F041582D9DC8CF3B4C6AEBF589538 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerCompose/2.37.3/Docker.DockerCompose.locale.en-US.yaml b/manifests/d/Docker/DockerCompose/2.37.3/Docker.DockerCompose.locale.en-US.yaml new file mode 100644 index 0000000000000..75da5f326569b --- /dev/null +++ b/manifests/d/Docker/DockerCompose/2.37.3/Docker.DockerCompose.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Docker.DockerCompose +PackageVersion: 2.37.3 +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 support for cache_to with bake by @ndeloof in #12959 + 🐛 Fixes + - fix bake intergation by @ndeloof in #12960 + - don't create services passed as parameters of run command during dependencies creation process by @glours in #12968 + - inject secrets/config just before container is started by @ndeloof in #12970 + - propagate target docker host set by --host to Bake by @ndeloof in #12961 + 🔧 Internal + - pkg/compose: remove uses of ExecOptions.Detach by @thaJeztah in #12950 + ⚙️ Dependencies + - build(deps): bump github.com/moby/buildkit from 0.23.0 to 0.23.1 by @dependabot in #12964 + Full Changelog: v2.37.2...v2.37.3 +ReleaseNotesUrl: https://github.com/docker/compose/releases/tag/v2.37.3 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerCompose/2.37.3/Docker.DockerCompose.yaml b/manifests/d/Docker/DockerCompose/2.37.3/Docker.DockerCompose.yaml new file mode 100644 index 0000000000000..14ebddc823896 --- /dev/null +++ b/manifests/d/Docker/DockerCompose/2.37.3/Docker.DockerCompose.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: Docker.DockerCompose +PackageVersion: 2.37.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerCompose/2.38.1/Docker.DockerCompose.installer.yaml b/manifests/d/Docker/DockerCompose/2.38.1/Docker.DockerCompose.installer.yaml new file mode 100644 index 0000000000000..13c86eeb9cd0b --- /dev/null +++ b/manifests/d/Docker/DockerCompose/2.38.1/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.1 +InstallerType: portable +Commands: +- docker-compose +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/docker/compose/releases/download/v2.38.1/docker-compose-windows-x86_64.exe + InstallerSha256: 1F50233952BDCEF70D4B753112363A67E9AF0F56A2EABFC9BA60444879B81638 +- Architecture: arm64 + InstallerUrl: https://github.com/docker/compose/releases/download/v2.38.1/docker-compose-windows-aarch64.exe + InstallerSha256: B063BEB4E2DE335C60EC8D62407635BAC54C2C85B9CBDBFED2A8654CF7F22404 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerCompose/2.38.1/Docker.DockerCompose.locale.en-US.yaml b/manifests/d/Docker/DockerCompose/2.38.1/Docker.DockerCompose.locale.en-US.yaml new file mode 100644 index 0000000000000..0df782f09a7fd --- /dev/null +++ b/manifests/d/Docker/DockerCompose/2.38.1/Docker.DockerCompose.locale.en-US.yaml @@ -0,0 +1,34 @@ +# 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.1 +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 + - implement model_variable by @ndeloof in #13001 + ⚙️ Dependencies + - bump compose-go to version v2.7.1 by @glours in #13000 + Full Changelog: v2.38.0...v2.38.1 +ReleaseNotesUrl: https://github.com/docker/compose/releases/tag/v2.38.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerCompose/2.38.1/Docker.DockerCompose.yaml b/manifests/d/Docker/DockerCompose/2.38.1/Docker.DockerCompose.yaml new file mode 100644 index 0000000000000..0cb3e6c0a6156 --- /dev/null +++ b/manifests/d/Docker/DockerCompose/2.38.1/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.1 +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/Docker/DockerDesktop/4.43.0/Docker.DockerDesktop.installer.yaml b/manifests/d/Docker/DockerDesktop/4.43.0/Docker.DockerDesktop.installer.yaml new file mode 100644 index 0000000000000..e078041d3639e --- /dev/null +++ b/manifests/d/Docker/DockerDesktop/4.43.0/Docker.DockerDesktop.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Docker.DockerDesktop +PackageVersion: 4.43.0 +InstallerLocale: en-US +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: install --quiet + SilentWithProgress: install --quiet +UpgradeBehavior: install +ReleaseDate: 2025-07-02 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://desktop.docker.com/win/main/amd64/198134/Docker%20Desktop%20Installer.exe + InstallerSha256: 706D65A38BB491BDC86E1BF8D01CE39952928962A257DF50F6D0C0890E27CCFF +- Architecture: arm64 + InstallerUrl: https://desktop.docker.com/win/main/arm64/198134/Docker%20Desktop%20Installer.exe + InstallerSha256: 1EE5E8E518F5042AA6B1D4D1C05FB6DA763734D498299216488A58BC7726CB49 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerDesktop/4.43.0/Docker.DockerDesktop.locale.en-US.yaml b/manifests/d/Docker/DockerDesktop/4.43.0/Docker.DockerDesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..3555967530e34 --- /dev/null +++ b/manifests/d/Docker/DockerDesktop/4.43.0/Docker.DockerDesktop.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Docker.DockerDesktop +PackageVersion: 4.43.0 +PackageLocale: en-US +Publisher: Docker Inc. +PublisherUrl: https://www.docker.com/ +PublisherSupportUrl: https://www.docker.com/support +PrivacyUrl: https://www.docker.com/legal/privacy +Author: Docker Inc. +PackageName: Docker Desktop +PackageUrl: https://www.docker.com/products/docker-desktop +License: Proprietary +LicenseUrl: https://www.docker.com/legal/docker-subscription-service-agreement +Copyright: Copyright © 2015-2024 Docker Inc. All rights reserved. +CopyrightUrl: https://www.docker.com/legal/docker-subscription-service-agreement +ShortDescription: Docker Desktop is an application for macOS and Windows machines for the building and sharing of containerized applications. +Description: Docker Desktop is an application for macOS and Windows machines for the building and sharing of containerized applications. Access Docker Desktop and follow the guided onboarding to build your first containerized application in minutes. +Moniker: docker +Tags: +- container +- containerization +- develop +- virtualization +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerDesktop/4.43.0/Docker.DockerDesktop.locale.zh-CN.yaml b/manifests/d/Docker/DockerDesktop/4.43.0/Docker.DockerDesktop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d5dbfcd006475 --- /dev/null +++ b/manifests/d/Docker/DockerDesktop/4.43.0/Docker.DockerDesktop.locale.zh-CN.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: Docker.DockerDesktop +PackageVersion: 4.43.0 +PackageLocale: zh-CN +Publisher: Docker Inc. +PublisherUrl: https://www.docker.com/ +PublisherSupportUrl: https://www.docker.com/support +PrivacyUrl: https://www.docker.com/legal/privacy +Author: Docker Inc. +PackageName: Docker Desktop +PackageUrl: https://www.docker.com/products/docker-desktop +License: 专有软件 +LicenseUrl: https://www.docker.com/legal/docker-subscription-service-agreement +Copyright: 版权所有 © 2015-2024 Docker Inc. 保留所有权利。 +CopyrightUrl: https://www.docker.com/legal/docker-subscription-service-agreement +ShortDescription: Docker Desktop 是一款适用于 macOS 和 Windows 设备的应用程序,用于构建和共享容器化应用程序。 +Description: Docker Desktop 是一款适用于 macOS 和 Windows 设备的应用程序,用于构建和共享容器化应用程序。访问 Docker Desktop 并按照指导入门,几分钟内就能构建你的第一个容器化应用程序。 +Tags: +- 容器 +- 容器化 +- 开发 +- 虚拟化 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerDesktop/4.43.0/Docker.DockerDesktop.yaml b/manifests/d/Docker/DockerDesktop/4.43.0/Docker.DockerDesktop.yaml new file mode 100644 index 0000000000000..643c18261ff2b --- /dev/null +++ b/manifests/d/Docker/DockerDesktop/4.43.0/Docker.DockerDesktop.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.DockerDesktop +PackageVersion: 4.43.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Doist/Todoist/9.18.0/Doist.Todoist.installer.yaml b/manifests/d/Doist/Todoist/9.18.0/Doist.Todoist.installer.yaml new file mode 100644 index 0000000000000..08590ef8f6222 --- /dev/null +++ b/manifests/d/Doist/Todoist/9.18.0/Doist.Todoist.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: Doist.Todoist +PackageVersion: 9.18.0 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +ExpectedReturnCodes: +- InstallerReturnCode: 2 + ReturnResponse: packageInUse +UpgradeBehavior: install +Protocols: +- todoist +ProductCode: 046cc9a8-e645-5367-8486-409093e0b69a +ReleaseDate: 2025-07-09 +Installers: +- Architecture: x64 + InstallerUrl: https://electron-dl.todoist.net/windows/Todoist-win32-9.18.0-x64-latest.exe + InstallerSha256: F33AC49E941E4408B24F3595FB4A5E257D151442AB5D916CCB23160816EEFCCC +- Architecture: arm64 + InstallerUrl: https://electron-dl.todoist.net/windows/Todoist-win32-9.18.0-arm64-latest.exe + InstallerSha256: B0815643CA1066FEF40598309F7EAAB26949D3BA846D138F7306A5E59D51B122 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Doist/Todoist/9.18.0/Doist.Todoist.locale.en-US.yaml b/manifests/d/Doist/Todoist/9.18.0/Doist.Todoist.locale.en-US.yaml new file mode 100644 index 0000000000000..8949968881b32 --- /dev/null +++ b/manifests/d/Doist/Todoist/9.18.0/Doist.Todoist.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: Doist.Todoist +PackageVersion: 9.18.0 +PackageLocale: en-US +Publisher: Doist +PublisherUrl: https://doist.com/ +PublisherSupportUrl: https://todoist.com/help +PrivacyUrl: https://doist.com/privacy +Author: Doist Inc. +PackageName: Todoist +PackageUrl: https://todoist.com/ +License: Proprietary +LicenseUrl: https://doist.com/terms-of-service +Copyright: Copyright © 2024 Doist +ShortDescription: 'Become focused, organized, and calm with Todoist. The world’s #1 task manager and to-do list app.' +Description: Todoist is the world's number 1 to-do list & task manager to organise your life and work. Regain clarity and calmness by getting tasks out of your head and into Todoist, no matter where you are or what device you use. +Tags: +- agenda +- calendar +- checklist +- collaborate +- collaboration +- gtd +- list +- schedule +- task +- to-do +- todo +ReleaseNotesUrl: https://todoist.com/help/articles/whats-new +PurchaseUrl: https://todoist.com/pricing +Documentations: +- DocumentLabel: Getting Started + DocumentUrl: https://todoist.com/help/articles/get-started-with-todoist-OgNNJR +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Doist/Todoist/9.18.0/Doist.Todoist.locale.zh-CN.yaml b/manifests/d/Doist/Todoist/9.18.0/Doist.Todoist.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9efeff927d3c7 --- /dev/null +++ b/manifests/d/Doist/Todoist/9.18.0/Doist.Todoist.locale.zh-CN.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Doist.Todoist +PackageVersion: 9.18.0 +PackageLocale: zh-CN +Publisher: Doist +PublisherUrl: https://doist.com/ +PublisherSupportUrl: https://todoist.com/zh-CN/help +PrivacyUrl: https://doist.com/privacy +Author: Doist Inc. +PackageName: Todoist +PackageUrl: https://todoist.com/zh-CN/ +License: 专有软件 +LicenseUrl: https://doist.com/terms-of-service +Copyright: Copyright © 2024 Doist +ShortDescription: 让 Todoist 帮助您变得专注、冷静、有条理。世界第一的任务管理器和待办事项应用。 +Description: Todoist 是世界上排名第一的待办事项和任务管理器,能让您的生活和工作井井有条。无论您身在何处,使用何种设备,都能将任务从脑海中移至 Todoist,从而保持冷静并有条理。 +Tags: +- 任务 +- 列表 +- 协作 +- 协同 +- 待办 +- 待办事项 +- 提醒事项 +- 日历 +- 日程 +- 日程管理 +- 时间管理 +- 清单 +- 议程 +ReleaseNotesUrl: https://todoist.com/zh-CN/help/articles/whats-new +PurchaseUrl: https://todoist.com/zh-CN/pricing +Documentations: +- DocumentLabel: 入门说明 + DocumentUrl: https://todoist.com/zh-CN/help/articles/get-started-with-todoist-OgNNJR +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Doist/Todoist/9.18.0/Doist.Todoist.yaml b/manifests/d/Doist/Todoist/9.18.0/Doist.Todoist.yaml new file mode 100644 index 0000000000000..455b4fa4250d0 --- /dev/null +++ b/manifests/d/Doist/Todoist/9.18.0/Doist.Todoist.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: Doist.Todoist +PackageVersion: 9.18.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DoltHub/Dolt/1.55.3/DoltHub.Dolt.installer.yaml b/manifests/d/DoltHub/Dolt/1.55.3/DoltHub.Dolt.installer.yaml new file mode 100644 index 0000000000000..c9a7fca32ed19 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.55.3/DoltHub.Dolt.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: DoltHub.Dolt +PackageVersion: 1.55.3 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ProductCode: '{B01847B0-3CCE-4821-92AC-1F082E1A753A}' +AppsAndFeaturesEntries: +- DisplayName: Dolt 1.55.3 + ProductCode: '{B01847B0-3CCE-4821-92AC-1F082E1A753A}' + UpgradeCode: '{6BC40754-759D-4899-9FD3-E6BE1823CACD}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Dolt' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dolthub/dolt/releases/download/v1.55.3/dolt-windows-amd64.msi + InstallerSha256: C1521617FCCA2324C03AD7AAEE7927E645A9A04737742D9AC864D0866F1F98AE +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-25 diff --git a/manifests/d/DoltHub/Dolt/1.55.3/DoltHub.Dolt.locale.en-US.yaml b/manifests/d/DoltHub/Dolt/1.55.3/DoltHub.Dolt.locale.en-US.yaml new file mode 100644 index 0000000000000..823c3bb0b6047 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.55.3/DoltHub.Dolt.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: DoltHub.Dolt +PackageVersion: 1.55.3 +PackageLocale: en-US +Publisher: DoltHub +PublisherUrl: https://github.com/dolthub/dolt +PublisherSupportUrl: https://github.com/dolthub/dolt/issues +Author: DoltHub +PackageName: Dolt +PackageUrl: https://www.dolthub.com/ +License: Apache-2.0 +LicenseUrl: https://github.com/dolthub/dolt/blob/HEAD/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/dolthub/dolt/master/LICENSE +ShortDescription: Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. +Description: |- + Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. + Connect to Dolt just like any MySQL database to run queries or update the data using SQL commands. + Use the command line interface to import CSV files, commit your changes, push them to a remote, or merge your teammate's changes. +Moniker: dolt +Tags: +- cli +- data +- git-for-data +- versioning +ReleaseNotesUrl: https://github.com/dolthub/dolt/releases/tag/v1.55.3 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/DoltHub/Dolt/1.55.3/DoltHub.Dolt.yaml b/manifests/d/DoltHub/Dolt/1.55.3/DoltHub.Dolt.yaml new file mode 100644 index 0000000000000..472e6222d6507 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.55.3/DoltHub.Dolt.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: DoltHub.Dolt +PackageVersion: 1.55.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/DoltHub/Dolt/1.55.4/DoltHub.Dolt.installer.yaml b/manifests/d/DoltHub/Dolt/1.55.4/DoltHub.Dolt.installer.yaml new file mode 100644 index 0000000000000..e4a537c5b3c93 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.55.4/DoltHub.Dolt.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: DoltHub.Dolt +PackageVersion: 1.55.4 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ProductCode: '{E93E4F9D-2804-4343-8F18-017249D429D0}' +AppsAndFeaturesEntries: +- DisplayName: Dolt 1.55.4 + ProductCode: '{E93E4F9D-2804-4343-8F18-017249D429D0}' + UpgradeCode: '{6BC40754-759D-4899-9FD3-E6BE1823CACD}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Dolt' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dolthub/dolt/releases/download/v1.55.4/dolt-windows-amd64.msi + InstallerSha256: 9AA80AEB5E8F22A6159D288DE76FFAC3FE9B7862BB90623D021B3C24C7A98BFF +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-02 diff --git a/manifests/d/DoltHub/Dolt/1.55.4/DoltHub.Dolt.locale.en-US.yaml b/manifests/d/DoltHub/Dolt/1.55.4/DoltHub.Dolt.locale.en-US.yaml new file mode 100644 index 0000000000000..b9f8245356393 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.55.4/DoltHub.Dolt.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: DoltHub.Dolt +PackageVersion: 1.55.4 +PackageLocale: en-US +Publisher: DoltHub +PublisherUrl: https://github.com/dolthub/dolt +PublisherSupportUrl: https://github.com/dolthub/dolt/issues +Author: DoltHub +PackageName: Dolt +PackageUrl: https://www.dolthub.com/ +License: Apache-2.0 +LicenseUrl: https://github.com/dolthub/dolt/blob/HEAD/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/dolthub/dolt/master/LICENSE +ShortDescription: Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. +Description: |- + Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. + Connect to Dolt just like any MySQL database to run queries or update the data using SQL commands. + Use the command line interface to import CSV files, commit your changes, push them to a remote, or merge your teammate's changes. +Moniker: dolt +Tags: +- cli +- data +- git-for-data +- versioning +ReleaseNotesUrl: https://github.com/dolthub/dolt/releases/tag/v1.55.4 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/DoltHub/Dolt/1.55.4/DoltHub.Dolt.yaml b/manifests/d/DoltHub/Dolt/1.55.4/DoltHub.Dolt.yaml new file mode 100644 index 0000000000000..d6af885a120b9 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.55.4/DoltHub.Dolt.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: DoltHub.Dolt +PackageVersion: 1.55.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/DoltHub/Dolt/1.55.5/DoltHub.Dolt.installer.yaml b/manifests/d/DoltHub/Dolt/1.55.5/DoltHub.Dolt.installer.yaml new file mode 100644 index 0000000000000..277de73ce06d3 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.55.5/DoltHub.Dolt.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: DoltHub.Dolt +PackageVersion: 1.55.5 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ProductCode: '{A8C92BA7-D5BC-433E-9908-21202450F2A0}' +AppsAndFeaturesEntries: +- DisplayName: Dolt 1.55.5 + ProductCode: '{A8C92BA7-D5BC-433E-9908-21202450F2A0}' + UpgradeCode: '{6BC40754-759D-4899-9FD3-E6BE1823CACD}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Dolt' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dolthub/dolt/releases/download/v1.55.5/dolt-windows-amd64.msi + InstallerSha256: 52B8030F1B42077A6F89AEF32941CD8D8E3D63D59F9346886CA7BB356854D0EA +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-08 diff --git a/manifests/d/DoltHub/Dolt/1.55.5/DoltHub.Dolt.locale.en-US.yaml b/manifests/d/DoltHub/Dolt/1.55.5/DoltHub.Dolt.locale.en-US.yaml new file mode 100644 index 0000000000000..800b01a32dc9a --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.55.5/DoltHub.Dolt.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: DoltHub.Dolt +PackageVersion: 1.55.5 +PackageLocale: en-US +Publisher: DoltHub +PublisherUrl: https://github.com/dolthub/dolt +PublisherSupportUrl: https://github.com/dolthub/dolt/issues +Author: DoltHub +PackageName: Dolt +PackageUrl: https://www.dolthub.com/ +License: Apache-2.0 +LicenseUrl: https://github.com/dolthub/dolt/blob/HEAD/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/dolthub/dolt/master/LICENSE +ShortDescription: Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. +Description: |- + Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. + Connect to Dolt just like any MySQL database to run queries or update the data using SQL commands. + Use the command line interface to import CSV files, commit your changes, push them to a remote, or merge your teammate's changes. +Moniker: dolt +Tags: +- cli +- data +- git-for-data +- versioning +ReleaseNotesUrl: https://github.com/dolthub/dolt/releases/tag/v1.55.5 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/DoltHub/Dolt/1.55.5/DoltHub.Dolt.yaml b/manifests/d/DoltHub/Dolt/1.55.5/DoltHub.Dolt.yaml new file mode 100644 index 0000000000000..ee2450335a5ca --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.55.5/DoltHub.Dolt.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: DoltHub.Dolt +PackageVersion: 1.55.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/DoltHub/Dolt/1.55.6/DoltHub.Dolt.installer.yaml b/manifests/d/DoltHub/Dolt/1.55.6/DoltHub.Dolt.installer.yaml new file mode 100644 index 0000000000000..b7878887e9ab3 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.55.6/DoltHub.Dolt.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: DoltHub.Dolt +PackageVersion: 1.55.6 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ProductCode: '{C6274A1B-603C-4DF5-85A3-B864E4B6009B}' +AppsAndFeaturesEntries: +- DisplayName: Dolt 1.55.6 + ProductCode: '{C6274A1B-603C-4DF5-85A3-B864E4B6009B}' + UpgradeCode: '{6BC40754-759D-4899-9FD3-E6BE1823CACD}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Dolt' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dolthub/dolt/releases/download/v1.55.6/dolt-windows-amd64.msi + InstallerSha256: 0966D89CC74A758B126A03ECCC249BD0839699B46A6A956961B5466D1F1F7D65 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-08 diff --git a/manifests/d/DoltHub/Dolt/1.55.6/DoltHub.Dolt.locale.en-US.yaml b/manifests/d/DoltHub/Dolt/1.55.6/DoltHub.Dolt.locale.en-US.yaml new file mode 100644 index 0000000000000..58c1f3a83b295 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.55.6/DoltHub.Dolt.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: DoltHub.Dolt +PackageVersion: 1.55.6 +PackageLocale: en-US +Publisher: DoltHub +PublisherUrl: https://github.com/dolthub/dolt +PublisherSupportUrl: https://github.com/dolthub/dolt/issues +Author: DoltHub +PackageName: Dolt +PackageUrl: https://www.dolthub.com/ +License: Apache-2.0 +LicenseUrl: https://github.com/dolthub/dolt/blob/HEAD/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/dolthub/dolt/master/LICENSE +ShortDescription: Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. +Description: |- + Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. + Connect to Dolt just like any MySQL database to run queries or update the data using SQL commands. + Use the command line interface to import CSV files, commit your changes, push them to a remote, or merge your teammate's changes. +Moniker: dolt +Tags: +- cli +- data +- git-for-data +- versioning +ReleaseNotesUrl: https://github.com/dolthub/dolt/releases/tag/v1.55.6 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/DoltHub/Dolt/1.55.6/DoltHub.Dolt.yaml b/manifests/d/DoltHub/Dolt/1.55.6/DoltHub.Dolt.yaml new file mode 100644 index 0000000000000..a09ea5f4c743f --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.55.6/DoltHub.Dolt.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: DoltHub.Dolt +PackageVersion: 1.55.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/Douyu/DouyuLive/8.9.5.1/Douyu.DouyuLive.installer.yaml b/manifests/d/Douyu/DouyuLive/8.9.5.1/Douyu.DouyuLive.installer.yaml new file mode 100644 index 0000000000000..8d83ee10d5ec6 --- /dev/null +++ b/manifests/d/Douyu/DouyuLive/8.9.5.1/Douyu.DouyuLive.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: Douyu.DouyuLive +PackageVersion: 8.9.5.1 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Protocols: +- dypcclient +ProductCode: 斗鱼直播 +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x86 + InstallerUrl: https://sta-op.douyucdn.cn/dypc-client/pkg/Douyu_Live_PC_Client/20250630114950634/DouyuLive_8.9.5.1_Server_1.1.1.4.exe + InstallerSha256: D235A6C8F6CB52227A76D0E08934D143D5E6F5EA6BF54407198C5905A5F79C7E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Douyu/DouyuLive/8.9.5.1/Douyu.DouyuLive.locale.en-US.yaml b/manifests/d/Douyu/DouyuLive/8.9.5.1/Douyu.DouyuLive.locale.en-US.yaml new file mode 100644 index 0000000000000..cc5f487f01f0f --- /dev/null +++ b/manifests/d/Douyu/DouyuLive/8.9.5.1/Douyu.DouyuLive.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: Douyu.DouyuLive +PackageVersion: 8.9.5.1 +PackageLocale: en-US +Publisher: 武汉斗鱼网络科技有限公司 +PublisherUrl: https://www.douyu.com +PublisherSupportUrl: https://kefu.douyu.com +PrivacyUrl: https://www.douyu.com/cms/ptgz/202008/06/16154.shtml +Author: Wuhan Douyu Network Technology Co., Ltd. +PackageName: 斗鱼直播 +PackageUrl: https://www.douyu.com/client +License: Proprietary +LicenseUrl: https://www.douyu.com/cms/ptgz/202007/31/16102.shtml +Copyright: Copyright (C) 2014-2024 武汉斗鱼网络科技有限公司. All Rights Reserved +ShortDescription: A HD entertainment live streaming platform focusing on gaming +Tags: +- live +- live-streaming +- livestreaming +- streaming +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Douyu/DouyuLive/8.9.5.1/Douyu.DouyuLive.locale.zh-CN.yaml b/manifests/d/Douyu/DouyuLive/8.9.5.1/Douyu.DouyuLive.locale.zh-CN.yaml new file mode 100644 index 0000000000000..916f0dd4c3c52 --- /dev/null +++ b/manifests/d/Douyu/DouyuLive/8.9.5.1/Douyu.DouyuLive.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: Douyu.DouyuLive +PackageVersion: 8.9.5.1 +PackageLocale: zh-CN +Publisher: 武汉斗鱼网络科技有限公司 +PublisherUrl: https://www.douyu.com +PublisherSupportUrl: https://kefu.douyu.com +PrivacyUrl: https://www.douyu.com/cms/ptgz/202008/06/16154.shtml +Author: 武汉斗鱼网络科技有限公司 +PackageName: 斗鱼直播 +PackageUrl: https://www.douyu.com/client +License: 专有软件 +LicenseUrl: https://www.douyu.com/cms/ptgz/202007/31/16102.shtml +Copyright: Copyright (C) 2014-2024 武汉斗鱼网络科技有限公司. All Rights Reserved +ShortDescription: 超高清游戏直播视频娱乐平台 +Tags: +- 直播 +ReleaseNotes: |- + 1. 二级分区支持跳转活动页 + 2. 新增房间在线榜,您的活跃值得被更多人看见 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Douyu/DouyuLive/8.9.5.1/Douyu.DouyuLive.yaml b/manifests/d/Douyu/DouyuLive/8.9.5.1/Douyu.DouyuLive.yaml new file mode 100644 index 0000000000000..a0ddf5b930a0a --- /dev/null +++ b/manifests/d/Douyu/DouyuLive/8.9.5.1/Douyu.DouyuLive.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: Douyu.DouyuLive +PackageVersion: 8.9.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Douyu/DouyuLive/8.9.6.2/Douyu.DouyuLive.installer.yaml b/manifests/d/Douyu/DouyuLive/8.9.6.2/Douyu.DouyuLive.installer.yaml new file mode 100644 index 0000000000000..c4290453610b1 --- /dev/null +++ b/manifests/d/Douyu/DouyuLive/8.9.6.2/Douyu.DouyuLive.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: Douyu.DouyuLive +PackageVersion: 8.9.6.2 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Protocols: +- dypcclient +ProductCode: 斗鱼直播 +ReleaseDate: 2025-07-09 +Installers: +- Architecture: x86 + InstallerUrl: https://sta-op.douyucdn.cn/dypc-client/pkg/Douyu_Live_PC_Client/20250709134910666/DouyuLive_8.9.6.2_Server_1.1.1.4.exe + InstallerSha256: 7CED8C2C826AB6F4BE6C86E5A459CB5C13EAE9A38DC4D8F0AA51C4AFC75501BB +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Douyu/DouyuLive/8.9.6.2/Douyu.DouyuLive.locale.en-US.yaml b/manifests/d/Douyu/DouyuLive/8.9.6.2/Douyu.DouyuLive.locale.en-US.yaml new file mode 100644 index 0000000000000..40cc00ad1055b --- /dev/null +++ b/manifests/d/Douyu/DouyuLive/8.9.6.2/Douyu.DouyuLive.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: Douyu.DouyuLive +PackageVersion: 8.9.6.2 +PackageLocale: en-US +Publisher: 武汉斗鱼网络科技有限公司 +PublisherUrl: https://www.douyu.com +PublisherSupportUrl: https://kefu.douyu.com +PrivacyUrl: https://www.douyu.com/cms/ptgz/202008/06/16154.shtml +Author: Wuhan Douyu Network Technology Co., Ltd. +PackageName: 斗鱼直播 +PackageUrl: https://www.douyu.com/client +License: Proprietary +LicenseUrl: https://www.douyu.com/cms/ptgz/202007/31/16102.shtml +Copyright: Copyright (C) 2014-2024 武汉斗鱼网络科技有限公司. All Rights Reserved +ShortDescription: A HD entertainment live streaming platform focusing on gaming +Tags: +- live +- live-streaming +- livestreaming +- streaming +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Douyu/DouyuLive/8.9.6.2/Douyu.DouyuLive.locale.zh-CN.yaml b/manifests/d/Douyu/DouyuLive/8.9.6.2/Douyu.DouyuLive.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3ee285f8821e5 --- /dev/null +++ b/manifests/d/Douyu/DouyuLive/8.9.6.2/Douyu.DouyuLive.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: Douyu.DouyuLive +PackageVersion: 8.9.6.2 +PackageLocale: zh-CN +Publisher: 武汉斗鱼网络科技有限公司 +PublisherUrl: https://www.douyu.com +PublisherSupportUrl: https://kefu.douyu.com +PrivacyUrl: https://www.douyu.com/cms/ptgz/202008/06/16154.shtml +Author: 武汉斗鱼网络科技有限公司 +PackageName: 斗鱼直播 +PackageUrl: https://www.douyu.com/client +License: 专有软件 +LicenseUrl: https://www.douyu.com/cms/ptgz/202007/31/16102.shtml +Copyright: Copyright (C) 2014-2024 武汉斗鱼网络科技有限公司. All Rights Reserved +ShortDescription: 超高清游戏直播视频娱乐平台 +Tags: +- 直播 +ReleaseNotes: |- + 1. 全新房间表情玩法已上线,快来直播间体验吧! + 2. 用户体验优化,看直播更加顺畅 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Douyu/DouyuLive/8.9.6.2/Douyu.DouyuLive.yaml b/manifests/d/Douyu/DouyuLive/8.9.6.2/Douyu.DouyuLive.yaml new file mode 100644 index 0000000000000..8d04bbb8df86c --- /dev/null +++ b/manifests/d/Douyu/DouyuLive/8.9.6.2/Douyu.DouyuLive.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: Douyu.DouyuLive +PackageVersion: 8.9.6.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Draftable/Draftable/25.6.100/Draftable.Draftable.installer.yaml b/manifests/d/Draftable/Draftable/25.6.100/Draftable.Draftable.installer.yaml new file mode 100644 index 0000000000000..69cdec623e88c --- /dev/null +++ b/manifests/d/Draftable/Draftable/25.6.100/Draftable.Draftable.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: Draftable.Draftable +PackageVersion: 25.6.100 +UpgradeBehavior: install +Protocols: +- draftable +Installers: +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://dl.draftable.com/desktop/DraftableDesktopSetup-25.6.100.exe + InstallerSha256: BDAE6CB6E6EBEA96565FD0AEC3FA16D2607A4461C32D82659DCABA4F6B76D2C5 + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: DraftableDesktop + AppsAndFeaturesEntries: + - DisplayName: DraftableDesktop + Publisher: DraftableDesktop +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://dl.draftable.com/desktop/DraftableDesktopSystem-25.6.100.msi + InstallerSha256: 5F99796FC2F89B877BF1D744971919C1B1EF6D77BCD560AAD6D2415F953AF32F + InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" + ProductCode: '{9C1B9BAA-AE1A-49D5-AA3C-8F728337A66E}' + AppsAndFeaturesEntries: + - UpgradeCode: '{CE9E15A5-3821-462C-9885-1714D08E79EC}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Draftable/Draftable/25.6.100/Draftable.Draftable.locale.en-US.yaml b/manifests/d/Draftable/Draftable/25.6.100/Draftable.Draftable.locale.en-US.yaml new file mode 100644 index 0000000000000..65a3e4382c28a --- /dev/null +++ b/manifests/d/Draftable/Draftable/25.6.100/Draftable.Draftable.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Draftable.Draftable +PackageVersion: 25.6.100 +PackageLocale: en-US +Publisher: Draftable +PublisherUrl: https://www.draftable.com/ +PrivacyUrl: https://www.draftable.com/privacy +Author: Draftable Pty Ltd +PackageName: Draftable Desktop +PackageUrl: https://www.draftable.com/download-draftable-desktop +License: Proprietary +LicenseUrl: https://www.draftable.com/product-terms +Copyright: © 2025 Draftable +CopyrightUrl: https://www.draftable.com/product-terms +ShortDescription: See all the changes in your documents, locally and offline. Take your work to the next level. +Tags: +- compare +- comparison +- diff +- difference +- docs +- document +PurchaseUrl: https://www.draftable.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Draftable/Draftable/25.6.100/Draftable.Draftable.locale.zh-CN.yaml b/manifests/d/Draftable/Draftable/25.6.100/Draftable.Draftable.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ed59696140dec --- /dev/null +++ b/manifests/d/Draftable/Draftable/25.6.100/Draftable.Draftable.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: Draftable.Draftable +PackageVersion: 25.6.100 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 在本地和离线状态下查看文档中的所有修改。将您的工作提升至新高度。 +Tags: +- 对比 +- 差异 +- 文档 +- 比对 +- 比较 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Draftable/Draftable/25.6.100/Draftable.Draftable.yaml b/manifests/d/Draftable/Draftable/25.6.100/Draftable.Draftable.yaml new file mode 100644 index 0000000000000..52de81d06c966 --- /dev/null +++ b/manifests/d/Draftable/Draftable/25.6.100/Draftable.Draftable.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: Draftable.Draftable +PackageVersion: 25.6.100 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Draftable/Draftable/25.6.200/Draftable.Draftable.installer.yaml b/manifests/d/Draftable/Draftable/25.6.200/Draftable.Draftable.installer.yaml new file mode 100644 index 0000000000000..b5d8a0d7bfa38 --- /dev/null +++ b/manifests/d/Draftable/Draftable/25.6.200/Draftable.Draftable.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: Draftable.Draftable +PackageVersion: 25.6.200 +UpgradeBehavior: install +Protocols: +- draftable +Installers: +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://dl.draftable.com/desktop/DraftableDesktopSetup-25.6.200.exe + InstallerSha256: F0CE16DF1F981B4AE4A58A42215F76928E7E10D5DCBAE8310C2A80A11E8ADA17 + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: DraftableDesktop + AppsAndFeaturesEntries: + - DisplayName: DraftableDesktop + Publisher: DraftableDesktop +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://dl.draftable.com/desktop/DraftableDesktopSystem-25.6.200.msi + InstallerSha256: 6C496567AB99517D8615528BFE47BC63CC77F68497A4BE91A80D95497E0FDADA + InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" + ProductCode: '{8ED4930C-172A-477E-B302-1EB9753083A1}' + AppsAndFeaturesEntries: + - UpgradeCode: '{CE9E15A5-3821-462C-9885-1714D08E79EC}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Draftable/Draftable/25.6.200/Draftable.Draftable.locale.en-US.yaml b/manifests/d/Draftable/Draftable/25.6.200/Draftable.Draftable.locale.en-US.yaml new file mode 100644 index 0000000000000..a089f304611f5 --- /dev/null +++ b/manifests/d/Draftable/Draftable/25.6.200/Draftable.Draftable.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Draftable.Draftable +PackageVersion: 25.6.200 +PackageLocale: en-US +Publisher: Draftable +PublisherUrl: https://www.draftable.com/ +PrivacyUrl: https://www.draftable.com/privacy +Author: Draftable Pty Ltd +PackageName: Draftable Desktop +PackageUrl: https://www.draftable.com/download-draftable-desktop +License: Proprietary +LicenseUrl: https://www.draftable.com/product-terms +Copyright: © 2025 Draftable +CopyrightUrl: https://www.draftable.com/product-terms +ShortDescription: See all the changes in your documents, locally and offline. Take your work to the next level. +Tags: +- compare +- comparison +- diff +- difference +- docs +- document +PurchaseUrl: https://www.draftable.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Draftable/Draftable/25.6.200/Draftable.Draftable.locale.zh-CN.yaml b/manifests/d/Draftable/Draftable/25.6.200/Draftable.Draftable.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fb7c3a36d24cb --- /dev/null +++ b/manifests/d/Draftable/Draftable/25.6.200/Draftable.Draftable.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: Draftable.Draftable +PackageVersion: 25.6.200 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 在本地和离线状态下查看文档中的所有修改。将您的工作提升至新高度。 +Tags: +- 对比 +- 差异 +- 文档 +- 比对 +- 比较 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Draftable/Draftable/25.6.200/Draftable.Draftable.yaml b/manifests/d/Draftable/Draftable/25.6.200/Draftable.Draftable.yaml new file mode 100644 index 0000000000000..63e3281169223 --- /dev/null +++ b/manifests/d/Draftable/Draftable/25.6.200/Draftable.Draftable.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: Draftable.Draftable +PackageVersion: 25.6.200 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dropbox/Dropbox/227.4.4774/Dropbox.Dropbox.installer.yaml b/manifests/d/Dropbox/Dropbox/227.4.4774/Dropbox.Dropbox.installer.yaml new file mode 100644 index 0000000000000..7baa260a5b600 --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/227.4.4774/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: 227.4.4774 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20227.4.4774%20Offline%20Installer.x86.exe + InstallerSha256: 26F7279E75EA0D187874C64904F354A6A27A6AC600F6FCD0FF3D2C709AD59303 +- Architecture: x64 + InstallerUrl: https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20227.4.4774%20Offline%20Installer.x64.exe + InstallerSha256: 5FE7BA8875BBB1F422E7542E428F9DBF7C9289FFC90645160734D778E73F2E7B +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/d/Dropbox/Dropbox/227.4.4774/Dropbox.Dropbox.locale.en-US.yaml b/manifests/d/Dropbox/Dropbox/227.4.4774/Dropbox.Dropbox.locale.en-US.yaml new file mode 100644 index 0000000000000..33af1b361c603 --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/227.4.4774/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: 227.4.4774 +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/d/Dropbox/Dropbox/227.4.4774/Dropbox.Dropbox.yaml b/manifests/d/Dropbox/Dropbox/227.4.4774/Dropbox.Dropbox.yaml new file mode 100644 index 0000000000000..74142dfa4e1c6 --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/227.4.4774/Dropbox.Dropbox.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: Dropbox.Dropbox +PackageVersion: 227.4.4774 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/Dropbox/Dropbox/228.3.5423/Dropbox.Dropbox.installer.yaml b/manifests/d/Dropbox/Dropbox/228.3.5423/Dropbox.Dropbox.installer.yaml new file mode 100644 index 0000000000000..7e1d57513c799 --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/228.3.5423/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.3.5423 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20228.3.5423%20Offline%20Installer.x86.exe + InstallerSha256: 0925BFAAC291DCF54611C4D1E53AC43941C524ECCE1474367A82CA8BE956426E +- Architecture: x64 + InstallerUrl: https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20228.3.5423%20Offline%20Installer.x64.exe + InstallerSha256: 66B6336DF2B3DFC0D031FFB2E454F7BD04974B50C4C5AAC50E955A8F45A003F5 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/d/Dropbox/Dropbox/228.3.5423/Dropbox.Dropbox.locale.en-US.yaml b/manifests/d/Dropbox/Dropbox/228.3.5423/Dropbox.Dropbox.locale.en-US.yaml new file mode 100644 index 0000000000000..27d2926be8cc6 --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/228.3.5423/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.3.5423 +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/d/Dropbox/Dropbox/228.3.5423/Dropbox.Dropbox.yaml b/manifests/d/Dropbox/Dropbox/228.3.5423/Dropbox.Dropbox.yaml new file mode 100644 index 0000000000000..1f4c99d76fd52 --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/228.3.5423/Dropbox.Dropbox.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: Dropbox.Dropbox +PackageVersion: 228.3.5423 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/Dropbox/Dropbox/228.3.5456/Dropbox.Dropbox.installer.yaml b/manifests/d/Dropbox/Dropbox/228.3.5456/Dropbox.Dropbox.installer.yaml new file mode 100644 index 0000000000000..c9b59f7792890 --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/228.3.5456/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.3.5456 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20228.3.5456%20Offline%20Installer.x86.exe + InstallerSha256: 5808FD8810FF94A4B1A35D685FA81382DF27EAFDC68EA9B4655C09252CDF9F9A +- Architecture: x64 + InstallerUrl: https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20228.3.5456%20Offline%20Installer.x64.exe + InstallerSha256: 68EC4CB0A1C017A245507864F30777D072F05E792446F3ED5C769F0BF3C9E124 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/d/Dropbox/Dropbox/228.3.5456/Dropbox.Dropbox.locale.en-US.yaml b/manifests/d/Dropbox/Dropbox/228.3.5456/Dropbox.Dropbox.locale.en-US.yaml new file mode 100644 index 0000000000000..762927af6fe00 --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/228.3.5456/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.3.5456 +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/d/Dropbox/Dropbox/228.3.5456/Dropbox.Dropbox.yaml b/manifests/d/Dropbox/Dropbox/228.3.5456/Dropbox.Dropbox.yaml new file mode 100644 index 0000000000000..873625517db8a --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/228.3.5456/Dropbox.Dropbox.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: Dropbox.Dropbox +PackageVersion: 228.3.5456 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/Dropbox/Dropbox/228.3.5516/Dropbox.Dropbox.installer.yaml b/manifests/d/Dropbox/Dropbox/228.3.5516/Dropbox.Dropbox.installer.yaml new file mode 100644 index 0000000000000..5a6d82d320f36 --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/228.3.5516/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.3.5516 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20228.3.5516%20Offline%20Installer.x86.exe + InstallerSha256: 706EB9102D95D076F7D0E7EDFEFC563C8837FBAACECE2404E92F4F82A281AF3A +- Architecture: x64 + InstallerUrl: https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20228.3.5516%20Offline%20Installer.x64.exe + InstallerSha256: 810DB85BC790135709570A7A4F9161E7A64082507B251CEEB08B411847B94B6B +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/d/Dropbox/Dropbox/228.3.5516/Dropbox.Dropbox.locale.en-US.yaml b/manifests/d/Dropbox/Dropbox/228.3.5516/Dropbox.Dropbox.locale.en-US.yaml new file mode 100644 index 0000000000000..cb34c7d07ab48 --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/228.3.5516/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.3.5516 +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/d/Dropbox/Dropbox/228.3.5516/Dropbox.Dropbox.yaml b/manifests/d/Dropbox/Dropbox/228.3.5516/Dropbox.Dropbox.yaml new file mode 100644 index 0000000000000..0ee7625c03503 --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/228.3.5516/Dropbox.Dropbox.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: Dropbox.Dropbox +PackageVersion: 228.3.5516 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.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/d/Dropbox/Dropbox/228.4.5567/Dropbox.Dropbox.yaml b/manifests/d/Dropbox/Dropbox/228.4.5567/Dropbox.Dropbox.yaml new file mode 100644 index 0000000000000..34a7785de1f6a --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/228.4.5567/Dropbox.Dropbox.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: Dropbox.Dropbox +PackageVersion: 228.4.5567 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/d/DuckDB/cli/1.3.2/DuckDB.cli.installer.yaml b/manifests/d/DuckDB/cli/1.3.2/DuckDB.cli.installer.yaml new file mode 100644 index 0000000000000..3df15c61c15bc --- /dev/null +++ b/manifests/d/DuckDB/cli/1.3.2/DuckDB.cli.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: DuckDB.cli +PackageVersion: 1.3.2 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: duckdb.exe +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/duckdb/duckdb/releases/download/v1.3.2/duckdb_cli-windows-amd64.zip + InstallerSha256: 0F20F96CC83540817E9E42F88D1F62E5452A9A2B4FCDEF7F97CFC94A971D313F +- Architecture: arm64 + InstallerUrl: https://github.com/duckdb/duckdb/releases/download/v1.3.2/duckdb_cli-windows-arm64.zip + InstallerSha256: C8093EF9BDFA27D06B3F4F3D9A858044B7EAC07E6A799012F5F722DC07242EB8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDB/cli/1.3.2/DuckDB.cli.locale.en-US.yaml b/manifests/d/DuckDB/cli/1.3.2/DuckDB.cli.locale.en-US.yaml new file mode 100644 index 0000000000000..a45136f128140 --- /dev/null +++ b/manifests/d/DuckDB/cli/1.3.2/DuckDB.cli.locale.en-US.yaml @@ -0,0 +1,88 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DuckDB.cli +PackageVersion: 1.3.2 +PackageLocale: en-US +Publisher: DuckDB +PublisherUrl: https://www.duckdb.org/ +PublisherSupportUrl: https://github.com/duckdb/duckdb/issues +Author: Stichting DuckDB Foundation +PackageName: DuckDB CLI +PackageUrl: https://github.com/duckdb/duckdb +License: MIT +LicenseUrl: https://github.com/duckdb/duckdb/blob/HEAD/LICENSE +Copyright: Copyright (c) Stichting DuckDB Foundation +CopyrightUrl: https://github.com/duckdb/duckdb/blob/master/LICENSE +ShortDescription: DuckDB is an in-process SQL OLAP Database Management System +Description: |- + DuckDB is a high-performance analytical database system. + It is designed to be fast, reliable and easy to use. + DuckDB provides a rich SQL dialect, with support far beyond basic SQL. +Moniker: duckdb-cli +Tags: +- analytics +- database +- embedded-database +- olap +- sql +ReleaseNotes: |- + This is a bug fix release for various issues discovered after we released 1.3.1. There are no new major features, just bug fixes. Database files created by DuckDB versions all the way back to v0.9 can be read by this version. + What's Changed + - bump julia to v1.3.1 by @c-herrewijn in #17966 + - [CI] adding DONT_LINK parameter to the test extension configuration for inet extension by @hmeriann in #17967 + - Eviction queue: Sort purged nodes and bulk re-add by @lnkuiper in #17913 + - Grab lock before finalizing dynamic filters by @lnkuiper in #17964 + - Issue #5144: AsOf Join Threshold by @hawkfish in #17978 + - Fix for IsDenseRange check in filter_combiner by @pdet in #17988 + - Use SharedLockTable in DataTable::Fetch by @Mytherin in #17983 + - On Windows CI use zip from msys2 instead of choco by @staticlibs in #17993 + - [FIX] Arrow ArrowBool8 Extension Type Add Validity Type Check by @rustyconover in #18005 + - Make test more lenient by @lnkuiper in #18022 + - Print internal exception stack traces on failed transaction rollback by @taniabogatsch in #18023 + - More fixes around GetDatabases by @taniabogatsch in #18024 + - [Fix] Binding error when resolving lambdas with a struct alias by @taniabogatsch in #18014 + - Disable constexpr std::mutex on Windows by @staticlibs in #17991 + - Use correct expression function after filter pushdown by @Tmonster in #17860 + - Implement bulk enqueue for non-concurrent queue by @lnkuiper in #18032 + - Bring back libduckdb-src.zip as release artifact by @mlafeldt in #18019 + - Issue #18035: Zero Fill TIMESTAMP_NS by @hawkfish in #18045 + - Fix handling dynamic table filters in RemoveUnusedColumns by @Damon07 in #18033 + - Fix incorrect results in index scan by @taniabogatsch in #18058 + - bump spatial (v1.3) by @Maxxen in #18059 + - constant or null can be replaced when argument is a bound column reg by @Tmonster in #18018 + - Issue #18047: TIMESTAMP_TZ Upcast Costs by @hawkfish in #18064 + - Properly handle empty RHS in IE Join by @lnkuiper in #18067 + - Avoid going too in-depth while computing join order by @carlopi in #17904 + - Main.yml: Move very long job from debug to release with -DDEBUG and FORCE_ASSERT by @carlopi in #18081 + - Run Python workflow against both Python 3.9 and 3.13 on PR to ensure … by @evertlammerts in #18080 + - fix statistics propagation for anti-joins on empty tables by @bradynwalsh in #17439 + - OSX.yml: Move from using debug builds to release + DDEBUG + FORCE_ASSERT by @carlopi in #18102 + - Fix copy constructor in SetVariableStatement by @staticlibs in #18101 + - [Parquet] Add write_bloom_filter flag to allow disabling of bloom filters by @Mytherin in #18093 + - Add Stack Trace marker to stack trace by @JelteF in #18089 + - Add missing INT128 to decimal Parquet reader switch by @lnkuiper in #18104 + - shared_ptr& must be reached from FileOpener by @carlopi in #18107 + - Cleanup on correct branch (1.3-ossivalis) instead of v1.2-histrionicus by @carlopi in #18111 + - Refactor extracting expressions for dynamic index scans by @lnkuiper in #18095 + - Add v1.3.2 to version_map.json and generate storage_info.cpp by @hmeriann in #18112 + - CI: Actually correctly skip building unnecessary extensions by @carlopi in #18119 + - Absorb patch from #18107 by @carlopi in #18114 + - Use unsigned hugeint for compressed materialization strings by @lnkuiper in #18128 + - Throw internal exception on corrupted roaring bitmap offsets by @taniabogatsch in #18130 + - Allow .tsv as an accepted db file by @pdet in #18133 + - Fixing CSV Fuzzer issues by @pdet in #18134 + - Bump iceberg for 1.3.2, from @Tishj, and bumping also httpfs by @carlopi in #18148 + - Internal #5245: AsOf NLJ Comparisons by @hawkfish in #18159 + - Add internal exceptions to compression paths to prevent segmentation violations by @taniabogatsch in #18151 + - Fix for arrow.json production extension type by @pdet in #18132 + - partially restore deprecated http logging settings by @samansmink in #18150 + - Bump for wasm fixes (excel and httpfs) and test fixes (iceberg) by @carlopi in #18167 + - bump spatial by @Maxxen in #18161 + - Bump sqlsmith and aws by @Tmonster in #18155 + - bump ducklake for v1.3.2. by @c-herrewijn in #18156 + - Bump spatial again: include re-linking for handling global objects in Wasm by @carlopi in #18170 + Full Changelog: v1.3.1...v1.3.2 +ReleaseNotesUrl: https://github.com/duckdb/duckdb/releases/tag/v1.3.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDB/cli/1.3.2/DuckDB.cli.yaml b/manifests/d/DuckDB/cli/1.3.2/DuckDB.cli.yaml new file mode 100644 index 0000000000000..1d8dc2054ebd1 --- /dev/null +++ b/manifests/d/DuckDB/cli/1.3.2/DuckDB.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: DuckDB.cli +PackageVersion: 1.3.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.116.6.0/DuckDuckGo.DesktopBrowser.installer.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.116.6.0/DuckDuckGo.DesktopBrowser.installer.yaml new file mode 100644 index 0000000000000..b553af4235443 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.116.6.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.116.6.0 +Platform: +- Windows.Desktop +- Windows.Universal +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +Protocols: +- http +- https +FileExtensions: +- htm +- html +- pdf +PackageFamilyName: DuckDuckGo.DesktopBrowser_ya2fgkz3nks94 +Installers: +- Architecture: x86 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/0.116.6.0/DuckDuckGo_0.116.6.0.msixbundle + InstallerSha256: B3643D8191D017F7D953751B0960B2F990BD0D5F7E24B108C3193257ED4D8871 + SignatureSha256: D6A84C9B3DE4E4742853A43791E47F08B8CEE14FAA38981C8ED4204219D51EC0 +- Architecture: x64 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/0.116.6.0/DuckDuckGo_0.116.6.0.msixbundle + InstallerSha256: B3643D8191D017F7D953751B0960B2F990BD0D5F7E24B108C3193257ED4D8871 + SignatureSha256: D6A84C9B3DE4E4742853A43791E47F08B8CEE14FAA38981C8ED4204219D51EC0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.116.6.0/DuckDuckGo.DesktopBrowser.locale.en-US.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.116.6.0/DuckDuckGo.DesktopBrowser.locale.en-US.yaml new file mode 100644 index 0000000000000..8a90e78b04f63 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.116.6.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.116.6.0 +PackageLocale: en-US +Publisher: DuckDuckGo +PublisherUrl: https://duckduckgo.com/ +PrivacyUrl: https://duckduckgo.com/privacy +Author: Duck Duck Go, Inc. +PackageName: DuckDuckGo +PackageUrl: https://duckduckgo.com/windows +License: Freeware +LicenseUrl: https://duckduckgo.com/terms +Copyright: © 2024 DuckDuckGo +ShortDescription: An everyday browser that truly protects your privacy. +Tags: +- browser +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.116.6.0/DuckDuckGo.DesktopBrowser.locale.zh-CN.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.116.6.0/DuckDuckGo.DesktopBrowser.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f6cc3961cd4da --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.116.6.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.116.6.0 +PackageLocale: zh-CN +Publisher: DuckDuckGo +PublisherUrl: https://duckduckgo.com/ +PrivacyUrl: https://duckduckgo.com/privacy +Author: Duck Duck Go, Inc. +PackageName: DuckDuckGo +PackageUrl: https://duckduckgo.com/windows +License: 免费软件 +LicenseUrl: https://duckduckgo.com/terms +Copyright: © 2024 DuckDuckGo +ShortDescription: 一款时刻并真正保护您隐私的浏览器 +Tags: +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.116.6.0/DuckDuckGo.DesktopBrowser.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.116.6.0/DuckDuckGo.DesktopBrowser.yaml new file mode 100644 index 0000000000000..1efd1d6c9c0c6 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.116.6.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.116.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.117.6.0/DuckDuckGo.DesktopBrowser.installer.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.6.0/DuckDuckGo.DesktopBrowser.installer.yaml new file mode 100644 index 0000000000000..dfed78d24f883 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.6.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.117.6.0 +Platform: +- Windows.Desktop +- Windows.Universal +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +Protocols: +- http +- https +FileExtensions: +- htm +- html +- pdf +PackageFamilyName: DuckDuckGo.DesktopBrowser_ya2fgkz3nks94 +Installers: +- Architecture: x86 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/0.117.6.0/DuckDuckGo_0.117.6.0.msixbundle + InstallerSha256: 53E90C782784DBA854069338E10E8FC900F98AF205414250AC343FC03F5735A4 + SignatureSha256: CA04953978EE1821FC9904C0544EB2CEB30D452FF04BC16BF93E7F6676E959F6 +- Architecture: x64 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/0.117.6.0/DuckDuckGo_0.117.6.0.msixbundle + InstallerSha256: 53E90C782784DBA854069338E10E8FC900F98AF205414250AC343FC03F5735A4 + SignatureSha256: CA04953978EE1821FC9904C0544EB2CEB30D452FF04BC16BF93E7F6676E959F6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.117.6.0/DuckDuckGo.DesktopBrowser.locale.en-US.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.6.0/DuckDuckGo.DesktopBrowser.locale.en-US.yaml new file mode 100644 index 0000000000000..72cc6a673812d --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.6.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.117.6.0 +PackageLocale: en-US +Publisher: DuckDuckGo +PublisherUrl: https://duckduckgo.com/ +PrivacyUrl: https://duckduckgo.com/privacy +Author: Duck Duck Go, Inc. +PackageName: DuckDuckGo +PackageUrl: https://duckduckgo.com/windows +License: Freeware +LicenseUrl: https://duckduckgo.com/terms +Copyright: © 2024 DuckDuckGo +ShortDescription: An everyday browser that truly protects your privacy. +Tags: +- browser +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.117.6.0/DuckDuckGo.DesktopBrowser.locale.zh-CN.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.6.0/DuckDuckGo.DesktopBrowser.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8d5506d71212f --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.6.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.117.6.0 +PackageLocale: zh-CN +Publisher: DuckDuckGo +PublisherUrl: https://duckduckgo.com/ +PrivacyUrl: https://duckduckgo.com/privacy +Author: Duck Duck Go, Inc. +PackageName: DuckDuckGo +PackageUrl: https://duckduckgo.com/windows +License: 免费软件 +LicenseUrl: https://duckduckgo.com/terms +Copyright: © 2024 DuckDuckGo +ShortDescription: 一款时刻并真正保护您隐私的浏览器 +Tags: +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.117.6.0/DuckDuckGo.DesktopBrowser.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.6.0/DuckDuckGo.DesktopBrowser.yaml new file mode 100644 index 0000000000000..eeb91ad453164 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.6.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.117.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.117.7.0/DuckDuckGo.DesktopBrowser.installer.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.7.0/DuckDuckGo.DesktopBrowser.installer.yaml new file mode 100644 index 0000000000000..dec225d8329a6 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.7.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.117.7.0 +Platform: +- Windows.Desktop +- Windows.Universal +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +Protocols: +- http +- https +FileExtensions: +- htm +- html +- pdf +PackageFamilyName: DuckDuckGo.DesktopBrowser_ya2fgkz3nks94 +Installers: +- Architecture: x86 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/0.117.7.0/DuckDuckGo_0.117.7.0.msixbundle + InstallerSha256: B9BA6AE1ACA1BF1D8939701B95438E0C0A72252EA3769756F13C15DFBE676FAB + SignatureSha256: CF01A929E574B5ED2BA111663DA6B3C1695D5D90B801631970542A224001664E +- Architecture: x64 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/0.117.7.0/DuckDuckGo_0.117.7.0.msixbundle + InstallerSha256: B9BA6AE1ACA1BF1D8939701B95438E0C0A72252EA3769756F13C15DFBE676FAB + SignatureSha256: CF01A929E574B5ED2BA111663DA6B3C1695D5D90B801631970542A224001664E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.117.7.0/DuckDuckGo.DesktopBrowser.locale.en-US.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.7.0/DuckDuckGo.DesktopBrowser.locale.en-US.yaml new file mode 100644 index 0000000000000..44f811b10455b --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.7.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.117.7.0 +PackageLocale: en-US +Publisher: DuckDuckGo +PublisherUrl: https://duckduckgo.com/ +PrivacyUrl: https://duckduckgo.com/privacy +Author: Duck Duck Go, Inc. +PackageName: DuckDuckGo +PackageUrl: https://duckduckgo.com/windows +License: Freeware +LicenseUrl: https://duckduckgo.com/terms +Copyright: © 2024 DuckDuckGo +ShortDescription: An everyday browser that truly protects your privacy. +Tags: +- browser +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.117.7.0/DuckDuckGo.DesktopBrowser.locale.zh-CN.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.7.0/DuckDuckGo.DesktopBrowser.locale.zh-CN.yaml new file mode 100644 index 0000000000000..627c2b881fc71 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.7.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.117.7.0 +PackageLocale: zh-CN +Publisher: DuckDuckGo +PublisherUrl: https://duckduckgo.com/ +PrivacyUrl: https://duckduckgo.com/privacy +Author: Duck Duck Go, Inc. +PackageName: DuckDuckGo +PackageUrl: https://duckduckgo.com/windows +License: 免费软件 +LicenseUrl: https://duckduckgo.com/terms +Copyright: © 2024 DuckDuckGo +ShortDescription: 一款时刻并真正保护您隐私的浏览器 +Tags: +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.117.7.0/DuckDuckGo.DesktopBrowser.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.7.0/DuckDuckGo.DesktopBrowser.yaml new file mode 100644 index 0000000000000..51197e3c98947 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.117.7.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.117.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.118.4.0/DuckDuckGo.DesktopBrowser.installer.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.118.4.0/DuckDuckGo.DesktopBrowser.installer.yaml new file mode 100644 index 0000000000000..9b5310e6790c6 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.118.4.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.118.4.0 +Platform: +- Windows.Desktop +- Windows.Universal +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +Protocols: +- http +- https +FileExtensions: +- htm +- html +- pdf +PackageFamilyName: DuckDuckGo.DesktopBrowser_ya2fgkz3nks94 +Installers: +- Architecture: x86 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/0.118.4.0/DuckDuckGo_0.118.4.0.msixbundle + InstallerSha256: 55CBEB0E0CAA9A1CC900E9FBC32EF2C5CD43D58F7EFE95A821AB1C9AD6F5407F + SignatureSha256: 17EE8BAF9ADE8AFA3CD7DAA00E9DE49D3C6B1642D3C6C5506ECA7FEDFC2D2592 +- Architecture: x64 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/0.118.4.0/DuckDuckGo_0.118.4.0.msixbundle + InstallerSha256: 55CBEB0E0CAA9A1CC900E9FBC32EF2C5CD43D58F7EFE95A821AB1C9AD6F5407F + SignatureSha256: 17EE8BAF9ADE8AFA3CD7DAA00E9DE49D3C6B1642D3C6C5506ECA7FEDFC2D2592 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.118.4.0/DuckDuckGo.DesktopBrowser.locale.en-US.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.118.4.0/DuckDuckGo.DesktopBrowser.locale.en-US.yaml new file mode 100644 index 0000000000000..ac0fe933ecf0e --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.118.4.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.118.4.0 +PackageLocale: en-US +Publisher: DuckDuckGo +PublisherUrl: https://duckduckgo.com/ +PrivacyUrl: https://duckduckgo.com/privacy +Author: Duck Duck Go, Inc. +PackageName: DuckDuckGo +PackageUrl: https://duckduckgo.com/windows +License: Freeware +LicenseUrl: https://duckduckgo.com/terms +Copyright: © 2024 DuckDuckGo +ShortDescription: An everyday browser that truly protects your privacy. +Tags: +- browser +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.118.4.0/DuckDuckGo.DesktopBrowser.locale.zh-CN.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.118.4.0/DuckDuckGo.DesktopBrowser.locale.zh-CN.yaml new file mode 100644 index 0000000000000..60ef712bd997d --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.118.4.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.118.4.0 +PackageLocale: zh-CN +Publisher: DuckDuckGo +PublisherUrl: https://duckduckgo.com/ +PrivacyUrl: https://duckduckgo.com/privacy +Author: Duck Duck Go, Inc. +PackageName: DuckDuckGo +PackageUrl: https://duckduckgo.com/windows +License: 免费软件 +LicenseUrl: https://duckduckgo.com/terms +Copyright: © 2024 DuckDuckGo +ShortDescription: 一款时刻并真正保护您隐私的浏览器 +Tags: +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.118.4.0/DuckDuckGo.DesktopBrowser.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.118.4.0/DuckDuckGo.DesktopBrowser.yaml new file mode 100644 index 0000000000000..119681a4aee12 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.118.4.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser +PackageVersion: 0.118.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.1/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.0.1/DuckStudio.Sundry.installer.yaml index 499b3519700b8..fbbec9fbfe578 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.1/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.1/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,20 +24,11 @@ Dependencies: InstallationMetadata: DefaultInstallLocation: '%ProgramFiles%\Sundry' Installers: - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.1/Sundry_Setup.exe - InstallerSha256: 66A11E4FB1E6C0EA9AF7BDBE1FB37D766BF699BDBF0CCE2B837759FDDB57F814 - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.1/Sundry_Setup.exe InstallerSha256: 66A11E4FB1E6C0EA9AF7BDBE1FB37D766BF699BDBF0CCE2B837759FDDB57F814 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.1/Sundry_Setup.exe - InstallerSha256: 66A11E4FB1E6C0EA9AF7BDBE1FB37D766BF699BDBF0CCE2B837759FDDB57F814 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.1/Sundry_Setup.exe InstallerSha256: 66A11E4FB1E6C0EA9AF7BDBE1FB37D766BF699BDBF0CCE2B837759FDDB57F814 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.1/Sundry_Setup.exe - InstallerSha256: 66A11E4FB1E6C0EA9AF7BDBE1FB37D766BF699BDBF0CCE2B837759FDDB57F814 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.1/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.0.1/DuckStudio.Sundry.locale.zh-CN.yaml index 487ed1b9f97a0..7c2416c759e9f 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.1/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.1/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.0.1/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.0.1/DuckStudio.Sundry.yaml index 42f6a1418b019..363800bf3722b 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.1/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.1/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.installer.yaml index 337793f7c2917..c799a060b435d 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,17 +26,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.10/Sundry_Setup.exe InstallerSha256: 4CC24495BFCFE24D88D714608B2A9B8707C9E1C591B0FFE780A964BAA47B9913 - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.10/Sundry_Setup.exe - InstallerSha256: 4CC24495BFCFE24D88D714608B2A9B8707C9E1C591B0FFE780A964BAA47B9913 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.10/Sundry_Setup.exe - InstallerSha256: 4CC24495BFCFE24D88D714608B2A9B8707C9E1C591B0FFE780A964BAA47B9913 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.10/Sundry_Setup.exe InstallerSha256: 4CC24495BFCFE24D88D714608B2A9B8707C9E1C591B0FFE780A964BAA47B9913 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.10/Sundry_Setup.exe - InstallerSha256: 4CC24495BFCFE24D88D714608B2A9B8707C9E1C591B0FFE780A964BAA47B9913 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.locale.en-US.yaml index 0ac6e3958f2ac..cab67c51af8eb 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.locale.zh-CN.yaml index a4eb59b0690e8..a9c9871e86188 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.yaml index 22a109987af00..0f437c3952401 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.10/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.installer.yaml index 2678287257686..c7d75af49c4be 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,17 +26,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.11/Sundry_Setup.exe InstallerSha256: 75F724B329F32F6FABD9618B7FD4EB5BFF53566F4DE909754664B16FD933C0D3 - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.11/Sundry_Setup.exe - InstallerSha256: 75F724B329F32F6FABD9618B7FD4EB5BFF53566F4DE909754664B16FD933C0D3 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.11/Sundry_Setup.exe - InstallerSha256: 75F724B329F32F6FABD9618B7FD4EB5BFF53566F4DE909754664B16FD933C0D3 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.11/Sundry_Setup.exe InstallerSha256: 75F724B329F32F6FABD9618B7FD4EB5BFF53566F4DE909754664B16FD933C0D3 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.11/Sundry_Setup.exe - InstallerSha256: 75F724B329F32F6FABD9618B7FD4EB5BFF53566F4DE909754664B16FD933C0D3 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.locale.en-US.yaml index 8e52184565dcd..d72f77ca6a626 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,6 +27,7 @@ Tags: ReleaseNotes: |- New feature: - feat: direct repr text (#4) by @DuckDuckStudio + Full Changelog: https://github.com/DuckDuckStudio/Sundry/compare/1.0.10...1.0.11 ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.0.11 ManifestType: locale diff --git a/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.locale.zh-CN.yaml index c32a9652588d2..e610369a0d19d 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -30,7 +30,8 @@ Tags: ReleaseNotes: |- 新功能 - feat: 直接 repr 文本 (#4) by @DuckDuckStudio - 完整提交记录: https://github.com/DuckDuckStudio/Sundry/compare/1.0.10...1.0.11 + + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.0.10...1.0.11 ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.0.11 ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.yaml index 041cd54bc5fde..0c2d7d9f44fd5 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.11/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.0.2/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.0.2/DuckStudio.Sundry.installer.yaml index ee0723ced3c74..24dedddc505cb 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.2/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.2/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,17 +27,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.2/Sundry_Setup.exe InstallerSha256: 64180FB5ACD8CBC464AD0F0AFD00C2114B76295FDC9DEA109129703EE9C3FF3A - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.2/Sundry_Setup.exe - InstallerSha256: 64180FB5ACD8CBC464AD0F0AFD00C2114B76295FDC9DEA109129703EE9C3FF3A - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.2/Sundry_Setup.exe - InstallerSha256: 64180FB5ACD8CBC464AD0F0AFD00C2114B76295FDC9DEA109129703EE9C3FF3A - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.2/Sundry_Setup.exe InstallerSha256: 64180FB5ACD8CBC464AD0F0AFD00C2114B76295FDC9DEA109129703EE9C3FF3A - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.2/Sundry_Setup.exe - InstallerSha256: 64180FB5ACD8CBC464AD0F0AFD00C2114B76295FDC9DEA109129703EE9C3FF3A ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.2/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.0.2/DuckStudio.Sundry.locale.zh-CN.yaml index 486a964a1dfe1..e28773b15df9f 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.2/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.2/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,12 +24,12 @@ Tags: - 清单 - 移除 - 辅助更新 -ReleaseNotes: |- +ReleaseNotes: | 新功能 - feat: 配置提交是否签名 by @DuckDuckStudio in #2 修复 - fix: 修复一些已知错误 (包括 #1) by @DuckDuckStudio in #2 - Full Changelog: https://github.com/DuckDuckStudio/Sundry/compare/1.0.1...1.0.2 + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.0.1...1.0.2 ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.0.2 ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.2/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.0.2/DuckStudio.Sundry.yaml index 4d8e1e8f139e1..0f1d797b67321 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.2/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.2/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.installer.yaml index 858aea5c29969..2021604cb966d 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,17 +27,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.3/Sundry_Setup.exe InstallerSha256: 72076B95F4508D3515E11671576EF21362868DFC325C582EF14D4BD0C4429632 - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.3/Sundry_Setup.exe - InstallerSha256: 72076B95F4508D3515E11671576EF21362868DFC325C582EF14D4BD0C4429632 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.3/Sundry_Setup.exe - InstallerSha256: 72076B95F4508D3515E11671576EF21362868DFC325C582EF14D4BD0C4429632 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.3/Sundry_Setup.exe InstallerSha256: 72076B95F4508D3515E11671576EF21362868DFC325C582EF14D4BD0C4429632 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.3/Sundry_Setup.exe - InstallerSha256: 72076B95F4508D3515E11671576EF21362868DFC325C582EF14D4BD0C4429632 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.locale.en-US.yaml index f112f15fb5c9b..2d314ed2c5e17 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - Modify - Remove - winget-tools -ReleaseNotes: |- +ReleaseNotes: | New Features - feat: control check switch while modifying the reason Full Changelog: https://github.com/DuckDuckStudio/Sundry/compare/1.0.2...1.0.3 diff --git a/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.locale.zh-CN.yaml index 39a23679d6074..82fd7eaa90ce3 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.yaml index 3b7f46f5cb595..bef8d6021359c 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.3/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.installer.yaml index 912a9ae11e06a..1331333897739 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,17 +27,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.4/Sundry_Setup.exe InstallerSha256: B77EDA80FAEFB1E046D5D0937B0BED55203C72A6B463A289663986D2CD3BA109 - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.4/Sundry_Setup.exe - InstallerSha256: B77EDA80FAEFB1E046D5D0937B0BED55203C72A6B463A289663986D2CD3BA109 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.4/Sundry_Setup.exe - InstallerSha256: B77EDA80FAEFB1E046D5D0937B0BED55203C72A6B463A289663986D2CD3BA109 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.4/Sundry_Setup.exe InstallerSha256: B77EDA80FAEFB1E046D5D0937B0BED55203C72A6B463A289663986D2CD3BA109 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.4/Sundry_Setup.exe - InstallerSha256: B77EDA80FAEFB1E046D5D0937B0BED55203C72A6B463A289663986D2CD3BA109 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.locale.en-US.yaml index 5a6a214acd34f..06d64a2167389 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | 新功能 - feat: 同步本地仓库 master 分支 修复 diff --git a/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.locale.zh-CN.yaml index 3e49586f2cf57..e0fdc5a00a349 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,7 +27,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | 新功能 - feat: 同步本地仓库 master 分支 修复 @@ -39,7 +39,7 @@ ReleaseNotes: |- - chore(ver): Bump version from 1.0.3 to 1.0.4 - feat(build): 打包时自动修改版本号 - feat(build): 自动创建 winget-pkgs 更新请求 - Full Changelog: https://github.com/DuckDuckStudio/Sundry/compare/1.0.3...1.0.4 + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.0.3...1.0.4 ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.0.4 ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.yaml index 2a47f38a0b702..f7c60201a0017 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.4/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.installer.yaml index 48fde99e6c128..6c0f97f9422bf 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,17 +27,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.5/Sundry_Setup.exe InstallerSha256: 8C0BABCA7482F91ED25F395B64F06F856CD20FADCC782E2BA4226A247255C058 - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.5/Sundry_Setup.exe - InstallerSha256: 8C0BABCA7482F91ED25F395B64F06F856CD20FADCC782E2BA4226A247255C058 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.5/Sundry_Setup.exe - InstallerSha256: 8C0BABCA7482F91ED25F395B64F06F856CD20FADCC782E2BA4226A247255C058 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.5/Sundry_Setup.exe InstallerSha256: 8C0BABCA7482F91ED25F395B64F06F856CD20FADCC782E2BA4226A247255C058 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.5/Sundry_Setup.exe - InstallerSha256: 8C0BABCA7482F91ED25F395B64F06F856CD20FADCC782E2BA4226A247255C058 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.locale.en-US.yaml index 78ba3f10e64a2..49fdfa9f93bb2 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | 修复 - fix: 更正 help 输出 新功能 diff --git a/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.locale.zh-CN.yaml index 3d4daa8c584fa..a5947aeb1b7cc 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,12 +27,12 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | 修复 - fix: 更正 help 输出 新功能 - feat: 添加查看清单的 cat 命令 - Full Changelog: https://github.com/DuckDuckStudio/Sundry/compare/1.0.4...1.0.5 + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.0.4...1.0.5 ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.0.5 ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.yaml index 9f8eb5f14b0d0..aad1284e23d16 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.5/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.installer.yaml index 2253429911d85..df36f71260d49 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,20 +24,11 @@ ElevationRequirement: elevatesSelf InstallationMetadata: DefaultInstallLocation: '%ProgramFiles%\Sundry' Installers: - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.6/Sundry_Setup.exe - InstallerSha256: 5EA9BB91EAED49A74600C9D93D4794FB29E37112FC90BA8158FD56D7698F457D - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.6/Sundry_Setup.exe InstallerSha256: 5EA9BB91EAED49A74600C9D93D4794FB29E37112FC90BA8158FD56D7698F457D - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.6/Sundry_Setup.exe - InstallerSha256: 5EA9BB91EAED49A74600C9D93D4794FB29E37112FC90BA8158FD56D7698F457D - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.6/Sundry_Setup.exe InstallerSha256: 5EA9BB91EAED49A74600C9D93D4794FB29E37112FC90BA8158FD56D7698F457D - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.6/Sundry_Setup.exe - InstallerSha256: 5EA9BB91EAED49A74600C9D93D4794FB29E37112FC90BA8158FD56D7698F457D ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.locale.en-US.yaml index df09a342285ca..9efc997fe3a7d 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,9 +24,9 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | ## 修复 - fix(sync): 补全取消逻辑 - **Full Changelog**: https://github.com/DuckDuckStudio/Sundry/compare/1.0.5...1.0.6 + Full Changelog: https://github.com/DuckDuckStudio/Sundry/compare/1.0.5...1.0.6 ManifestType: locale ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.locale.zh-CN.yaml index 50e20bd211451..07aa9373817da 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,10 +27,10 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | 修复 - fix(sync): 补全取消逻辑 - Full Changelog: https://github.com/DuckDuckStudio/Sundry/compare/1.0.5...1.0.6 + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.0.5...1.0.6 ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.0.6 ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.yaml index 943950693738b..627589b897eaf 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.6/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.installer.yaml index 43fede718f965..79cae8bfcb3e4 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,20 +24,11 @@ ElevationRequirement: elevatesSelf InstallationMetadata: DefaultInstallLocation: '%ProgramFiles%\Sundry' Installers: - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.7/Sundry_Setup.exe - InstallerSha256: 4F886E9B98EF1F64FA841E7A500B5C144A1C3D386B1F1D8401787B57C5E435F4 - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.7/Sundry_Setup.exe InstallerSha256: 4F886E9B98EF1F64FA841E7A500B5C144A1C3D386B1F1D8401787B57C5E435F4 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.7/Sundry_Setup.exe - InstallerSha256: 4F886E9B98EF1F64FA841E7A500B5C144A1C3D386B1F1D8401787B57C5E435F4 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.7/Sundry_Setup.exe InstallerSha256: 4F886E9B98EF1F64FA841E7A500B5C144A1C3D386B1F1D8401787B57C5E435F4 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.7/Sundry_Setup.exe - InstallerSha256: 4F886E9B98EF1F64FA841E7A500B5C144A1C3D386B1F1D8401787B57C5E435F4 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.locale.en-US.yaml index 6eb73f50809d1..af2cabaff05be 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,7 +26,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | ## Fixes - fix: Load manifest as plain text instead of yaml to fix incorrect order and missing comments - fix: Fix build not adding fun.txt to packaged Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.locale.zh-CN.yaml index 7de77deb03918..46eef772dbee6 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,13 +27,13 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | ## 修复 - fix: 将清单作为 纯文本 加载而不是 yaml 以解决顺序不正确和注释丢失的问题 - fix: 修正 build 中没有对打包后的 Sundry 添加 fun.txt 的问题 ## 杂项 - chore(deps): 移除不再需要的 pyyaml - Full Changelog: https://github.com/DuckDuckStudio/Sundry/compare/1.0.6...1.0.7 + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.0.6...1.0.7 ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.0.7 ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.yaml index 5b2188048fa9b..7d0764c55e409 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.7/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.installer.yaml index bfcfff8619b53..2634af223ae7d 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -23,20 +23,11 @@ ElevationRequirement: elevatesSelf InstallationMetadata: DefaultInstallLocation: '%ProgramFiles%\Sundry' Installers: - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.8/Sundry_Setup.exe - InstallerSha256: 3E2D993EDE106B56377CCD92D7AE7F0C86C9D6E0123EE490C1A1233B9C58FB03 - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.8/Sundry_Setup.exe InstallerSha256: 3E2D993EDE106B56377CCD92D7AE7F0C86C9D6E0123EE490C1A1233B9C58FB03 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.8/Sundry_Setup.exe - InstallerSha256: 3E2D993EDE106B56377CCD92D7AE7F0C86C9D6E0123EE490C1A1233B9C58FB03 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.8/Sundry_Setup.exe InstallerSha256: 3E2D993EDE106B56377CCD92D7AE7F0C86C9D6E0123EE490C1A1233B9C58FB03 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.8/Sundry_Setup.exe - InstallerSha256: 3E2D993EDE106B56377CCD92D7AE7F0C86C9D6E0123EE490C1A1233B9C58FB03 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.locale.en-US.yaml index 92c0596375ae2..749af67a9dced 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | Fix - fix: Fix incorrect error message when fetch upstream fails Full Changelog: https://github.com/DuckDuckStudio/Sundry/compare/1.0.7...1.0.8 diff --git a/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.locale.zh-CN.yaml index e0af8678e1e83..3c8efa1a53584 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,10 +27,10 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | 修复 - fix: 修复 fetch 上游失败时显示错误的错误信息的问题 - 完整提交记录: https://github.com/DuckDuckStudio/Sundry/compare/1.0.7...1.0.8 + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.0.7...1.0.8 ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.0.8 ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.yaml index d867c7306c2b3..5c0f015abecfc 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.8/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.installer.yaml index d487f86890a98..c7c470f1b280c 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,17 +26,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.9/Sundry_Setup.exe InstallerSha256: 9110BA2E09F75A37936E4B8CED861FB40AF3AD34A7BCCA06F6D3E0A624656BAD - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.9/Sundry_Setup.exe - InstallerSha256: 9110BA2E09F75A37936E4B8CED861FB40AF3AD34A7BCCA06F6D3E0A624656BAD - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.9/Sundry_Setup.exe - InstallerSha256: 9110BA2E09F75A37936E4B8CED861FB40AF3AD34A7BCCA06F6D3E0A624656BAD - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.9/Sundry_Setup.exe InstallerSha256: 9110BA2E09F75A37936E4B8CED861FB40AF3AD34A7BCCA06F6D3E0A624656BAD - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.0.9/Sundry_Setup.exe - InstallerSha256: 9110BA2E09F75A37936E4B8CED861FB40AF3AD34A7BCCA06F6D3E0A624656BAD ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.locale.en-US.yaml index 224e2dae7a69f..92976398d10f3 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | Fix - fix: correct "sundry cat" calls Optimization diff --git a/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.locale.zh-CN.yaml index 650ff24bb3ea0..5e0e237feb00b 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,14 +27,14 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | 修复 - fix: 更正 "sundry cat" 调用 优化 - pref: 没提供调用或错误的调用时执行 "sundry help" 新功能 - feat: 新命令 "sundry repr" - 完整提交记录: https://github.com/DuckDuckStudio/Sundry/compare/1.0.8...1.0.9 + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.0.8...1.0.9 ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.0.9 ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.yaml index 93d0730aace72..5bc1e38fe3a57 100644 --- a/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.0.9/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.installer.yaml index 350f13b7e47f7..7369a9ec8e18e 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,17 +26,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.0/Sundry_Setup.exe InstallerSha256: A41F995F05D2108F76EFA537B55A09A61A79A62B02CC9C4CB3CB7A9B4939712C - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.0/Sundry_Setup.exe - InstallerSha256: A41F995F05D2108F76EFA537B55A09A61A79A62B02CC9C4CB3CB7A9B4939712C - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.0/Sundry_Setup.exe - InstallerSha256: A41F995F05D2108F76EFA537B55A09A61A79A62B02CC9C4CB3CB7A9B4939712C - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.0/Sundry_Setup.exe InstallerSha256: A41F995F05D2108F76EFA537B55A09A61A79A62B02CC9C4CB3CB7A9B4939712C - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.0/Sundry_Setup.exe - InstallerSha256: A41F995F05D2108F76EFA537B55A09A61A79A62B02CC9C4CB3CB7A9B4939712C ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.locale.en-US.yaml index 3979f280df05c..da1534537bff3 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | Miscellaneous - chore(config): Move config file to user folder to avoid overwriting on update. by @DuckDuckStudio See the description in [README](https://github.com/DuckDuckStudio/Sundry?tab=readme-ov-file#使用说明) for more information on the changes. diff --git a/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.locale.zh-CN.yaml index bcaf89a2ae7ca..f4a867b524459 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,7 +27,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | 杂项 - chore(config): 将配置文件移至用户文件夹下以避免更新时覆盖 by @DuckDuckStudio 参阅 [README](https://github.com/DuckDuckStudio/Sundry?tab=readme-ov-file#使用说明) 中的描述以进一步了解修改 diff --git a/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.yaml index 735769e911f09..c07569cf3470f 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.0/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.installer.yaml index 717ed8b40b1b8..76bc3d4cb0911 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,17 +26,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.1/Sundry_Setup.exe InstallerSha256: CE3D67A3DA07E8BEC77D56EDE756E03F87C4B5FC6FFF534773FD4C7A9127556D - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.1/Sundry_Setup.exe - InstallerSha256: CE3D67A3DA07E8BEC77D56EDE756E03F87C4B5FC6FFF534773FD4C7A9127556D - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.1/Sundry_Setup.exe - InstallerSha256: CE3D67A3DA07E8BEC77D56EDE756E03F87C4B5FC6FFF534773FD4C7A9127556D - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.1/Sundry_Setup.exe InstallerSha256: CE3D67A3DA07E8BEC77D56EDE756E03F87C4B5FC6FFF534773FD4C7A9127556D - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.1/Sundry_Setup.exe - InstallerSha256: CE3D67A3DA07E8BEC77D56EDE756E03F87C4B5FC6FFF534773FD4C7A9127556D ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.locale.en-US.yaml index e98282f3d94b4..13eab278ca7d0 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | Fix - fix: Fix the issue where the sync command does not remove the old master branch when replacing the master branch. by @DuckDuckStudio Full Changelog: https://github.com/DuckDuckStudio/Sundry/compare/1.1.0...1.1.1 diff --git a/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.locale.zh-CN.yaml index 9048de31b0891..e4f99013191ea 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,7 +27,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | 修复 - fix: 修复 sync 命令在替换 master 分支时没有移除旧的 master 分支的问题 by @DuckDuckStudio 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.1.0...1.1.1 diff --git a/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.yaml index 999e5ba6e384f..33d364a3b90aa 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.1/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.installer.yaml index 62beb0f950e24..1161a31f41ca3 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,17 +26,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.10/Sundry_Setup.exe InstallerSha256: 67D94F2F5CF61749D0843761BE54CF984533C3DE3D3A62A5BFC1F144FA29CE16 - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.10/Sundry_Setup.exe - InstallerSha256: 67D94F2F5CF61749D0843761BE54CF984533C3DE3D3A62A5BFC1F144FA29CE16 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.10/Sundry_Setup.exe - InstallerSha256: 67D94F2F5CF61749D0843761BE54CF984533C3DE3D3A62A5BFC1F144FA29CE16 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.10/Sundry_Setup.exe InstallerSha256: 67D94F2F5CF61749D0843761BE54CF984533C3DE3D3A62A5BFC1F144FA29CE16 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.10/Sundry_Setup.exe - InstallerSha256: 67D94F2F5CF61749D0843761BE54CF984533C3DE3D3A62A5BFC1F144FA29CE16 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.locale.en-US.yaml index 05a0ca9621288..6d7b1f77094ee 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | > There's a project that's getting smaller and smaller in the star list. 🤔 Optimization - pref: Some small optimizations by @DuckDuckStudio in #8 diff --git a/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.locale.zh-CN.yaml index f5ca65e942ff8..49bd63580ad8b 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,7 +27,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | > 星标列表里有个越更新越小的项目 🤔 优化 - pref: 一些小优化 by @DuckDuckStudio in #8 diff --git a/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.yaml index 77196318916e4..555f999de9b50 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.10/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.installer.yaml index 2e738fde1c53c..b5bc1682a9da2 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,17 +26,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.11/Sundry_Setup.exe InstallerSha256: 00DB53EB4FDB7A63A91547DEC818D676ED6F5B2E695C33695148C68D5E9E71B9 - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.11/Sundry_Setup.exe - InstallerSha256: 00DB53EB4FDB7A63A91547DEC818D676ED6F5B2E695C33695148C68D5E9E71B9 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.11/Sundry_Setup.exe - InstallerSha256: 00DB53EB4FDB7A63A91547DEC818D676ED6F5B2E695C33695148C68D5E9E71B9 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.11/Sundry_Setup.exe InstallerSha256: 00DB53EB4FDB7A63A91547DEC818D676ED6F5B2E695C33695148C68D5E9E71B9 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.11/Sundry_Setup.exe - InstallerSha256: 00DB53EB4FDB7A63A91547DEC818D676ED6F5B2E695C33695148C68D5E9E71B9 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.locale.en-US.yaml index 77fa08afbad6c..82767c2d6dc54 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | 新功能 - feat: cat 清单时给出清单绝对路径 by @DuckDuckStudio 修复 diff --git a/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.locale.zh-CN.yaml index 8f899c8dcbda3..ba0ef540afe81 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,7 +27,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | 新功能 - feat: cat 清单时给出清单绝对路径 by @DuckDuckStudio 修复 diff --git a/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.yaml index 6c6ed8aeee628..fed2a91e116d1 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.11/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.installer.yaml index 2913603a4ed45..cb9122ad84b06 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,17 +26,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.12/Sundry_Setup.exe InstallerSha256: 5FA336476CADD5867015CBFF7A2EC70E47B0A20C920D79E0816610BBDE453655 - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.12/Sundry_Setup.exe - InstallerSha256: 5FA336476CADD5867015CBFF7A2EC70E47B0A20C920D79E0816610BBDE453655 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.12/Sundry_Setup.exe - InstallerSha256: 5FA336476CADD5867015CBFF7A2EC70E47B0A20C920D79E0816610BBDE453655 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.12/Sundry_Setup.exe InstallerSha256: 5FA336476CADD5867015CBFF7A2EC70E47B0A20C920D79E0816610BBDE453655 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.12/Sundry_Setup.exe - InstallerSha256: 5FA336476CADD5867015CBFF7A2EC70E47B0A20C920D79E0816610BBDE453655 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.locale.en-US.yaml index 38768efb967d8..ec09faa397182 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -23,7 +23,7 @@ Tags: - Remove - WinGet - winget-pkgs -ReleaseNotes: |- +ReleaseNotes: | ## 优化 - pref(remove): 优化 WinGet 验证逻辑 by @DuckDuckStudio - feat: 在分支名中添加时间戳以确保分支名唯一 by @DuckDuckStudio diff --git a/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.locale.zh-CN.yaml index 418baa551486e..1981702f9a861 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,7 +26,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | ## 优化 - pref(remove): 优化 WinGet 验证逻辑 by @DuckDuckStudio - feat: 在分支名中添加时间戳以确保分支名唯一 by @DuckDuckStudio diff --git a/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.yaml index d75cde8c2623b..5e69031b7d411 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.12/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.installer.yaml index 3d47661974554..1141fb31628ef 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -23,20 +23,11 @@ ElevationRequirement: elevatesSelf InstallationMetadata: DefaultInstallLocation: '%ProgramFiles%\Sundry' Installers: - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.13/Sundry_Setup.exe - InstallerSha256: 25F5E2BF0775F496D4AC01CA98E4F2DECBA7034FFE74B6661D866929FD220A93 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.13/Sundry_Setup.exe - InstallerSha256: 25F5E2BF0775F496D4AC01CA98E4F2DECBA7034FFE74B6661D866929FD220A93 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.13/Sundry_Setup.exe InstallerSha256: 25F5E2BF0775F496D4AC01CA98E4F2DECBA7034FFE74B6661D866929FD220A93 - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.13/Sundry_Setup.exe InstallerSha256: 25F5E2BF0775F496D4AC01CA98E4F2DECBA7034FFE74B6661D866929FD220A93 - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.13/Sundry_Setup.exe - InstallerSha256: 25F5E2BF0775F496D4AC01CA98E4F2DECBA7034FFE74B6661D866929FD220A93 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.locale.en-US.yaml index 16ee351007e7e..8cb02c010162a 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -23,7 +23,7 @@ Tags: - Remove - WinGet - winget-pkgs -ReleaseNotes: |- +ReleaseNotes: | ## 牢记八个凡是,构建全民反诈新格局 - 凡是要求垫付资金做任务的兼职刷单,都是诈骗! - 凡是宣称“内幕消息、专家指导、稳赚不赔、高额回报”的投资理财,都是诈骗! diff --git a/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.locale.zh-CN.yaml index a5f287939aeaa..16d206778e523 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,7 +26,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | ## 牢记八个凡是,构建全民反诈新格局 - 凡是要求垫付资金做任务的兼职刷单,都是诈骗! - 凡是宣称“内幕消息、专家指导、稳赚不赔、高额回报”的投资理财,都是诈骗! diff --git a/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.yaml index 82269a238091b..58f62a7b0967e 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.13/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.installer.yaml index eb27f528a7c7a..4a008b70a4757 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,30 +27,6 @@ Installers: - silentWithProgress InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.14/Sundry_Setup.exe InstallerSha256: B1AE4F2FDBD5768CDFD5ED137909AE66852AA3919044639F1596C4789B62DB6D - - Architecture: x86 - InstallerType: inno - Scope: machine - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Sundry' - InstallModes: - - interactive - - silent - - silentWithProgress - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.14/Sundry_Setup.exe - InstallerSha256: B1AE4F2FDBD5768CDFD5ED137909AE66852AA3919044639F1596C4789B62DB6D - - Architecture: arm - InstallerType: inno - Scope: machine - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Sundry' - InstallModes: - - interactive - - silent - - silentWithProgress - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.14/Sundry_Setup.exe - InstallerSha256: B1AE4F2FDBD5768CDFD5ED137909AE66852AA3919044639F1596C4789B62DB6D - Architecture: arm64 InstallerType: inno Scope: machine @@ -63,18 +39,6 @@ Installers: - silentWithProgress InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.14/Sundry_Setup.exe InstallerSha256: B1AE4F2FDBD5768CDFD5ED137909AE66852AA3919044639F1596C4789B62DB6D - - Architecture: neutral - InstallerType: inno - Scope: machine - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Sundry' - InstallModes: - - interactive - - silent - - silentWithProgress - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.14/Sundry_Setup.exe - InstallerSha256: B1AE4F2FDBD5768CDFD5ED137909AE66852AA3919044639F1596C4789B62DB6D # zip + portable - Architecture: x64 @@ -84,20 +48,6 @@ Installers: - RelativeFilePath: Release/pack/sundry.exe InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.14/Sundry.zip InstallerSha256: E143BCF852E94F73E6E2DAA1896FD295408042A57F8E47A754DA6389B4435DD9 - - Architecture: x86 - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: Release/pack/sundry.exe - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.14/Sundry.zip - InstallerSha256: E143BCF852E94F73E6E2DAA1896FD295408042A57F8E47A754DA6389B4435DD9 - - Architecture: arm - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: Release/pack/sundry.exe - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.14/Sundry.zip - InstallerSha256: E143BCF852E94F73E6E2DAA1896FD295408042A57F8E47A754DA6389B4435DD9 - Architecture: arm64 InstallerType: zip NestedInstallerType: portable @@ -105,12 +55,5 @@ Installers: - RelativeFilePath: Release/pack/sundry.exe InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.14/Sundry.zip InstallerSha256: E143BCF852E94F73E6E2DAA1896FD295408042A57F8E47A754DA6389B4435DD9 - - Architecture: neutral - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: Release/pack/sundry.exe - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.14/Sundry.zip - InstallerSha256: E143BCF852E94F73E6E2DAA1896FD295408042A57F8E47A754DA6389B4435DD9 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.locale.en-US.yaml index 21098423e1c14..357bf5aa6eb31 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -23,7 +23,7 @@ Tags: - Remove - WinGet - winget-pkgs -ReleaseNotes: |- +ReleaseNotes: | ## 优化 - pref(remove): 优化手动验证结果处理逻辑,支持多行验证结果(\n换行)by @DuckDuckStudio diff --git a/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.locale.zh-CN.yaml index e3ecd8c55221e..0e85658f61915 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,7 +26,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | ## 优化 - pref(remove): 优化手动验证结果处理逻辑,支持多行验证结果(\n换行)by @DuckDuckStudio diff --git a/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.yaml index 5832f90085a17..5153e0bc85488 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.14/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.installer.yaml index ee6c37723ff16..30eef0befb934 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,17 +26,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.2/Sundry_Setup.exe InstallerSha256: 3F002C62B5D277740FC0A541D98830B40136CACCAB04CE60AD6D53D4A9F3E6FE - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.2/Sundry_Setup.exe - InstallerSha256: 3F002C62B5D277740FC0A541D98830B40136CACCAB04CE60AD6D53D4A9F3E6FE - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.2/Sundry_Setup.exe - InstallerSha256: 3F002C62B5D277740FC0A541D98830B40136CACCAB04CE60AD6D53D4A9F3E6FE - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.2/Sundry_Setup.exe InstallerSha256: 3F002C62B5D277740FC0A541D98830B40136CACCAB04CE60AD6D53D4A9F3E6FE - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.2/Sundry_Setup.exe - InstallerSha256: 3F002C62B5D277740FC0A541D98830B40136CACCAB04CE60AD6D53D4A9F3E6FE ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.locale.en-US.yaml index 00c4848784626..c47c13854f465 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | Improvements: - pref: Improved exception handling for the sundry sync command. by @DuckDuckStudio Bug Fixes: diff --git a/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.locale.zh-CN.yaml index 459fca42854b6..730c0cb4678e5 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,7 +27,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | 优化 - pref: 优化 sundry sync 命令的异常处理 by @DuckDuckStudio 修复 diff --git a/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.yaml index db8619c6ff013..6bca425bfeb5c 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.2/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.installer.yaml index cba3edcf64352..8bcd06595b48f 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,17 +26,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.3/Sundry_Setup.exe InstallerSha256: 5D5616F724985598FF2C7A1579EB13C96F52C2010BC17A133C563064D61CBFA4 - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.3/Sundry_Setup.exe - InstallerSha256: 5D5616F724985598FF2C7A1579EB13C96F52C2010BC17A133C563064D61CBFA4 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.3/Sundry_Setup.exe - InstallerSha256: 5D5616F724985598FF2C7A1579EB13C96F52C2010BC17A133C563064D61CBFA4 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.3/Sundry_Setup.exe InstallerSha256: 5D5616F724985598FF2C7A1579EB13C96F52C2010BC17A133C563064D61CBFA4 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.3/Sundry_Setup.exe - InstallerSha256: 5D5616F724985598FF2C7A1579EB13C96F52C2010BC17A133C563064D61CBFA4 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.locale.en-US.yaml index 3112374525cf9..90574631af3de 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | Fixes - fix: correct variable scoping for sundry remove by @DuckDuckStudio - fix: update outdate index error hints by @DuckDuckStudio diff --git a/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.locale.zh-CN.yaml index 4c9a8e511efe5..da34a4c5c63db 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,7 +27,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | 修复 - fix: 更正 sundry remove 的变量范围 by @DuckDuckStudio - fix: 更新过时的索引越界提示 by @DuckDuckStudio diff --git a/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.yaml index 27b59b8620d01..e1f6a654fa32f 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.3/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.installer.yaml index 56d1491b4eff7..1721bc42f8311 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,17 +26,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.4/Sundry_Setup.exe InstallerSha256: 03B6CE2DC9D41A4C862B2CD1428CA23AE5CAD6367F3A5F4F1CCE53F922AD3144 - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.4/Sundry_Setup.exe - InstallerSha256: 03B6CE2DC9D41A4C862B2CD1428CA23AE5CAD6367F3A5F4F1CCE53F922AD3144 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.4/Sundry_Setup.exe - InstallerSha256: 03B6CE2DC9D41A4C862B2CD1428CA23AE5CAD6367F3A5F4F1CCE53F922AD3144 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.4/Sundry_Setup.exe InstallerSha256: 03B6CE2DC9D41A4C862B2CD1428CA23AE5CAD6367F3A5F4F1CCE53F922AD3144 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.4/Sundry_Setup.exe - InstallerSha256: 03B6CE2DC9D41A4C862B2CD1428CA23AE5CAD6367F3A5F4F1CCE53F922AD3144 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.locale.en-US.yaml index 4159aca31f280..329a3ffc42ca4 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | New - feat: Push to remote (origin) after sync. by @DuckDuckStudio Full Changelog: https://github.com/DuckDuckStudio/Sundry/compare/1.1.3...1.1.4 diff --git a/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.locale.zh-CN.yaml index bd1873cfd06ae..8b6542c6c43d7 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,7 +27,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | 新功能 - feat: 同步后推送至远程 (origin) by @DuckDuckStudio 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.1.3...1.1.4 diff --git a/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.yaml index 49ac1a99abe32..5eea8e08a5bac 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.4/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.installer.yaml index 02dc336ce8184..d85194f072e48 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,17 +26,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.6/Sundry_Setup.exe InstallerSha256: E408BEC154A01B9911030B90B7FB7D2D5C15E3ADD1EAA9870F23F269053D6080 - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.6/Sundry_Setup.exe - InstallerSha256: E408BEC154A01B9911030B90B7FB7D2D5C15E3ADD1EAA9870F23F269053D6080 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.6/Sundry_Setup.exe - InstallerSha256: E408BEC154A01B9911030B90B7FB7D2D5C15E3ADD1EAA9870F23F269053D6080 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.6/Sundry_Setup.exe InstallerSha256: E408BEC154A01B9911030B90B7FB7D2D5C15E3ADD1EAA9870F23F269053D6080 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.6/Sundry_Setup.exe - InstallerSha256: E408BEC154A01B9911030B90B7FB7D2D5C15E3ADD1EAA9870F23F269053D6080 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.locale.en-US.yaml index ae0178cfc36b0..c12349aa0f065 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | Refactor - refactor: refactor script command calls. by @DuckDuckStudio - fix: fix parameter passing exception in version 1.1.5. by @DuckDuckStudio diff --git a/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.locale.zh-CN.yaml index 6c90dc83dddab..5676589434715 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,7 +27,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | 重构 - refactor: 重构命令脚本调用方式 by @DuckDuckStudio - fix: 修复 1.1.5 版本的参数传递异常 by @DuckDuckStudio diff --git a/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.yaml index 93471a508c981..e3f90dd5ce496 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.6/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.installer.yaml index 2b17146e8dc59..8224b4c4e2217 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,17 +26,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.7/Sundry_Setup.exe InstallerSha256: 6C00EF5F26974E98822BC8765A84310A9FE5AE7F4DF0808F08CFEFA9267E8BD3 - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.7/Sundry_Setup.exe - InstallerSha256: 6C00EF5F26974E98822BC8765A84310A9FE5AE7F4DF0808F08CFEFA9267E8BD3 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.7/Sundry_Setup.exe - InstallerSha256: 6C00EF5F26974E98822BC8765A84310A9FE5AE7F4DF0808F08CFEFA9267E8BD3 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.7/Sundry_Setup.exe InstallerSha256: 6C00EF5F26974E98822BC8765A84310A9FE5AE7F4DF0808F08CFEFA9267E8BD3 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.7/Sundry_Setup.exe - InstallerSha256: 6C00EF5F26974E98822BC8765A84310A9FE5AE7F4DF0808F08CFEFA9267E8BD3 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.locale.en-US.yaml index 8064b2875414d..9a8d6ea2b5268 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | Fix - fix: Fix cat command: UnboundLocalError: cannot access local variable '区域设置' where it is not associated with a value. (#6) by @DuckDuckStudio Full changelog: https://github.com/DuckDuckStudio/Sundry/compare/1.1.6...1.1.7 diff --git a/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.locale.zh-CN.yaml index c3885b38fe57a..5ff7b81a1b23d 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,7 +27,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | 修复 - fix: 修复 cat 命令在使用变量 "区域设置" 前未定义的问题 (#6) by @DuckDuckStudio 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.1.6...1.1.7 diff --git a/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.yaml index d98636e3fa4e7..af863f8890105 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.7/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.installer.yaml index bcd02b52b65b8..986e3a336998a 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,17 +26,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.8/Sundry_Setup.exe InstallerSha256: AA6E090BA5196BEC61DEBB5FC293B939C4E456D72D4463545E83F2EF9F5E1240 - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.8/Sundry_Setup.exe - InstallerSha256: AA6E090BA5196BEC61DEBB5FC293B939C4E456D72D4463545E83F2EF9F5E1240 - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.8/Sundry_Setup.exe - InstallerSha256: AA6E090BA5196BEC61DEBB5FC293B939C4E456D72D4463545E83F2EF9F5E1240 - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.8/Sundry_Setup.exe InstallerSha256: AA6E090BA5196BEC61DEBB5FC293B939C4E456D72D4463545E83F2EF9F5E1240 - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.8/Sundry_Setup.exe - InstallerSha256: AA6E090BA5196BEC61DEBB5FC293B939C4E456D72D4463545E83F2EF9F5E1240 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.locale.en-US.yaml index 435fc0751d669..5d831491b988f 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | Optimization - pref: Optimize manual validation logic and input handling by @DuckDuckStudio Miscellaneous diff --git a/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.locale.zh-CN.yaml index 607143cbbd350..933e88e50d560 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,7 +27,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | 优化 - pref: 优化手动验证逻辑和输入处理 by @DuckDuckStudio 杂项 diff --git a/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.yaml index c96e6ebb20438..78d06ac214178 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.8/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.installer.yaml index 657e0ffd3a9d6..55eb20b123c78 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,17 +26,8 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.9/Sundry_Setup.exe InstallerSha256: 092F6BC31DEEDB00827C9A2BF1BBD91E61078FD8A5E1176D9F6AC1E1937F651A - - Architecture: x86 - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.9/Sundry_Setup.exe - InstallerSha256: 092F6BC31DEEDB00827C9A2BF1BBD91E61078FD8A5E1176D9F6AC1E1937F651A - - Architecture: arm - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.9/Sundry_Setup.exe - InstallerSha256: 092F6BC31DEEDB00827C9A2BF1BBD91E61078FD8A5E1176D9F6AC1E1937F651A - Architecture: arm64 InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.9/Sundry_Setup.exe InstallerSha256: 092F6BC31DEEDB00827C9A2BF1BBD91E61078FD8A5E1176D9F6AC1E1937F651A - - Architecture: neutral - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.1.9/Sundry_Setup.exe - InstallerSha256: 092F6BC31DEEDB00827C9A2BF1BBD91E61078FD8A5E1176D9F6AC1E1937F651A ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.locale.en-US.yaml index e118b6fab3cb1..cb8ace99b0ebb 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -24,7 +24,7 @@ Tags: - WinGet - winget-pkgs - winget-tools -ReleaseNotes: |- +ReleaseNotes: | 修复 - fix: 修复发行版源码中缺少 sundry.py 的问题 by @DuckDuckStudio 新功能 diff --git a/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.locale.zh-CN.yaml index 1dca2a6bb01d4..1c14d126e078d 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,7 +27,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | 修复 - fix: 修复发行版源码中缺少 sundry.py 的问题 by @DuckDuckStudio 新功能 diff --git a/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.yaml index 213b49f0f1465..78d5c65f55905 100644 --- a/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.1.9/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.installer.yaml index ef8768dca3748..269bf0d63cb62 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,30 +27,6 @@ Installers: - silentWithProgress InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.0/Sundry_Setup.exe InstallerSha256: B2FC36EBDAD8D52A4D7733E8D5A5692F191EBE4C5B9D525EB6FD51D39CE1F190 - - Architecture: x86 - InstallerType: inno - Scope: machine - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Sundry' - InstallModes: - - interactive - - silent - - silentWithProgress - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.0/Sundry_Setup.exe - InstallerSha256: B2FC36EBDAD8D52A4D7733E8D5A5692F191EBE4C5B9D525EB6FD51D39CE1F190 - - Architecture: arm - InstallerType: inno - Scope: machine - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Sundry' - InstallModes: - - interactive - - silent - - silentWithProgress - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.0/Sundry_Setup.exe - InstallerSha256: B2FC36EBDAD8D52A4D7733E8D5A5692F191EBE4C5B9D525EB6FD51D39CE1F190 - Architecture: arm64 InstallerType: inno Scope: machine @@ -63,18 +39,6 @@ Installers: - silentWithProgress InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.0/Sundry_Setup.exe InstallerSha256: B2FC36EBDAD8D52A4D7733E8D5A5692F191EBE4C5B9D525EB6FD51D39CE1F190 - - Architecture: neutral - InstallerType: inno - Scope: machine - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Sundry' - InstallModes: - - interactive - - silent - - silentWithProgress - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.0/Sundry_Setup.exe - InstallerSha256: B2FC36EBDAD8D52A4D7733E8D5A5692F191EBE4C5B9D525EB6FD51D39CE1F190 # zip + portable - Architecture: x64 @@ -84,20 +48,6 @@ Installers: - RelativeFilePath: Release/pack/sundry.exe InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.0/Sundry.zip InstallerSha256: 33D661FEEE18D0CFD41B531B9FD69745A2A55277E2BB081CD4BB79132C241C03 - - Architecture: x86 - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: Release/pack/sundry.exe - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.0/Sundry.zip - InstallerSha256: 33D661FEEE18D0CFD41B531B9FD69745A2A55277E2BB081CD4BB79132C241C03 - - Architecture: arm - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: Release/pack/sundry.exe - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.0/Sundry.zip - InstallerSha256: 33D661FEEE18D0CFD41B531B9FD69745A2A55277E2BB081CD4BB79132C241C03 - Architecture: arm64 InstallerType: zip NestedInstallerType: portable @@ -105,12 +55,5 @@ Installers: - RelativeFilePath: Release/pack/sundry.exe InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.0/Sundry.zip InstallerSha256: 33D661FEEE18D0CFD41B531B9FD69745A2A55277E2BB081CD4BB79132C241C03 - - Architecture: neutral - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: Release/pack/sundry.exe - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.0/Sundry.zip - InstallerSha256: 33D661FEEE18D0CFD41B531B9FD69745A2A55277E2BB081CD4BB79132C241C03 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.locale.en-US.yaml index ca4fef9efc507..675767cc3ec67 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -23,7 +23,7 @@ Tags: - Remove - WinGet - winget-pkgs -ReleaseNotes: |- +ReleaseNotes: | # 重构 - refactor: 重构代码 by @DuckDuckStudio in #11 (感谢 @fjwxzde 和 @Luna-Grace 的审查) - feat: 单版本修改 (sundry modify) diff --git a/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.locale.zh-CN.yaml index f8ea322f9a4c2..9524d9d56bdf1 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,7 +26,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | # 重构 - refactor: 重构代码 by @DuckDuckStudio in #11 (感谢 @fjwxzde 和 @Luna-Grace 的审查) - feat: 单版本修改 (sundry modify) diff --git a/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.yaml index 2530d2f17568a..102756728da51 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.0/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.installer.yaml index a2cb7a2ebd082..a01a9c3a6c161 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,30 +27,6 @@ Installers: - silentWithProgress InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.1/Sundry_Setup.exe InstallerSha256: 0DC6007C4C50375F38CD69793E310A91C656A25DDD8E7444BCD1516350E1634E - - Architecture: x86 - InstallerType: inno - Scope: machine - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Sundry' - InstallModes: - - interactive - - silent - - silentWithProgress - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.1/Sundry_Setup.exe - InstallerSha256: 0DC6007C4C50375F38CD69793E310A91C656A25DDD8E7444BCD1516350E1634E - - Architecture: arm - InstallerType: inno - Scope: machine - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Sundry' - InstallModes: - - interactive - - silent - - silentWithProgress - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.1/Sundry_Setup.exe - InstallerSha256: 0DC6007C4C50375F38CD69793E310A91C656A25DDD8E7444BCD1516350E1634E - Architecture: arm64 InstallerType: inno Scope: machine @@ -63,18 +39,6 @@ Installers: - silentWithProgress InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.1/Sundry_Setup.exe InstallerSha256: 0DC6007C4C50375F38CD69793E310A91C656A25DDD8E7444BCD1516350E1634E - - Architecture: neutral - InstallerType: inno - Scope: machine - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Sundry' - InstallModes: - - interactive - - silent - - silentWithProgress - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.1/Sundry_Setup.exe - InstallerSha256: 0DC6007C4C50375F38CD69793E310A91C656A25DDD8E7444BCD1516350E1634E # zip + portable - Architecture: x64 @@ -84,20 +48,6 @@ Installers: - RelativeFilePath: Release/pack/sundry.exe InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.1/Sundry.zip InstallerSha256: 066C549D2BB6097833AB240FD668268CC665CB516AE5CFD3E67C9498A1D16389 - - Architecture: x86 - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: Release/pack/sundry.exe - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.1/Sundry.zip - InstallerSha256: 066C549D2BB6097833AB240FD668268CC665CB516AE5CFD3E67C9498A1D16389 - - Architecture: arm - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: Release/pack/sundry.exe - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.1/Sundry.zip - InstallerSha256: 066C549D2BB6097833AB240FD668268CC665CB516AE5CFD3E67C9498A1D16389 - Architecture: arm64 InstallerType: zip NestedInstallerType: portable @@ -105,12 +55,5 @@ Installers: - RelativeFilePath: Release/pack/sundry.exe InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.1/Sundry.zip InstallerSha256: 066C549D2BB6097833AB240FD668268CC665CB516AE5CFD3E67C9498A1D16389 - - Architecture: neutral - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: Release/pack/sundry.exe - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.1/Sundry.zip - InstallerSha256: 066C549D2BB6097833AB240FD668268CC665CB516AE5CFD3E67C9498A1D16389 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.locale.en-US.yaml index 8c59a69e8939d..fe0d946688bee 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -23,7 +23,7 @@ Tags: - Remove - WinGet - winget-pkgs -ReleaseNotes: |- +ReleaseNotes: | # 优化 - pref: 统一路径斜杠方向 (#13) by @DuckDuckStudio 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.2.0...1.2.1 diff --git a/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.locale.zh-CN.yaml index 854099076deda..36cd6c388944e 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -26,7 +26,7 @@ Tags: - 舱单 - 辅助 - 辅助工具 -ReleaseNotes: |- +ReleaseNotes: | # 优化 - pref: 统一路径斜杠方向 (#13) by @DuckDuckStudio 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.2.0...1.2.1 diff --git a/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.yaml index 95b494b1f2214..7b9becb91e989 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.1/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.installer.yaml index ee1396e3d711a..07043ed03eed2 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,30 +27,6 @@ Installers: - silentWithProgress InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.2/Sundry_Setup.exe InstallerSha256: 4c5653f5a1023a8cdacefcbbc2ecca55f915e30213ef837c8f0348164efa5264 - - Architecture: x86 - InstallerType: inno - Scope: machine - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Sundry' - InstallModes: - - interactive - - silent - - silentWithProgress - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.2/Sundry_Setup.exe - InstallerSha256: 4c5653f5a1023a8cdacefcbbc2ecca55f915e30213ef837c8f0348164efa5264 - - Architecture: arm - InstallerType: inno - Scope: machine - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Sundry' - InstallModes: - - interactive - - silent - - silentWithProgress - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.2/Sundry_Setup.exe - InstallerSha256: 4c5653f5a1023a8cdacefcbbc2ecca55f915e30213ef837c8f0348164efa5264 - Architecture: arm64 InstallerType: inno Scope: machine @@ -63,18 +39,6 @@ Installers: - silentWithProgress InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.2/Sundry_Setup.exe InstallerSha256: 4c5653f5a1023a8cdacefcbbc2ecca55f915e30213ef837c8f0348164efa5264 - - Architecture: neutral - InstallerType: inno - Scope: machine - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Sundry' - InstallModes: - - interactive - - silent - - silentWithProgress - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.2/Sundry_Setup.exe - InstallerSha256: 4c5653f5a1023a8cdacefcbbc2ecca55f915e30213ef837c8f0348164efa5264 # zip + portable - Architecture: x64 @@ -84,20 +48,6 @@ Installers: - RelativeFilePath: Release/pack/sundry.exe InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.2/Sundry.zip InstallerSha256: 0a3b7b1e4dffb3d026af5e91b1812c70b93a076c0273f94c9bee831247d4d2ac - - Architecture: x86 - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: Release/pack/sundry.exe - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.2/Sundry.zip - InstallerSha256: 0a3b7b1e4dffb3d026af5e91b1812c70b93a076c0273f94c9bee831247d4d2ac - - Architecture: arm - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: Release/pack/sundry.exe - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.2/Sundry.zip - InstallerSha256: 0a3b7b1e4dffb3d026af5e91b1812c70b93a076c0273f94c9bee831247d4d2ac - Architecture: arm64 InstallerType: zip NestedInstallerType: portable @@ -105,12 +55,5 @@ Installers: - RelativeFilePath: Release/pack/sundry.exe InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.2/Sundry.zip InstallerSha256: 0a3b7b1e4dffb3d026af5e91b1812c70b93a076c0273f94c9bee831247d4d2ac - - Architecture: neutral - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: Release/pack/sundry.exe - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.2/Sundry.zip - InstallerSha256: 0a3b7b1e4dffb3d026af5e91b1812c70b93a076c0273f94c9bee831247d4d2ac ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.locale.en-US.yaml index 63ff19b373306..18759e570132a 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.locale.zh-CN.yaml index 5bbe834fbe8cf..ed70247bd4c97 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.yaml index d3b2b72f65da3..9b294d314d43a 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.2/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.installer.yaml index 75ca72c2d7a96..37d3fab27a112 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.installer.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.installer.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry @@ -27,30 +27,6 @@ Installers: - silentWithProgress InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.3/Sundry_Setup.exe InstallerSha256: 5713c30a5f05534bdb0f8bd02659edaa306792abedaa295268d1a5cbd1457b18 - - Architecture: x86 - InstallerType: inno - Scope: machine - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Sundry' - InstallModes: - - interactive - - silent - - silentWithProgress - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.3/Sundry_Setup.exe - InstallerSha256: 5713c30a5f05534bdb0f8bd02659edaa306792abedaa295268d1a5cbd1457b18 - - Architecture: arm - InstallerType: inno - Scope: machine - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Sundry' - InstallModes: - - interactive - - silent - - silentWithProgress - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.3/Sundry_Setup.exe - InstallerSha256: 5713c30a5f05534bdb0f8bd02659edaa306792abedaa295268d1a5cbd1457b18 - Architecture: arm64 InstallerType: inno Scope: machine @@ -63,18 +39,6 @@ Installers: - silentWithProgress InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.3/Sundry_Setup.exe InstallerSha256: 5713c30a5f05534bdb0f8bd02659edaa306792abedaa295268d1a5cbd1457b18 - - Architecture: neutral - InstallerType: inno - Scope: machine - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Sundry' - InstallModes: - - interactive - - silent - - silentWithProgress - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.3/Sundry_Setup.exe - InstallerSha256: 5713c30a5f05534bdb0f8bd02659edaa306792abedaa295268d1a5cbd1457b18 # zip + portable - Architecture: x64 @@ -84,20 +48,6 @@ Installers: - RelativeFilePath: Release/pack/sundry.exe InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.3/Sundry.zip InstallerSha256: c5fed8b0d795d4a68ac062fc8ca024afb9bf7898dbf765be4a87371819e0d9d0 - - Architecture: x86 - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: Release/pack/sundry.exe - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.3/Sundry.zip - InstallerSha256: c5fed8b0d795d4a68ac062fc8ca024afb9bf7898dbf765be4a87371819e0d9d0 - - Architecture: arm - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: Release/pack/sundry.exe - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.3/Sundry.zip - InstallerSha256: c5fed8b0d795d4a68ac062fc8ca024afb9bf7898dbf765be4a87371819e0d9d0 - Architecture: arm64 InstallerType: zip NestedInstallerType: portable @@ -105,12 +55,5 @@ Installers: - RelativeFilePath: Release/pack/sundry.exe InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.3/Sundry.zip InstallerSha256: c5fed8b0d795d4a68ac062fc8ca024afb9bf7898dbf765be4a87371819e0d9d0 - - Architecture: neutral - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: Release/pack/sundry.exe - InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.3/Sundry.zip - InstallerSha256: c5fed8b0d795d4a68ac062fc8ca024afb9bf7898dbf765be4a87371819e0d9d0 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.locale.en-US.yaml index 103a2e66d15f1..52e6d3bb83dc8 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.locale.en-US.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.locale.zh-CN.yaml index e235e3dbc3085..a240907319147 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.locale.zh-CN.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.yaml index 3f98f950aa120..2fa5d0d19c4b8 100644 --- a/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.yaml +++ b/manifests/d/DuckStudio/Sundry/1.2.3/DuckStudio.Sundry.yaml @@ -1,4 +1,4 @@ -# Created with Sundry. +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DuckStudio.Sundry diff --git a/manifests/d/DuckStudio/Sundry/1.2.4/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.2.4/DuckStudio.Sundry.installer.yaml new file mode 100644 index 0000000000000..f105a907a8140 --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.4/DuckStudio.Sundry.installer.yaml @@ -0,0 +1,59 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.4 +UpgradeBehavior: install +Commands: + - sundry +Dependencies: + PackageDependencies: + - PackageIdentifier: DuckStudio.GitHubLabelsManager + MinimumVersion: "1.7" + - PackageIdentifier: Git.Git + - PackageIdentifier: GitHub.cli +ReleaseDate: 2025-06-21 +Installers: + # Inno Setup + - Architecture: x64 + InstallerType: inno + Scope: machine + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Sundry' + InstallModes: + - interactive + - silent + - silentWithProgress + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.4/Sundry_Setup.exe + InstallerSha256: af2d901c7ea48b46709e5e3fa199c80fa8fb20d7b9110af1170a666519bc4adf + - Architecture: arm64 + InstallerType: inno + Scope: machine + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Sundry' + InstallModes: + - interactive + - silent + - silentWithProgress + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.4/Sundry_Setup.exe + InstallerSha256: af2d901c7ea48b46709e5e3fa199c80fa8fb20d7b9110af1170a666519bc4adf + + # zip + portable + - Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Release/pack/sundry.exe + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.4/Sundry.zip + InstallerSha256: a965d757579a93becf456fc33880a82b45fd268bfc691b6eface325baa12c5e7 + - Architecture: arm64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Release/pack/sundry.exe + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.4/Sundry.zip + InstallerSha256: a965d757579a93becf456fc33880a82b45fd268bfc691b6eface325baa12c5e7 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.4/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.2.4/DuckStudio.Sundry.locale.en-US.yaml new file mode 100644 index 0000000000000..5099994c7bcb4 --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.4/DuckStudio.Sundry.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.4 +PackageLocale: en-US +Publisher: DuckStudio +PublisherUrl: https://duckduckstudio.github.io/yazicbs.github.io/ +PublisherSupportUrl: https://github.com/DuckDuckStudio/Sundry/issues +Author: 鸭鸭「カモ」 +PackageName: Sundry +PackageUrl: https://github.com/DuckDuckStudio/Sundry/ +License: GNU Affero General Public License v3.0 +LicenseUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +Copyright: Copyright (c) 鸭鸭「カモ」 +CopyrightUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +ShortDescription: Sundry is a WinGet local manifest management tool that makes it easier for you to remove manifests, make changes to them, and also aids in updating them. +Tags: + - Manifest + - Manifests + - Modify + - Modifying + - Remove + - WinGet + - winget-pkgs +ReleaseNotes: | + ## 修复 + fix: 不将清单目录下的文件视为版本文件夹 by @DuckDuckStudio + fix: 不将目录下其他软件包标识符的文件夹视作软件包版本文件夹 by @DuckDuckStudio + + ## 杂项 + ci(deps): bump softprops/action-gh-release from 2.2.2 to 2.3.2 by @dependabot in https://github.com/DuckDuckStudio/Sundry/pull/16 + + 这些修改同步自 Sundry-Loacle,主要是对查找现有版本的逻辑的改动。 + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.2.3...1.2.4 +ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.2.4 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.4/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.2.4/DuckStudio.Sundry.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4cddd9e1b5f75 --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.4/DuckStudio.Sundry.locale.zh-CN.yaml @@ -0,0 +1,41 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.4 +PackageLocale: zh-CN +Publisher: DuckStudio +PublisherUrl: https://duckduckstudio.github.io/yazicbs.github.io/ +PublisherSupportUrl: https://github.com/DuckDuckStudio/Sundry/issues +Author: 鸭鸭「カモ」 +PackageName: Sundry +PackageUrl: https://github.com/DuckDuckStudio/Sundry/ +License: GNU Affero General Public License v3.0 +LicenseUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +Copyright: Copyright (c) 鸭鸭「カモ」 +CopyrightUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +ShortDescription: Sundry 是一个 WinGet 本地清单管理工具,让您更方便的移除清单、修改清单,还可以辅助更新清单。 +Tags: + - Manifest + - Manifests + - WinGet + - winget-pkgs + - 修改 + - 清单 + - 移除 + - 舱单 + - 辅助 + - 辅助工具 +ReleaseNotes: | + ## 修复 + fix: 不将清单目录下的文件视为版本文件夹 by @DuckDuckStudio + fix: 不将目录下其他软件包标识符的文件夹视作软件包版本文件夹 by @DuckDuckStudio + + ## 杂项 + ci(deps): bump softprops/action-gh-release from 2.2.2 to 2.3.2 by @dependabot in https://github.com/DuckDuckStudio/Sundry/pull/16 + + 这些修改同步自 Sundry-Loacle,主要是对查找现有版本的逻辑的改动。 + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.2.3...1.2.4 +ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.2.4 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.4/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.2.4/DuckStudio.Sundry.yaml new file mode 100644 index 0000000000000..a442f40bc7e3b --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.4/DuckStudio.Sundry.yaml @@ -0,0 +1,8 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.4 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.5/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.2.5/DuckStudio.Sundry.installer.yaml new file mode 100644 index 0000000000000..867fda4b07536 --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.5/DuckStudio.Sundry.installer.yaml @@ -0,0 +1,59 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.5 +UpgradeBehavior: install +Commands: + - sundry +Dependencies: + PackageDependencies: + - PackageIdentifier: DuckStudio.GitHubLabelsManager + MinimumVersion: "1.7" + - PackageIdentifier: Git.Git + - PackageIdentifier: GitHub.cli +ReleaseDate: 2025-06-22 +Installers: + # Inno Setup + - Architecture: x64 + InstallerType: inno + Scope: machine + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Sundry' + InstallModes: + - interactive + - silent + - silentWithProgress + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.5/Sundry_Setup.exe + InstallerSha256: ed6f9b7a4a343340b00927f5ba7ad95bdead2cb479d11256db52c4cbcfed0545 + - Architecture: arm64 + InstallerType: inno + Scope: machine + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Sundry' + InstallModes: + - interactive + - silent + - silentWithProgress + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.5/Sundry_Setup.exe + InstallerSha256: ed6f9b7a4a343340b00927f5ba7ad95bdead2cb479d11256db52c4cbcfed0545 + + # zip + portable + - Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Release/pack/sundry.exe + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.5/Sundry.zip + InstallerSha256: 36f54ce9eab27cacea49e357cbee9922b08853a9077e546f817ce53a4878d39c + - Architecture: arm64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Release/pack/sundry.exe + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.5/Sundry.zip + InstallerSha256: 36f54ce9eab27cacea49e357cbee9922b08853a9077e546f817ce53a4878d39c +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.5/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.2.5/DuckStudio.Sundry.locale.en-US.yaml new file mode 100644 index 0000000000000..673bee752531c --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.5/DuckStudio.Sundry.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.5 +PackageLocale: en-US +Publisher: DuckStudio +PublisherUrl: https://duckduckstudio.github.io/yazicbs.github.io/ +PublisherSupportUrl: https://github.com/DuckDuckStudio/Sundry/issues +Author: 鸭鸭「カモ」 +PackageName: Sundry +PackageUrl: https://github.com/DuckDuckStudio/Sundry/ +License: GNU Affero General Public License v3.0 +LicenseUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +Copyright: Copyright (c) 鸭鸭「カモ」 +CopyrightUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +ShortDescription: Sundry is a WinGet local manifest management tool that makes it easier for you to remove manifests, make changes to them, and also aids in updating them. +Tags: + - Manifest + - Manifests + - Modify + - Modifying + - Remove + - WinGet + - winget-pkgs +ReleaseNotes: | + 听好了: 6月22日,Sundry 1.2.4 就此陷落。每段陷落的代码都将迎来一场漩涡,为这些代码带来全新的命令。 + + - feat: sundry revert - 还原本地仓库修改 + - feat: sundry fun - 管理 fun.txt 的内容 + + 你所熟知的一切都将改变,你所熟悉的 help 都将加诸更新的历练。 + + - chore: 更新 sundry help 内容 + - chore: 更新 fun.txt 内容 + + 至此,一锤定音。 + 尘埃,已然落定。 + + [#完整修改记录#](https://github.com/DuckDuckStudio/Sundry/compare/1.2.4...1.2.5) [#提交问题反馈#](https://github.com/DuckDuckStudio/Sundry/issues) [#此版本构建流#](https://github.com/DuckDuckStudio/Sundry/actions/runs/15805714189) +ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.2.5 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.5/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.2.5/DuckStudio.Sundry.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8777fa3c65d2f --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.5/DuckStudio.Sundry.locale.zh-CN.yaml @@ -0,0 +1,46 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.5 +PackageLocale: zh-CN +Publisher: DuckStudio +PublisherUrl: https://duckduckstudio.github.io/yazicbs.github.io/ +PublisherSupportUrl: https://github.com/DuckDuckStudio/Sundry/issues +Author: 鸭鸭「カモ」 +PackageName: Sundry +PackageUrl: https://github.com/DuckDuckStudio/Sundry/ +License: GNU Affero General Public License v3.0 +LicenseUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +Copyright: Copyright (c) 鸭鸭「カモ」 +CopyrightUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +ShortDescription: Sundry 是一个 WinGet 本地清单管理工具,让您更方便的移除清单、修改清单,还可以辅助更新清单。 +Tags: + - Manifest + - Manifests + - WinGet + - winget-pkgs + - 修改 + - 清单 + - 移除 + - 舱单 + - 辅助 + - 辅助工具 +ReleaseNotes: | + 听好了: 6月22日,Sundry 1.2.4 就此陷落。每段陷落的代码都将迎来一场漩涡,为这些代码带来全新的命令。 + + - feat: sundry revert - 还原本地仓库修改 + - feat: sundry fun - 管理 fun.txt 的内容 + + 你所熟知的一切都将改变,你所熟悉的 help 都将加诸更新的历练。 + + - chore: 更新 sundry help 内容 + - chore: 更新 fun.txt 内容 + + 至此,一锤定音。 + 尘埃,已然落定。 + + [#完整修改记录#](https://github.com/DuckDuckStudio/Sundry/compare/1.2.4...1.2.5) [#提交问题反馈#](https://github.com/DuckDuckStudio/Sundry/issues) [#此版本构建流#](https://github.com/DuckDuckStudio/Sundry/actions/runs/15805714189) +ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.2.5 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.5/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.2.5/DuckStudio.Sundry.yaml new file mode 100644 index 0000000000000..8cff34f29bde0 --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.5/DuckStudio.Sundry.yaml @@ -0,0 +1,8 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.5 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.6/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.2.6/DuckStudio.Sundry.installer.yaml new file mode 100644 index 0000000000000..cfca24b057bee --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.6/DuckStudio.Sundry.installer.yaml @@ -0,0 +1,59 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.6 +UpgradeBehavior: install +Commands: + - sundry +Dependencies: + PackageDependencies: + - PackageIdentifier: DuckStudio.GitHubLabelsManager + MinimumVersion: "1.7" + - PackageIdentifier: Git.Git + - PackageIdentifier: GitHub.cli +ReleaseDate: 2025-06-22 +Installers: + # Inno Setup + - Architecture: x64 + InstallerType: inno + Scope: machine + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Sundry' + InstallModes: + - interactive + - silent + - silentWithProgress + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.6/Sundry_Setup.exe + InstallerSha256: a0ee1e54f0163c8db82581b0ec4e3e7ebd26368461348123d6cb6e2055f926f4 + - Architecture: arm64 + InstallerType: inno + Scope: machine + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Sundry' + InstallModes: + - interactive + - silent + - silentWithProgress + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.6/Sundry_Setup.exe + InstallerSha256: a0ee1e54f0163c8db82581b0ec4e3e7ebd26368461348123d6cb6e2055f926f4 + + # zip + portable + - Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Release/pack/sundry.exe + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.6/Sundry.zip + InstallerSha256: ec6ab0ce7b150b7d21789fbdaefa5442d451dfa4ff90d0aaa43156c52bfe6022 + - Architecture: arm64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Release/pack/sundry.exe + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.6/Sundry.zip + InstallerSha256: ec6ab0ce7b150b7d21789fbdaefa5442d451dfa4ff90d0aaa43156c52bfe6022 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.6/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.2.6/DuckStudio.Sundry.locale.en-US.yaml new file mode 100644 index 0000000000000..70783985cc544 --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.6/DuckStudio.Sundry.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.6 +PackageLocale: en-US +Publisher: DuckStudio +PublisherUrl: https://duckduckstudio.github.io/yazicbs.github.io/ +PublisherSupportUrl: https://github.com/DuckDuckStudio/Sundry/issues +Author: 鸭鸭「カモ」 +PackageName: Sundry +PackageUrl: https://github.com/DuckDuckStudio/Sundry/ +License: GNU Affero General Public License v3.0 +LicenseUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +Copyright: Copyright (c) 鸭鸭「カモ」 +CopyrightUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +ShortDescription: Sundry is a WinGet local manifest management tool that makes it easier for you to remove manifests, make changes to them, and also aids in updating them. +Tags: + - Manifest + - Manifests + - Modify + - Modifying + - Remove + - WinGet + - winget-pkgs +ReleaseNotes: | + ## Fixes + - fix: Existing ignore entries should not be added again (#17) by @DuckDuckStudio in 42c801f8ad85a477f2aff4daa5133e2972df0991 + + Full Changelog: https://github.com/DuckDuckStudio/Sundry/compare/1.2.5...1.2.6 +ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.2.6 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.6/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.2.6/DuckStudio.Sundry.locale.zh-CN.yaml new file mode 100644 index 0000000000000..98389018ed723 --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.6/DuckStudio.Sundry.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.6 +PackageLocale: zh-CN +Publisher: DuckStudio +PublisherUrl: https://duckduckstudio.github.io/yazicbs.github.io/ +PublisherSupportUrl: https://github.com/DuckDuckStudio/Sundry/issues +Author: 鸭鸭「カモ」 +PackageName: Sundry +PackageUrl: https://github.com/DuckDuckStudio/Sundry/ +License: GNU Affero General Public License v3.0 +LicenseUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +Copyright: Copyright (c) 鸭鸭「カモ」 +CopyrightUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +ShortDescription: Sundry 是一个 WinGet 本地清单管理工具,让您更方便的移除清单、修改清单,还可以辅助更新清单。 +Tags: + - Manifest + - Manifests + - WinGet + - winget-pkgs + - 修改 + - 清单 + - 移除 + - 舱单 + - 辅助 + - 辅助工具 +ReleaseNotes: | + ## 修复 + - fix: 不应重复添加已经存在的忽略条目 (#17) by @DuckDuckStudio in 42c801f8ad85a477f2aff4daa5133e2972df0991 + + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.2.5...1.2.6 +ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.2.6 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.6/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.2.6/DuckStudio.Sundry.yaml new file mode 100644 index 0000000000000..22980a7bdd203 --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.6/DuckStudio.Sundry.yaml @@ -0,0 +1,8 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.6 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.7/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.2.7/DuckStudio.Sundry.installer.yaml new file mode 100644 index 0000000000000..1920e5bfcd874 --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.7/DuckStudio.Sundry.installer.yaml @@ -0,0 +1,59 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.7 +UpgradeBehavior: install +Commands: + - sundry +Dependencies: + PackageDependencies: + - PackageIdentifier: DuckStudio.GitHubLabelsManager + MinimumVersion: "1.7" + - PackageIdentifier: Git.Git + - PackageIdentifier: GitHub.cli +ReleaseDate: 2025-06-23 +Installers: + # Inno Setup + - Architecture: x64 + InstallerType: inno + Scope: machine + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Sundry' + InstallModes: + - interactive + - silent + - silentWithProgress + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.7/Sundry_Setup.exe + InstallerSha256: a38e2a88258d5bba3267fd1e9cdb024565655426637f768c6228e48f715aab92 + - Architecture: arm64 + InstallerType: inno + Scope: machine + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Sundry' + InstallModes: + - interactive + - silent + - silentWithProgress + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.7/Sundry_Setup.exe + InstallerSha256: a38e2a88258d5bba3267fd1e9cdb024565655426637f768c6228e48f715aab92 + + # zip + portable + - Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Release/pack/sundry.exe + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.7/Sundry.zip + InstallerSha256: 947cf0ef9483e59a5cc6e7c96dd268c973e8267b66fe71e131b7f3578d122c7d + - Architecture: arm64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Release/pack/sundry.exe + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.7/Sundry.zip + InstallerSha256: 947cf0ef9483e59a5cc6e7c96dd268c973e8267b66fe71e131b7f3578d122c7d +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.7/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.2.7/DuckStudio.Sundry.locale.en-US.yaml new file mode 100644 index 0000000000000..429cd29e899fa --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.7/DuckStudio.Sundry.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.7 +PackageLocale: en-US +Publisher: DuckStudio +PublisherUrl: https://duckduckstudio.github.io/yazicbs.github.io/ +PublisherSupportUrl: https://github.com/DuckDuckStudio/Sundry/issues +Author: 鸭鸭「カモ」 +PackageName: Sundry +PackageUrl: https://github.com/DuckDuckStudio/Sundry/ +License: GNU Affero General Public License v3.0 +LicenseUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +Copyright: Copyright (c) 鸭鸭「カモ」 +CopyrightUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +ShortDescription: Sundry is a WinGet local manifest management tool that makes it easier for you to remove manifests, make changes to them, and also aids in updating them. +Tags: + - Manifest + - Manifests + - Modify + - Modifying + - Remove + - WinGet + - winget-pkgs +ReleaseNotes: | + ## 修复 + - fix: 修正 `sundry fun` 的参数处理逻辑,使其正确解析 `edit` 参数 (https://github.com/DuckDuckStudio/Sundry/issues/19) by @DuckDuckStudio + + ## 优化 + - pref: 使 `sundry fun import` 保持原始顺序 by @DuckDuckStudio + + ## 杂项 + - chore(deps): bump `pygments` from `2.19.1` to `2.19.2` by @dependabot、@DuckDuckStudio in https://github.com/DuckDuckStudio/Sundry/pull/18 + - docs: 文档大改 by @DuckDuckStudio in https://github.com/DuckDuckStudio/Sundry/pull/20 + + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.2.6...1.2.7 +ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.2.7 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.7/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.2.7/DuckStudio.Sundry.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6e9e9c8f20e8b --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.7/DuckStudio.Sundry.locale.zh-CN.yaml @@ -0,0 +1,43 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.7 +PackageLocale: zh-CN +Publisher: DuckStudio +PublisherUrl: https://duckduckstudio.github.io/yazicbs.github.io/ +PublisherSupportUrl: https://github.com/DuckDuckStudio/Sundry/issues +Author: 鸭鸭「カモ」 +PackageName: Sundry +PackageUrl: https://github.com/DuckDuckStudio/Sundry/ +License: GNU Affero General Public License v3.0 +LicenseUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +Copyright: Copyright (c) 鸭鸭「カモ」 +CopyrightUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +ShortDescription: Sundry 是一个 WinGet 本地清单管理工具,让您更方便的移除清单、修改清单,还可以辅助更新清单。 +Tags: + - Manifest + - Manifests + - WinGet + - winget-pkgs + - 修改 + - 清单 + - 移除 + - 舱单 + - 辅助 + - 辅助工具 +ReleaseNotes: | + ## 修复 + - fix: 修正 `sundry fun` 的参数处理逻辑,使其正确解析 `edit` 参数 (https://github.com/DuckDuckStudio/Sundry/issues/19) by @DuckDuckStudio + + ## 优化 + - pref: 使 `sundry fun import` 保持原始顺序 by @DuckDuckStudio + + ## 杂项 + - chore(deps): bump `pygments` from `2.19.1` to `2.19.2` by @dependabot、@DuckDuckStudio in https://github.com/DuckDuckStudio/Sundry/pull/18 + - docs: 文档大改 by @DuckDuckStudio in https://github.com/DuckDuckStudio/Sundry/pull/20 + + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.2.6...1.2.7 +ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.2.7 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.7/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.2.7/DuckStudio.Sundry.yaml new file mode 100644 index 0000000000000..505b5e6787885 --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.7/DuckStudio.Sundry.yaml @@ -0,0 +1,8 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.7 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.8/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.2.8/DuckStudio.Sundry.installer.yaml new file mode 100644 index 0000000000000..cd7c769b0c191 --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.8/DuckStudio.Sundry.installer.yaml @@ -0,0 +1,59 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.8 +UpgradeBehavior: install +Commands: + - sundry +Dependencies: + PackageDependencies: + - PackageIdentifier: DuckStudio.GitHubLabelsManager + MinimumVersion: "1.7" + - PackageIdentifier: Git.Git + - PackageIdentifier: GitHub.cli +ReleaseDate: 2025-06-25 +Installers: + # Inno Setup + - Architecture: x64 + InstallerType: inno + Scope: machine + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Sundry' + InstallModes: + - interactive + - silent + - silentWithProgress + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.8/Sundry_Setup.exe + InstallerSha256: 809911782e870a8c6e5c5e8dab9d8d336a27946f322018405dbe5c3114af3018 + - Architecture: arm64 + InstallerType: inno + Scope: machine + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Sundry' + InstallModes: + - interactive + - silent + - silentWithProgress + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.8/Sundry_Setup.exe + InstallerSha256: 809911782e870a8c6e5c5e8dab9d8d336a27946f322018405dbe5c3114af3018 + + # zip + portable + - Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Release/pack/sundry.exe + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.8/Sundry.zip + InstallerSha256: 4a6cccd3e439c366895c64309ee302d3c0a8e09d52f94d70c6b50709adafab1c + - Architecture: arm64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Release/pack/sundry.exe + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.8/Sundry.zip + InstallerSha256: 4a6cccd3e439c366895c64309ee302d3c0a8e09d52f94d70c6b50709adafab1c +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.8/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.2.8/DuckStudio.Sundry.locale.en-US.yaml new file mode 100644 index 0000000000000..41871692242e3 --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.8/DuckStudio.Sundry.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.8 +PackageLocale: en-US +Publisher: DuckStudio +PublisherUrl: https://duckduckstudio.github.io/yazicbs.github.io/ +PublisherSupportUrl: https://github.com/DuckDuckStudio/Sundry/issues +Author: 鸭鸭「カモ」 +PackageName: Sundry +PackageUrl: https://github.com/DuckDuckStudio/Sundry/ +License: GNU Affero General Public License v3.0 +LicenseUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +Copyright: Copyright (c) 鸭鸭「カモ」 +CopyrightUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +ShortDescription: Sundry is a WinGet local manifest management tool that makes it easier for you to remove manifests, make changes to them, and also aids in updating them. +Tags: + - Manifest + - Manifests + - Modify + - Modifying + - Remove + - WinGet + - winget-pkgs + - Logs-Analyse +ReleaseNotes: | + ## New Features + - feat: Azure Pipeline Logs Analysis: sundry logs-analyse [whether to retain log files] [whether to display general errors/exceptions] by @DuckDuckStudio in https://github.com/DuckDuckStudio/Sundry/pull/22 + + Full Changelog: https://github.com/DuckDuckStudio/Sundry/compare/1.2.7...1.2.8 +ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.2.8 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.8/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.2.8/DuckStudio.Sundry.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b811f37b32ae3 --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.8/DuckStudio.Sundry.locale.zh-CN.yaml @@ -0,0 +1,38 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.8 +PackageLocale: zh-CN +Publisher: DuckStudio +PublisherUrl: https://duckduckstudio.github.io/yazicbs.github.io/ +PublisherSupportUrl: https://github.com/DuckDuckStudio/Sundry/issues +Author: 鸭鸭「カモ」 +PackageName: Sundry +PackageUrl: https://github.com/DuckDuckStudio/Sundry/ +License: GNU Affero General Public License v3.0 +LicenseUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +Copyright: Copyright (c) 鸭鸭「カモ」 +CopyrightUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +ShortDescription: Sundry 是一个 WinGet 本地清单管理工具,让您更方便的移除清单、修改清单,还可以辅助更新清单。 +Tags: + - Manifest + - Manifests + - WinGet + - winget-pkgs + - 修改 + - 清单 + - 移除 + - 舱单 + - 辅助 + - 辅助工具 + - 日志分析 + - 验证管道日志分析 +ReleaseNotes: | + ## 新功能 + - feat: Azure Pipline 日志分析: sundry logs-analyse [是否保留日志文件] [是否显示一般错误/异常] by @DuckDuckStudio in https://github.com/DuckDuckStudio/Sundry/pull/22 + + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.2.7...1.2.8 +ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.2.8 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.8/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.2.8/DuckStudio.Sundry.yaml new file mode 100644 index 0000000000000..79540d4fa160c --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.8/DuckStudio.Sundry.yaml @@ -0,0 +1,8 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.8 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.9/DuckStudio.Sundry.installer.yaml b/manifests/d/DuckStudio/Sundry/1.2.9/DuckStudio.Sundry.installer.yaml new file mode 100644 index 0000000000000..97dd0085b255e --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.9/DuckStudio.Sundry.installer.yaml @@ -0,0 +1,59 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.9 +UpgradeBehavior: install +Commands: + - sundry +Dependencies: + PackageDependencies: + - PackageIdentifier: DuckStudio.GitHubLabelsManager + MinimumVersion: "1.7" + - PackageIdentifier: Git.Git + - PackageIdentifier: GitHub.cli +ReleaseDate: 2025-07-01 +Installers: + # Inno Setup + - Architecture: x64 + InstallerType: inno + Scope: machine + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Sundry' + InstallModes: + - interactive + - silent + - silentWithProgress + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.9/Sundry_Setup.exe + InstallerSha256: 6f3c2ee775cde60fa39ea08c19d7d5c4d87264e83bf522dd440ed7743dec57af + - Architecture: arm64 + InstallerType: inno + Scope: machine + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Sundry' + InstallModes: + - interactive + - silent + - silentWithProgress + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.9/Sundry_Setup.exe + InstallerSha256: 6f3c2ee775cde60fa39ea08c19d7d5c4d87264e83bf522dd440ed7743dec57af + + # zip + portable + - Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Release/pack/sundry.exe + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.9/Sundry.zip + InstallerSha256: f7ee94779c55927abda00ed80cd0b074473fd0e8f1f48971cf2c88dbd7122677 + - Architecture: arm64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Release/pack/sundry.exe + InstallerUrl: https://github.com/DuckDuckStudio/Sundry/releases/download/1.2.9/Sundry.zip + InstallerSha256: f7ee94779c55927abda00ed80cd0b074473fd0e8f1f48971cf2c88dbd7122677 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.9/DuckStudio.Sundry.locale.en-US.yaml b/manifests/d/DuckStudio/Sundry/1.2.9/DuckStudio.Sundry.locale.en-US.yaml new file mode 100644 index 0000000000000..6ba95bb507be4 --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.9/DuckStudio.Sundry.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.9 +PackageLocale: en-US +Publisher: DuckStudio +PublisherUrl: https://duckduckstudio.github.io/yazicbs.github.io/ +PublisherSupportUrl: https://github.com/DuckDuckStudio/Sundry/issues +Author: 鸭鸭「カモ」 +PackageName: Sundry +PackageUrl: https://github.com/DuckDuckStudio/Sundry/ +License: GNU Affero General Public License v3.0 +LicenseUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +Copyright: Copyright (c) 鸭鸭「カモ」 +CopyrightUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +ShortDescription: Sundry is a WinGet local manifest management tool that makes it easier for you to remove manifests, make changes to them, and also aids in updating them. +Tags: + - Manifest + - Manifests + - Modify + - Modifying + - Remove + - WinGet + - winget-pkgs +ReleaseNotes: | + ## 修改 + ### 优化 + - pref(revert): 不对丢弃提交进行签名 (#29) by @DuckDuckStudio in https://github.com/DuckDuckStudio/Sundry/pull/30 + - pref: 在读不到 Token 时报告错误 (#12) by @DuckDuckStudio in https://github.com/DuckDuckStudio/Sundry/pull/26 / https://github.com/DuckDuckStudio/Sundry/commit/398cf0db82a25b4072bffb2298b2239a742b8396 + + ### 杂项 + - docs: 为 README 添加徽章 by @Luna-Grace in https://github.com/DuckDuckStudio/Sundry/pull/25 + - chore(fun.txt): 花露水驱蚊效果非常好 by @DuckDuckStudio @fjwxzde in https://github.com/DuckDuckStudio/Sundry/pull/27 + + ## 新贡献着 + - @Luna-Grace 在 https://github.com/DuckDuckStudio/Sundry/pull/25 中做出了第一次贡献 + + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.2.8...1.2.9 +ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.2.9 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.9/DuckStudio.Sundry.locale.zh-CN.yaml b/manifests/d/DuckStudio/Sundry/1.2.9/DuckStudio.Sundry.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1789558e05f0a --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.9/DuckStudio.Sundry.locale.zh-CN.yaml @@ -0,0 +1,45 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.9 +PackageLocale: zh-CN +Publisher: DuckStudio +PublisherUrl: https://duckduckstudio.github.io/yazicbs.github.io/ +PublisherSupportUrl: https://github.com/DuckDuckStudio/Sundry/issues +Author: 鸭鸭「カモ」 +PackageName: Sundry +PackageUrl: https://github.com/DuckDuckStudio/Sundry/ +License: GNU Affero General Public License v3.0 +LicenseUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +Copyright: Copyright (c) 鸭鸭「カモ」 +CopyrightUrl: https://github.com/DuckDuckStudio/Sundry/blob/main/LICENSE +ShortDescription: Sundry 是一个 WinGet 本地清单管理工具,让您更方便的移除清单、修改清单,还可以辅助更新清单。 +Tags: + - Manifest + - Manifests + - WinGet + - winget-pkgs + - 修改 + - 清单 + - 移除 + - 舱单 + - 辅助 + - 辅助工具 +ReleaseNotes: | + ## 修改 + ### 优化 + - pref(revert): 不对丢弃提交进行签名 (#29) by @DuckDuckStudio in https://github.com/DuckDuckStudio/Sundry/pull/30 + - pref: 在读不到 Token 时报告错误 (#12) by @DuckDuckStudio in https://github.com/DuckDuckStudio/Sundry/pull/26 / https://github.com/DuckDuckStudio/Sundry/commit/398cf0db82a25b4072bffb2298b2239a742b8396 + + ### 杂项 + - docs: 为 README 添加徽章 by @Luna-Grace in https://github.com/DuckDuckStudio/Sundry/pull/25 + - chore(fun.txt): 花露水驱蚊效果非常好 by @DuckDuckStudio @fjwxzde in https://github.com/DuckDuckStudio/Sundry/pull/27 + + ## 新贡献着 + - @Luna-Grace 在 https://github.com/DuckDuckStudio/Sundry/pull/25 中做出了第一次贡献 + + 完整修改记录: https://github.com/DuckDuckStudio/Sundry/compare/1.2.8...1.2.9 +ReleaseNotesUrl: https://github.com/DuckDuckStudio/Sundry/releases/tag/1.2.9 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckStudio/Sundry/1.2.9/DuckStudio.Sundry.yaml b/manifests/d/DuckStudio/Sundry/1.2.9/DuckStudio.Sundry.yaml new file mode 100644 index 0000000000000..09c1450b9999c --- /dev/null +++ b/manifests/d/DuckStudio/Sundry/1.2.9/DuckStudio.Sundry.yaml @@ -0,0 +1,8 @@ +# Created with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: DuckStudio.Sundry +PackageVersion: 1.2.9 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Duplicati/Duplicati/Canary/2.1.0.120/Duplicati.Duplicati.Canary.installer.yaml b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.120/Duplicati.Duplicati.Canary.installer.yaml new file mode 100644 index 0000000000000..fb61982e4549f --- /dev/null +++ b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.120/Duplicati.Duplicati.Canary.installer.yaml @@ -0,0 +1,50 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Duplicati.Duplicati.Canary +PackageVersion: 2.1.0.120 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Protocols: +- http +- https +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/duplicati/duplicati/releases/download/v2.1.0.120_canary_2025-06-24/duplicati-2.1.0.120_canary_2025-06-24-win-x86-gui.msi + InstallerSha256: 118D604B4D64CA65C71C5B6E3CCA8C13D1BD4766E73441BA2E5D099917CC5A8D + ProductCode: '{AAD7828B-8577-4880-94B5-0332EDFD5501}' + AppsAndFeaturesEntries: + - DisplayName: Duplicati + ProductCode: '{AAD7828B-8577-4880-94B5-0332EDFD5501}' + UpgradeCode: '{1C94BC5A-2BF2-4273-9D8F-2CB30E780D16}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Duplicati 2' +- Architecture: x64 + InstallerUrl: https://github.com/duplicati/duplicati/releases/download/v2.1.0.120_canary_2025-06-24/duplicati-2.1.0.120_canary_2025-06-24-win-x64-gui.msi + InstallerSha256: E726DB4E6ADE40D45363F490E4E442B73ED1331FAE4093AE971F521B73B5CBEA + ProductCode: '{69C34DAD-0C8D-4B54-8193-ADA536F10374}' + AppsAndFeaturesEntries: + - DisplayName: Duplicati + ProductCode: '{69C34DAD-0C8D-4B54-8193-ADA536F10374}' + UpgradeCode: '{1C94BC5A-2BF2-4273-9D8F-2CB30E780D16}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Duplicati 2' +- Architecture: arm64 + InstallerUrl: https://github.com/duplicati/duplicati/releases/download/v2.1.0.120_canary_2025-06-24/duplicati-2.1.0.120_canary_2025-06-24-win-arm64-gui.msi + InstallerSha256: C9AA174E0166209D8E8315D98391471D06CB8ABB75CF893C07BA548E158C1E08 + ProductCode: '{73ED2C3F-D4AB-44B9-BFC4-1AB9954BFF23}' + AppsAndFeaturesEntries: + - DisplayName: Duplicati + ProductCode: '{73ED2C3F-D4AB-44B9-BFC4-1AB9954BFF23}' + UpgradeCode: '{1C94BC5A-2BF2-4273-9D8F-2CB30E780D16}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Duplicati 2' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Duplicati/Duplicati/Canary/2.1.0.120/Duplicati.Duplicati.Canary.locale.en-US.yaml b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.120/Duplicati.Duplicati.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..030f969bd7f6e --- /dev/null +++ b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.120/Duplicati.Duplicati.Canary.locale.en-US.yaml @@ -0,0 +1,127 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Duplicati.Duplicati.Canary +PackageVersion: 2.1.0.120 +PackageLocale: en-US +Publisher: Duplicati Team +PublisherUrl: https://www.duplicati.com/ +PublisherSupportUrl: https://forum.duplicati.com/ +Author: Kenneth Skovhede +PackageName: Duplicati 2 +PackageUrl: https://www.duplicati.com/ +License: MIT +LicenseUrl: https://github.com/duplicati/duplicati/blob/HEAD/LICENSE +ShortDescription: Duplicati is a free, open source, backup client that securely stores encrypted, incremental, compressed backups on cloud storage services and remote file servers. +Moniker: duplicati-canary +Tags: +- backup +- crypted +- data +- duplicati +- incremental +ReleaseNotes: |- + This release is a canary release intended to be used for testing. + The intention is to tap this release as an experimental release if no significant issues are uncovered. + Major changes in this version + This release is mostly fixing minor issues reported from 2.1.0.119, with only a few changes that could impact backups. + A significant amount of fixes has been completed for ngclient. + The repair flow can now detect and fix cases where a file or folder has been assigned no metadata. + Since the codebase does not support this, the current fix is to assign an empty metadata block if possible, and otherwise use the smallest metadata block. + The Test output no longer reports failures on index files that were fixed during the test process. + The destination picker UI in ngclient has been reworked in multiple ways, providing a more robust experience with the Test button and results being more prominent. + The restore flow and file picker has been updated to fix a number of issues with files and folders that have the same prefix. + Some issues with the picker not having the correct visual representation of the state. + Detailed list of changes: + - Reduced logging from remote connection + - Filter sent reports by destination to avoid duplicates + - Disable WebSocket for Agent + - Added support for using ssh-agent with the SSH backend + - Detect bind-permissions denied for the Duplicati webserver + - Improved secret provider pattern matching and misconfiguration detection + - Updated MailKit library to latest version + - Updated Windows script example + - Updated logic for assigning the OAuth url option + - Messages in test-command handler are now localizable + - Added attributes for macOS entitlements + - Detecting EPERM as "Permission Denied" on Linux/macOS + - Added null checks and invalid email detection for email report module + - Fixed 100s timeouts on some backends + - Reduced logging of messages during websocket authentication + - Changed secret provider option to be a password-type + - Changed replace-faulty-index-files option name to dont-replace-faulty-index-files + - Added correct loading and unloading of modules + - Added back PROPFIND debug options to WebDAV + - Added support for X-Forwarded-For prefix + - Added Mega S4 endpoints + - Added check and repair to detect empty metadata entries + - Fixed Ids being returned for filesets instead of version numbers + - Websocket sends update signal after metadata update + - Websocket has task-completed event + - Fixed not adding quadruple ---- on restore from config + - Removed fixed files from test output + - Handle transitive virtual folders in ListFolderContents + Ngclient changes: + - Upgraded to Angular 20 + - Fixed some colors not being selected + - Added plurals for log view + - Updated destination url picker + - Fixed issues with quadruple dashes in commandline + - Added support for "empty" view for backends with no UI configuration + - Added support for additional localization + - Fixed MSGraph not showing site-id as mandatory option + - Avoid undefined in target url + - Added support for custom OAuth URLs + - Updated logic in export page to be consistent with the current state + - Show the version number of the current server on the About page + - Added zh-Hans to list of languages + - Fixed issue with localized content not showing icons + - Fixed issue with localization not being applied + - Handling of plurals in localization + - Improved locale support for date/time/number formats + - Fixed issue with Azure blob storage UI + - Added summary to log lines headers + - Marking fields as required in destination configuration + - Fixed commandline sending empty arguments + - Prevent adding quadruple slashes + - All destinations are now in searchable dropdown + - Fixed some logic detecting an empty folder on restore + - Showing size of backup data during restore, if known + - Added backend config for AliyunOSS + - Improved logic for buttons on the database management page + - Fixed the "last backup" timestamp not showing the correct information + - Fixed an incorrect draft backup creation during restore + - Fixed loader on "Restore files" being shown even when not loading + - Restore view keeps track of temporarily recreated versions + - Restore view supports reload of the page and some navigation + - Database page does not attempt to delete non-existing file + - Added a check for restores with a backup that is missing a local database + - Fixed an issue with custom dropdowns in the destination selector not picking the correct value + - Added FTP to the list of backends (aFTP was already there) + - Added lazy-loading of custom dropdown values + - Fixed incorrect size being shown on the "Delete backup" page + - After direct import, go to home page + - Improved support for default backup options, retaining more options + - Fixed a non-working "back" button in the restore flow + - Added button to copy target url to clipboard + - Fixed some warning indicators not being correctly colored + - Updated restore view to support additional complex path configurations + - Added missing option to include metadata during restore + - Fixed not adding wildcards to file paths for restore flow + - Fixed an issue where task completion would sometimes leave the UI in an incomplete state + - Fixed url-encoding of options for export configuration + - Better detection of encrypted configuration in import configuration + - During export, disable buttons until data is correctly entered + - Fixed "No encryption" option being lost (visualy) on navigation + - Made the test status more visible and suggest to test on new backups and direct restore + - Improved waiting for repair to complete during restore without a local database + - Updated restore flow to better detect a completed restore + - Reworked all destination dialogs to better support hostname/bucketname, and path-only destinations + - Updated file picker to work better with multi-select and cross-os support + - Fixed importing metadata when importing a backup configuration + - Fixed a number of cases where icons and help-text would be rendered incorrectly + - Fixed an issue with settings view being obscured by the top-bar + - Fixed top-level source files in restore being shown as folders +ReleaseNotesUrl: https://github.com/duplicati/duplicati/releases/tag/v2.1.0.120_canary_2025-06-24 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Duplicati/Duplicati/Canary/2.1.0.120/Duplicati.Duplicati.Canary.yaml b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.120/Duplicati.Duplicati.Canary.yaml new file mode 100644 index 0000000000000..0069bbab37c97 --- /dev/null +++ b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.120/Duplicati.Duplicati.Canary.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: Duplicati.Duplicati.Canary +PackageVersion: 2.1.0.120 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Duplicati/Duplicati/Canary/2.1.0.121/Duplicati.Duplicati.Canary.installer.yaml b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.121/Duplicati.Duplicati.Canary.installer.yaml new file mode 100644 index 0000000000000..f9c0c8656f884 --- /dev/null +++ b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.121/Duplicati.Duplicati.Canary.installer.yaml @@ -0,0 +1,50 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Duplicati.Duplicati.Canary +PackageVersion: 2.1.0.121 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Protocols: +- http +- https +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/duplicati/duplicati/releases/download/v2.1.0.121_canary_2025-07-07/duplicati-2.1.0.121_canary_2025-07-07-win-x86-gui.msi + InstallerSha256: 7B1942F009872EE4644F7C0FCBD7D4734964D6769B06005255A62EF2ED717DA8 + ProductCode: '{00CEEF7D-558A-4C5A-8D8A-C994A12182A2}' + AppsAndFeaturesEntries: + - DisplayName: Duplicati + ProductCode: '{00CEEF7D-558A-4C5A-8D8A-C994A12182A2}' + UpgradeCode: '{1C94BC5A-2BF2-4273-9D8F-2CB30E780D16}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%/Duplicati 2' +- Architecture: x64 + InstallerUrl: https://github.com/duplicati/duplicati/releases/download/v2.1.0.121_canary_2025-07-07/duplicati-2.1.0.121_canary_2025-07-07-win-x64-gui.msi + InstallerSha256: 34C95960DBC458AA5479CED691E0723F65973BC5CBF4CA0AC79478AF92AC077A + ProductCode: '{03938AAE-9B49-4A42-981D-08D27C881F19}' + AppsAndFeaturesEntries: + - DisplayName: Duplicati + ProductCode: '{03938AAE-9B49-4A42-981D-08D27C881F19}' + UpgradeCode: '{1C94BC5A-2BF2-4273-9D8F-2CB30E780D16}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Duplicati 2' +- Architecture: arm64 + InstallerUrl: https://github.com/duplicati/duplicati/releases/download/v2.1.0.121_canary_2025-07-07/duplicati-2.1.0.121_canary_2025-07-07-win-arm64-gui.msi + InstallerSha256: ACF07C428F4A04E535B8CCDC9DDE9BB2F0BFFA9C340673AA5230716FCF92AA73 + ProductCode: '{E571C478-00D4-4D4F-8CC6-E3A29D75F94A}' + AppsAndFeaturesEntries: + - DisplayName: Duplicati + ProductCode: '{E571C478-00D4-4D4F-8CC6-E3A29D75F94A}' + UpgradeCode: '{1C94BC5A-2BF2-4273-9D8F-2CB30E780D16}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Duplicati 2' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Duplicati/Duplicati/Canary/2.1.0.121/Duplicati.Duplicati.Canary.locale.en-US.yaml b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.121/Duplicati.Duplicati.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..d4079363df5ba --- /dev/null +++ b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.121/Duplicati.Duplicati.Canary.locale.en-US.yaml @@ -0,0 +1,65 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Duplicati.Duplicati.Canary +PackageVersion: 2.1.0.121 +PackageLocale: en-US +Publisher: Duplicati Team +PublisherUrl: https://www.duplicati.com/ +PublisherSupportUrl: https://forum.duplicati.com/ +Author: Kenneth Skovhede +PackageName: Duplicati 2 +PackageUrl: https://www.duplicati.com/ +License: MIT +LicenseUrl: https://github.com/duplicati/duplicati/blob/HEAD/LICENSE +ShortDescription: Duplicati is a free, open source, backup client that securely stores encrypted, incremental, compressed backups on cloud storage services and remote file servers. +Moniker: duplicati-canary +Tags: +- backup +- crypted +- data +- duplicati +- incremental +ReleaseNotes: |- + This release is a canary release intended to be used for testing. + Major changes in this version + This version introduces a new SQLite library, a new VSS provider, and some minor bugfixes. + SQLite update + This version has changed the SQLite library from the previous System.Data.SQLite library to using Microsoft.Data.Sqlite. + This update was quite invasive, as the new SQLite library does not support positional arguments in SQL queries, which was used extensively in the Duplicati codebase. + With the update we see measurable speedups across all queries, and we are producing an article that describes our findings. + The update also bumps the SQLite library to use the latest available version and makes all SQLite queries async and cancelable, making the stop commands more responsive. + New VSS provider supprt + The AlphaVSS library that is used for creating VSS snapshots is no longer being maintained. + This version now defaults to using the Vanara API layer to call the Windows VSS API and create snapshots. + Like before, this still requires the VC++ Redist to be installed. + For now, it is still possible to use AlphaVSS by setting --snapshot-provider=AlphaVSS. + Note that neither works on ARM64 as Windows is lacking libraries and tools for native ARM64 snapshots, only --snapshot-provider=WMIC works on ARM64. + Bugfixing for ngclient + A number of reported compatibility issues with ngax has been fixed in this version. + Detailed list of changes: + - Commandline UI expands environment variables + - The file:// backend is no longer throttle exempt by default + - Fixed issue with TrayIcon not outputting help text in all cases + - No longer retains SeBackupPrivilege after testing for permissions + - Refresh token lifetime can now be configured + - Fixed multiple issues with kill signals not stopping the process + - Secret provider now correctly applied for all TrayIcon arguments + - Updated SQLite library to use Microsoft.Data.Sqlite packages instead + - Default VSS provider is now Vanara + - Hide options that are not supported on the current OS + - Fixed backup schedule order after multiple missed backups + - Fixed an issue with Google Drive backend not creating folders + - Updated all localization, thanks to all translators + Ngclient changes: + - Fixed issue with -- option prefixes not being matched + - Updated all localization, thanks to all translators + - Fixed issue with en-GB not using 24h time format + - Fixed issue with editor for GCS not having a path field + - Fixed issue with editor for B2 introducing extra / characters + - Fixed supporting -s postfix for backends for backwards compatibility + - Fixed case-insensitive support for boolean and enumeration options + - Custom arguments is now a two-line input +ReleaseNotesUrl: https://github.com/duplicati/duplicati/releases/tag/v2.1.0.121_canary_2025-07-07 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Duplicati/Duplicati/Canary/2.1.0.121/Duplicati.Duplicati.Canary.yaml b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.121/Duplicati.Duplicati.Canary.yaml new file mode 100644 index 0000000000000..e9bf38062fe2d --- /dev/null +++ b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.121/Duplicati.Duplicati.Canary.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: Duplicati.Duplicati.Canary +PackageVersion: 2.1.0.121 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Duplicati/Duplicati/Canary/2.1.0.122/Duplicati.Duplicati.Canary.installer.yaml b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.122/Duplicati.Duplicati.Canary.installer.yaml new file mode 100644 index 0000000000000..31492536444f9 --- /dev/null +++ b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.122/Duplicati.Duplicati.Canary.installer.yaml @@ -0,0 +1,50 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Duplicati.Duplicati.Canary +PackageVersion: 2.1.0.122 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Protocols: +- http +- https +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/duplicati/duplicati/releases/download/v2.1.0.122_canary_2025-07-07/duplicati-2.1.0.122_canary_2025-07-07-win-x86-gui.msi + InstallerSha256: 8CD29E712B89CE6B68448262E9E4815B2246C9596B620F15709F36ACAC27D17B + ProductCode: '{6DBFA3AE-9BFC-49D7-9309-CB8CA2AD5DE0}' + AppsAndFeaturesEntries: + - DisplayName: Duplicati + ProductCode: '{6DBFA3AE-9BFC-49D7-9309-CB8CA2AD5DE0}' + UpgradeCode: '{1C94BC5A-2BF2-4273-9D8F-2CB30E780D16}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%/Duplicati 2' +- Architecture: x64 + InstallerUrl: https://github.com/duplicati/duplicati/releases/download/v2.1.0.122_canary_2025-07-07/duplicati-2.1.0.122_canary_2025-07-07-win-x64-gui.msi + InstallerSha256: 26F3C55266600EEB89D305B7B0FD17AAE6658C299C5F7FE8DE9266658B93A8E5 + ProductCode: '{9EE24343-EC76-429C-B6EA-C0FDCF3D346D}' + AppsAndFeaturesEntries: + - DisplayName: Duplicati + ProductCode: '{9EE24343-EC76-429C-B6EA-C0FDCF3D346D}' + UpgradeCode: '{1C94BC5A-2BF2-4273-9D8F-2CB30E780D16}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Duplicati 2' +- Architecture: arm64 + InstallerUrl: https://github.com/duplicati/duplicati/releases/download/v2.1.0.122_canary_2025-07-07/duplicati-2.1.0.122_canary_2025-07-07-win-arm64-gui.msi + InstallerSha256: EF796071609836635F425EF93374CC8BBC536BEDFBD699E86DE74C0011F2D8FB + ProductCode: '{5B722626-C6E2-4E7E-B666-4E5C4FB8CCD6}' + AppsAndFeaturesEntries: + - DisplayName: Duplicati + ProductCode: '{5B722626-C6E2-4E7E-B666-4E5C4FB8CCD6}' + UpgradeCode: '{1C94BC5A-2BF2-4273-9D8F-2CB30E780D16}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Duplicati 2' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Duplicati/Duplicati/Canary/2.1.0.122/Duplicati.Duplicati.Canary.locale.en-US.yaml b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.122/Duplicati.Duplicati.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..8115f39ac6662 --- /dev/null +++ b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.122/Duplicati.Duplicati.Canary.locale.en-US.yaml @@ -0,0 +1,71 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Duplicati.Duplicati.Canary +PackageVersion: 2.1.0.122 +PackageLocale: en-US +Publisher: Duplicati Team +PublisherUrl: https://www.duplicati.com/ +PublisherSupportUrl: https://forum.duplicati.com/ +Author: Kenneth Skovhede +PackageName: Duplicati 2 +PackageUrl: https://www.duplicati.com/ +License: MIT +LicenseUrl: https://github.com/duplicati/duplicati/blob/HEAD/LICENSE +ShortDescription: Duplicati is a free, open source, backup client that securely stores encrypted, incremental, compressed backups on cloud storage services and remote file servers. +Moniker: duplicati-canary +Tags: +- backup +- crypted +- data +- duplicati +- incremental +ReleaseNotes: |- + This release is a canary release intended to be used for testing. + This version is nearly identical to 2.1.0.121 which has a startup crash. + Major changes in this version + This version introduces a new SQLite library, a new VSS provider, and some minor bugfixes. + SQLite update + This version has changed the SQLite library from the previous System.Data.SQLite library to using Microsoft.Data.Sqlite. + This update was quite invasive, as the new SQLite library does not support positional arguments in SQL queries, which was used extensively in the Duplicati codebase. + With the update we see measurable speedups across all queries, and we are producing an article that describes our findings. + The update also bumps the SQLite library to use the latest available version and makes all SQLite queries async and cancelable, making the stop commands more responsive. + New VSS provider supprt + The AlphaVSS library that is used for creating VSS snapshots is no longer being maintained. + This version now defaults to using the Vanara API layer to call the Windows VSS API and create snapshots. + Like before, this still requires the VC++ Redist to be installed. + For now, it is still possible to use AlphaVSS by setting --snapshot-provider=AlphaVSS. + Note that neither works on ARM64 as Windows is lacking libraries and tools for native ARM64 snapshots, only --snapshot-provider=WMIC works on ARM64. + Bugfixing for ngclient + A number of reported compatibility issues with ngax has been fixed in this version. + Detailed list of changes: + - Commandline UI expands environment variables + - The file:// backend is no longer throttle exempt by default + - Fixed issue with TrayIcon not outputting help text in all cases + - No longer retains SeBackupPrivilege after testing for permissions + - Refresh token lifetime can now be configured + - Fixed multiple issues with kill signals not stopping the process + - Secret provider now correctly applied for all TrayIcon arguments + - Updated SQLite library to use Microsoft.Data.Sqlite packages instead + - Default VSS provider is now Vanara + - Hide options that are not supported on the current OS + - Fixed backup schedule order after multiple missed backups + - Fixed an issue with Google Drive backend not creating folders + - Updated all localization, thanks to all translators + Updated in 2.1.0.122 + - Fixed numeric Id sorting + - Updated texts for disabling index recreate + - Fixed a crash on startup in 2.1.0.121 + - Fixed an issue with restore listing speed + Ngclient changes: + - Fixed issue with -- option prefixes not being matched + - Updated all localization, thanks to all translators + - Fixed issue with en-GB not using 24h time format + - Fixed issue with editor for GCS not having a path field + - Fixed issue with editor for B2 introducing extra / characters + - Fixed supporting -s postfix for backends for backwards compatibility + - Fixed case-insensitive support for boolean and enumeration options + - Custom arguments is now a two-line input +ReleaseNotesUrl: https://github.com/duplicati/duplicati/releases/tag/v2.1.0.122_canary_2025-07-07 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Duplicati/Duplicati/Canary/2.1.0.122/Duplicati.Duplicati.Canary.yaml b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.122/Duplicati.Duplicati.Canary.yaml new file mode 100644 index 0000000000000..df41a51e6617e --- /dev/null +++ b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.122/Duplicati.Duplicati.Canary.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: Duplicati.Duplicati.Canary +PackageVersion: 2.1.0.122 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dynare/Dynare/6.4/Dynare.Dynare.installer.yaml b/manifests/d/Dynare/Dynare/6.4/Dynare.Dynare.installer.yaml new file mode 100644 index 0000000000000..d1ec5bf57b8e4 --- /dev/null +++ b/manifests/d/Dynare/Dynare/6.4/Dynare.Dynare.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: Dynare.Dynare +PackageVersion: "6.4" +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: uninstallPrevious +ProductCode: Dynare 6.3 +Installers: +- Architecture: x64 + InstallerUrl: https://www.dynare.org/release/windows/dynare-6.4-win.exe + InstallerSha256: 6613D90698B35EA830453D41811E7F1CDB192410E14E66483AAC451DDB52B6B6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dynare/Dynare/6.4/Dynare.Dynare.locale.en-US.yaml b/manifests/d/Dynare/Dynare/6.4/Dynare.Dynare.locale.en-US.yaml new file mode 100644 index 0000000000000..8fc63f4862cdd --- /dev/null +++ b/manifests/d/Dynare/Dynare/6.4/Dynare.Dynare.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: Dynare.Dynare +PackageVersion: "6.4" +PackageLocale: en-US +Publisher: Dynare Team +PublisherUrl: https://www.dynare.org/ +PublisherSupportUrl: https://www.dynare.org/contact/ +PackageName: Dynare +PackageUrl: https://www.dynare.org/ +License: GPL-3.0-or-later +LicenseUrl: https://www.gnu.org/licenses/gpl-3.0.html +Copyright: © 1996–2025 Dynare Team. +ShortDescription: A software platform for handling a wide class of economic models. +Description: |- + Dynare is a software platform for handling a wide class of economic models, in particular dynamic stochastic general equilibrium (DSGE) and overlapping generations (OLG) models. The models solved by Dynare include those relying on the rational expectations hypothesis, wherein agents form their expectations about the future in a way consistent with the model. But Dynare is also able to handle models where expectations are formed differently: on one extreme, models where agents perfectly anticipate the future; on the other extreme, models where agents have limited rationality or imperfect knowledge of the state of the economy and, hence, form their expectations through a learning process. In terms of types of agents, models solved by Dynare can incorporate consumers, productive firms, governments, monetary authorities, investors and financial intermediaries. Some degree of heterogeneity can be achieved by including several distinct classes of agents in each of the aforementioned agent categories. + Dynare offers a user-friendly and intuitive way of describing these models. It is able to perform simulations of the model given a calibration of the model parameters and is also able to estimate these parameters given a dataset. In practice, the user will write a text file containing the list of model variables, the dynamic equations linking these variables together, the computing tasks to be performed and the desired graphical or numerical outputs. + A large panel of applied mathematics and computer science techniques are internally employed by Dynare: multivariate nonlinear solving and optimization, matrix factorizations, local functional approximation, Kalman filters and smoothers, MCMC techniques for Bayesian estimation, graph algorithms, optimal control, etc. References to the literature can be found here. + Various public bodies (central banks, ministries of economy and finance, international organisations) and some private financial institutions use Dynare for performing policy analysis exercises and as a support tool for forecasting exercises. In the academic world, Dynare is used for research and teaching purposes in postgraduate macroeconomics courses. +Tags: +- econometrics +- economics +- finance +- mathematics +- modeling +ReleaseNotesUrl: https://www.dynare.org/news +Documentations: +- DocumentLabel: Reference Manual + DocumentUrl: https://www.dynare.org/manual/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dynare/Dynare/6.4/Dynare.Dynare.locale.zh-CN.yaml b/manifests/d/Dynare/Dynare/6.4/Dynare.Dynare.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fdc1ba80b262f --- /dev/null +++ b/manifests/d/Dynare/Dynare/6.4/Dynare.Dynare.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: Dynare.Dynare +PackageVersion: "6.4" +PackageLocale: zh-CN +ShortDescription: 一款用于处理各类经济模型的软件平台。 +Description: |- + Dynare 是一款用于处理各类经济模型的软件平台,尤其擅长动态随机一般均衡(DSGE)和代际重叠(OLG)模型。该平台可求解基于理性预期假设的模型——即经济主体以与模型逻辑自洽的方式形成未来预期,同时也能处理非标准预期形成的模型:既包含主体能完美预知未来的极端情形,也涵盖主体存在有限理性或对经济状态认知不全、需通过学习过程形成预期的另一极端情形。在主体类型方面,Dynare 模型可整合消费者、生产企业、政府部门、货币当局、投资者及金融中介机构,并通过在每类主体中设置不同子群体来实现一定程度的异质性建模。 + Dynare 提供直观友好的模型描述方式,既能基于给定参数校准进行模型仿真,也可根据数据集进行参数估计。实际操作中,用户只需编写包含模型变量列表、动态关联方程组、计算任务指令及所需图形/数值输出的文本文件。 + 该软件内部整合了多种应用数学与计算机科学技术:多元非线性求解与优化、矩阵分解、局部函数逼近、卡尔曼滤波与平滑算法、贝叶斯估计的 MCMC 方法、图论算法、最优控制等(相关文献索引参见此处)。 + 众多公共机构(中央银行、经济财政部、国际组织)及部分私营金融机构将 Dynare 用于政策分析推演和预测支持。在学术界,该软件被广泛应用于宏观经济研究生课程的教学与科研工作。 +Tags: +- 建模 +- 数学 +- 经济学 +- 计量经济学 +- 金融 +ReleaseNotesUrl: https://www.dynare.org/news +Documentations: +- DocumentLabel: 参考手册 + DocumentUrl: https://www.dynare.org/manual/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dynare/Dynare/6.4/Dynare.Dynare.yaml b/manifests/d/Dynare/Dynare/6.4/Dynare.Dynare.yaml new file mode 100644 index 0000000000000..3e1ebd0e5d030 --- /dev/null +++ b/manifests/d/Dynare/Dynare/6.4/Dynare.Dynare.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: Dynare.Dynare +PackageVersion: "6.4" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dystroy/broot/1.47.0/Dystroy.broot.installer.yaml b/manifests/d/Dystroy/broot/1.47.0/Dystroy.broot.installer.yaml new file mode 100644 index 0000000000000..df9743e8d8a9f --- /dev/null +++ b/manifests/d/Dystroy/broot/1.47.0/Dystroy.broot.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Dystroy.broot +PackageVersion: 1.47.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: x86_64-pc-windows-gnu/broot.exe +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Canop/broot/releases/download/v1.47.0/broot_1.47.0.zip + InstallerSha256: 5B58C1296ED72908EF38859489D9BEC39B895312633923285C473243503A4DED +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dystroy/broot/1.47.0/Dystroy.broot.locale.en-US.yaml b/manifests/d/Dystroy/broot/1.47.0/Dystroy.broot.locale.en-US.yaml new file mode 100644 index 0000000000000..c5084a76b56d5 --- /dev/null +++ b/manifests/d/Dystroy/broot/1.47.0/Dystroy.broot.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: Dystroy.broot +PackageVersion: 1.47.0 +PackageLocale: en-US +Publisher: Dystroy +PublisherUrl: https://dystroy.org/broot/ +PublisherSupportUrl: https://github.com/Canop/broot/issues +PackageName: Broot +PackageUrl: https://github.com/Canop/broot +License: MIT +LicenseUrl: https://github.com/Canop/broot/blob/HEAD/LICENSE +ShortDescription: A new way to see and navigate directory trees. +Tags: +- cli +- command-line +- rust +ReleaseNotes: |- + - text files with control chars were previously previewed as binary. They're now displayed as text with some '�' when needed - Fix #977 + - files with ANSI escape codes (such as the one you would obtain with dysk --color yes > ansi.txt can now be previewed with :preview_tty - Fix #1019 + - first line of the tree is cropped (right aligned) when it doesn't fit +ReleaseNotesUrl: https://github.com/Canop/broot/releases/tag/v1.47.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Dystroy/broot/1.47.0/Dystroy.broot.yaml b/manifests/d/Dystroy/broot/1.47.0/Dystroy.broot.yaml new file mode 100644 index 0000000000000..0eef29100e1e6 --- /dev/null +++ b/manifests/d/Dystroy/broot/1.47.0/Dystroy.broot.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: Dystroy.broot +PackageVersion: 1.47.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/dRofus/dRofus/EXE/2.15.14-967/dRofus.dRofus.EXE.installer.yaml b/manifests/d/dRofus/dRofus/EXE/2.15.14-967/dRofus.dRofus.EXE.installer.yaml deleted file mode 100644 index 1a154f9b57366..0000000000000 --- a/manifests/d/dRofus/dRofus/EXE/2.15.14-967/dRofus.dRofus.EXE.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/19 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: dRofus.dRofus.EXE -PackageVersion: 2.15.14-967 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -Protocols: -- drofus -Installers: -- Architecture: x86 - InstallerUrl: https://deploy.drofus.com/stable/setup.exe - InstallerSha256: FAC189D78CC083DF856AC4882FD4A73097133C8E4217D3623D3ECAEE82AFD32E -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/d/dRofus/dRofus/EXE/2.15.14-967/dRofus.dRofus.EXE.locale.en-US.yaml b/manifests/d/dRofus/dRofus/EXE/2.15.14-967/dRofus.dRofus.EXE.locale.en-US.yaml deleted file mode 100644 index 0e7a42423bfdc..0000000000000 --- a/manifests/d/dRofus/dRofus/EXE/2.15.14-967/dRofus.dRofus.EXE.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/19 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: dRofus.dRofus.EXE -PackageVersion: 2.15.14-967 -PackageLocale: en-US -Publisher: dRofus AS -PublisherUrl: https://www.drofus.com/ -PublisherSupportUrl: https://support.drofus.com/support/home -PrivacyUrl: https://www.drofus.com/privacy-policy -Author: dRofus AS -PackageName: dRofus (EXE) -PackageUrl: https://www.drofus.com/download -License: Proprietary -ShortDescription: The leading planning and data management tool for the global building industry -Description: |- - dRofus is a unique planning, data management and BIM collaboration tool that provides all stakeholders with extensive workflow support and access to building information throughout the building lifecycle. - Unlike any other planning tool on the market, dRofus was developed directly on behalf of public building owners. Capturing client requirements (EIR), validating design solutions (BIM) against client requirements, management of public standards and equipment planning are core features in the software. - dRofus has strong ArchiCAD, Revit and IFC integration with bi-directional data sync capabilities. - Model data from each discipline is captured, together with planning data, non-geometric data and documents, in a centralized database accessible to all project stakeholders via the dRofus desktop client and dRofus Web. - Typically, stakeholders produce data using different software programs that have different data schemas, with different filetypes, distributed across multiple servers, located in multiple different locations - and often this data is not re-usable by others. - This is why dRofus has become an essential tool for BIM projects - we consolidate disparate data sets and convert them into project information, insight and intelligence accessible to all project stakeholders. -Tags: -- bim -ReleaseNotesUrl: https://www.drofus.com/release-notes -Documentations: -- DocumentLabel: User Guides - DocumentUrl: https://help.drofus.com/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/d/dRofus/dRofus/EXE/2.15.14-967/dRofus.dRofus.EXE.locale.zh-CN.yaml b/manifests/d/dRofus/dRofus/EXE/2.15.14-967/dRofus.dRofus.EXE.locale.zh-CN.yaml deleted file mode 100644 index 4ebf391b59abc..0000000000000 --- a/manifests/d/dRofus/dRofus/EXE/2.15.14-967/dRofus.dRofus.EXE.locale.zh-CN.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/19 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: dRofus.dRofus.EXE -PackageVersion: 2.15.14-967 -PackageLocale: zh-CN -License: 专有软件 -ShortDescription: 全球建筑行业领先的规划与数据管理工具 -Description: |- - dRofus 是一款独特的规划、数据管理与 BIM 协作工具,为所有利益相关方提供贯穿建筑全生命周期的工作流支持及建筑信息访问。 - 与其他市面规划工具不同,dRofus 直接受公共建筑业主委托开发。其核心功能包括:客户需求采集(EIR)、基于客户需求的设计方案验证(BIM)、公共标准管理以及设备规划。 - dRofus 与 ArchiCAD、Revit 和 IFC 深度集成,支持双向数据同步。各专业模型数据、规划数据、非几何数据及文档均存储于中央数据库,所有项目成员可通过 dRofus 桌面客户端和 Web 端实时访问。 - 传统工作模式中,利益相关方使用不同软件生成异构数据——这些数据遵循不同架构、存储为不同格式、分散于多台服务器、位于不同地理位置,且往往无法被他人复用。 - 正因如此,dRofus 已成为 BIM 项目不可或缺的工具:我们将碎片化数据集整合转化为可共享的项目信息、洞察与智能,赋能所有项目参与者。 -Documentations: -- DocumentLabel: 用户指南 - DocumentUrl: https://help.drofus.com/ -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/d/dRofus/dRofus/EXE/2.15.14-967/dRofus.dRofus.EXE.yaml b/manifests/d/dRofus/dRofus/EXE/2.15.14-967/dRofus.dRofus.EXE.yaml deleted file mode 100644 index 1ffdea75a8f95..0000000000000 --- a/manifests/d/dRofus/dRofus/EXE/2.15.14-967/dRofus.dRofus.EXE.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/19 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: dRofus.dRofus.EXE -PackageVersion: 2.15.14-967 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/d/dRofus/dRofus/EXE/2.15.15-1024/dRofus.dRofus.EXE.installer.yaml b/manifests/d/dRofus/dRofus/EXE/2.15.15-1024/dRofus.dRofus.EXE.installer.yaml deleted file mode 100644 index 0dd1f7c85a100..0000000000000 --- a/manifests/d/dRofus/dRofus/EXE/2.15.15-1024/dRofus.dRofus.EXE.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/24 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: dRofus.dRofus.EXE -PackageVersion: 2.15.15-1024 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -Protocols: -- drofus -Installers: -- Architecture: x86 - InstallerUrl: https://deploy.drofus.com/stable/setup.exe - InstallerSha256: 59A8DAD1C2EE9B01007004EDA550A48E91668503D0925626147786AE42FE6C25 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/d/dRofus/dRofus/EXE/2.15.15-1024/dRofus.dRofus.EXE.locale.en-US.yaml b/manifests/d/dRofus/dRofus/EXE/2.15.15-1024/dRofus.dRofus.EXE.locale.en-US.yaml deleted file mode 100644 index 227c9648f089a..0000000000000 --- a/manifests/d/dRofus/dRofus/EXE/2.15.15-1024/dRofus.dRofus.EXE.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/24 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: dRofus.dRofus.EXE -PackageVersion: 2.15.15-1024 -PackageLocale: en-US -Publisher: dRofus AS -PublisherUrl: https://www.drofus.com/ -PublisherSupportUrl: https://support.drofus.com/support/home -PrivacyUrl: https://www.drofus.com/privacy-policy -Author: dRofus AS -PackageName: dRofus (EXE) -PackageUrl: https://www.drofus.com/download -License: Proprietary -ShortDescription: The leading planning and data management tool for the global building industry -Description: |- - dRofus is a unique planning, data management and BIM collaboration tool that provides all stakeholders with extensive workflow support and access to building information throughout the building lifecycle. - Unlike any other planning tool on the market, dRofus was developed directly on behalf of public building owners. Capturing client requirements (EIR), validating design solutions (BIM) against client requirements, management of public standards and equipment planning are core features in the software. - dRofus has strong ArchiCAD, Revit and IFC integration with bi-directional data sync capabilities. - Model data from each discipline is captured, together with planning data, non-geometric data and documents, in a centralized database accessible to all project stakeholders via the dRofus desktop client and dRofus Web. - Typically, stakeholders produce data using different software programs that have different data schemas, with different filetypes, distributed across multiple servers, located in multiple different locations - and often this data is not re-usable by others. - This is why dRofus has become an essential tool for BIM projects - we consolidate disparate data sets and convert them into project information, insight and intelligence accessible to all project stakeholders. -Tags: -- bim -ReleaseNotesUrl: https://www.drofus.com/release-notes -Documentations: -- DocumentLabel: User Guides - DocumentUrl: https://help.drofus.com/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/d/dRofus/dRofus/EXE/2.15.15-1024/dRofus.dRofus.EXE.locale.zh-CN.yaml b/manifests/d/dRofus/dRofus/EXE/2.15.15-1024/dRofus.dRofus.EXE.locale.zh-CN.yaml deleted file mode 100644 index 7755d2892d705..0000000000000 --- a/manifests/d/dRofus/dRofus/EXE/2.15.15-1024/dRofus.dRofus.EXE.locale.zh-CN.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/24 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: dRofus.dRofus.EXE -PackageVersion: 2.15.15-1024 -PackageLocale: zh-CN -License: 专有软件 -ShortDescription: 全球建筑行业领先的规划与数据管理工具 -Description: |- - dRofus 是一款独特的规划、数据管理与 BIM 协作工具,为所有利益相关方提供贯穿建筑全生命周期的工作流支持及建筑信息访问。 - 与其他市面规划工具不同,dRofus 直接受公共建筑业主委托开发。其核心功能包括:客户需求采集(EIR)、基于客户需求的设计方案验证(BIM)、公共标准管理以及设备规划。 - dRofus 与 ArchiCAD、Revit 和 IFC 深度集成,支持双向数据同步。各专业模型数据、规划数据、非几何数据及文档均存储于中央数据库,所有项目成员可通过 dRofus 桌面客户端和 Web 端实时访问。 - 传统工作模式中,利益相关方使用不同软件生成异构数据——这些数据遵循不同架构、存储为不同格式、分散于多台服务器、位于不同地理位置,且往往无法被他人复用。 - 正因如此,dRofus 已成为 BIM 项目不可或缺的工具:我们将碎片化数据集整合转化为可共享的项目信息、洞察与智能,赋能所有项目参与者。 -Documentations: -- DocumentLabel: 用户指南 - DocumentUrl: https://help.drofus.com/ -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/d/dRofus/dRofus/EXE/2.15.15-1024/dRofus.dRofus.EXE.yaml b/manifests/d/dRofus/dRofus/EXE/2.15.15-1024/dRofus.dRofus.EXE.yaml deleted file mode 100644 index 7ad063e6899af..0000000000000 --- a/manifests/d/dRofus/dRofus/EXE/2.15.15-1024/dRofus.dRofus.EXE.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/24 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: dRofus.dRofus.EXE -PackageVersion: 2.15.15-1024 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/d/dRofus/dRofus/EXE/2.15.15/dRofus.dRofus.EXE.installer.yaml b/manifests/d/dRofus/dRofus/EXE/2.15.15/dRofus.dRofus.EXE.installer.yaml new file mode 100644 index 0000000000000..07d6d703b29f8 --- /dev/null +++ b/manifests/d/dRofus/dRofus/EXE/2.15.15/dRofus.dRofus.EXE.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: dRofus.dRofus.EXE +PackageVersion: 2.15.15 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- drofus +Installers: +- Architecture: x86 + InstallerUrl: https://deploy.drofus.com/stable/setup.exe + InstallerSha256: 59A8DAD1C2EE9B01007004EDA550A48E91668503D0925626147786AE42FE6C25 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/dRofus/dRofus/EXE/2.15.15/dRofus.dRofus.EXE.locale.en-US.yaml b/manifests/d/dRofus/dRofus/EXE/2.15.15/dRofus.dRofus.EXE.locale.en-US.yaml new file mode 100644 index 0000000000000..790a92aaea8fe --- /dev/null +++ b/manifests/d/dRofus/dRofus/EXE/2.15.15/dRofus.dRofus.EXE.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: dRofus.dRofus.EXE +PackageVersion: 2.15.15 +PackageLocale: en-US +Publisher: dRofus AS +PublisherUrl: https://www.drofus.com/ +PublisherSupportUrl: https://support.drofus.com/support/home +PrivacyUrl: https://www.drofus.com/privacy-policy +Author: dRofus AS +PackageName: dRofus (EXE) +PackageUrl: https://www.drofus.com/download +License: Proprietary +ShortDescription: The leading planning and data management tool for the global building industry +Description: |- + dRofus is a unique planning, data management and BIM collaboration tool that provides all stakeholders with extensive workflow support and access to building information throughout the building lifecycle. + Unlike any other planning tool on the market, dRofus was developed directly on behalf of public building owners. Capturing client requirements (EIR), validating design solutions (BIM) against client requirements, management of public standards and equipment planning are core features in the software. + dRofus has strong ArchiCAD, Revit and IFC integration with bi-directional data sync capabilities. + Model data from each discipline is captured, together with planning data, non-geometric data and documents, in a centralized database accessible to all project stakeholders via the dRofus desktop client and dRofus Web. + Typically, stakeholders produce data using different software programs that have different data schemas, with different filetypes, distributed across multiple servers, located in multiple different locations - and often this data is not re-usable by others. + This is why dRofus has become an essential tool for BIM projects - we consolidate disparate data sets and convert them into project information, insight and intelligence accessible to all project stakeholders. +Tags: +- bim +ReleaseNotesUrl: https://www.drofus.com/release-notes +Documentations: +- DocumentLabel: User Guides + DocumentUrl: https://help.drofus.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/dRofus/dRofus/EXE/2.15.15/dRofus.dRofus.EXE.locale.zh-CN.yaml b/manifests/d/dRofus/dRofus/EXE/2.15.15/dRofus.dRofus.EXE.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a36f4315ec4f0 --- /dev/null +++ b/manifests/d/dRofus/dRofus/EXE/2.15.15/dRofus.dRofus.EXE.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: dRofus.dRofus.EXE +PackageVersion: 2.15.15 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 全球建筑行业领先的规划与数据管理工具 +Description: |- + dRofus 是一款独特的规划、数据管理与 BIM 协作工具,为所有利益相关方提供贯穿建筑全生命周期的工作流支持及建筑信息访问。 + 与其他市面规划工具不同,dRofus 直接受公共建筑业主委托开发。其核心功能包括:客户需求采集(EIR)、基于客户需求的设计方案验证(BIM)、公共标准管理以及设备规划。 + dRofus 与 ArchiCAD、Revit 和 IFC 深度集成,支持双向数据同步。各专业模型数据、规划数据、非几何数据及文档均存储于中央数据库,所有项目成员可通过 dRofus 桌面客户端和 Web 端实时访问。 + 传统工作模式中,利益相关方使用不同软件生成异构数据——这些数据遵循不同架构、存储为不同格式、分散于多台服务器、位于不同地理位置,且往往无法被他人复用。 + 正因如此,dRofus 已成为 BIM 项目不可或缺的工具:我们将碎片化数据集整合转化为可共享的项目信息、洞察与智能,赋能所有项目参与者。 +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://help.drofus.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/dRofus/dRofus/EXE/2.15.15/dRofus.dRofus.EXE.yaml b/manifests/d/dRofus/dRofus/EXE/2.15.15/dRofus.dRofus.EXE.yaml new file mode 100644 index 0000000000000..809065c91cc35 --- /dev/null +++ b/manifests/d/dRofus/dRofus/EXE/2.15.15/dRofus.dRofus.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: dRofus.dRofus.EXE +PackageVersion: 2.15.15 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/den4b/ReNamer/7.8/den4b.ReNamer.installer.yaml b/manifests/d/den4b/ReNamer/7.8/den4b.ReNamer.installer.yaml new file mode 100644 index 0000000000000..7ba88ac6c8bf2 --- /dev/null +++ b/manifests/d/den4b/ReNamer/7.8/den4b.ReNamer.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: den4b.ReNamer +PackageVersion: "7.8" +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: ReNamer_is1 +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x86 + InstallerUrl: https://www.den4b.com/download/renamer/installer/7.8?token=winget + InstallerSha256: 3DC51DAE1D4F5E55DAEB9166978FB581E81C434C8B50486FE15675876A7D0430 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/den4b/ReNamer/7.8/den4b.ReNamer.locale.en-US.yaml b/manifests/d/den4b/ReNamer/7.8/den4b.ReNamer.locale.en-US.yaml new file mode 100644 index 0000000000000..62ccffc9835b1 --- /dev/null +++ b/manifests/d/den4b/ReNamer/7.8/den4b.ReNamer.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: den4b.ReNamer +PackageVersion: "7.8" +PackageLocale: en-US +Publisher: den4b Team +PublisherUrl: https://www.den4b.com/ +PublisherSupportUrl: https://www.den4b.com/contact +PrivacyUrl: https://www.den4b.com/privacy +Author: den4b Team +PackageName: ReNamer +PackageUrl: https://www.den4b.com/products/renamer +License: CC-BY-NC-ND-3.0 +LicenseUrl: https://www.den4b.com/license +Copyright: den4b Team +ShortDescription: A very powerful and flexible file renaming tool +Description: |- + ReNamer is a very powerful and flexible file renaming tool, which offers all the standard renaming procedures, including prefixes, suffixes, replacements, case changes, as well as removing contents of brackets, adding number sequences, changing file extensions, etc. For advanced users there is support for Regular Expressions and a PascalScript rule, which lets users program their very own renaming rule. + Program allows you to combine multiple renaming actions as a rule set, applying each action in a logical sequence, which can be saved, loaded, and managed within the program. In addition, it has an ability to rename folders, process regular expressions, Unicode capable, and supports variety of meta tags, such as: ID3v1, ID3v2, EXIF, OLE, AVI, MD5, CRC32, and SHA1. +Tags: +- file +- folder +- rename +- renamer +- renaming +ReleaseNotes: |- + ReNamer 7.8 has been released. + This is another big update that brings several new features and some under-the-hood improvements. + New features: + 1. Implement the Mapping rule. Use this rule to map old filenames to new filenames. + 2. Add an option to export names and new names to clipboard. These can be be loaded directly into a Mapping rule. + 3. Improvements for the Reformat Date rule: Unicode word boundaries, pass-through quoted text in date patterns, improved performance, add ISO date-time formats to the dropdown options. + 4. Display detailed information about the character at the caret position in the Analyze window. + The new Mapping rule allows you to map old filenames to new filenames, which can be externally managed and loaded into the rule via clipboard or CSV file. It also allows you to capture the current set of files and their generated new names as a rule set, which could then also be applied to a different set of files. + + For example, imagine that you have a list of audio files from an album but the filenames contain only the track numbers, and you also have a list of full song titles. With the new Mapping rule you can create a mapping to convert track numbers into to the corresponding full song titles, like shown above. + The improved Analyze dialog can now identify complex Unicode characters. This can be especially useful when dealing with characters that are visually indistinguishable from other characters. Here is a quick demo of how it looks: + + Maintenance and other changes: + - Optimized implementation of renaming rules. + - Fix: The rules list is loosing focus after moving rules. Issue introduced in v7.7. + - Gracefully handle errors when generating rule statements. Prevent bogus rule configurations from breaking the main user interface. + - Updated language files: French, Turkish, Portuguese (Brazil), Traditional Chinese, Simplified Chinese, Russian. + For more details see the full changelog between versions 7.7 and 7.8. +ReleaseNotesUrl: https://www.den4b.com/changelogs/renamer +PurchaseUrl: https://www.den4b.com/purchase +Documentations: +- DocumentLabel: User Manual + DocumentUrl: https://www.den4b.com/wiki/ReNamer +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/den4b/ReNamer/7.8/den4b.ReNamer.locale.zh-CN.yaml b/manifests/d/den4b/ReNamer/7.8/den4b.ReNamer.locale.zh-CN.yaml new file mode 100644 index 0000000000000..887b09ac3b2a1 --- /dev/null +++ b/manifests/d/den4b/ReNamer/7.8/den4b.ReNamer.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: den4b.ReNamer +PackageVersion: "7.8" +PackageLocale: zh-CN +Publisher: den4b Team +PublisherUrl: https://www.den4b.com/ +PublisherSupportUrl: https://www.den4b.com/contact +PrivacyUrl: https://www.den4b.com/privacy +Author: den4b Team +PackageName: ReNamer +PackageUrl: https://www.den4b.com/products/renamer +License: CC-BY-NC-ND-3.0 +LicenseUrl: https://www.den4b.com/license +Copyright: den4b Team +ShortDescription: 一款十分强大和灵活的文件重命名工具 +Description: |- + ReNamer 是一款十分强大和灵活的文件重命名工具,提供了所有标准的重命名程序,包括前缀、后缀、替换、大小写更改,以及删除括号里的内容、添加数字序列、更改文件扩展名等。对于高级用户,程序还支持正则表达式和 PascalScript 规则,允许用户编写自己的重命名规则。 + 程序允许您将多个重命名操作组合为一个规则集,按照逻辑顺序应用每个操作,并可以在程序中保存、加载和管理。此外,它还能重命名文件夹,处理正则表达式,支持 Unicode,并支持各种元标签,例如 ID3v1、ID3v2、EXIF、OLE、AVI、MD5、CRC32、SHA1。 +Tags: +- 文件 +- 文件夹 +- 更名 +- 更名器 +- 重命名 +ReleaseNotesUrl: https://www.den4b.com/changelogs/renamer +PurchaseUrl: https://www.den4b.com/purchase +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://www.den4b.com/wiki/ReNamer +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/den4b/ReNamer/7.8/den4b.ReNamer.yaml b/manifests/d/den4b/ReNamer/7.8/den4b.ReNamer.yaml new file mode 100644 index 0000000000000..bd2891ef5c648 --- /dev/null +++ b/manifests/d/den4b/ReNamer/7.8/den4b.ReNamer.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: den4b.ReNamer +PackageVersion: "7.8" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/deviceinsight/kafkactl/5.10.0/deviceinsight.kafkactl.installer.yaml b/manifests/d/deviceinsight/kafkactl/5.10.0/deviceinsight.kafkactl.installer.yaml new file mode 100644 index 0000000000000..ac601363149bc --- /dev/null +++ b/manifests/d/deviceinsight/kafkactl/5.10.0/deviceinsight.kafkactl.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.6.0.schema.json +PackageIdentifier: deviceinsight.kafkactl +PackageVersion: 5.10.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-06-24" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: kafkactl.exe + PortableCommandAlias: kafkactl + InstallerUrl: https://github.com/deviceinsight/kafkactl/releases/download/v5.10.0/kafkactl_5.10.0_windows_amd64.zip + InstallerSha256: c6b0ad55b842d7607f8cc7ec0860abfa8e83d4882af221d878615479918832c2 + UpgradeBehavior: uninstallPrevious + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: kafkactl.exe + PortableCommandAlias: kafkactl + InstallerUrl: https://github.com/deviceinsight/kafkactl/releases/download/v5.10.0/kafkactl_5.10.0_windows_386.zip + InstallerSha256: 10a743e29be4b433d4bef96677687947cd2db65de186d54edcd259e979a11ac9 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: kafkactl.exe + PortableCommandAlias: kafkactl + InstallerUrl: https://github.com/deviceinsight/kafkactl/releases/download/v5.10.0/kafkactl_5.10.0_windows_arm64.zip + InstallerSha256: af3d8a0a5a3e58d817437d3586b85535f0cd2b8d3770dfb743c0f29cdd1fb7d7 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/d/deviceinsight/kafkactl/5.10.0/deviceinsight.kafkactl.locale.en-US.yaml b/manifests/d/deviceinsight/kafkactl/5.10.0/deviceinsight.kafkactl.locale.en-US.yaml new file mode 100644 index 0000000000000..48d183698bfe9 --- /dev/null +++ b/manifests/d/deviceinsight/kafkactl/5.10.0/deviceinsight.kafkactl.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.6.0.schema.json +PackageIdentifier: deviceinsight.kafkactl +PackageVersion: 5.10.0 +PackageLocale: en-US +Publisher: deviceinsight +PublisherSupportUrl: https://github.com/deviceinsight/kafkactl/issues +PackageName: kafkactl +PackageUrl: https://www.device-insight.com/ +License: Apache-2.0 +ShortDescription: A command-line interface for interaction with Apache Kafka +Moniker: kafkactl +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/d/deviceinsight/kafkactl/5.10.0/deviceinsight.kafkactl.yaml b/manifests/d/deviceinsight/kafkactl/5.10.0/deviceinsight.kafkactl.yaml new file mode 100644 index 0000000000000..3d88dd1e4a4f7 --- /dev/null +++ b/manifests/d/deviceinsight/kafkactl/5.10.0/deviceinsight.kafkactl.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.6.0.schema.json +PackageIdentifier: deviceinsight.kafkactl +PackageVersion: 5.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/d/deviceinsight/kafkactl/5.10.1/deviceinsight.kafkactl.installer.yaml b/manifests/d/deviceinsight/kafkactl/5.10.1/deviceinsight.kafkactl.installer.yaml new file mode 100644 index 0000000000000..c15a2f7fb2727 --- /dev/null +++ b/manifests/d/deviceinsight/kafkactl/5.10.1/deviceinsight.kafkactl.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.6.0.schema.json +PackageIdentifier: deviceinsight.kafkactl +PackageVersion: 5.10.1 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-02" +Installers: + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: kafkactl.exe + PortableCommandAlias: kafkactl + InstallerUrl: https://github.com/deviceinsight/kafkactl/releases/download/v5.10.1/kafkactl_5.10.1_windows_386.zip + InstallerSha256: 7df712276c932a63568b985e4d60f3cdba6ed90c838063e46c754c5bcf7f24e2 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: kafkactl.exe + PortableCommandAlias: kafkactl + InstallerUrl: https://github.com/deviceinsight/kafkactl/releases/download/v5.10.1/kafkactl_5.10.1_windows_arm64.zip + InstallerSha256: 3f9368735f606bef90808a289be32dee37afe9f719d7eead8c1e05aa2ba0a6be + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: kafkactl.exe + PortableCommandAlias: kafkactl + InstallerUrl: https://github.com/deviceinsight/kafkactl/releases/download/v5.10.1/kafkactl_5.10.1_windows_amd64.zip + InstallerSha256: 81f25bdb9fe5cf2be4f9c740f61921f3254dd11c003ef75cac63fd31ceacc476 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/d/deviceinsight/kafkactl/5.10.1/deviceinsight.kafkactl.locale.en-US.yaml b/manifests/d/deviceinsight/kafkactl/5.10.1/deviceinsight.kafkactl.locale.en-US.yaml new file mode 100644 index 0000000000000..a80c6af49445b --- /dev/null +++ b/manifests/d/deviceinsight/kafkactl/5.10.1/deviceinsight.kafkactl.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.6.0.schema.json +PackageIdentifier: deviceinsight.kafkactl +PackageVersion: 5.10.1 +PackageLocale: en-US +Publisher: deviceinsight +PublisherSupportUrl: https://github.com/deviceinsight/kafkactl/issues +PackageName: kafkactl +PackageUrl: https://www.device-insight.com/ +License: Apache-2.0 +ShortDescription: A command-line interface for interaction with Apache Kafka +Moniker: kafkactl +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/d/deviceinsight/kafkactl/5.10.1/deviceinsight.kafkactl.yaml b/manifests/d/deviceinsight/kafkactl/5.10.1/deviceinsight.kafkactl.yaml new file mode 100644 index 0000000000000..b3c9a71ab3f08 --- /dev/null +++ b/manifests/d/deviceinsight/kafkactl/5.10.1/deviceinsight.kafkactl.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.6.0.schema.json +PackageIdentifier: deviceinsight.kafkactl +PackageVersion: 5.10.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/d/diamondburned/Dissent/0.0.35/diamondburned.Dissent.installer.yaml b/manifests/d/diamondburned/Dissent/0.0.35/diamondburned.Dissent.installer.yaml new file mode 100644 index 0000000000000..1915c1f0989ed --- /dev/null +++ b/manifests/d/diamondburned/Dissent/0.0.35/diamondburned.Dissent.installer.yaml @@ -0,0 +1,70 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: diamondburned.Dissent +PackageVersion: 0.0.35 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /exenoui /quiet /norestart + SilentWithProgress: /exenoui /passive /norestart + InstallLocation: APPDIR="" + Log: /log "" +ExpectedReturnCodes: +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish +- InstallerReturnCode: 1654 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1650 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1649 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1644 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1643 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1640 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated +- InstallerReturnCode: 1639 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1638 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 1633 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1628 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1625 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1623 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress +- InstallerReturnCode: 1602 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1601 + ReturnResponse: contactSupport +- InstallerReturnCode: 87 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1 + ReturnResponse: invalidParameter +- InstallerReturnCode: -1 + ReturnResponse: cancelledByUser +UpgradeBehavior: install +ProductCode: '{756D48C0-D6FA-4D98-851E-5A5E2B14F97E}' +ReleaseDate: 2025-07-03 +AppsAndFeaturesEntries: +- ProductCode: '{756D48C0-D6FA-4D98-851E-5A5E2B14F97E}' + UpgradeCode: '{D309A390-E30E-4265-8DA3-4BA3CA15098E}' + InstallerType: msi +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/diamondburned/dissent/releases/download/v0.0.35/dissent-windows-amd64.exe + InstallerSha256: F600B44FF1E78171BD1DBCFCC892EE9C43CF998F5CDF7A24800C18938753F00C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/diamondburned/Dissent/0.0.35/diamondburned.Dissent.locale.en-US.yaml b/manifests/d/diamondburned/Dissent/0.0.35/diamondburned.Dissent.locale.en-US.yaml new file mode 100644 index 0000000000000..7a7becb34fe92 --- /dev/null +++ b/manifests/d/diamondburned/Dissent/0.0.35/diamondburned.Dissent.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: diamondburned.Dissent +PackageVersion: 0.0.35 +PackageLocale: en-US +Publisher: diamondburned +PublisherUrl: https://libdb.so/ +PublisherSupportUrl: https://github.com/diamondburned/dissent/issues +PackageName: Dissent +PackageUrl: https://github.com/diamondburned/dissent +License: GPL-3.0 +LicenseUrl: https://github.com/diamondburned/dissent/blob/HEAD/LICENSE.md +Copyright: © 2025 diamondburned and contributors +ShortDescription: Tiny native Discord app +Description: |- + Dissent (previously gtkcord4) is a third-party Discord client designed for a smooth, native experience on Linux desktops. + Built with the GTK4 and libadwaita for a modern look and feel, it delivers your favorite Discord app in a lightweight and visually appealing package. +ReleaseNotes: |- + What's Changed + - Warn user when uploading files that are too large (#350) + - Fix oversized images due to weird GTK change (#352 and #351) + Full Changelog: https://github.com/diamondburned/dissent/compare/v0.0.34...v0.0.35 +ReleaseNotesUrl: https://github.com/diamondburned/dissent/releases/tag/v0.0.35 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/diamondburned/Dissent/0.0.35/diamondburned.Dissent.locale.zh-CN.yaml b/manifests/d/diamondburned/Dissent/0.0.35/diamondburned.Dissent.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4cb2533a6b80f --- /dev/null +++ b/manifests/d/diamondburned/Dissent/0.0.35/diamondburned.Dissent.locale.zh-CN.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: diamondburned.Dissent +PackageVersion: 0.0.35 +PackageLocale: zh-CN +ShortDescription: 迷你原生 Discord 应用 +Description: |- + Dissent(前身为 gtkcord4)是一款第三方 Discord 客户端,专为在 Linux 桌面上提供流畅的原生体验而设计。 + 通过 GTK4 和 libadwaita 构建现代界面样式,并以轻巧且视觉上吸引人的软件包成为您最喜爱的 Discord 应用。 +ReleaseNotesUrl: https://github.com/diamondburned/dissent/releases/tag/v0.0.35 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/diamondburned/Dissent/0.0.35/diamondburned.Dissent.yaml b/manifests/d/diamondburned/Dissent/0.0.35/diamondburned.Dissent.yaml new file mode 100644 index 0000000000000..1071da3122a75 --- /dev/null +++ b/manifests/d/diamondburned/Dissent/0.0.35/diamondburned.Dissent.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: diamondburned.Dissent +PackageVersion: 0.0.35 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/direnv/direnv/2.37.0/direnv.direnv.installer.yaml b/manifests/d/direnv/direnv/2.37.0/direnv.direnv.installer.yaml new file mode 100644 index 0000000000000..30732200fb46e --- /dev/null +++ b/manifests/d/direnv/direnv/2.37.0/direnv.direnv.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: direnv.direnv +PackageVersion: 2.37.0 +InstallerType: portable +Commands: +- direnv +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/direnv/direnv/releases/download/v2.37.0/direnv.windows-386 + InstallerSha256: B83946BD388A4347DE20493AF02125319FF5DC73E9AA040B4248799A6EA8E065 +- Architecture: x64 + InstallerUrl: https://github.com/direnv/direnv/releases/download/v2.37.0/direnv.windows-amd64 + InstallerSha256: AD87E078809C930F97EACF84BED6D150EEAD62B084CA22F21900AF3C3D857192 +- Architecture: arm64 + InstallerUrl: https://github.com/direnv/direnv/releases/download/v2.37.0/direnv.windows-arm64 + InstallerSha256: 040E70C039B8CCCE7A1D4F2550503AEC16F575BD3966CD84E88BC531B5CF0156 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/direnv/direnv/2.37.0/direnv.direnv.locale.en-US.yaml b/manifests/d/direnv/direnv/2.37.0/direnv.direnv.locale.en-US.yaml new file mode 100644 index 0000000000000..dfc4eb25148f3 --- /dev/null +++ b/manifests/d/direnv/direnv/2.37.0/direnv.direnv.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: direnv.direnv +PackageVersion: 2.37.0 +PackageLocale: en-US +Publisher: Jonas Chevalier +PublisherUrl: https://zimbatm.com/ +PublisherSupportUrl: https://github.com/direnv/direnv/issues +Author: Jonas Chevalier +PackageName: direnv +PackageUrl: https://direnv.net/ +License: MIT +LicenseUrl: https://direnv.net/LICENSE +Copyright: Copyright (c) Jonas Chevalier (zimbatm) and contributors +ShortDescription: Shell extension to manage environment variables per current directory. +Description: An extension for to augment existing shells with a new feature that can load and unload environment variables depending on the current directory. +Moniker: direnv +Tags: +- bash +- environment +- environment-variable +- fish +- git-bash +- powershell +- shell +- shell-extension +- tcsh +- zsh +ReleaseNotes: |- + - docs: add github-actions page + - docs: document sub-commands + - docs: fix link to guix manual (#1421) + - docs: re-generate manpages + - feat(direnv export gha): strengthen export format + - feat: add windows arm64 target (#1444) + - fix(powershell): "export pwsh" to resolve PowerShell special character issues (#1448) + - fix(python): do not include patch level in virtual environment names (#1423) + - fix(use_nix): always restore special variables (#1424) + - fix: accept true as valid DIRENV_DEBUG value (#1365) + - fix: add trailing newline to error messages (#1426) + - fix: delete duplicate ansi escape code +ReleaseNotesUrl: https://github.com/direnv/direnv/releases/tag/v2.37.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/direnv/direnv/2.37.0/direnv.direnv.locale.zh-CN.yaml b/manifests/d/direnv/direnv/2.37.0/direnv.direnv.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5d94e4e9eff95 --- /dev/null +++ b/manifests/d/direnv/direnv/2.37.0/direnv.direnv.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: direnv.direnv +PackageVersion: 2.37.0 +PackageLocale: zh-CN +Publisher: Jonas Chevalier +PublisherUrl: https://zimbatm.com/ +PublisherSupportUrl: https://github.com/direnv/direnv/issues +Author: Jonas Chevalier +PackageName: direnv +PackageUrl: https://direnv.net/ +License: MIT +LicenseUrl: https://direnv.net/LICENSE +Copyright: Copyright (c) Jonas Chevalier (zimbatm) and contributors +ShortDescription: 用于管理当前目录下环境变量的 Shell 扩展 +Description: 一个用于增强现有 Shell 的扩展,可根据当前目录加载和卸载环境变量。 +Tags: +- bash +- fish +- git-bash +- powershell +- shell +- tcsh +- zsh +- 扩展 +- 环境 +- 环境变量 +ReleaseNotesUrl: https://github.com/direnv/direnv/releases/tag/v2.37.0 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/direnv/direnv/2.37.0/direnv.direnv.yaml b/manifests/d/direnv/direnv/2.37.0/direnv.direnv.yaml new file mode 100644 index 0000000000000..2652624ddba60 --- /dev/null +++ b/manifests/d/direnv/direnv/2.37.0/direnv.direnv.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: direnv.direnv +PackageVersion: 2.37.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/divVerent/AAAAXY/1.6.252/divVerent.AAAAXY.installer.yaml b/manifests/d/divVerent/AAAAXY/1.6.252/divVerent.AAAAXY.installer.yaml new file mode 100644 index 0000000000000..fa7285a7ddc43 --- /dev/null +++ b/manifests/d/divVerent/AAAAXY/1.6.252/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.252 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: aaaaxy-windows-amd64.exe +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/divVerent/aaaaxy/releases/download/v1.6.252/aaaaxy-windows-amd64-v1.6.252.zip + InstallerSha256: B1E20D2430DBAB4692A0C114B634B50F536B96242E9BD144F70AAC022DEDB34F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/divVerent/AAAAXY/1.6.252/divVerent.AAAAXY.locale.en-US.yaml b/manifests/d/divVerent/AAAAXY/1.6.252/divVerent.AAAAXY.locale.en-US.yaml new file mode 100644 index 0000000000000..0170359b848ca --- /dev/null +++ b/manifests/d/divVerent/AAAAXY/1.6.252/divVerent.AAAAXY.locale.en-US.yaml @@ -0,0 +1,54 @@ +# 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.252 +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.241: + - Engine: disable translations while evaluating placeholders in untranslated + strings. + - Engine: minor module updates. + - Translations: include menu in Slovak. Level not translated yet - volunteers + on Transifex welcome! +ReleaseNotesUrl: https://github.com/divVerent/aaaaxy/releases/tag/v1.6.252 +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.252/divVerent.AAAAXY.yaml b/manifests/d/divVerent/AAAAXY/1.6.252/divVerent.AAAAXY.yaml new file mode 100644 index 0000000000000..42a8700b49aa9 --- /dev/null +++ b/manifests/d/divVerent/AAAAXY/1.6.252/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.252 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.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/dotNetInstaller/dotNetInstaller/3.2.115.0/dotNetInstaller.dotNetInstaller.installer.yaml b/manifests/d/dotNetInstaller/dotNetInstaller/3.2.115.0/dotNetInstaller.dotNetInstaller.installer.yaml new file mode 100644 index 0000000000000..88e3b21756935 --- /dev/null +++ b/manifests/d/dotNetInstaller/dotNetInstaller/3.2.115.0/dotNetInstaller.dotNetInstaller.installer.yaml @@ -0,0 +1,19 @@ +# 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: dotNetInstaller.dotNetInstaller +PackageVersion: 3.2.115.0 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLLOCATION="" +ProductCode: '{7CB4378B-1798-4A69-8D00-D2CC3169FEFE}' +ReleaseDate: 2022-01-15 +AppsAndFeaturesEntries: +- UpgradeCode: '{0CA33DC6-CBF7-4576-802A-69334216231D}' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/dotnetinstaller/dotnetinstaller/releases/download/3.2.115/dotNetInstaller.3.2.115.0.msi + InstallerSha256: 121CEDC056EBE7424E4C3BA54D948860C8D9D5D05A88E5AD36C4CF6314FA7743 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/dotNetInstaller/dotNetInstaller/3.2.115.0/dotNetInstaller.dotNetInstaller.locale.en-US.yaml b/manifests/d/dotNetInstaller/dotNetInstaller/3.2.115.0/dotNetInstaller.dotNetInstaller.locale.en-US.yaml new file mode 100644 index 0000000000000..2055eccf85a8c --- /dev/null +++ b/manifests/d/dotNetInstaller/dotNetInstaller/3.2.115.0/dotNetInstaller.dotNetInstaller.locale.en-US.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.defaultLocale.1.10.0.schema.json + +PackageIdentifier: dotNetInstaller.dotNetInstaller +PackageVersion: 3.2.115.0 +PackageLocale: en-US +Publisher: DevAge, Vestris Inc. & Contributors +PublisherUrl: https://dotnetinstaller.github.io/dotnetinstaller/ +PublisherSupportUrl: https://github.com/dotnetinstaller/dotnetinstaller/issues +# PrivacyUrl: +# Author: +PackageName: dotNetInstaller +PackageUrl: https://dotnetinstaller.github.io/dotnetinstaller/ +License: MIT +LicenseUrl: https://github.com/dotnetinstaller/dotnetinstaller/blob/HEAD/LICENSE +Copyright: Copyright (c) 2009-2022 Davide Icardi, Daniel Doubrovkine and Contributors. +# CopyrightUrl: +ShortDescription: A widely used, general-purpose setup bootstrapper for MS Windows. +Description: |- + dotNetInstaller is a widely used, general-purpose setup bootstrapper for Microsoft Windows XP, 2003, Vista, 2008, 7, 8, 2012, 8.1, 10, 2016, 2019, 2022, and 11. + dotNetInstaller enables the developer to define the application prerequisites and install the correct version(s) of these components in a predictable order based on the processor architecture, user operating system type and language, allow the user to download these components from the web, install these components directly from a single packaged setup, local media or both. dotNetInstaller is very feature rich and runs on all known Windows operating systems with a very tiny footprint. + A boostrapper doesn't replace tools like InstallShield, Wise, Visual Studio Setup and Deployment Project or Wix. The goal is to create an application to help users with installing the correct prerequisites. Most real world applications need to install several components to work properly, including Windows Service Packs, Internet Explorer, MDAC or .NET Framework. This kind of applications are most commonly known as bootstrappers. dotNetInstaller is such a bootstrapper. +# Moniker: +Tags: +- bootstrapper +- installer +- setup +ReleaseNotes: |- + Features + - #146 - Added support for specific Windows 10 versions, Windows 11, Windows Server 2019, and Windows Server 2022 - @icnocop. + - #144 - Fix: OSinfo not displaying correctly if server 2016 or 2019 - @icnocop. +ReleaseNotesUrl: https://github.com/dotnetinstaller/dotnetinstaller/releases/tag/3.2.115 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/dotNetInstaller/dotNetInstaller/3.2.115.0/dotNetInstaller.dotNetInstaller.locale.zh-CN.yaml b/manifests/d/dotNetInstaller/dotNetInstaller/3.2.115.0/dotNetInstaller.dotNetInstaller.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7f917bb2b6115 --- /dev/null +++ b/manifests/d/dotNetInstaller/dotNetInstaller/3.2.115.0/dotNetInstaller.dotNetInstaller.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: dotNetInstaller.dotNetInstaller +PackageVersion: 3.2.115.0 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +# License: +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 一款广泛使用、适用于 Microsoft Windows 的通用安装引导程序。 +Description: |- + dotNetInstaller 是一款广泛使用的通用安装引导程序,支持 Microsoft Windows XP、2003、Vista、2008、7、8、2012、8.1、10、2016、2019、2022、11。 + dotNetInstaller 允许开发者定义应用程序的先决条件,并根据处理器架构、用户操作系统类型和语言,以可预测的顺序安装这些组件的正确版本。用户既可从网络下载这些组件,也能通过单一打包安装程序、本地介质或两者结合的方式进行直接安装。dotNetInstaller 功能丰富,在所有已知 Windows 操作系统上均可运行,且占用资源极少。 + 引导程序并非用于替代 InstallShield、Wise、Visual Studio 安装部署项目或 Wix 等工具。其核心目标是创建辅助用户正确安装必备组件的应用程序。大多数实际应用需要安装多个组件(如 Windows 服务包、Internet Explorer、MDAC 或 .NET Framework)才能正常运行,这类应用程序通常被称为引导程序——而 dotNetInstaller 正是这样的引导解决方案。 +# Moniker: +Tags: +- 安装 +- 安装器 +- 安装程序 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/dotNetInstaller/dotNetInstaller/3.2.115.0/dotNetInstaller.dotNetInstaller.yaml b/manifests/d/dotNetInstaller/dotNetInstaller/3.2.115.0/dotNetInstaller.dotNetInstaller.yaml new file mode 100644 index 0000000000000..3f6c98960abc4 --- /dev/null +++ b/manifests/d/dotNetInstaller/dotNetInstaller/3.2.115.0/dotNetInstaller.dotNetInstaller.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: dotNetInstaller.dotNetInstaller +PackageVersion: 3.2.115.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/dotenvx/dotenvx/1.45.2/dotenvx.dotenvx.installer.yaml b/manifests/d/dotenvx/dotenvx/1.45.2/dotenvx.dotenvx.installer.yaml new file mode 100644 index 0000000000000..e13e0d703096f --- /dev/null +++ b/manifests/d/dotenvx/dotenvx/1.45.2/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.45.2 +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.45.2/dotenvx-1.45.2-windows-x86_64.zip + InstallerSha256: 67ED5C7D419200F22469404883578A01999E3C4E235A9617DADC53D38828E585 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-02 diff --git a/manifests/d/dotenvx/dotenvx/1.45.2/dotenvx.dotenvx.locale.en-US.yaml b/manifests/d/dotenvx/dotenvx/1.45.2/dotenvx.dotenvx.locale.en-US.yaml new file mode 100644 index 0000000000000..909b9bd72220a --- /dev/null +++ b/manifests/d/dotenvx/dotenvx/1.45.2/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.45.2 +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.45.2 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/dotenvx/dotenvx/1.45.2/dotenvx.dotenvx.yaml b/manifests/d/dotenvx/dotenvx/1.45.2/dotenvx.dotenvx.yaml new file mode 100644 index 0000000000000..d775ccfc11ff6 --- /dev/null +++ b/manifests/d/dotenvx/dotenvx/1.45.2/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.45.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.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/d/douzone/WEHAGO/1.5.7.40/douzone.WEHAGO.installer.yaml b/manifests/d/douzone/WEHAGO/1.5.7.40/douzone.WEHAGO.installer.yaml deleted file mode 100644 index b04bd81c37b05..0000000000000 --- a/manifests/d/douzone/WEHAGO/1.5.7.40/douzone.WEHAGO.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/19 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: douzone.WEHAGO -PackageVersion: 1.5.7.40 -InstallerType: nullsoft -Installers: -- Architecture: x64 - InstallerUrl: https://www.wehago.com/pctalkpub/wehago/windows - InstallerSha256: 7637CD1D357A1C437A736D0014D245D1E0B2C02C4106392E7208001BB34D6FE2 - AppsAndFeaturesEntries: - - Publisher: douzone - ProductCode: com.douzone.pc.wehago -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/d/douzone/WEHAGO/1.5.7.40/douzone.WEHAGO.yaml b/manifests/d/douzone/WEHAGO/1.5.7.40/douzone.WEHAGO.yaml deleted file mode 100644 index 9569b3b183cd0..0000000000000 --- a/manifests/d/douzone/WEHAGO/1.5.7.40/douzone.WEHAGO.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/19 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: douzone.WEHAGO -PackageVersion: 1.5.7.40 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/d/douzone/WEHAGO/1.5.8.41/douzone.WEHAGO.installer.yaml b/manifests/d/douzone/WEHAGO/1.5.8.41/douzone.WEHAGO.installer.yaml new file mode 100644 index 0000000000000..95fd3155568a1 --- /dev/null +++ b/manifests/d/douzone/WEHAGO/1.5.8.41/douzone.WEHAGO.installer.yaml @@ -0,0 +1,15 @@ +# Automatically updated by the winget bot at 2025/Jun/26 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: douzone.WEHAGO +PackageVersion: 1.5.8.41 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://www.wehago.com/pctalkpub/wehago/windows + InstallerSha256: 1873D13A695815DA2A7531EC1B731A4DA13AE8B97AF02584B32340070DE15353 + AppsAndFeaturesEntries: + - Publisher: douzone + ProductCode: com.douzone.pc.wehago +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/douzone/WEHAGO/1.5.7.40/douzone.WEHAGO.locale.en-US.yaml b/manifests/d/douzone/WEHAGO/1.5.8.41/douzone.WEHAGO.locale.en-US.yaml similarity index 84% rename from manifests/d/douzone/WEHAGO/1.5.7.40/douzone.WEHAGO.locale.en-US.yaml rename to manifests/d/douzone/WEHAGO/1.5.8.41/douzone.WEHAGO.locale.en-US.yaml index d85700fc644f6..78820143c3241 100644 --- a/manifests/d/douzone/WEHAGO/1.5.7.40/douzone.WEHAGO.locale.en-US.yaml +++ b/manifests/d/douzone/WEHAGO/1.5.8.41/douzone.WEHAGO.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jun/19 +# Automatically updated by the winget bot at 2025/Jun/26 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: douzone.WEHAGO -PackageVersion: 1.5.7.40 +PackageVersion: 1.5.8.41 PackageLocale: en-US Publisher: douzone PublisherUrl: https://www.douzone.com/ diff --git a/manifests/d/douzone/WEHAGO/1.5.8.41/douzone.WEHAGO.yaml b/manifests/d/douzone/WEHAGO/1.5.8.41/douzone.WEHAGO.yaml new file mode 100644 index 0000000000000..74ea33d8fbe3c --- /dev/null +++ b/manifests/d/douzone/WEHAGO/1.5.8.41/douzone.WEHAGO.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jun/26 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: douzone.WEHAGO +PackageVersion: 1.5.8.41 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/dprint/dprint/0.50.1/dprint.dprint.installer.yaml b/manifests/d/dprint/dprint/0.50.1/dprint.dprint.installer.yaml new file mode 100644 index 0000000000000..bfa4b6cc2c8af --- /dev/null +++ b/manifests/d/dprint/dprint/0.50.1/dprint.dprint.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: dprint.dprint +PackageVersion: 0.50.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: dprint.exe +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dprint/dprint/releases/download/0.50.1/dprint-x86_64-pc-windows-msvc.zip + InstallerSha256: 8102E7F79394CF71F2E9B63CA0CF791DDDACC6E118F5A29C1C88777ECEA37E3E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/dprint/dprint/0.50.1/dprint.dprint.locale.en-US.yaml b/manifests/d/dprint/dprint/0.50.1/dprint.dprint.locale.en-US.yaml new file mode 100644 index 0000000000000..ced9b6cff8342 --- /dev/null +++ b/manifests/d/dprint/dprint/0.50.1/dprint.dprint.locale.en-US.yaml @@ -0,0 +1,48 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: dprint.dprint +PackageVersion: 0.50.1 +PackageLocale: en-US +Publisher: dsherret +PublisherUrl: https://github.com/dprint +PublisherSupportUrl: https://github.com/dprint/dprint/issues +PackageName: dprint +PackageUrl: https://github.com/dprint/dprint +License: MIT +LicenseUrl: https://github.com/dprint/dprint/blob/HEAD/LICENSE +ShortDescription: Pluggable and configurable code formatting platform written in Rust. +Tags: +- formatter +ReleaseNotes: |- + Changes + - fix: update to wasmer v6 (#984) + - perf: avoid traversing some non-matching directories when providing include globs on the command line (#999) + - perf: avoid traversing more directories (#1000) + Install + Run dprint upgrade or see https://dprint.dev/install/ + Checksums + ───────────────────────────────────────────┬──────────────────────────────────────────────────────────────── + Artifact │SHA-256 Checksum + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-x86_64-apple-darwin.zip │def8ae0eb100c91df7a3a05ff699c84cac3deb67b6e08ed186d70c669194e031 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-aarch64-apple-darwin.zip │c92e1a8dddd9bc65391468265b2805cb2317e4490fd777bca2dfaf1ef716ac36 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-x86_64-pc-windows-msvc.zip │8102e7f79394cf71f2e9b63ca0cf791dddacc6e118f5a29c1c88777ecea37e3e + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-x86_64-pc-windows-msvc-installer.exe│0f66e0c39395985eb28f2a45bb2956298773e006de1eba2924123edaecb55297 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-x86_64-unknown-linux-gnu.zip │11d791a5da5178a6d1359f23ea00b2d47426672fe310c5f32da2c66e80e07675 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-x86_64-unknown-linux-musl.zip │82ddddc881bf8ec0b4c55e3f835a2dc3d81d8fff39aad79e6b5c017e4dff1d5e + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-aarch64-unknown-linux-gnu.zip │54e5d4bd3f186fb8acfcf6e40df15af7e53c12799ed21a1409d133868a66bb40 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-aarch64-unknown-linux-musl.zip │a3e954bcd8e569812d4bb1f9c8001c9a6802ce38e33c0c0273ac51eb59cf5072 + ───────────────────────────────────────────┼──────────────────────────────────────────────────────────────── + dprint-riscv64gc-unknown-linux-gnu.zip │841120bd28f9d3afdd89bab65a2cb676877c808a460507f1567d97604a111b61 + ───────────────────────────────────────────┴──────────────────────────────────────────────────────────────── +ReleaseNotesUrl: https://github.com/dprint/dprint/releases/tag/0.50.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/dprint/dprint/0.50.1/dprint.dprint.yaml b/manifests/d/dprint/dprint/0.50.1/dprint.dprint.yaml new file mode 100644 index 0000000000000..cbfc0612a37fb --- /dev/null +++ b/manifests/d/dprint/dprint/0.50.1/dprint.dprint.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: dprint.dprint +PackageVersion: 0.50.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/duan/tre/0.4.0/duan.tre.installer.yaml b/manifests/d/duan/tre/0.4.0/duan.tre.installer.yaml new file mode 100644 index 0000000000000..09948768f30c2 --- /dev/null +++ b/manifests/d/duan/tre/0.4.0/duan.tre.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: duan.tre +PackageVersion: 0.4.0 +Installers: +- InstallerUrl: https://github.com/dduan/tre/releases/download/v0.4.0/tre-v0.4.1-x86_64-pc-windows-msvc.msi + InstallerLocale: en-US + Architecture: x64 + InstallerType: wix + InstallerSha256: 154FF87E848CEFA8176E69CBF06318456CD782BC55BF067E18F385C226D268CF + ProductCode: '{719C2B87-D777-41F4-841A-F2538C9F82A5}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/duan/tre/0.4.0/duan.tre.locale.en-US.yaml b/manifests/d/duan/tre/0.4.0/duan.tre.locale.en-US.yaml new file mode 100644 index 0000000000000..dff7ba339112d --- /dev/null +++ b/manifests/d/duan/tre/0.4.0/duan.tre.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: duan.tre +PackageVersion: 0.4.0 +PackageLocale: en-US +Publisher: Daniel Duan +PackageName: tre-command +License: MIT License +ShortDescription: Tree command, improved. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/duan/tre/0.4.0/duan.tre.yaml b/manifests/d/duan/tre/0.4.0/duan.tre.yaml new file mode 100644 index 0000000000000..bfd9c63cdeac3 --- /dev/null +++ b/manifests/d/duan/tre/0.4.0/duan.tre.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: duan.tre +PackageVersion: 0.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassIn/6.0.1.1081/EEO.ClassIn.installer.yaml b/manifests/e/EEO/ClassIn/6.0.1.1081/EEO.ClassIn.installer.yaml new file mode 100644 index 0000000000000..201ecbdd6460f --- /dev/null +++ b/manifests/e/EEO/ClassIn/6.0.1.1081/EEO.ClassIn.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: EEO.ClassIn +PackageVersion: 6.0.1.1081 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silentWithProgress +InstallerSwitches: + Silent: /SILENT + SilentWithProgress: /SILENT + InstallLocation: /DIR="" +UpgradeBehavior: install +Protocols: +- classin +FileExtensions: +- eda +- edb +- edt +- edu +- edv +- epub +ProductCode: ClassIn +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://download.eeo.cn/client/classin_win_install_6.0.1.1081_x64.exe + InstallerSha256: AA1ABED08016D99DD4CB28763A520C8246FBC2ACBB9EC796ABE53ACDCA962B09 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassIn/6.0.1.1081/EEO.ClassIn.locale.en-US.yaml b/manifests/e/EEO/ClassIn/6.0.1.1081/EEO.ClassIn.locale.en-US.yaml new file mode 100644 index 0000000000000..82fbfe9ef3efa --- /dev/null +++ b/manifests/e/EEO/ClassIn/6.0.1.1081/EEO.ClassIn.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: EEO.ClassIn +PackageVersion: 6.0.1.1081 +PackageLocale: en-US +Publisher: Beijing EEO Education Technology Co., Ltd. +PublisherUrl: https://www.classin.com/ +PublisherSupportUrl: https://help.classin.com/ +PrivacyUrl: https://www.classin.com/agreement/?type=privacy +Author: Beijing EEO Education Technology Co., Ltd. +PackageName: ClassIn +PackageUrl: https://www.classin.com/download/ +License: Proprietary +LicenseUrl: https://www.classin.com/agreement/?type=user +Copyright: Copyright 2014-2024 Empower Education Online Ltd. All Rights Reserved. +CopyrightUrl: https://www.classin.com/agreement/?type=user +ShortDescription: Your One-Stop Solution to Hybrid Teaching and Learning +Moniker: classin +Tags: +- class +- classroom +- education +- lecture +- lesson +- teaching +ReleaseNotesUrl: https://help.classin.com/dcfa/cb11 +PurchaseUrl: https://www.classin.com/pricing/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassIn/6.0.1.1081/EEO.ClassIn.locale.zh-CN.yaml b/manifests/e/EEO/ClassIn/6.0.1.1081/EEO.ClassIn.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ccbe2258b7c4b --- /dev/null +++ b/manifests/e/EEO/ClassIn/6.0.1.1081/EEO.ClassIn.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: EEO.ClassIn +PackageVersion: 6.0.1.1081 +PackageLocale: zh-CN +Publisher: Beijing EEO Education Technology Co., Ltd. +PublisherUrl: https://www.eeo.cn/cn/ +PublisherSupportUrl: https://help.eeo.cn/ +PrivacyUrl: https://share.eeo.cn/p/agreement/?type=privacy&lang=zh-CN +Author: 北京翼鸥教育科技有限公司 +PackageName: ClassIn +PackageUrl: https://www.eeo.cn/cn/download +License: 专有软件 +LicenseUrl: https://share.eeo.cn/p/agreement/?type=user&lang=zh-CN +Copyright: Copyright 2014-2024 Empower Education Online Ltd. All Rights Reserved. +CopyrightUrl: https://share.eeo.cn/p/agreement/?type=user&lang=zh-CN +ShortDescription: 在线直播教学和学习管理系统 +Tags: +- 幻灯片 +- 教学 +- 教育 +- 模板 +- 演示 +- 课件 +ReleaseNotesUrl: https://help.eeo.cn/docs/3KsWW7 +PurchaseUrl: https://www.eeo.cn/cn/pricing +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassIn/6.0.1.1081/EEO.ClassIn.yaml b/manifests/e/EEO/ClassIn/6.0.1.1081/EEO.ClassIn.yaml new file mode 100644 index 0000000000000..aff44b653c58c --- /dev/null +++ b/manifests/e/EEO/ClassIn/6.0.1.1081/EEO.ClassIn.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: EEO.ClassIn +PackageVersion: 6.0.1.1081 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassIn/6.0.2.31/EEO.ClassIn.installer.yaml b/manifests/e/EEO/ClassIn/6.0.2.31/EEO.ClassIn.installer.yaml new file mode 100644 index 0000000000000..b00da0d9e869d --- /dev/null +++ b/manifests/e/EEO/ClassIn/6.0.2.31/EEO.ClassIn.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: EEO.ClassIn +PackageVersion: 6.0.2.31 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silentWithProgress +InstallerSwitches: + Silent: /SILENT + SilentWithProgress: /SILENT + InstallLocation: /DIR="" +UpgradeBehavior: install +Protocols: +- classin +FileExtensions: +- eda +- edb +- edt +- edu +- edv +- epub +ProductCode: ClassIn +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://download.eeo.cn/client/classin_win_install_6.0.2.31_x64.exe + InstallerSha256: A432E0B1D16CD31AB438CF1158B2803DEC84A7034B7E2B6EB6A73FAD9F82F2F1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassIn/6.0.2.31/EEO.ClassIn.locale.en-US.yaml b/manifests/e/EEO/ClassIn/6.0.2.31/EEO.ClassIn.locale.en-US.yaml new file mode 100644 index 0000000000000..d66e07afdb666 --- /dev/null +++ b/manifests/e/EEO/ClassIn/6.0.2.31/EEO.ClassIn.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: EEO.ClassIn +PackageVersion: 6.0.2.31 +PackageLocale: en-US +Publisher: Beijing EEO Education Technology Co., Ltd. +PublisherUrl: https://www.classin.com/ +PublisherSupportUrl: https://help.classin.com/ +PrivacyUrl: https://www.classin.com/agreement/?type=privacy +Author: Beijing EEO Education Technology Co., Ltd. +PackageName: ClassIn +PackageUrl: https://www.classin.com/download/ +License: Proprietary +LicenseUrl: https://www.classin.com/agreement/?type=user +Copyright: Copyright 2014-2024 Empower Education Online Ltd. All Rights Reserved. +CopyrightUrl: https://www.classin.com/agreement/?type=user +ShortDescription: Your One-Stop Solution to Hybrid Teaching and Learning +Moniker: classin +Tags: +- class +- classroom +- education +- lecture +- lesson +- teaching +ReleaseNotesUrl: https://help.classin.com/dcfa/cb11 +PurchaseUrl: https://www.classin.com/pricing/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassIn/6.0.2.31/EEO.ClassIn.locale.zh-CN.yaml b/manifests/e/EEO/ClassIn/6.0.2.31/EEO.ClassIn.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a7a79faa48410 --- /dev/null +++ b/manifests/e/EEO/ClassIn/6.0.2.31/EEO.ClassIn.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: EEO.ClassIn +PackageVersion: 6.0.2.31 +PackageLocale: zh-CN +Publisher: Beijing EEO Education Technology Co., Ltd. +PublisherUrl: https://www.eeo.cn/cn/ +PublisherSupportUrl: https://help.eeo.cn/ +PrivacyUrl: https://share.eeo.cn/p/agreement/?type=privacy&lang=zh-CN +Author: 北京翼鸥教育科技有限公司 +PackageName: ClassIn +PackageUrl: https://www.eeo.cn/cn/download +License: 专有软件 +LicenseUrl: https://share.eeo.cn/p/agreement/?type=user&lang=zh-CN +Copyright: Copyright 2014-2024 Empower Education Online Ltd. All Rights Reserved. +CopyrightUrl: https://share.eeo.cn/p/agreement/?type=user&lang=zh-CN +ShortDescription: 在线直播教学和学习管理系统 +Tags: +- 幻灯片 +- 教学 +- 教育 +- 模板 +- 演示 +- 课件 +ReleaseNotesUrl: https://help.eeo.cn/docs/3KsWW7 +PurchaseUrl: https://www.eeo.cn/cn/pricing +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassIn/6.0.2.31/EEO.ClassIn.yaml b/manifests/e/EEO/ClassIn/6.0.2.31/EEO.ClassIn.yaml new file mode 100644 index 0000000000000..a62aa411c0340 --- /dev/null +++ b/manifests/e/EEO/ClassIn/6.0.2.31/EEO.ClassIn.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: EEO.ClassIn +PackageVersion: 6.0.2.31 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassIn/6.0.2.411/EEO.ClassIn.installer.yaml b/manifests/e/EEO/ClassIn/6.0.2.411/EEO.ClassIn.installer.yaml new file mode 100644 index 0000000000000..dd07bf9413835 --- /dev/null +++ b/manifests/e/EEO/ClassIn/6.0.2.411/EEO.ClassIn.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: EEO.ClassIn +PackageVersion: 6.0.2.411 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silentWithProgress +InstallerSwitches: + Silent: /SILENT + SilentWithProgress: /SILENT + InstallLocation: /DIR="" +UpgradeBehavior: install +Protocols: +- classin +FileExtensions: +- eda +- edb +- edt +- edu +- edv +- epub +ProductCode: ClassIn +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://download.eeo.cn/client/classin_win_install_6.0.2.411_x64.exe + InstallerSha256: F5DC2ACC268F7FFFA39C14E1D2379A16A91DE7B1291C487F0C5D3AF0435B9BEF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassIn/6.0.2.411/EEO.ClassIn.locale.en-US.yaml b/manifests/e/EEO/ClassIn/6.0.2.411/EEO.ClassIn.locale.en-US.yaml new file mode 100644 index 0000000000000..b56ede7025c31 --- /dev/null +++ b/manifests/e/EEO/ClassIn/6.0.2.411/EEO.ClassIn.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: EEO.ClassIn +PackageVersion: 6.0.2.411 +PackageLocale: en-US +Publisher: Beijing EEO Education Technology Co., Ltd. +PublisherUrl: https://www.classin.com/ +PublisherSupportUrl: https://help.classin.com/ +PrivacyUrl: https://www.classin.com/agreement/?type=privacy +Author: Beijing EEO Education Technology Co., Ltd. +PackageName: ClassIn +PackageUrl: https://www.classin.com/download/ +License: Proprietary +LicenseUrl: https://www.classin.com/agreement/?type=user +Copyright: Copyright 2014-2024 Empower Education Online Ltd. All Rights Reserved. +CopyrightUrl: https://www.classin.com/agreement/?type=user +ShortDescription: Your One-Stop Solution to Hybrid Teaching and Learning +Moniker: classin +Tags: +- class +- classroom +- education +- lecture +- lesson +- teaching +ReleaseNotesUrl: https://help.classin.com/dcfa/cb11 +PurchaseUrl: https://www.classin.com/pricing/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassIn/6.0.2.411/EEO.ClassIn.locale.zh-CN.yaml b/manifests/e/EEO/ClassIn/6.0.2.411/EEO.ClassIn.locale.zh-CN.yaml new file mode 100644 index 0000000000000..85e9a8ca4c09b --- /dev/null +++ b/manifests/e/EEO/ClassIn/6.0.2.411/EEO.ClassIn.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: EEO.ClassIn +PackageVersion: 6.0.2.411 +PackageLocale: zh-CN +Publisher: Beijing EEO Education Technology Co., Ltd. +PublisherUrl: https://www.eeo.cn/cn/ +PublisherSupportUrl: https://help.eeo.cn/ +PrivacyUrl: https://share.eeo.cn/p/agreement/?type=privacy&lang=zh-CN +Author: 北京翼鸥教育科技有限公司 +PackageName: ClassIn +PackageUrl: https://www.eeo.cn/cn/download +License: 专有软件 +LicenseUrl: https://share.eeo.cn/p/agreement/?type=user&lang=zh-CN +Copyright: Copyright 2014-2024 Empower Education Online Ltd. All Rights Reserved. +CopyrightUrl: https://share.eeo.cn/p/agreement/?type=user&lang=zh-CN +ShortDescription: 在线直播教学和学习管理系统 +Tags: +- 幻灯片 +- 教学 +- 教育 +- 模板 +- 演示 +- 课件 +ReleaseNotesUrl: https://help.eeo.cn/docs/3KsWW7 +PurchaseUrl: https://www.eeo.cn/cn/pricing +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassIn/6.0.2.411/EEO.ClassIn.yaml b/manifests/e/EEO/ClassIn/6.0.2.411/EEO.ClassIn.yaml new file mode 100644 index 0000000000000..e32d38001515e --- /dev/null +++ b/manifests/e/EEO/ClassIn/6.0.2.411/EEO.ClassIn.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: EEO.ClassIn +PackageVersion: 6.0.2.411 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassInX/6.0.1.1083/EEO.ClassInX.installer.yaml b/manifests/e/EEO/ClassInX/6.0.1.1083/EEO.ClassInX.installer.yaml new file mode 100644 index 0000000000000..5ffa195566f36 --- /dev/null +++ b/manifests/e/EEO/ClassInX/6.0.1.1083/EEO.ClassInX.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: EEO.ClassInX +PackageVersion: 6.0.1.1083 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silentWithProgress +InstallerSwitches: + Silent: /SILENT + SilentWithProgress: /SILENT + InstallLocation: /DIR="" +UpgradeBehavior: install +Protocols: +- classin +FileExtensions: +- eda +- edb +- edt +- edu +- edv +- epub +ProductCode: ClassIn X +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://download.eeo.cn/client/classinx_win_install_6.0.1.1083_x64.exe + InstallerSha256: 6BF03831388E2F4915E1F69FE6EAA127BFE5575A98F643F33319EB4AF9DBDC88 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassInX/6.0.1.1083/EEO.ClassInX.locale.en-US.yaml b/manifests/e/EEO/ClassInX/6.0.1.1083/EEO.ClassInX.locale.en-US.yaml new file mode 100644 index 0000000000000..de9d94540038f --- /dev/null +++ b/manifests/e/EEO/ClassInX/6.0.1.1083/EEO.ClassInX.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: EEO.ClassInX +PackageVersion: 6.0.1.1083 +PackageLocale: en-US +Publisher: Beijing EEO Education Technology Co., Ltd. +PublisherUrl: https://www.classin.com/ +PublisherSupportUrl: https://help.classin.com/ +PrivacyUrl: https://www.classin.com/agreement/?type=privacy +Author: Beijing EEO Education Technology Co., Ltd. +PackageName: ClassIn X +PackageUrl: https://www.classin.com/download/ +License: Proprietary +LicenseUrl: https://www.classin.com/agreement/?type=user +Copyright: Copyright 2014-2024 Empower Education Online Ltd. All Rights Reserved. +CopyrightUrl: https://www.classin.com/agreement/?type=user +ShortDescription: The ClassIn X application lifts your offline classroom onto the cloud. +Tags: +- class +- classroom +- education +- lecture +- lesson +- teaching +ReleaseNotesUrl: https://help.classin.com/dcfa/9973 +PurchaseUrl: https://www.classin.com/pricing/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassInX/6.0.1.1083/EEO.ClassInX.locale.zh-CN.yaml b/manifests/e/EEO/ClassInX/6.0.1.1083/EEO.ClassInX.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e8f87a60cf0b1 --- /dev/null +++ b/manifests/e/EEO/ClassInX/6.0.1.1083/EEO.ClassInX.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: EEO.ClassInX +PackageVersion: 6.0.1.1083 +PackageLocale: zh-CN +Publisher: Beijing EEO Education Technology Co., Ltd. +PublisherUrl: https://www.eeo.cn/cn/ +PublisherSupportUrl: https://help.eeo.cn/ +PrivacyUrl: https://share.eeo.cn/p/agreement/?type=privacy&lang=zh-CN +Author: 北京翼鸥教育科技有限公司 +PackageName: ClassIn X +PackageUrl: https://www.eeo.cn/cn/download +License: 专有软件 +LicenseUrl: https://share.eeo.cn/p/agreement/?type=user&lang=zh-CN +Copyright: Copyright 2014-2024 Empower Education Online Ltd. All Rights Reserved. +CopyrightUrl: https://share.eeo.cn/p/agreement/?type=user&lang=zh-CN +ShortDescription: OMO 线上线下融合课堂和线下智慧课堂 +Tags: +- 幻灯片 +- 教学 +- 教育 +- 模板 +- 演示 +- 课件 +ReleaseNotesUrl: https://help.eeo.cn/docs/yzR46p +PurchaseUrl: https://www.eeo.cn/cn/pricing +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassInX/6.0.1.1083/EEO.ClassInX.yaml b/manifests/e/EEO/ClassInX/6.0.1.1083/EEO.ClassInX.yaml new file mode 100644 index 0000000000000..aa2572d17c309 --- /dev/null +++ b/manifests/e/EEO/ClassInX/6.0.1.1083/EEO.ClassInX.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: EEO.ClassInX +PackageVersion: 6.0.1.1083 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassInX/6.0.2.33/EEO.ClassInX.installer.yaml b/manifests/e/EEO/ClassInX/6.0.2.33/EEO.ClassInX.installer.yaml new file mode 100644 index 0000000000000..67d59cc1dcde8 --- /dev/null +++ b/manifests/e/EEO/ClassInX/6.0.2.33/EEO.ClassInX.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: EEO.ClassInX +PackageVersion: 6.0.2.33 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silentWithProgress +InstallerSwitches: + Silent: /SILENT + SilentWithProgress: /SILENT + InstallLocation: /DIR="" +UpgradeBehavior: install +Protocols: +- classin +FileExtensions: +- eda +- edb +- edt +- edu +- edv +- epub +ProductCode: ClassIn X +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://download.eeo.cn/client/classinx_win_install_6.0.2.33_x64.exe + InstallerSha256: 8A133595DB229D6CCF40E4D799D1682A71E2C9E49A4BE64F992BABB5DD9CC7F8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassInX/6.0.2.33/EEO.ClassInX.locale.en-US.yaml b/manifests/e/EEO/ClassInX/6.0.2.33/EEO.ClassInX.locale.en-US.yaml new file mode 100644 index 0000000000000..c5e8cc734dcdd --- /dev/null +++ b/manifests/e/EEO/ClassInX/6.0.2.33/EEO.ClassInX.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: EEO.ClassInX +PackageVersion: 6.0.2.33 +PackageLocale: en-US +Publisher: Beijing EEO Education Technology Co., Ltd. +PublisherUrl: https://www.classin.com/ +PublisherSupportUrl: https://help.classin.com/ +PrivacyUrl: https://www.classin.com/agreement/?type=privacy +Author: Beijing EEO Education Technology Co., Ltd. +PackageName: ClassIn X +PackageUrl: https://www.classin.com/download/ +License: Proprietary +LicenseUrl: https://www.classin.com/agreement/?type=user +Copyright: Copyright 2014-2024 Empower Education Online Ltd. All Rights Reserved. +CopyrightUrl: https://www.classin.com/agreement/?type=user +ShortDescription: The ClassIn X application lifts your offline classroom onto the cloud. +Tags: +- class +- classroom +- education +- lecture +- lesson +- teaching +ReleaseNotesUrl: https://help.classin.com/dcfa/9973 +PurchaseUrl: https://www.classin.com/pricing/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassInX/6.0.2.33/EEO.ClassInX.locale.zh-CN.yaml b/manifests/e/EEO/ClassInX/6.0.2.33/EEO.ClassInX.locale.zh-CN.yaml new file mode 100644 index 0000000000000..66adcb09ceda4 --- /dev/null +++ b/manifests/e/EEO/ClassInX/6.0.2.33/EEO.ClassInX.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: EEO.ClassInX +PackageVersion: 6.0.2.33 +PackageLocale: zh-CN +Publisher: Beijing EEO Education Technology Co., Ltd. +PublisherUrl: https://www.eeo.cn/cn/ +PublisherSupportUrl: https://help.eeo.cn/ +PrivacyUrl: https://share.eeo.cn/p/agreement/?type=privacy&lang=zh-CN +Author: 北京翼鸥教育科技有限公司 +PackageName: ClassIn X +PackageUrl: https://www.eeo.cn/cn/download +License: 专有软件 +LicenseUrl: https://share.eeo.cn/p/agreement/?type=user&lang=zh-CN +Copyright: Copyright 2014-2024 Empower Education Online Ltd. All Rights Reserved. +CopyrightUrl: https://share.eeo.cn/p/agreement/?type=user&lang=zh-CN +ShortDescription: OMO 线上线下融合课堂和线下智慧课堂 +Tags: +- 幻灯片 +- 教学 +- 教育 +- 模板 +- 演示 +- 课件 +ReleaseNotesUrl: https://help.eeo.cn/docs/yzR46p +PurchaseUrl: https://www.eeo.cn/cn/pricing +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassInX/6.0.2.33/EEO.ClassInX.yaml b/manifests/e/EEO/ClassInX/6.0.2.33/EEO.ClassInX.yaml new file mode 100644 index 0000000000000..eef2aa8951556 --- /dev/null +++ b/manifests/e/EEO/ClassInX/6.0.2.33/EEO.ClassInX.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: EEO.ClassInX +PackageVersion: 6.0.2.33 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassInX/6.0.2.413/EEO.ClassInX.installer.yaml b/manifests/e/EEO/ClassInX/6.0.2.413/EEO.ClassInX.installer.yaml new file mode 100644 index 0000000000000..37e0a1a6180ab --- /dev/null +++ b/manifests/e/EEO/ClassInX/6.0.2.413/EEO.ClassInX.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: EEO.ClassInX +PackageVersion: 6.0.2.413 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silentWithProgress +InstallerSwitches: + Silent: /SILENT + SilentWithProgress: /SILENT + InstallLocation: /DIR="" +UpgradeBehavior: install +Protocols: +- classin +FileExtensions: +- eda +- edb +- edt +- edu +- edv +- epub +ProductCode: ClassIn X +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://download.eeo.cn/client/classinx_win_install_6.0.2.413_x64.exe + InstallerSha256: D23561936066EB5DCD959AD98DAB6D6DCF203A7B3073CC414BE4605744D4F24A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassInX/6.0.2.413/EEO.ClassInX.locale.en-US.yaml b/manifests/e/EEO/ClassInX/6.0.2.413/EEO.ClassInX.locale.en-US.yaml new file mode 100644 index 0000000000000..4fbbbbf0aa839 --- /dev/null +++ b/manifests/e/EEO/ClassInX/6.0.2.413/EEO.ClassInX.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: EEO.ClassInX +PackageVersion: 6.0.2.413 +PackageLocale: en-US +Publisher: Beijing EEO Education Technology Co., Ltd. +PublisherUrl: https://www.classin.com/ +PublisherSupportUrl: https://help.classin.com/ +PrivacyUrl: https://www.classin.com/agreement/?type=privacy +Author: Beijing EEO Education Technology Co., Ltd. +PackageName: ClassIn X +PackageUrl: https://www.classin.com/download/ +License: Proprietary +LicenseUrl: https://www.classin.com/agreement/?type=user +Copyright: Copyright 2014-2024 Empower Education Online Ltd. All Rights Reserved. +CopyrightUrl: https://www.classin.com/agreement/?type=user +ShortDescription: The ClassIn X application lifts your offline classroom onto the cloud. +Tags: +- class +- classroom +- education +- lecture +- lesson +- teaching +ReleaseNotesUrl: https://help.classin.com/dcfa/9973 +PurchaseUrl: https://www.classin.com/pricing/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassInX/6.0.2.413/EEO.ClassInX.locale.zh-CN.yaml b/manifests/e/EEO/ClassInX/6.0.2.413/EEO.ClassInX.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cd8b684c31d4f --- /dev/null +++ b/manifests/e/EEO/ClassInX/6.0.2.413/EEO.ClassInX.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: EEO.ClassInX +PackageVersion: 6.0.2.413 +PackageLocale: zh-CN +Publisher: Beijing EEO Education Technology Co., Ltd. +PublisherUrl: https://www.eeo.cn/cn/ +PublisherSupportUrl: https://help.eeo.cn/ +PrivacyUrl: https://share.eeo.cn/p/agreement/?type=privacy&lang=zh-CN +Author: 北京翼鸥教育科技有限公司 +PackageName: ClassIn X +PackageUrl: https://www.eeo.cn/cn/download +License: 专有软件 +LicenseUrl: https://share.eeo.cn/p/agreement/?type=user&lang=zh-CN +Copyright: Copyright 2014-2024 Empower Education Online Ltd. All Rights Reserved. +CopyrightUrl: https://share.eeo.cn/p/agreement/?type=user&lang=zh-CN +ShortDescription: OMO 线上线下融合课堂和线下智慧课堂 +Tags: +- 幻灯片 +- 教学 +- 教育 +- 模板 +- 演示 +- 课件 +ReleaseNotesUrl: https://help.eeo.cn/docs/yzR46p +PurchaseUrl: https://www.eeo.cn/cn/pricing +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EEO/ClassInX/6.0.2.413/EEO.ClassInX.yaml b/manifests/e/EEO/ClassInX/6.0.2.413/EEO.ClassInX.yaml new file mode 100644 index 0000000000000..3f20241a77592 --- /dev/null +++ b/manifests/e/EEO/ClassInX/6.0.2.413/EEO.ClassInX.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: EEO.ClassInX +PackageVersion: 6.0.2.413 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EMQ/MQTTX/1.12.0/EMQ.MQTTX.installer.yaml b/manifests/e/EMQ/MQTTX/1.12.0/EMQ.MQTTX.installer.yaml new file mode 100644 index 0000000000000..74f6a7677cdf0 --- /dev/null +++ b/manifests/e/EMQ/MQTTX/1.12.0/EMQ.MQTTX.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: EMQ.MQTTX +PackageVersion: 1.12.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f6c63b93-0c78-52db-af93-d7c443d5f831 +ReleaseDate: 2025-06-25 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/emqx/MQTTX/releases/download/v1.12.0/MQTTX-Setup-1.12.0-ia32.exe + InstallerSha256: 78CBB88799B5524E77DF23C083B4639E4355403C90EE28EA045ABD159369381C + InstallerSwitches: + Custom: /currentuser +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/emqx/MQTTX/releases/download/v1.12.0/MQTTX-Setup-1.12.0-ia32.exe + InstallerSha256: 78CBB88799B5524E77DF23C083B4639E4355403C90EE28EA045ABD159369381C + InstallerSwitches: + Custom: /allusers +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/emqx/MQTTX/releases/download/v1.12.0/MQTTX-Setup-1.12.0-x64.exe + InstallerSha256: 3F0493FD3BAFD64C49D5823BD35B5AE85F2115E1A7ED24E7E186D06E78B350D2 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/emqx/MQTTX/releases/download/v1.12.0/MQTTX-Setup-1.12.0-x64.exe + InstallerSha256: 3F0493FD3BAFD64C49D5823BD35B5AE85F2115E1A7ED24E7E186D06E78B350D2 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EMQ/MQTTX/1.12.0/EMQ.MQTTX.locale.en-US.yaml b/manifests/e/EMQ/MQTTX/1.12.0/EMQ.MQTTX.locale.en-US.yaml new file mode 100644 index 0000000000000..81f06698ef76b --- /dev/null +++ b/manifests/e/EMQ/MQTTX/1.12.0/EMQ.MQTTX.locale.en-US.yaml @@ -0,0 +1,120 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: EMQ.MQTTX +PackageVersion: 1.12.0 +PackageLocale: en-US +Publisher: EMQX Team +PublisherUrl: https://www.emqx.com/ +PublisherSupportUrl: https://github.com/emqx/MQTTX/issues +PrivacyUrl: https://www.emqx.com/policy/privacy-policy +Author: EMQ Technologies Incorporated, Inc. +PackageName: MQTTX +PackageUrl: https://mqttx.app/ +License: Apache-2.0 +LicenseUrl: https://github.com/emqx/MQTTX/blob/HEAD/LICENSE +Copyright: ©2024 EMQ Technologies Inc. +ShortDescription: Your All-in-One MQTT Client Toolbox +Description: MQTTX is a cross-platform MQTT 5.0 client tool open-sourced by EMQ, designed to help develop and debug MQTT services and applications faster. +Moniker: emqx-mqttx +Tags: +- mqtt +ReleaseNotes: |- + Release Note 🎉 + 🚀 v1.12.0 – AI super‑powered, smoother desktop, smarter, native MCP integration, and plenty of polish + The Copilot gets a full upgrade with multi‑model support (Gemini 2.5, Claude‑4, GPT‑4.1, o3/o4‑mini, Azure OpenAI), richer schema & MCP tooling, and deeper reasoning. Desktop and Web jump to modern Node/Electron versions, and the CLI gains flexible payload generation – all wrapped in a host of UX refinements and bug fixes. + Features 🌈 + - Desktop: + - Auto‑save & restore window position/size for a seamless comeback. + - Active topic & payload search highlighting for quicker navigation. + - Copilot 2.0 + - Plug‑and‑play with Gemini 2.5 (Pro “thinking” mode), Claude‑4, GPT‑4.1, o3, o4‑mini & Azure OpenAI. + - One‑click custom function & schema (Protobuf / Avro) generation. + - Session management, enhanced reasoning, and MCP call detection with streaming results. + - Native MCP integration – stdio, HTTP SSE server support, call detection, result processing & streaming responses. + - CLI: + - -payload-size option for random message generation lets you stress‑test with precise loads. + Improvements 💫 + - Desktop: + - Electron bumped to v33, Node runtime to 18 for performance & security. + - DevTools toggle is enabled in development builds. + - Copilot 2.0 + - Copilot codebase refactored for stronger type‑safety, cleaner component structure, and faster load times. + - CLI: + - Line‑mode publishing and bench/simulate client ID refinements. + - Web: + - Runtime aligned to Node 18 for parity with Desktop. + Fixes 🛠 + - Desktop: + - Resolved SQLite disconnect warnings on wake‑from‑sleep. + - Prevented accidental drag on connection list rows. + - Restored paste inside Monaco editor. + - Refined native scrollbar styling on Windows. + - Applied active search filters to live message stream. + - Ensured search filters persist on incoming messages. + - Copilot 2.0 + - Fixed loading state flicker, input focus loss, and preset prompt display glitches. + - Removed obsolete files and tightened MCP availability checks. + What's Changed + - chore(pkg): update node engine versiont to 16 by @ysfscream in https://github.com/emqx/MQTTX/pull/1853 + - feat(desktop): save and restore window state by @ni00 in https://github.com/emqx/MQTTX/pull/1852 + - chore(web): update Node.js version to 18 by @Red-Asuka in https://github.com/emqx/MQTTX/pull/1875 + - chore(desktop): upgrade Node.js version to 18 by @Red-Asuka in https://github.com/emqx/MQTTX/pull/1876 + - refactor(copilot): integrate AI SDK for improved model handling by @Red-Asuka in https://github.com/emqx/MQTTX/pull/1877 + - fix(copilot): fix loading state by @Red-Asuka in https://github.com/emqx/MQTTX/pull/1879 + - feat(copilot): support generating custom functions by @Red-Asuka in https://github.com/emqx/MQTTX/pull/1880 + - style(copilot): update copilot button icon and enhance styling by @Red-Asuka in https://github.com/emqx/MQTTX/pull/1881 + - feat(copilot): support generating schema by @Red-Asuka in https://github.com/emqx/MQTTX/pull/1883 + - refactor(copilot): reorganize AI-related components and utilities by @ysfscream in https://github.com/emqx/MQTTX/pull/1882 + - refactor(copilot): improve type safety by @ysfscream in https://github.com/emqx/MQTTX/pull/1884 + - refactor(i18n): migrate Copilot translations to dedicated locale file by @ysfscream in https://github.com/emqx/MQTTX/pull/1885 + - fix(copilot): improve input focus and handling for preset prompts by @ysfscream in https://github.com/emqx/MQTTX/pull/1886 + - feat(copilot): add raw-loader and dynamic system prompt loading by @ysfscream in https://github.com/emqx/MQTTX/pull/1887 + - feat(copilot): improve preset prompt display behavior on input focus by @ysfscream in https://github.com/emqx/MQTTX/pull/1888 + - feat(copilot): support separate Protobuf and Avro schema generation prompts by @ysfscream in https://github.com/emqx/MQTTX/pull/1889 + - feat(copilot): introduce session management for AI interactions by @ysfscream in https://github.com/emqx/MQTTX/pull/1890 + - chore(pkg): bump electron version to 22.0.0 by @ysfscream in https://github.com/emqx/MQTTX/pull/1896 + - feat(copilot): MCP support by @ysfscream in https://github.com/emqx/MQTTX/pull/1894 + - fix(desktop): fix sqlite disconnect warning issue by @ysfscream in https://github.com/emqx/MQTTX/pull/1897 + - fix(desktop): fix i18n issues by @ysfscream in https://github.com/emqx/MQTTX/pull/1898 + - feat(copilot): sse mcp servers support by @ysfscream in https://github.com/emqx/MQTTX/pull/1899 + - fix(copilot): remove useless file by @ysfscream in https://github.com/emqx/MQTTX/pull/1901 + - refactor(copilot): add MCP call detection and display component by @ysfscream in https://github.com/emqx/MQTTX/pull/1902 + - refactor(copilot): integrate AI Agent for response handling by @ysfscream in https://github.com/emqx/MQTTX/pull/1903 + - refactor(copilot): remove MCP availability check and enhance AI streaming options by @ysfscream in https://github.com/emqx/MQTTX/pull/1904 + - feat(copilot): implement MCP result processing by @ysfscream in https://github.com/emqx/MQTTX/pull/1906 + - feat(copilot): enhance reasoning support by @ysfscream in https://github.com/emqx/MQTTX/pull/1907 + - chore: bump electron version to 33.0.0 by @ysfscream in https://github.com/emqx/MQTTX/pull/1909 + - fix(desktop): fix generate the latest.yaml issue on ci by @ysfscream in https://github.com/emqx/MQTTX/pull/1911 + - fix(ci): update artifact upload process to use gitHub release by @ysfscream in https://github.com/emqx/MQTTX/pull/1913 + - fix(desktop): prevent drag on connection list by @ysfscream in https://github.com/emqx/MQTTX/pull/1916 + - fix(desktop): fix can not past content on monaco editor by @ysfscream in https://github.com/emqx/MQTTX/pull/1917 + - fix(ci): skip Docker/artifact uploads for pre-releases by @ysfscream in https://github.com/emqx/MQTTX/pull/1919 + - chore: bump version to 1.12.0-beta.3 by @ysfscream in https://github.com/emqx/MQTTX/pull/1921 + - feat(copilot): google gemini support by @ysfscream in https://github.com/emqx/MQTTX/pull/1923 + - refactor(copilot): repalce show preset prompt hover with Reverting to… by @ysfscream in https://github.com/emqx/MQTTX/pull/1924 + - chore(deps): update @ai-sdk/openai to support gpt-4.1 by @ysfscream in https://github.com/emqx/MQTTX/pull/1925 + - feat(copilot): add Azure OpenAI support by @ysfscream in https://github.com/emqx/MQTTX/pull/1926 + - test(copilot): expand unit tests for AI model providers by @ysfscream in https://github.com/emqx/MQTTX/pull/1928 + - feat(copilot): o3 and o4-mini support by @ysfscream in https://github.com/emqx/MQTTX/pull/1930 + - refactor(background): enable devTools in BrowserWindow configuration by @ysfscream in https://github.com/emqx/MQTTX/pull/1935 + - ci: translate issue in Chinese into English by @Rory-Z in https://github.com/emqx/MQTTX/pull/1938 + - feat(cli): add payload size option for random message generation by @ysfscream in https://github.com/emqx/MQTTX/pull/1940 + - fix(connections): apply active search filters on incoming messages by @muzaffarmhd in https://github.com/emqx/MQTTX/pull/1939 + - fix(log): add no-drag region to select input on log page by @ysfscream in https://github.com/emqx/MQTTX/pull/1942 + - fix(log): add no-drag region to select input on log page by @ysfscream in https://github.com/emqx/MQTTX/pull/1943 + - feat(desktop): add highlighting on active topic and payload search by @muzaffarmhd in https://github.com/emqx/MQTTX/pull/1944 + - 1.12.0-beta.4 by @ysfscream in https://github.com/emqx/MQTTX/pull/1946 + - fix(desktop): fix sys scrollbar style issue for win by @ysfscream in https://github.com/emqx/MQTTX/pull/1947 + - feat(copilot): claude-4 llm model support by @ysfscream in https://github.com/emqx/MQTTX/pull/1948 + - feat(copilot): gemini 2.5 thinking mode support by @ysfscream in https://github.com/emqx/MQTTX/pull/1949 + - 1.12.0 by @ysfscream in https://github.com/emqx/MQTTX/pull/1950 + New Contributors + - Thanks so much for @muzaffarmhd made their first contribution in https://github.com/emqx/MQTTX/pull/1939 + Full Changelog: https://github.com/emqx/MQTTX/compare/v1.11.1...v1.12.0 +ReleaseNotesUrl: https://github.com/emqx/MQTTX/releases/tag/v1.12.0 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://mqttx.app/docs +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EMQ/MQTTX/1.12.0/EMQ.MQTTX.locale.zh-CN.yaml b/manifests/e/EMQ/MQTTX/1.12.0/EMQ.MQTTX.locale.zh-CN.yaml new file mode 100644 index 0000000000000..232e7b09cce9d --- /dev/null +++ b/manifests/e/EMQ/MQTTX/1.12.0/EMQ.MQTTX.locale.zh-CN.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: EMQ.MQTTX +PackageVersion: 1.12.0 +PackageLocale: zh-CN +PublisherUrl: https://www.emqx.com/zh +PrivacyUrl: https://www.emqx.com/zh/policy/privacy-policy +Author: 杭州映云科技有限公司 +PackageUrl: https://mqttx.app/zh +ShortDescription: 你的全功能 MQTT 客户端工具 +Description: MQTTX 是一款由 EMQ 开源的 MQTT 5.0 跨平台桌面客户端,旨在帮助开发者更快的开发、调试 MQTT 服务和应用。 +ReleaseNotesUrl: https://github.com/emqx/MQTTX/releases/tag/v1.12.0 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://mqttx.app/zh/docs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EMQ/MQTTX/1.12.0/EMQ.MQTTX.yaml b/manifests/e/EMQ/MQTTX/1.12.0/EMQ.MQTTX.yaml new file mode 100644 index 0000000000000..55653c290f198 --- /dev/null +++ b/manifests/e/EMQ/MQTTX/1.12.0/EMQ.MQTTX.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: EMQ.MQTTX +PackageVersion: 1.12.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EPOS/EPOSConnect/8.2.1.49340/EPOS.EPOSConnect.installer.yaml b/manifests/e/EPOS/EPOSConnect/8.2.1.49340/EPOS.EPOSConnect.installer.yaml new file mode 100644 index 0000000000000..6b627ff07bf0f --- /dev/null +++ b/manifests/e/EPOS/EPOSConnect/8.2.1.49340/EPOS.EPOSConnect.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: EPOS.EPOSConnect +PackageVersion: 8.2.1.49340 +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://www.eposaudio.com/contentassets/b79403493cb840ea89ca342e45139a27/eposconnect_8.2.1.49340.exe + InstallerSha256: 75A3FBA4E303F86A2FCF3E8366614246A53892D7559FD0A8974150D95ACF9CC7 + AppsAndFeaturesEntries: + - UpgradeCode: '{1BFE2806-B9C8-4366-A3BD-F3904A0BE8D4}' +- Architecture: x86 + InstallerType: zip + NestedInstallerType: wix + NestedInstallerFiles: + - RelativeFilePath: EPOSConnect_8.2.1.49340.msi + InstallerUrl: https://www.eposaudio.com/contentassets/b79403493cb840ea89ca342e45139a27/eposconnect_8.2.1_msi.zip + InstallerSha256: 3FBACD3A665F11530B9DDBC9C3C7AFEA47C1CE4273E3AEDA3BAEEF952632F0BD + InstallerSwitches: + InstallLocation: INSTALLLOCATION="" + ProductCode: '{4F1DB101-5314-40AD-B791-1D2E9F9E620D}' + AppsAndFeaturesEntries: + - UpgradeCode: '{D1B37831-C9FB-4560-8844-4F3CC47FB472}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EPOS/EPOSConnect/8.2.1.49340/EPOS.EPOSConnect.locale.en-US.yaml b/manifests/e/EPOS/EPOSConnect/8.2.1.49340/EPOS.EPOSConnect.locale.en-US.yaml new file mode 100644 index 0000000000000..1832f0039590e --- /dev/null +++ b/manifests/e/EPOS/EPOSConnect/8.2.1.49340/EPOS.EPOSConnect.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: EPOS.EPOSConnect +PackageVersion: 8.2.1.49340 +PackageLocale: en-US +Publisher: EPOS Group A/S +PublisherUrl: https://www.eposaudio.com/ +PublisherSupportUrl: https://www.eposaudio.com/support +PrivacyUrl: https://www.eposaudio.com/legal/privacy-notice +Author: EPOS Group A/S +PackageName: EPOS Connect +PackageUrl: https://www.eposaudio.com/software/epos-connect +License: Proprietary +Copyright: Copyright (c) EPOS Group A/S +ShortDescription: Update with the latest firmware and personalize your EPOS audio device settings to ensure flawless operation and maximum productivity +Description: EPOS Connect for Windows gives the end user access to the latest firmware updates and personalized audio device settings. Stay in control with a tool that keeps EPOS headsets and speakerphones work seamlessly with all leading softphones. +ReleaseNotesUrl: https://www.eposaudio.com/contentassets/20c8968b11c048e4b1d33640a8526697/release-notes_epos-connect_winmac_v8.2.1.pdf +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://www.eposaudio.com/globalassets/___image-library/_enterprise/files/english/epos-connect/epos-connect-8.2.0/epos_connect_manual_v1.820.pdf +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EPOS/EPOSConnect/8.2.1.49340/EPOS.EPOSConnect.locale.zh-CN.yaml b/manifests/e/EPOS/EPOSConnect/8.2.1.49340/EPOS.EPOSConnect.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5b65a145e0cde --- /dev/null +++ b/manifests/e/EPOS/EPOSConnect/8.2.1.49340/EPOS.EPOSConnect.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: EPOS.EPOSConnect +PackageVersion: 8.2.1.49340 +PackageLocale: zh-CN +PublisherUrl: https://www.eposaudio.com/zh/cn +PublisherSupportUrl: https://www.eposaudio.com/zh/cn/support +PrivacyUrl: https://www.eposaudio.com/zh/cn/legal/privacy-notice +PackageUrl: https://www.eposaudio.com/zh/cn/software/epos-connect +License: 专有软件 +ShortDescription: 使用最新的固件更新和个性化的 EPOS 音频设备设置来确保其流畅运行并实现最高工作效率 +Description: EPOS Connect Windows 版让最终用户能够访问最新的固件更新和个性化的音频设备设置。在此工具的控制之下,EPOS 耳机和全向麦克风能够与所有领先的软电话无缝配合。 +ReleaseNotesUrl: https://www.eposaudio.com/contentassets/20c8968b11c048e4b1d33640a8526697/release-notes_epos-connect_winmac_v8.2.1.pdf +Documentations: +- DocumentLabel: 手册 + DocumentUrl: https://www.eposaudio.com/globalassets/___image-library/_enterprise/files/english/epos-connect/epos-connect-8.2.0/epos_connect_manual_v1.820.pdf +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EPOS/EPOSConnect/8.2.1.49340/EPOS.EPOSConnect.yaml b/manifests/e/EPOS/EPOSConnect/8.2.1.49340/EPOS.EPOSConnect.yaml new file mode 100644 index 0000000000000..2ed5d8d0972bb --- /dev/null +++ b/manifests/e/EPOS/EPOSConnect/8.2.1.49340/EPOS.EPOSConnect.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: EPOS.EPOSConnect +PackageVersion: 8.2.1.49340 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/ESET/Security/SmallBusiness/.validation b/manifests/e/ESET/Security/SmallBusiness/.validation new file mode 100644 index 0000000000000..50d8d044e6cb3 --- /dev/null +++ b/manifests/e/ESET/Security/SmallBusiness/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"0f0b4596-4c7b-46ba-b018-35cdc8f748c9","TestPlan":"Policy-Test-1.2","PackagePath":"manifests/e/ESET/Security/SmallBusiness/18.1.13.0","CommitId":"6fba4afc9fe7ddb12c9457f53d32b9b04cd84859"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/e/ESET/Security/SmallBusiness/18.1.13.0/ESET.Security.SmallBusiness.locale.en-US.yaml b/manifests/e/ESET/Security/SmallBusiness/18.1.13.0/ESET.Security.SmallBusiness.locale.en-US.yaml index 09c652738cd14..0b2a911633589 100644 --- a/manifests/e/ESET/Security/SmallBusiness/18.1.13.0/ESET.Security.SmallBusiness.locale.en-US.yaml +++ b/manifests/e/ESET/Security/SmallBusiness/18.1.13.0/ESET.Security.SmallBusiness.locale.en-US.yaml @@ -23,5 +23,6 @@ Tags: Agreements: - AgreementLabel: End User License Agreement (EULA) AgreementUrl: https://help.eset.com/eis/17/en-US/eula.html +PurchaseUrl: https://shop.eset.ee/en/eset-small-business-security ManifestType: defaultLocale ManifestVersion: 1.10.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/Easeware/DriverEasy/6.1.2.29728/Easeware.DriverEasy.yaml b/manifests/e/Easeware/DriverEasy/6.1.2.29728/Easeware.DriverEasy.yaml deleted file mode 100644 index 6d9bde2bcdad5..0000000000000 --- a/manifests/e/Easeware/DriverEasy/6.1.2.29728/Easeware.DriverEasy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jan/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: Easeware.DriverEasy -PackageVersion: 6.1.2.29728 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 diff --git a/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.installer.yaml b/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.installer.yaml new file mode 100644 index 0000000000000..8f1b74b39335d --- /dev/null +++ b/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Easeware.DriverEasy +PackageVersion: 7.0.1.19430 +InstallerLocale: en-US +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://download.drivereasy.com/DriverEasy_Setup.exe + InstallerSha256: C0012FABCD8B4EE1C9B67157FDC251649EB3195DDF28FFC91202C5C4A962C1B7 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.locale.de-DE.yaml b/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.locale.de-DE.yaml new file mode 100644 index 0000000000000..c2c8ffdfb7b64 --- /dev/null +++ b/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.locale.de-DE.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Easeware.DriverEasy +PackageVersion: 7.0.1.19430 +PackageLocale: de-DE +Publisher: Easeware +PublisherUrl: https://de.drivereasy.com/ +PublisherSupportUrl: https://de.drivereasy.com/tech-support/ +PrivacyUrl: https://de.drivereasy.com/privacy-policy/ +Author: Easeware +PackageName: Driver Easy +PackageUrl: https://www.drivereasy.com/goto/de.php +License: Proprietär +LicenseUrl: https://de.drivereasy.com/eula/ +Copyright: Copyright (c) 2009-2025 Easeware. +ShortDescription: Laden Sie einfach die neuesten/fehlenden Treiber für Ihren Computer herunter! +Tags: +- geräte-treiber +- treiber +- treiber-updater +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.locale.en-US.yaml b/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.locale.en-US.yaml new file mode 100644 index 0000000000000..96d6038074f28 --- /dev/null +++ b/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.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.10.0.schema.json + +PackageIdentifier: Easeware.DriverEasy +PackageVersion: 7.0.1.19430 +PackageLocale: en-US +Publisher: Easeware +PublisherUrl: https://www.drivereasy.com/ +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) 2009-2025 Easeware. +ShortDescription: Easy download newest/missing drivers for your computer! +Moniker: drivereasy +Tags: +- device-drivers +- driver +- drivers +- driver-updater +- updater +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.locale.fr-FR.yaml b/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.locale.fr-FR.yaml new file mode 100644 index 0000000000000..09ee5f0c75b74 --- /dev/null +++ b/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.locale.fr-FR.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Easeware.DriverEasy +PackageVersion: 7.0.1.19430 +PackageLocale: fr-FR +Publisher: Easeware +PublisherUrl: https://fr.drivereasy.com/ +PublisherSupportUrl: https://fr.drivereasy.com/tech-support/ +PrivacyUrl: https://fr.drivereasy.com/privacy-policy/ +Author: Easeware +PackageName: Driver Easy +PackageUrl: https://www.drivereasy.com/goto/fr.php +License: Propriétaire +LicenseUrl: https://fr.drivereasy.com/eula/ +Copyright: Copyright (c) 2009-2025 Easeware. +ShortDescription: Téléchargez facilement les pilotes les plus récents/manquants pour votre ordinateur! +Tags: +- pilotes de périphériques +- pilotes +- mise à jour pilotes +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.locale.ja-JP.yaml b/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.locale.ja-JP.yaml new file mode 100644 index 0000000000000..a33c85b9cbb52 --- /dev/null +++ b/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.locale.ja-JP.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Easeware.DriverEasy +PackageVersion: 7.0.1.19430 +PackageLocale: ja-JP +Publisher: Easeware +PublisherUrl: https://www.drivereasy.jp/ +PublisherSupportUrl: https://www.drivereasy.jp/tech-support/ +PrivacyUrl: https://www.drivereasy.jp/privacy-policy/ +Author: Easeware +PackageName: Driver Easy +PackageUrl: https://www.drivereasy.com/goto/ja.php +License: 独自の +LicenseUrl: https://www.drivereasy.jp/eula/ +Copyright: Copyright (c) 2009-2025 Easeware. +ShortDescription: お使いのコンピューターの最新/不足しているドライバーを簡単にダウンロードできます。 +Tags: +- デバイスドライバー +- ドライバー +- ドライバーアップデータ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.yaml b/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.yaml new file mode 100644 index 0000000000000..1cbce0978a873 --- /dev/null +++ b/manifests/e/Easeware/DriverEasy/7.0.1.19430/Easeware.DriverEasy.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Easeware.DriverEasy +PackageVersion: 7.0.1.19430 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EastMoney/EastMoney/11.6.0/EastMoney.EastMoney.installer.yaml b/manifests/e/EastMoney/EastMoney/11.6.0/EastMoney.EastMoney.installer.yaml deleted file mode 100644 index c91a37359c049..0000000000000 --- a/manifests/e/EastMoney/EastMoney/11.6.0/EastMoney.EastMoney.installer.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: EastMoney.EastMoney -PackageVersion: 11.6.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ProductCode: Eastmoney -RequireExplicitUpgrade: true -Installers: -- Architecture: x64 - InstallerUrl: https://swdlcdn.eastmoney.com/swc8_free_new/dfcft8.exe - InstallerSha256: B0CABC5EDC00184F03BBA9E1B4A713C892A96BF471E0E71E448F018C82BED400 -- Architecture: x86 - InstallerUrl: https://swdlcdn.eastmoney.com/swc8_free_new/dfcft8.exe - InstallerSha256: B0CABC5EDC00184F03BBA9E1B4A713C892A96BF471E0E71E448F018C82BED400 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/e/EastMoney/EastMoney/11.7.0/EastMoney.EastMoney.installer.yaml b/manifests/e/EastMoney/EastMoney/11.7.0/EastMoney.EastMoney.installer.yaml new file mode 100644 index 0000000000000..bbd111ecfc5b6 --- /dev/null +++ b/manifests/e/EastMoney/EastMoney/11.7.0/EastMoney.EastMoney.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: EastMoney.EastMoney +PackageVersion: 11.7.0 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +ProductCode: Eastmoney +RequireExplicitUpgrade: true +Installers: +- Architecture: x64 + InstallerUrl: https://swdlcdn.eastmoney.com/swc8_free_new/dfcft8.exe + InstallerSha256: 47A2280D969FDBB2860F80B8340459C5A637F44215B6A8A4996F094A44ADFF8B +- Architecture: x86 + InstallerUrl: https://swdlcdn.eastmoney.com/swc8_free_new/dfcft8.exe + InstallerSha256: 47A2280D969FDBB2860F80B8340459C5A637F44215B6A8A4996F094A44ADFF8B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EastMoney/EastMoney/11.6.0/EastMoney.EastMoney.locale.en-US.yaml b/manifests/e/EastMoney/EastMoney/11.7.0/EastMoney.EastMoney.locale.en-US.yaml similarity index 97% rename from manifests/e/EastMoney/EastMoney/11.6.0/EastMoney.EastMoney.locale.en-US.yaml rename to manifests/e/EastMoney/EastMoney/11.7.0/EastMoney.EastMoney.locale.en-US.yaml index 8c9cfdf0d1fb5..89584a3990dce 100644 --- a/manifests/e/EastMoney/EastMoney/11.6.0/EastMoney.EastMoney.locale.en-US.yaml +++ b/manifests/e/EastMoney/EastMoney/11.7.0/EastMoney.EastMoney.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: EastMoney.EastMoney -PackageVersion: 11.6.0 +PackageVersion: 11.7.0 PackageLocale: en-US Publisher: East Money Information Co., Ltd. PublisherUrl: https://www.eastmoney.com/ diff --git a/manifests/e/EastMoney/EastMoney/11.6.0/EastMoney.EastMoney.locale.zh-CN.yaml b/manifests/e/EastMoney/EastMoney/11.7.0/EastMoney.EastMoney.locale.zh-CN.yaml similarity index 97% rename from manifests/e/EastMoney/EastMoney/11.6.0/EastMoney.EastMoney.locale.zh-CN.yaml rename to manifests/e/EastMoney/EastMoney/11.7.0/EastMoney.EastMoney.locale.zh-CN.yaml index 3b179cd7134c7..4df0905f938b1 100644 --- a/manifests/e/EastMoney/EastMoney/11.6.0/EastMoney.EastMoney.locale.zh-CN.yaml +++ b/manifests/e/EastMoney/EastMoney/11.7.0/EastMoney.EastMoney.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: EastMoney.EastMoney -PackageVersion: 11.6.0 +PackageVersion: 11.7.0 PackageLocale: zh-CN Publisher: 东方财富信息股份有限公司 PublisherUrl: https://www.eastmoney.com/ diff --git a/manifests/e/EastMoney/EastMoney/11.6.0/EastMoney.EastMoney.yaml b/manifests/e/EastMoney/EastMoney/11.7.0/EastMoney.EastMoney.yaml similarity index 88% rename from manifests/e/EastMoney/EastMoney/11.6.0/EastMoney.EastMoney.yaml rename to manifests/e/EastMoney/EastMoney/11.7.0/EastMoney.EastMoney.yaml index 29b9f291274b4..21f75752790e9 100644 --- a/manifests/e/EastMoney/EastMoney/11.6.0/EastMoney.EastMoney.yaml +++ b/manifests/e/EastMoney/EastMoney/11.7.0/EastMoney.EastMoney.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: EastMoney.EastMoney -PackageVersion: 11.6.0 +PackageVersion: 11.7.0 DefaultLocale: zh-CN ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/e/EclipseFoundation/TheiaIDE/1.63.200/EclipseFoundation.TheiaIDE.installer.yaml b/manifests/e/EclipseFoundation/TheiaIDE/1.63.200/EclipseFoundation.TheiaIDE.installer.yaml new file mode 100644 index 0000000000000..6207afa8ee4ec --- /dev/null +++ b/manifests/e/EclipseFoundation/TheiaIDE/1.63.200/EclipseFoundation.TheiaIDE.installer.yaml @@ -0,0 +1,161 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: EclipseFoundation.TheiaIDE +PackageVersion: 1.63.200 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +Protocols: +- theia +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- psgi +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- t +- tex +- toml +- ts +- tsx +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ProductCode: 8278baff-1a1c-5eb1-9d84-d0372d0070dc +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.eclipse.org/theia/ide/1.63.200/windows/TheiaIDESetup-1.63.200.exe + InstallerSha256: AE6B87A2E57B2571C9579D718985543CDE9EA6C856562052689AD878F8D4ADE4 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.eclipse.org/theia/ide/1.63.200/windows/TheiaIDESetup-1.63.200.exe + InstallerSha256: AE6B87A2E57B2571C9579D718985543CDE9EA6C856562052689AD878F8D4ADE4 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EclipseFoundation/TheiaIDE/1.63.200/EclipseFoundation.TheiaIDE.locale.en-US.yaml b/manifests/e/EclipseFoundation/TheiaIDE/1.63.200/EclipseFoundation.TheiaIDE.locale.en-US.yaml new file mode 100644 index 0000000000000..e5183bb3c3969 --- /dev/null +++ b/manifests/e/EclipseFoundation/TheiaIDE/1.63.200/EclipseFoundation.TheiaIDE.locale.en-US.yaml @@ -0,0 +1,131 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: EclipseFoundation.TheiaIDE +PackageVersion: 1.63.200 +PackageLocale: en-US +Publisher: Eclipse Theia +PublisherUrl: https://theia-ide.org/ +PublisherSupportUrl: https://theia-ide.org/support/ +PrivacyUrl: https://www.eclipse.org/legal/privacy.php +Author: Eclipse Foundation +PackageName: TheiaIDE +PackageUrl: https://theia-ide.org/ +License: MIT +LicenseUrl: https://github.com/eclipse-theia/theia-ide/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Eclipse Theia IDE Authors +CopyrightUrl: https://www.eclipse.org/legal/trademarks/ +ShortDescription: A modern and open IDE for cloud and desktop. +Description: |- + The Eclipse IDE is a modern and open IDE for cloud and desktop. The Theia IDE is based on the Theia platform. The Theia IDE is available as a downloadable desktop application. You can also try the latest version of the Theia IDE online. The online test version is limited to 30 minutes per session and hosted via Theia.cloud. Finally, we provide an experimental Docker image for hosting the Theia IDE online. + The Eclipse Theia IDE also serves as a template for building desktop-based products based on the Eclipse Theia platform, as well as to showcase Eclipse Theia capabilities. It is made up of a subset of existing Eclipse Theia features and extensions. Documentation is available to help you customize and build your own Eclipse Theia-based product. +Moniker: theia-ide +Tags: +- code +- coding +- develop +- development +- programming +ReleaseNotes: |- + - [ai-anthropic] implemented prompt caching for Anthropic #15731 + - [ai-anthropic] removed tool results from subsequential requests #15702 + - [ai-anthropic] reverted "fix: remove tool results from subsequential requests" #15721 + - [ai-anthropic] set opus 4 to 32000 max tokens #15788 + - [ai-chat] adapted all prompt ids to common schema #15880 + - [ai-chat] added async initialization to changesetfileelement #15761 + - [ai-chat] enabled agent-to-agent delegation via tool calls #15736 + - [ai-chat] filtered out error messages from the messages sent to the llm #15720 + - [ai-chat] fixed change set deletion #15759 + - [ai-chat] fixed pinning of the last mentioned agent rather than the first one #15777 + - [ai-chat] introduced tool call confirmation UI #15714 + - [ai-chat] removed requirement that agent has to be mentioned first #15854 + - [ai-chat] sanitized task context labels #15762 + - [ai-chat] provided a task context management / agent #15732 + - [ai-chat-ui] added chat retry button #15779 + - [ai-chat-ui] fixed chat input widget not tracking branches and pending state #15727 + - [ai-chat-ui] fixed difficulty to scroll up when auto scroll is enabled #15748 + - [ai-chat-ui] fixed paste handling in chat input #15766 + - [ai-chat-ui] fixed temporary scroll lock when user scrolls up in AI Chat #15683 + - [ai-chat-ui] fixed toolcall spinner #15757 + - [ai-chat-ui] showed active chat in chat dropdown #15723 + - [ai-chat-ui] started chat from task context #15700 + - [ai-chat-ui] supported instant request for chat initialized with task context and agent #15778 + - [ai-chat-ui] replaced YOLO terminology with "Always Allow" #15756 + - [ai-code-completion] added support for custom AI variables in code completion prompt #15681 - Contributed on behalf of Lonti.com Pty Ltd. + - [ai-code-completion] fixed caching in code completion #15855 + - [ai-code-completion] worked on improving code completion #15715 + - [ai-core] added chat variable for all open editors #15775 + - [ai-core] added fall back to default prompts if selected does not exist #15879 + - [ai-core] AI features accessible when AI is not enabled #15780 + - [ai-core] allowed to increase the number of retries before failing #15730 + - [ai-core] allowed adding variants via files #15815 + - [ai-core] fixed bug that customizations are treated as variants #15846 + - [ai-core] handled toolCall errors gracefully instead of throwing #15800 + - [ai-core] implemented theia-ai agent completion notification #15816 + - [ai-core] improved image support for tool calls #15765 + - [ai-core] fixed prompt fragment view resetting custom prompt fragments #15852 + - [ai-editor] improved ask AI feature #15725 + - [ai-editor] refined inline Ask AI chat input appearance #15885 + - [ai-editor] started chat from editor context #15712 + - [ai-editor] used chatInputWidget in AskAI Input and fixed keyboard scrolling #15781 + - [ai-editor] streamlined ask AI commands and fixed send to AI chat error #15839 + - [ai-google] updated the Google AI SDK #15737 + - [ai-ide] added ai tools for write through file changes #15717 + - [ai-ide] consolidated coder prompts #15733 + - [ai-ide] fixed agent tree selection highlighting in AI configuration widget #15850 + - [ai-ide] fixed AI Configuration widget tab bar overflow #15739 + - [ai-ide] included the ai-ide stylesheet in the secondary window #15752 + - [ai-ide] introduced appTester agent via browser automation #15713 + - [ai-ide] made workspace functions token efficient #15703 + - [ai-ide] made workspace search function more efficient / use less tokens #15743 + - [ai-ide] moved AI configuration view to main #15726 + - [ai-ide] refined coder prompt #15774 + - [ai-ide] reminded coder to use file change functions #15848 + - [ai-ide] reorganized architect prompts #15859 + - [ai-ide] used relative path in search results in workspace function #15704 + - [ai-ide] workspace search function allowed specifying file extensions #15699 + - [ai-ollama] updated ollama version and supported newest features #15795 + - [ai-openai] made sure to add openai stream options only in streaming models #15706 + - [ai-openai] supported more than 10 tool calls via OpenAI SDK #15696 + - [application-package] bumped vscode API compatibility to 1.101.1 #15888 - contributed on behalf of STMicroelectronics + - [core] cancelled hover preview on right mouse click #15826 + - [core] didn't focus window to reveal widget #15760 + - [core] didn't steal global focus for widget activation #15735 + - [core] fixed getMenuNode() for leaf nodes #15845 - contributed on behalf of STMicroelectronics + - [core] fixed initial configuration of backend loggers #15705 + - [core] fixed problems with menu item 15828_menu_visibility #15856 - Contributed on behalf of STMicroelectronics + - [core] fixed revealTab #15754 + - [core] listened for model will save events directly instead of registering a save participant #15787 - contributed on behalf of STMicroelectronics + - [core] removed obsolete menu workaround #15753 - Contributed on behalf of STMicroelectronics + - [core] returned undefined instead of throwing when getting non-existent menu #15792 - Contributed on behalf of STMicroelectronics + - [core] sync selection if props change #15784 + - [core] theia 1.62.0 released #15679 + - [core] translation update for version 1.63.0 #15892 + - [core] updated electron to version 36.4.0 #15837 - contributed on behalf of STMicroelectronics + - [core] Updated translations for version 1.62.0 #15678 + - [core] used Ctrl+Tab for tab switching on Mac #15763 + - [debug] enabled multiSelect for the debugBreakpointsWidget #15749 + - [doc] added (major) dependency update to publishing #15674 + - [editor] added missing NLS template item for format on save #15813 + - [electron-browser] fixed localization of files #15677 + - [filesystem] bumped multer version to 2.0.1 #15808 - contributed on behalf of STMicroelectronics + - [filesystem] bumped multer version to 2.0.1 #15806 - Contributed on behalf of STMicroelectronics + - [filesystem] bumped tar-fs to 3.0.9 on 1.61.1 #15805 + - [filesystem] deps: bumped tar-fs to 3.0.9 #15719 - contributed by STMicroelectronics + - [general] updated project info with styling information #15722 + - [monaco] enacted code actions when change set file was created #15724 + - [monaco] fixed existence check when contributing monaco menu items #15746 - Contributed on behalf of STMicroelectronics + - [playwright] avoided playwright tests depending on cwd #15676 - Contributed by MVTec Software GmbH + - [playwright] fixed playwright tests on windows #15684 - Contributed by MVTec Software GmbH + - [plugin] added support for the new vscode.lm.registerMcpServerDefinitionProvider API #15755 + - [plugin] supported encoding/decoding from workspace and while opening text documents #15873 - Contributed on behalf of STMicroelectronics + - [project-info] added widgets, commands and toolbar to project info #15697 + - [scm] amended enablement/visibility checks for dirty diff widget toolbar actions #15851 + - [search-in-workspace] fixed bug with incorrect height calculation of the search field #15881 + - [toolbar] restored toolbar default items #15878 +ReleaseNotesUrl: https://github.com/eclipse-theia/theia/blob/HEAD/CHANGELOG.md#163---6262025 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://theia-ide.org/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EclipseFoundation/TheiaIDE/1.63.200/EclipseFoundation.TheiaIDE.locale.zh-CN.yaml b/manifests/e/EclipseFoundation/TheiaIDE/1.63.200/EclipseFoundation.TheiaIDE.locale.zh-CN.yaml new file mode 100644 index 0000000000000..314fae83eae94 --- /dev/null +++ b/manifests/e/EclipseFoundation/TheiaIDE/1.63.200/EclipseFoundation.TheiaIDE.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: EclipseFoundation.TheiaIDE +PackageVersion: 1.63.200 +PackageLocale: zh-CN +ShortDescription: 现代化开源/开放集成开发环境 +Description: |- + Eclipse IDE 是一款面向云端与桌面的现代化开源/开放集成开发环境。Theia IDE 基于 Theia 平台构建,提供可下载的桌面应用程序版本。您还可以在线体验最新版 Theia IDE,该测试版本通过 Theia.cloud 托管,每会话限时 30 分钟。此外,我们还提供用于在线托管 Theia IDE 的实验性 Docker 镜像。 + Eclipse Theia IDE 同时作为基于 Eclipse Theia 平台构建桌面产品的模板,以及展示 Theia 平台功能的示范项目。它由现有 Eclipse Theia 功能与扩展的子集构成,我们提供相关文档帮助您定制并构建专属的 Theia 平台产品。 +Tags: +- 代码 +- 开发 +- 编程 +ReleaseNotesUrl: https://github.com/eclipse-theia/theia/blob/HEAD/CHANGELOG.md +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://theia-ide.org/docs/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EclipseFoundation/TheiaIDE/1.63.200/EclipseFoundation.TheiaIDE.yaml b/manifests/e/EclipseFoundation/TheiaIDE/1.63.200/EclipseFoundation.TheiaIDE.yaml new file mode 100644 index 0000000000000..12fb999b77ff8 --- /dev/null +++ b/manifests/e/EclipseFoundation/TheiaIDE/1.63.200/EclipseFoundation.TheiaIDE.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: EclipseFoundation.TheiaIDE +PackageVersion: 1.63.200 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Ecosia/EcosiaBrowser/137.0.7151.14/Ecosia.EcosiaBrowser.installer.yaml b/manifests/e/Ecosia/EcosiaBrowser/137.0.7151.14/Ecosia.EcosiaBrowser.installer.yaml new file mode 100644 index 0000000000000..31cdad969e681 --- /dev/null +++ b/manifests/e/Ecosia/EcosiaBrowser/137.0.7151.14/Ecosia.EcosiaBrowser.installer.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Ecosia.EcosiaBrowser +PackageVersion: 137.0.7151.14 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --do-not-launch-chrome +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: EcosiaBrowser +ReleaseDate: 2025-06-18 +Installers: +- Architecture: x86 + InstallerUrl: https://app-cms-repo.ecosia-browser.net/0aac13df-2a94-4570-8229-285102897d3d/build/137.0.7151.14/mini_installer_137.0.7151.14_x86.exe + InstallerSha256: 98975678CF76B95CE0B3C59A841769591F59C637F95E324D0430DC1E35AE79DD +- Architecture: x64 + InstallerUrl: https://app-cms-repo.ecosia-browser.net/0aac13df-2a94-4570-8229-285102897d3d/build/137.0.7151.14/mini_installer_137.0.7151.14_x64.exe + InstallerSha256: 97E5A858C81A95313C71112D418259066A65F3405BAD6B34BC3E2475A1771E9E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Ecosia/EcosiaBrowser/137.0.7151.14/Ecosia.EcosiaBrowser.locale.en-US.yaml b/manifests/e/Ecosia/EcosiaBrowser/137.0.7151.14/Ecosia.EcosiaBrowser.locale.en-US.yaml new file mode 100644 index 0000000000000..12678beab8ce9 --- /dev/null +++ b/manifests/e/Ecosia/EcosiaBrowser/137.0.7151.14/Ecosia.EcosiaBrowser.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: Ecosia.EcosiaBrowser +PackageVersion: 137.0.7151.14 +PackageLocale: en-US +Publisher: The Ecosia Browser Authors +PublisherSupportUrl: https://ecosia.helpscoutdocs.com/ +Author: Ecosia GmbH +PackageName: Ecosia Browser +License: Freeware +Copyright: Copyright 2024 The Ecosia Browser Authors. All rights reserved. +ShortDescription: The greenest browser on Earth +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Ecosia/EcosiaBrowser/137.0.7151.14/Ecosia.EcosiaBrowser.locale.zh-CN.yaml b/manifests/e/Ecosia/EcosiaBrowser/137.0.7151.14/Ecosia.EcosiaBrowser.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9f37206143b57 --- /dev/null +++ b/manifests/e/Ecosia/EcosiaBrowser/137.0.7151.14/Ecosia.EcosiaBrowser.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: Ecosia.EcosiaBrowser +PackageVersion: 137.0.7151.14 +PackageLocale: zh-CN +Publisher: The Ecosia Browser Authors +PublisherSupportUrl: https://ecosia.helpscoutdocs.com/ +Author: Ecosia GmbH +PackageName: Ecosia Browser +License: 免费软件 +Copyright: 版权所有 2024 The Ecosia Browser Authors。保留所有权利。 +ShortDescription: 地球上最环保的浏览器 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Ecosia/EcosiaBrowser/137.0.7151.14/Ecosia.EcosiaBrowser.yaml b/manifests/e/Ecosia/EcosiaBrowser/137.0.7151.14/Ecosia.EcosiaBrowser.yaml new file mode 100644 index 0000000000000..bb1f7f8fba045 --- /dev/null +++ b/manifests/e/Ecosia/EcosiaBrowser/137.0.7151.14/Ecosia.EcosiaBrowser.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: Ecosia.EcosiaBrowser +PackageVersion: 137.0.7151.14 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdgeTX/Companion/2.11.2/EdgeTX.Companion.installer.yaml b/manifests/e/EdgeTX/Companion/2.11.2/EdgeTX.Companion.installer.yaml new file mode 100644 index 0000000000000..3bd43515ec02a --- /dev/null +++ b/manifests/e/EdgeTX/Companion/2.11.2/EdgeTX.Companion.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: EdgeTX.Companion +PackageVersion: 2.11.2 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: nullsoft +NestedInstallerFiles: +- RelativeFilePath: companion-windows-2.11.2.exe +Scope: machine +InstallModes: +- silent +UpgradeBehavior: install +ProductCode: EdgeTX Companion 2.11 +ReleaseDate: 2025-06-25 +AppsAndFeaturesEntries: +- DisplayName: EdgeTX Companion 2.11 + ProductCode: EdgeTX Companion 2.11 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\EdgeTX\Companion 2.11' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/EdgeTX/edgetx/releases/download/v2.11.2/edgetx-cpn-win64-v2.11.2.zip + InstallerSha256: 3D8948726C52A524D75FFA5A221AEE5E45A8B49AB9497DC24C67EFEFA6D7F289 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdgeTX/Companion/2.11.2/EdgeTX.Companion.locale.en-US.yaml b/manifests/e/EdgeTX/Companion/2.11.2/EdgeTX.Companion.locale.en-US.yaml new file mode 100644 index 0000000000000..9995712f97b26 --- /dev/null +++ b/manifests/e/EdgeTX/Companion/2.11.2/EdgeTX.Companion.locale.en-US.yaml @@ -0,0 +1,109 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: EdgeTX.Companion +PackageVersion: 2.11.2 +PackageLocale: en-US +Publisher: EdgeTX +PublisherUrl: https://edgetx.org/ +PublisherSupportUrl: https://github.com/EdgeTX/edgetx/issues +PackageName: EdgeTX Companion +PackageUrl: https://github.com/EdgeTX/edgetx/releases/download/v2.9.4/edgetx-cpn-win64-v2.9.4.zip +License: GPL-2.0 +LicenseUrl: https://github.com/EdgeTX/edgetx/blob/HEAD/LICENSE +Copyright: Copyright (c) 2021-2024 EdgeTX +ShortDescription: The cutting edge open-source firmware for your R/C radio +Description: EdgeTX is the cutting edge of OpenTX. It is the place where innovative ideas and cutting-edge features are developed and field-tested by the enthusiasts of our hobby. EdgeTX is a community project – ideas from the community, developed by the community, and enjoyed by the community! The community will always have a say in what EdgeTX is and what EdgeTX will be in the future. Without community feedback and involvement EdgeTX cannot exist. +Tags: +- fpv-racing +- hacktoberfest +- radio +- rc +ReleaseNotes: |- + We are pleased to announce the second maintenance release for EdgeTX "Jolly Mon", v2.11.2. Thank you for all the feedback and testing by you, the community (and partner manufacturers) which has allowed us to identify and squash both new and old bugs!! We simply cannot have done this without you! 🤗 🍻 + Note + - As with any firmware update, please ensure you back up your model and radio settings before updating, fully bench-test your models after updating, and report any issues you encounter. + - For MacOS users, Companion is now only compiled for MacOS 13 and above. Stay with v2.10.5 or earlier if you need support for an older version of MacOS. + - EdgeTX Companion v2.11 can no longer do binary conversions, and thus cannot open .otx files. If you have an old .otx file you need to convert or open, you will need to use an older version of EdgeTX Companion. This follows on from EdgeTX 2.8 being the last firmware version to support binary conversion (i.e. from OpenTX 2.3 or earlier versions of EdgeTX). + Warning + Due to a change in how the handset battery voltage calculation is done (due to #5635, #6255), you may want to double check the accuracy of your measured handset battery voltage if you have calibrated it in the past. Default value should be pretty close if you have never calibrated it. + What's Changed + TL;DR: We added support for the FlySky PL18U handset, support for new (fresh paint smell new!) CRSF/ELRS sensor telemetry, fixed a bunch of issues on both color and black-and-white screen radios—particularly some nasty issues for the GX12 and ST16, fixed several handset specific issues, continued to enhance the LVGL Lua API and fix some bugs there, as well as whacked some Companion gremlins. + New Handset + - feat: Support for new handset: Flysky PL18U (#6115) + Telemetry + - feat(telem): add support for latest CRSF sensor definition - Airspeed, RPM, Temp, Cells (#6274) + - feat(telem): allow CRSF cells or volt array for frame 0x0E (#6361) + Black and White handsets + - fix(bw): main view switch display may be incorrect (#6308) + - fix(bw): spectrum analyser corrupts menu display after closing (#6381) + Color screen handsets + - feat(color): delay population of mix line button content so mixes tab loads faster (#6262) + - feat(color): handle long press enter for pre-flight switch checks (#6282) + - fix(color): output channel may not get focus when user taps on screen (#6271) + - fix(color): channel monitor bars too wide, clip right edge (#6272) + - fix(color): reduce lag in scrolling main view when using model info widget (#6296) + - fix(color): outputs widget channel value may not update if unit is set to μs (#6343) + - fix(color): choice button display not updating if values list changed (#6354) + - fix(color): fix EM crashes when shutting down Lua states (#6337) + - fix(color): UI freeze when setting up 'Set' special function with no timers configured (#6377) + - fix(color): incorrect portrait layout for radio hardware page (#6375) + - fix(color): UA language characters are missing (#6368) + - fix(color): screen refresh may be slower on some radios after update to LVGL 8.4 (#6349) + - fix(color): button text for some choice values may be incorrect (#6329) + - chore(color): apply latest LGVL 8.4 changes (#6335) + All handsets generally + - feat: Support for Flysky Gimbal firmware 2.0 - Sync Sampling (#5869) + - chore(radio): unify the bootloader UI code (#6189) + - refactor(radio): move per10ms() to a software timer (#6321) + - fix(radio): verify PWM gimbal pulse length (#6283) + - fix(radio): potential crash if too many telemetry sensors discovered (#6288) + - fix(radio): mix line not working if source is a global variable (#6304) + - fix(radio): do not mask inputs if PWM gimbal detection failed (#6373) + Radio/handset specific + - fix(st16): audio chip init and data transfer (#6299) + - fix(st16): external module DMA conflict (#6300) + - fix(v16): trim T5/T6 swapped (#6315) + - fix(v14): ADC RTC battery reading returns strange value (#6345) + - fix(v14): SA/SD LED init (#6338) + - fix(gx12): use PCA95xx reset pin in case of read issues (#6358) + - fix(t18): normal switch off with one button (#6276) + - fix(surface): THs throttle timer may start counting when throttle is centered (#6323) + - fix: review Jumper VREF values (#6285) + - fix(f2): DMA buffer alignment - helps with memory usage / fragmentation (#6339) + Lua + - chore(color): additions and fixes for Lua LVGL API (#6294, #6351) + - feat(lua): add state & persistent properties to the logical switch API (#6327) + - fix(lua): curve value incorrect in model.getInput and model.insertInput API calls (#6357) + - fix(lua): memory leaks (#6372, #6297) + - fix(color): Lua LVGL line color not set correctly when 'pts' property is a function (#6270) + - fix(color): string passed to the Lua 'set' function of textEdit control may not be terminated (#6334) + Companion + - fix(cpn): input trim list (#6366) + - fix(cpn): length of widget option strings (#6378) + More information, which is broken down into by screen type (Color LCD and B&W), is available in the user manual here. You can also check the 2.11.0 release notes for what was new or changed in this release. + Full Changelog: v2.11.1...v2.11.2 + Known Limitations and Issues + - Wireless Model Trainer and CRSF/ELRS - if using the Multi Protocol Module (MPM) as a wireless trainer in conjunction with CRSF/ELRS, do not go above 250 Hz, otherwise the MPM wireless trainer will be dropped. 250 Hz or below is stable. + - Due to a change in how the battery voltage calculation is done, you may want to double check the accuracy of your measured battery voltage if you have calibrated it in the past. #5635, #6255 + UI/UX behavioural changes and/or new capabilities: + - Color LCD: menus now "wrap around" when using the rotary encoder, allowing you to get to back to the top of the list quickly (#4867) + - Companion: New menus have been added, and menu entries reorganized to be no so cluttered and more logical (#5753) + - Companion: Now automatically validates if any model settings have any missing mixer or input sources, and prevents writing of invalid model configurations to handset, while turning invalid model names red. Shows a red/green traffic light at the bottom of the models window to indicate overall status (#5798) + Supported radios + The full list of supported radios and their support status can be viewed here on the EdgeTX website. + Installation Guide + https://manual.edgetx.org/installing-and-updating-edgetx + Flash firmware via Chrome based browser + https://buddy.edgetx.org/#/flash?version=v2.11.2 + Language and Custom builds + Custom prebuilt firmware is no longer available. However, the CloudBuild option in EdgeTX is here to allow you to build your own firmware, with just a few clicks. Additionally, EdgeTX Companion now also has some support for CloudBuild, and will automatically fetch firmware for a supported language when you use the "Update components" option. But you can still build your own firmware online following this guide, request a specific build at #6165 or ask on Discord for someone to build one for you. + New Contributors + - @bastian2001 made their first contribution in #4857 + - @493505110 made their first contribution in #5288 + - @LupusTheCanine made their first contribution in #5452 + - @nrw505 made their first contribution in #5410 + - @forbesmyester made their first contribution in #5688 +ReleaseNotesUrl: https://github.com/EdgeTX/edgetx/releases/tag/v2.11.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdgeTX/Companion/2.11.2/EdgeTX.Companion.yaml b/manifests/e/EdgeTX/Companion/2.11.2/EdgeTX.Companion.yaml new file mode 100644 index 0000000000000..fe0f73081fba5 --- /dev/null +++ b/manifests/e/EdgeTX/Companion/2.11.2/EdgeTX.Companion.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: EdgeTX.Companion +PackageVersion: 2.11.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawMax/14.5.4.1333/EdrawSoft.EdrawMax.installer.yaml b/manifests/e/EdrawSoft/EdrawMax/14.5.4.1333/EdrawSoft.EdrawMax.installer.yaml new file mode 100644 index 0000000000000..e2ac5b596f523 --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMax/14.5.4.1333/EdrawSoft.EdrawMax.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: EdrawSoft.EdrawMax +PackageVersion: 14.5.4.1333 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- eddx +- edt +- edx +- vsd +- vsdx +ProductCode: '{037BAB81-3DF7-4381-A72C-A26B57C03548}_is1' +Installers: +- Architecture: x64 + InstallerUrl: https://download.edrawsoft.com/cbs_down/edraw-max_64bit_14.5.4_full5371.exe + InstallerSha256: 0ECF6404F4B12C69B1FCAF8AA67377B662F4EE14C46E378192CA090660A951F0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawMax/14.5.4.1333/EdrawSoft.EdrawMax.locale.en-US.yaml b/manifests/e/EdrawSoft/EdrawMax/14.5.4.1333/EdrawSoft.EdrawMax.locale.en-US.yaml new file mode 100644 index 0000000000000..8d55d26ca6de4 --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMax/14.5.4.1333/EdrawSoft.EdrawMax.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: EdrawSoft.EdrawMax +PackageVersion: 14.5.4.1333 +PackageLocale: en-US +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.com/ +PublisherSupportUrl: https://www.edrawsoft.com/support/edrawmax/ +PrivacyUrl: https://www.edrawsoft.com/privacy-policy.html +Author: SHENZHEN EDRAW SOFTWARE CO., LTD. +PackageName: Wondershare EdrawMax +PackageUrl: https://www.edrawsoft.com/edraw-max/ +License: Proprietary +LicenseUrl: https://www.edrawsoft.com/user-license-agreement.html +Copyright: Copyright © 2024 EdrawSoft. All rights reserved. +CopyrightUrl: https://www.edrawsoft.com/terms-conditions.html +ShortDescription: An intuitive diagram software with templates for any scenario. +Description: EdrawMax is a powerful, all-in-one, and yet easy-to-use diagramming tool that enables users to visualize the ideas effortlessly. With EdrawMax, you can create and customize flowcharts, Venn diagrams, mind maps, organizational charts, Gantt charts, UML diagrams, electrical drawings, genograms, building plans, etc. +Tags: +- chart +- design +- diagram +- draw +- gantt +- graph +- graphics +- mind-map +- mind-mapping +- mindmap +- uml +ReleaseNotes: |- + Supported copying images from comments to the canvas. + Mind Map now supports batch editing of topic widths. + Added page navigation feature. + Gantt Chart now supports hiding the right-side bar chart. + Added option to disable auto-opening documents after export. + Optimized other known issues. +ReleaseNotesUrl: https://www.edrawsoft.com/whats-new/edrawmax.html +PurchaseUrl: https://www.edrawsoft.com/pricing-edrawmax.html +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://www.edrawsoft.com/guide/edrawmax/ +- DocumentLabel: Tutorials + DocumentUrl: https://www.edrawsoft.com/video/#edrawmax +- DocumentLabel: FAQ + DocumentUrl: https://www.edrawsoft.com/faq/edrawmax/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawMax/14.5.4.1333/EdrawSoft.EdrawMax.locale.zh-CN.yaml b/manifests/e/EdrawSoft/EdrawMax/14.5.4.1333/EdrawSoft.EdrawMax.locale.zh-CN.yaml new file mode 100644 index 0000000000000..0045ddeaaced5 --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMax/14.5.4.1333/EdrawSoft.EdrawMax.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: EdrawSoft.EdrawMax +PackageVersion: 14.5.4.1333 +PackageLocale: zh-CN +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.com/ +PublisherSupportUrl: https://www.edrawsoft.com/support/edrawmax/ +PrivacyUrl: https://www.edrawsoft.com/privacy-policy.html +Author: 深圳市亿图软件有限公司 +PackageName: Wondershare EdrawMax +PackageUrl: https://www.edrawsoft.com/edraw-max/ +License: 专有软件 +LicenseUrl: https://www.edrawsoft.com/user-license-agreement.html +Copyright: © 2024 深圳市亿图软件有限公司 版权所有 +CopyrightUrl: https://www.edrawsoft.com/terms-conditions.html +ShortDescription: 一款直观的图表软件,拥有适用于任何场景的模板 +Description: EdrawMax 是一款功能强大、多合一且易于使用的图表工具,使用户能够毫不费力地将想法可视化。您可以使用 EdrawMax 建立和自定义流程图、维恩图、思维导图、组织结构图、甘特图、UML 图表、电气图、家谱图、建筑计划等。 +Tags: +- uml +- 图形 +- 图示 +- 图表 +- 思维导图 +- 甘特图 +- 绘图 +- 脑图 +- 设计 +ReleaseNotesUrl: https://www.edrawsoft.com/whats-new/edrawmax.html +PurchaseUrl: https://www.edrawsoft.com/pricing-edrawmax.html +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://www.edrawsoft.com/guide/edrawmax/ +- DocumentLabel: 教程 + DocumentUrl: https://www.edrawsoft.com/video/#edrawmax +- DocumentLabel: 常见问题 + DocumentUrl: https://www.edrawsoft.com/faq/edrawmax/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawMax/14.5.4.1333/EdrawSoft.EdrawMax.yaml b/manifests/e/EdrawSoft/EdrawMax/14.5.4.1333/EdrawSoft.EdrawMax.yaml new file mode 100644 index 0000000000000..d6cc9233ccd7d --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMax/14.5.4.1333/EdrawSoft.EdrawMax.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: EdrawSoft.EdrawMax +PackageVersion: 14.5.4.1333 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawMax/CN/14.5.4.1328/EdrawSoft.EdrawMax.CN.installer.yaml b/manifests/e/EdrawSoft/EdrawMax/CN/14.5.4.1328/EdrawSoft.EdrawMax.CN.installer.yaml new file mode 100644 index 0000000000000..5d42a4815b28e --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMax/CN/14.5.4.1328/EdrawSoft.EdrawMax.CN.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: EdrawSoft.EdrawMax.CN +PackageVersion: 14.5.4.1328 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- eddx +- edt +- edx +ProductCode: '{037BAB81-3DF7-4381-A72C-A26B57C03548}_is1' +Installers: +- Architecture: x64 + InstallerUrl: https://cc-download.edrawsoft.cn/cbs_down/edraw-max_cn_64bit_14.5.4_full5374.exe + InstallerSha256: AEBFC0FFAAAC28554C89BFE59B3088A977C717E2724BBF3C5B7454D6CFA30712 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawMax/CN/14.5.4.1328/EdrawSoft.EdrawMax.CN.locale.en-US.yaml b/manifests/e/EdrawSoft/EdrawMax/CN/14.5.4.1328/EdrawSoft.EdrawMax.CN.locale.en-US.yaml new file mode 100644 index 0000000000000..3c6b5d66be610 --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMax/CN/14.5.4.1328/EdrawSoft.EdrawMax.CN.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: EdrawSoft.EdrawMax.CN +PackageVersion: 14.5.4.1328 +PackageLocale: en-US +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.cn/ +PublisherSupportUrl: https://www.edrawmax.cn/helpcenter/pc/home +PrivacyUrl: https://www.edrawsoft.cn/private-policy/ +Author: SHENZHEN EDRAW SOFTWARE CO., LTD. +PackageName: EdrawMax +PackageUrl: https://www.edrawsoft.cn/edrawmax/ +License: Proprietary +LicenseUrl: https://www.edrawsoft.cn/edrawmax-term-services/ +Copyright: Copyright © 2024 EdrawSoft. All rights reserved. +ShortDescription: One-stop office diagram tool +Description: EdrawMax is a design software that integrates office diagramming, engineering diagramming, image-text editing and flyer design, with which you can create all kinds of diagrams easily without any drawing skills. +Tags: +- chart +- design +- diagram +- draw +- gantt +- graph +- graphics +- mind-map +- mind-mapping +- mindmap +- uml +ReleaseNotesUrl: https://www.edrawmax.cn/helpcenter/pc/releases +PurchaseUrl: https://www.edrawsoft.cn/order/max_buy.html +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://www.edrawmax.cn/helpcenter/pc/guide +- DocumentLabel: Video Guide + DocumentUrl: https://www.edrawmax.cn/helpcenter/pc/video +- DocumentLabel: FAQ + DocumentUrl: https://www.edrawmax.cn/helpcenter/pc/faq +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawMax/CN/14.5.4.1328/EdrawSoft.EdrawMax.CN.locale.zh-CN.yaml b/manifests/e/EdrawSoft/EdrawMax/CN/14.5.4.1328/EdrawSoft.EdrawMax.CN.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e7c11700fe182 --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMax/CN/14.5.4.1328/EdrawSoft.EdrawMax.CN.locale.zh-CN.yaml @@ -0,0 +1,48 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: EdrawSoft.EdrawMax.CN +PackageVersion: 14.5.4.1328 +PackageLocale: zh-CN +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.cn/ +PublisherSupportUrl: https://www.edrawmax.cn/helpcenter/pc/home +PrivacyUrl: https://www.edrawsoft.cn/private-policy/ +Author: 深圳市亿图软件有限公司 +PackageName: EdrawMax +PackageUrl: https://www.edrawsoft.cn/edrawmax/ +License: 专有软件 +LicenseUrl: https://www.edrawsoft.cn/edrawmax-term-services/ +Copyright: © 2024 深圳市亿图软件有限公司 版权所有 +ShortDescription: 一站式办公绘图利器 +Description: 亿图图示设计软件是一款集办公绘图、工程绘图、图文编辑、彩页设计为一体的设计软件。无需任何绘图功底,即可轻松创建各类图表。 +Tags: +- uml +- 亿图图示 +- 图形 +- 图示 +- 图表 +- 思维导图 +- 甘特图 +- 绘图 +- 脑图 +- 设计 +ReleaseNotes: |- + 多页面导出图片可以直接导出为文件夹+多张图片; + 优化图层和页面列表展示高度; + 左侧符号库支持预览单个符号; + 支持一键展开和收起所有注释; + 支持复制注释内图片到画布; + 思维导图支持批量修改主题宽度; + 其他体验问题优化和 bug 修复 +ReleaseNotesUrl: https://www.edrawmax.cn/helpcenter/pc/releases +PurchaseUrl: https://www.edrawsoft.cn/order/max_buy.html +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://www.edrawmax.cn/helpcenter/pc/guide +- DocumentLabel: 视频教程 + DocumentUrl: https://www.edrawmax.cn/helpcenter/pc/video +- DocumentLabel: 常见问题 + DocumentUrl: https://www.edrawmax.cn/helpcenter/pc/faq +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawMax/CN/14.5.4.1328/EdrawSoft.EdrawMax.CN.yaml b/manifests/e/EdrawSoft/EdrawMax/CN/14.5.4.1328/EdrawSoft.EdrawMax.CN.yaml new file mode 100644 index 0000000000000..e100d4a67cb8d --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMax/CN/14.5.4.1328/EdrawSoft.EdrawMax.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: EdrawSoft.EdrawMax.CN +PackageVersion: 14.5.4.1328 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawMind/12.3.8.1239/EdrawSoft.EdrawMind.installer.yaml b/manifests/e/EdrawSoft/EdrawMind/12.3.8.1239/EdrawSoft.EdrawMind.installer.yaml new file mode 100644 index 0000000000000..5caaa3827aeaf --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMind/12.3.8.1239/EdrawSoft.EdrawMind.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: EdrawSoft.EdrawMind +PackageVersion: 12.3.8.1239 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- emmx +ProductCode: '{B90063D2-500B-4097-96ED-74E349F8A6E5}_is1' +Installers: +- Architecture: x64 + InstallerUrl: https://download.edrawsoft.com/cbs_down/edrawmind_12.3.8_full5370.exe + InstallerSha256: A9750D062EEBA11F51F359F0AA8D3591C4149C38E44136DEDEFF0B6D4FCE0042 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawMind/12.3.8.1239/EdrawSoft.EdrawMind.locale.en-US.yaml b/manifests/e/EdrawSoft/EdrawMind/12.3.8.1239/EdrawSoft.EdrawMind.locale.en-US.yaml new file mode 100644 index 0000000000000..9a58e2a341c60 --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMind/12.3.8.1239/EdrawSoft.EdrawMind.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: EdrawSoft.EdrawMind +PackageVersion: 12.3.8.1239 +PackageLocale: en-US +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.com/ +PublisherSupportUrl: https://www.edrawsoft.com/support/edrawmind/ +PrivacyUrl: https://www.edrawsoft.com/privacy-policy.html +Author: SHENZHEN EDRAW SOFTWARE CO., LTD. +PackageName: EdrawMind +PackageUrl: https://www.edrawsoft.com/edrawmind/ +License: Proprietary +LicenseUrl: https://www.edrawsoft.com/user-license-agreement.html +Copyright: Copyright © 2024 EdrawSoft. All rights reserved. +CopyrightUrl: https://www.edrawsoft.com/terms-conditions.html +ShortDescription: A versatile mind mapping tool for collaborative brainstorming. +Description: EdrawMind is designed for creating fresh new visual innovations, integrating your bullet points to structure an overall mind map. It is convenient and helpful for you to use EdrawMind to sort out your thoughts or ideas in order to find solutions to problems. +Tags: +- mind-map +- mind-mapping +- mindmap +ReleaseNotes: |- + Newly upgraded Branch Free Positioning function + 1. Branch Free Positioning supports drag-and-drop for themes, as well as changing theme connector line lengths and general theme spacing. Supports all subtopic layers. (Only Mind Maps/Logic Maps/Tree Maps/Bracket Diagrams/Org Charts support Branch Free Layouts.) + 2. Supports batch restoration to the standard layout position after using drag-and-drop. + 3. Feature Entry: Go to the Canvas page > Right Panel > Guide Map Layout, and select “Branch Free Positioning.” + Newly Upgraded AI File Parsing + 1. The newly enhanced text/sentence analysis generates a mind map, which supports a richer variety of analysis, so “everything” can be turned into a mind map! + 2. Add a custom instruction function to support custom input of AI prompt words. AI will analyze and summarize based on your instructions to meet personal customization needs. + Add Voice Note + 1. Supports adding voice notes to themes. When this feature is enabled, you can record voice notes and add them to themes as comments. Click to play a voice note directly in the Canvas. + 2. Feature Entry: Go to the Canvas page > Insert > Voice Notes + New Graffiti Brush + 1. Use the Brush feature to paint freely in the current canvas. You can also add arrows, straight lines, shapes, etc. + 2. Feature Entry: Go to the Canvas page > Insert > Brush + Import and convert PDF to Mind Map + After importing a PDF, you can intelligently identify the content layers in the document, retain the original text, and convert it into an editable mind map. + New Merge Other Mind Map Files feature + Supports merging multiple local EdrawMind Mind Map files into one file, optimizing the file content management experience. +ReleaseNotesUrl: https://www.edrawsoft.com/whats-new/edrawmind.html +PurchaseUrl: https://www.edrawsoft.com/pricing-edrawmind.html +Documentations: +- DocumentLabel: Users Guide + DocumentUrl: https://www.edrawsoft.com/guide/mindmaster/ +- DocumentLabel: Video Tutorial + DocumentUrl: https://www.edrawsoft.com/video/#edrawmind +- DocumentLabel: FAQ + DocumentUrl: https://www.edrawsoft.com/faq/edrawmind/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawMind/12.3.8.1239/EdrawSoft.EdrawMind.locale.zh-CN.yaml b/manifests/e/EdrawSoft/EdrawMind/12.3.8.1239/EdrawSoft.EdrawMind.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6162e4d7f70a9 --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMind/12.3.8.1239/EdrawSoft.EdrawMind.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: EdrawSoft.EdrawMind +PackageVersion: 12.3.8.1239 +PackageLocale: zh-CN +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.com/ +PublisherSupportUrl: https://www.edrawsoft.com/support/edrawmind/ +PrivacyUrl: https://www.edrawsoft.com/privacy-policy.html +Author: 深圳市亿图软件有限公司 +PackageName: EdrawMind +PackageUrl: https://www.edrawsoft.com/edrawmind/ +License: 专有软件 +LicenseUrl: https://www.edrawsoft.com/user-license-agreement.html +Copyright: 深圳市亿图软件版权所有,保留所有版权。 +CopyrightUrl: https://www.edrawsoft.com/terms-conditions.html +ShortDescription: 用于多人协作头脑风暴的多功能思维导图工具 +Description: EdrawMind 是一个支持多人协作的思维导图和头脑风暴工具。使用 EdrawMind 来整理思路、形象化想法、做笔记、计划项目,更重要的是,找到问题的解决方案,对您来说很方便也很有帮助。 +Tags: +- 思维导图 +- 脑图 +ReleaseNotesUrl: https://www.edrawsoft.com/whats-new/edrawmind.html +PurchaseUrl: https://www.edrawsoft.com/pricing-edrawmind.html +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://www.edrawsoft.com/guide/mindmaster/ +- DocumentLabel: 视频教程 + DocumentUrl: https://www.edrawsoft.com/video/#edrawmind +- DocumentLabel: 常见问题 + DocumentUrl: https://www.edrawsoft.com/faq/edrawmind/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawMind/12.3.8.1239/EdrawSoft.EdrawMind.yaml b/manifests/e/EdrawSoft/EdrawMind/12.3.8.1239/EdrawSoft.EdrawMind.yaml new file mode 100644 index 0000000000000..0cb6d2f5f21ea --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMind/12.3.8.1239/EdrawSoft.EdrawMind.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: EdrawSoft.EdrawMind +PackageVersion: 12.3.8.1239 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawProj/CN/3.7.9/EdrawSoft.EdrawProj.CN.installer.yaml b/manifests/e/EdrawSoft/EdrawProj/CN/3.7.9/EdrawSoft.EdrawProj.CN.installer.yaml new file mode 100644 index 0000000000000..244ac87bd0bfc --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawProj/CN/3.7.9/EdrawSoft.EdrawProj.CN.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: EdrawSoft.EdrawProj.CN +PackageVersion: 3.7.9 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- edpx +- mpp +ProductCode: 亿图项目管理_is1 +Installers: +- Architecture: x86 + InstallerUrl: https://cc-download.edrawsoft.cn/cbs_down/edrawproj_cn_3.7.9_full5376.exe + InstallerSha256: E0E8803EB42B0F323D4203E57B513DF6B0012A5F2A4E70B05FD8786184FA28CB +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawProj/CN/3.7.9/EdrawSoft.EdrawProj.CN.locale.en-US.yaml b/manifests/e/EdrawSoft/EdrawProj/CN/3.7.9/EdrawSoft.EdrawProj.CN.locale.en-US.yaml new file mode 100644 index 0000000000000..796bd4eba52b9 --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawProj/CN/3.7.9/EdrawSoft.EdrawProj.CN.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: EdrawSoft.EdrawProj.CN +PackageVersion: 3.7.9 +PackageLocale: en-US +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.cn/ +PublisherSupportUrl: https://www.edrawsoft.cn/help-center/ +PrivacyUrl: https://www.edrawsoft.cn/private-policy/ +Author: SHENZHEN EDRAW SOFTWARE CO., LTD. +PackageName: 亿图项目管理 +PackageUrl: https://www.edrawsoft.cn/edrawproject/ +License: Proprietary +LicenseUrl: https://www.edrawsoft.cn/edrawproj-term-services/ +Copyright: Copyright © 2025 EdrawSoft. All rights reserved. +CopyrightUrl: https://www.edrawsoft.cn/edrawproj-term-services/ +ShortDescription: A project management tool based on Gantt chart +Description: EdrawProj is a project management software based on Gantt chart that can effectively plan project plans, allocate resources to tasks, track progress, manage budgets, control costs and generate reports. +Tags: +- chart +- design +- diagram +- draw +- gantt +- graph +- graphics +ReleaseNotes: |- + 1. 支持单元格格式刷 + 2. 支持固定任务序号列、高亮行列标题 + 3. 修复已知 bug +PurchaseUrl: https://www.edrawsoft.cn/order/project_buy.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawProj/CN/3.7.9/EdrawSoft.EdrawProj.CN.locale.zh-CN.yaml b/manifests/e/EdrawSoft/EdrawProj/CN/3.7.9/EdrawSoft.EdrawProj.CN.locale.zh-CN.yaml new file mode 100644 index 0000000000000..10ae3343b079c --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawProj/CN/3.7.9/EdrawSoft.EdrawProj.CN.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: EdrawSoft.EdrawProj.CN +PackageVersion: 3.7.9 +PackageLocale: zh-CN +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.cn/ +PublisherSupportUrl: https://www.edrawsoft.cn/help-center/ +PrivacyUrl: https://www.edrawsoft.cn/private-policy/ +Author: 深圳市亿图软件有限公司 +PackageName: 亿图项目管理 +PackageUrl: https://www.edrawsoft.cn/edrawproject/ +License: 专有软件 +LicenseUrl: https://www.edrawsoft.cn/edrawproj-term-services/ +Copyright: Copyright © 2025 EdrawSoft. All rights reserved. +CopyrightUrl: https://www.edrawsoft.cn/edrawproj-term-services/ +ShortDescription: 基于甘特图的项目管理工具 +Description: 亿图项目管理软件 Edraw Project 是一款基于甘特图进行项目管理的软件,可有效规划项目计划、为任务分配资源、跟踪进度、管理预算、控制成本和生成报表。 +Tags: +- 图形 +- 图示 +- 图表 +- 甘特图 +- 绘图 +- 设计 +PurchaseUrl: https://www.edrawsoft.cn/order/project_buy.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/EdrawProj/CN/3.7.9/EdrawSoft.EdrawProj.CN.yaml b/manifests/e/EdrawSoft/EdrawProj/CN/3.7.9/EdrawSoft.EdrawProj.CN.yaml new file mode 100644 index 0000000000000..28743acb382b1 --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawProj/CN/3.7.9/EdrawSoft.EdrawProj.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: EdrawSoft.EdrawProj.CN +PackageVersion: 3.7.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/MindMaster/12.3.10.1242/EdrawSoft.MindMaster.installer.yaml b/manifests/e/EdrawSoft/MindMaster/12.3.10.1242/EdrawSoft.MindMaster.installer.yaml new file mode 100644 index 0000000000000..94411366d5b95 --- /dev/null +++ b/manifests/e/EdrawSoft/MindMaster/12.3.10.1242/EdrawSoft.MindMaster.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: EdrawSoft.MindMaster +PackageVersion: 12.3.10.1242 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- emmx +ProductCode: '{B90063D2-500B-4097-96ED-74E349F8A6E5}_is1' +Installers: +- Architecture: x64 + InstallerUrl: https://cc-download.edrawsoft.cn/cbs_down/mindmaster_cn_12.3.10_full5375.exe + InstallerSha256: 8A9407A3F302E2F9461D22E6C1C8A8248B5CCDFBDC89298226352A2AC6025158 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/MindMaster/12.3.10.1242/EdrawSoft.MindMaster.locale.en-US.yaml b/manifests/e/EdrawSoft/MindMaster/12.3.10.1242/EdrawSoft.MindMaster.locale.en-US.yaml new file mode 100644 index 0000000000000..3da7440013040 --- /dev/null +++ b/manifests/e/EdrawSoft/MindMaster/12.3.10.1242/EdrawSoft.MindMaster.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: EdrawSoft.MindMaster +PackageVersion: 12.3.10.1242 +PackageLocale: en-US +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.cn/ +PublisherSupportUrl: https://www.edrawsoft.cn/help-center/ +PrivacyUrl: https://www.edrawsoft.cn/private-policy/ +Author: SHENZHEN EDRAW SOFTWARE CO., LTD. +PackageName: MindMaster +PackageUrl: https://www.edrawsoft.cn/mindmaster/ +License: Proprietary +LicenseUrl: https://www.edrawsoft.cn/edrawmax-term-services/ +Copyright: © 2024 SHENZHEN EDRAW SOFTWARE CO., LTD. All rights reserved +ShortDescription: Cloud-based cross-platform mind mapping software +Description: MindMaster, a cross-platform and versatile mind mapping software, is an effective solution to help you quickly become a competent mind mapping designer! It provides abundant intelligent layouts, various presentation modes, exquisite design elements and preset theme styles, making it a veritable productivity tool for users. Since its launch, it has been well received by users and is widely used in problem solving, time management, business strategy and project management. +Tags: +- mind-map +- mind-mapping +- mindmap +ReleaseNotesUrl: https://www.edrawsoft.cn/download/mindmaster/versioninfo/ +PurchaseUrl: https://www.edrawsoft.cn/order/mindmaster_buy.html +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://www.edrawsoft.cn/help-center/mindmaster-user-manual-cn.pdf +- DocumentLabel: Tutorial + DocumentUrl: https://www.edrawsoft.cn/mindmaster/tutorial/ +- DocumentLabel: Video Tutorial + DocumentUrl: https://mp.weixin.qq.com/s/IANQyVNlXWik-Zrckfy4bA +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/MindMaster/12.3.10.1242/EdrawSoft.MindMaster.locale.zh-CN.yaml b/manifests/e/EdrawSoft/MindMaster/12.3.10.1242/EdrawSoft.MindMaster.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f81d83d418a2b --- /dev/null +++ b/manifests/e/EdrawSoft/MindMaster/12.3.10.1242/EdrawSoft.MindMaster.locale.zh-CN.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: EdrawSoft.MindMaster +PackageVersion: 12.3.10.1242 +PackageLocale: zh-CN +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.cn/ +PublisherSupportUrl: https://www.edrawsoft.cn/help-center/ +PrivacyUrl: https://www.edrawsoft.cn/private-policy/ +Author: 深圳市亿图软件有限公司 +PackageName: MindMaster +PackageUrl: https://www.edrawsoft.cn/mindmaster/ +License: 专有软件 +LicenseUrl: https://www.edrawsoft.cn/edrawmax-term-services/ +Copyright: © 2024 深圳市亿图软件有限公司 版权所有 +ShortDescription: 基于云的跨端思维导图软件 +Description: 亿图脑图 MindMaster 是一款跨平台、多功能的思维导图软件。是帮助您快速成为思维导图设计能手的有效解决方案!软件提供了丰富的智能布局、多样性的展示模式、结合精美的设计元素和预置的主题样式,努力帮用户打造一款真正的效率工具。自推出以来深受广大用户的欢迎,被广泛应用于解决问题,时间管理,业务战略和项目管理等领域中。 +Tags: +- 亿图脑图 +- 思维导图 +- 脑图 +ReleaseNotes: |- + 甘特图显示优化 + 甘特图功能新增「任务日期格式」,年月日多种格式可供选择。新增「任务显示设置」,支持将主题中已完成的任务进行隐藏/展示。 + 功能入口:画布 > 高级 > 甘特图 > 右侧面板 > 设置任务 + 视图显示优化 + 视图功能新增「显示设置」,支持一键显示/隐藏画布所有主题的标签、待办、图标。功能入口:画布 > 视图 >显示设置 + 截图功能快捷键修改为:Alt+Shift+A + 原「灵活浮动主题」功能名称修改为「禁用主题自动吸附」 + 图标素材新增月份、星期等类型。 +ReleaseNotesUrl: https://www.edrawsoft.cn/download/mindmaster/versioninfo/ +PurchaseUrl: https://www.edrawsoft.cn/order/mindmaster_buy.html +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://www.edrawsoft.cn/help-center/mindmaster-user-manual-cn.pdf +- DocumentLabel: 教程 + DocumentUrl: https://www.edrawsoft.cn/mindmaster/tutorial/ +- DocumentLabel: 视频教程 + DocumentUrl: https://mp.weixin.qq.com/s/IANQyVNlXWik-Zrckfy4bA +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/MindMaster/12.3.10.1242/EdrawSoft.MindMaster.yaml b/manifests/e/EdrawSoft/MindMaster/12.3.10.1242/EdrawSoft.MindMaster.yaml new file mode 100644 index 0000000000000..950d910e0864d --- /dev/null +++ b/manifests/e/EdrawSoft/MindMaster/12.3.10.1242/EdrawSoft.MindMaster.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: EdrawSoft.MindMaster +PackageVersion: 12.3.10.1242 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/MindMaster/12.3.11.1243/EdrawSoft.MindMaster.installer.yaml b/manifests/e/EdrawSoft/MindMaster/12.3.11.1243/EdrawSoft.MindMaster.installer.yaml new file mode 100644 index 0000000000000..1061edfb264da --- /dev/null +++ b/manifests/e/EdrawSoft/MindMaster/12.3.11.1243/EdrawSoft.MindMaster.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: EdrawSoft.MindMaster +PackageVersion: 12.3.11.1243 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- emmx +ProductCode: '{B90063D2-500B-4097-96ED-74E349F8A6E5}_is1' +Installers: +- Architecture: x64 + InstallerUrl: https://cc-download.edrawsoft.cn/cbs_down/mindmaster_cn_12.3.11_full5375.exe + InstallerSha256: BE843881A8FE16198AA1C4C1261A678E661D46A8F300C47AB1FF66F16E2B8C46 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/MindMaster/12.3.11.1243/EdrawSoft.MindMaster.locale.en-US.yaml b/manifests/e/EdrawSoft/MindMaster/12.3.11.1243/EdrawSoft.MindMaster.locale.en-US.yaml new file mode 100644 index 0000000000000..35ebe4971154b --- /dev/null +++ b/manifests/e/EdrawSoft/MindMaster/12.3.11.1243/EdrawSoft.MindMaster.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: EdrawSoft.MindMaster +PackageVersion: 12.3.11.1243 +PackageLocale: en-US +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.cn/ +PublisherSupportUrl: https://www.edrawsoft.cn/help-center/ +PrivacyUrl: https://www.edrawsoft.cn/private-policy/ +Author: SHENZHEN EDRAW SOFTWARE CO., LTD. +PackageName: MindMaster +PackageUrl: https://www.edrawsoft.cn/mindmaster/ +License: Proprietary +LicenseUrl: https://www.edrawsoft.cn/edrawmax-term-services/ +Copyright: © 2024 SHENZHEN EDRAW SOFTWARE CO., LTD. All rights reserved +ShortDescription: Cloud-based cross-platform mind mapping software +Description: MindMaster, a cross-platform and versatile mind mapping software, is an effective solution to help you quickly become a competent mind mapping designer! It provides abundant intelligent layouts, various presentation modes, exquisite design elements and preset theme styles, making it a veritable productivity tool for users. Since its launch, it has been well received by users and is widely used in problem solving, time management, business strategy and project management. +Tags: +- mind-map +- mind-mapping +- mindmap +ReleaseNotesUrl: https://www.edrawsoft.cn/download/mindmaster/versioninfo/ +PurchaseUrl: https://www.edrawsoft.cn/order/mindmaster_buy.html +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://www.edrawsoft.cn/help-center/mindmaster-user-manual-cn.pdf +- DocumentLabel: Tutorial + DocumentUrl: https://www.edrawsoft.cn/mindmaster/tutorial/ +- DocumentLabel: Video Tutorial + DocumentUrl: https://mp.weixin.qq.com/s/IANQyVNlXWik-Zrckfy4bA +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/MindMaster/12.3.11.1243/EdrawSoft.MindMaster.locale.zh-CN.yaml b/manifests/e/EdrawSoft/MindMaster/12.3.11.1243/EdrawSoft.MindMaster.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3efa5a76f8e3d --- /dev/null +++ b/manifests/e/EdrawSoft/MindMaster/12.3.11.1243/EdrawSoft.MindMaster.locale.zh-CN.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: EdrawSoft.MindMaster +PackageVersion: 12.3.11.1243 +PackageLocale: zh-CN +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.cn/ +PublisherSupportUrl: https://www.edrawsoft.cn/help-center/ +PrivacyUrl: https://www.edrawsoft.cn/private-policy/ +Author: 深圳市亿图软件有限公司 +PackageName: MindMaster +PackageUrl: https://www.edrawsoft.cn/mindmaster/ +License: 专有软件 +LicenseUrl: https://www.edrawsoft.cn/edrawmax-term-services/ +Copyright: © 2024 深圳市亿图软件有限公司 版权所有 +ShortDescription: 基于云的跨端思维导图软件 +Description: 亿图脑图 MindMaster 是一款跨平台、多功能的思维导图软件。是帮助您快速成为思维导图设计能手的有效解决方案!软件提供了丰富的智能布局、多样性的展示模式、结合精美的设计元素和预置的主题样式,努力帮用户打造一款真正的效率工具。自推出以来深受广大用户的欢迎,被广泛应用于解决问题,时间管理,业务战略和项目管理等领域中。 +Tags: +- 亿图脑图 +- 思维导图 +- 脑图 +ReleaseNotes: |- + 甘特图显示优化 + 甘特图功能新增「任务日期格式」,年月日多种格式可供选择。新增「任务显示设置」,支持将主题中已完成的任务进行隐藏/展示。 + 功能入口:画布 > 高级 > 甘特图 > 右侧面板 > 设置任务 + 视图显示优化 + 视图功能新增「显示设置」,支持一键显示/隐藏画布所有主题的标签、待办、图标。功能入口:画布 > 视图 >显示设置 + 截图功能快捷键修改为:Alt+Shift+A + 原「灵活浮动主题」功能名称修改为「禁用主题自动吸附」 + 图标素材新增月份、星期等类型。 +ReleaseNotesUrl: https://www.edrawsoft.cn/download/mindmaster/versioninfo/ +PurchaseUrl: https://www.edrawsoft.cn/order/mindmaster_buy.html +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://www.edrawsoft.cn/help-center/mindmaster-user-manual-cn.pdf +- DocumentLabel: 教程 + DocumentUrl: https://www.edrawsoft.cn/mindmaster/tutorial/ +- DocumentLabel: 视频教程 + DocumentUrl: https://mp.weixin.qq.com/s/IANQyVNlXWik-Zrckfy4bA +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/MindMaster/12.3.11.1243/EdrawSoft.MindMaster.yaml b/manifests/e/EdrawSoft/MindMaster/12.3.11.1243/EdrawSoft.MindMaster.yaml new file mode 100644 index 0000000000000..38bd856fee107 --- /dev/null +++ b/manifests/e/EdrawSoft/MindMaster/12.3.11.1243/EdrawSoft.MindMaster.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: EdrawSoft.MindMaster +PackageVersion: 12.3.11.1243 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/MindMaster/12.3.9.1235/EdrawSoft.MindMaster.installer.yaml b/manifests/e/EdrawSoft/MindMaster/12.3.9.1235/EdrawSoft.MindMaster.installer.yaml new file mode 100644 index 0000000000000..7f0daa2fb3999 --- /dev/null +++ b/manifests/e/EdrawSoft/MindMaster/12.3.9.1235/EdrawSoft.MindMaster.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: EdrawSoft.MindMaster +PackageVersion: 12.3.9.1235 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- emmx +ProductCode: '{B90063D2-500B-4097-96ED-74E349F8A6E5}_is1' +Installers: +- Architecture: x64 + InstallerUrl: https://cc-download.edrawsoft.cn/cbs_down/mindmaster_cn_12.3.9_full5375.exe + InstallerSha256: 4E6E194E1AAF92012538C67B6A94BAE51E34ED7BD120D4627E73FCDB9348D81F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/MindMaster/12.3.9.1235/EdrawSoft.MindMaster.locale.en-US.yaml b/manifests/e/EdrawSoft/MindMaster/12.3.9.1235/EdrawSoft.MindMaster.locale.en-US.yaml new file mode 100644 index 0000000000000..d6a3e6c97adc0 --- /dev/null +++ b/manifests/e/EdrawSoft/MindMaster/12.3.9.1235/EdrawSoft.MindMaster.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: EdrawSoft.MindMaster +PackageVersion: 12.3.9.1235 +PackageLocale: en-US +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.cn/ +PublisherSupportUrl: https://www.edrawsoft.cn/help-center/ +PrivacyUrl: https://www.edrawsoft.cn/private-policy/ +Author: SHENZHEN EDRAW SOFTWARE CO., LTD. +PackageName: MindMaster +PackageUrl: https://www.edrawsoft.cn/mindmaster/ +License: Proprietary +LicenseUrl: https://www.edrawsoft.cn/edrawmax-term-services/ +Copyright: © 2024 SHENZHEN EDRAW SOFTWARE CO., LTD. All rights reserved +ShortDescription: Cloud-based cross-platform mind mapping software +Description: MindMaster, a cross-platform and versatile mind mapping software, is an effective solution to help you quickly become a competent mind mapping designer! It provides abundant intelligent layouts, various presentation modes, exquisite design elements and preset theme styles, making it a veritable productivity tool for users. Since its launch, it has been well received by users and is widely used in problem solving, time management, business strategy and project management. +Tags: +- mind-map +- mind-mapping +- mindmap +ReleaseNotesUrl: https://www.edrawsoft.cn/download/mindmaster/versioninfo/ +PurchaseUrl: https://www.edrawsoft.cn/order/mindmaster_buy.html +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://www.edrawsoft.cn/help-center/mindmaster-user-manual-cn.pdf +- DocumentLabel: Tutorial + DocumentUrl: https://www.edrawsoft.cn/mindmaster/tutorial/ +- DocumentLabel: Video Tutorial + DocumentUrl: https://mp.weixin.qq.com/s/IANQyVNlXWik-Zrckfy4bA +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/MindMaster/12.3.9.1235/EdrawSoft.MindMaster.locale.zh-CN.yaml b/manifests/e/EdrawSoft/MindMaster/12.3.9.1235/EdrawSoft.MindMaster.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1f9f0c7e42dae --- /dev/null +++ b/manifests/e/EdrawSoft/MindMaster/12.3.9.1235/EdrawSoft.MindMaster.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: EdrawSoft.MindMaster +PackageVersion: 12.3.9.1235 +PackageLocale: zh-CN +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.cn/ +PublisherSupportUrl: https://www.edrawsoft.cn/help-center/ +PrivacyUrl: https://www.edrawsoft.cn/private-policy/ +Author: 深圳市亿图软件有限公司 +PackageName: MindMaster +PackageUrl: https://www.edrawsoft.cn/mindmaster/ +License: 专有软件 +LicenseUrl: https://www.edrawsoft.cn/edrawmax-term-services/ +Copyright: © 2024 深圳市亿图软件有限公司 版权所有 +ShortDescription: 基于云的跨端思维导图软件 +Description: 亿图脑图 MindMaster 是一款跨平台、多功能的思维导图软件。是帮助您快速成为思维导图设计能手的有效解决方案!软件提供了丰富的智能布局、多样性的展示模式、结合精美的设计元素和预置的主题样式,努力帮用户打造一款真正的效率工具。自推出以来深受广大用户的欢迎,被广泛应用于解决问题,时间管理,业务战略和项目管理等领域中。 +Tags: +- 亿图脑图 +- 思维导图 +- 脑图 +ReleaseNotes: |- + 快捷键编辑优化 + 1. 主题文本支持使用快捷键选择常用颜色。 + 快捷键查看方式:画布页 > 右侧面板 > 样式 > 文本颜色,可在颜色面板中第一行查看具体快捷键。 + 2. 大纲模式下支持使用快捷键展示不同层级数。 + 3. 浮动主题支持键盘方向键调整位置。 + 选中浮动主题,按住 Alt+方向键即可在画布上移动浮动主题的位置。 + 4. 支持一键固定显示所有主题的注释。快捷键:Ctrl+Alt+E + 增加截图功能选项 + 脑图软件新增内置截图功能,截图后支持涂鸦、添加形状、文本等。功能入口:画布页 > 高级 > 截取屏幕 + 新增一键清空导图文本 + 画布页鼠标右键菜单中,选择【清空所有主题的文本】,可将所有主题内的文本清空并保留主题样式。搭配社区模板使用效果更佳~ + 其他优化 + 1. 插入附件后,可在附件管理窗口对附件重命名。 + 2. 支持统一设置主题框高度。选择主题后,可快捷调整主题框的高度。功能入口:画布页 > 高级 > 主题高度。 + 3. 导入 word\html 格式文件的指引优化,可在文件导入窗口点击【导入指引】,在帮助中心页面中查看详细操作指引。 +ReleaseNotesUrl: https://www.edrawsoft.cn/download/mindmaster/versioninfo/ +PurchaseUrl: https://www.edrawsoft.cn/order/mindmaster_buy.html +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://www.edrawsoft.cn/help-center/mindmaster-user-manual-cn.pdf +- DocumentLabel: 教程 + DocumentUrl: https://www.edrawsoft.cn/mindmaster/tutorial/ +- DocumentLabel: 视频教程 + DocumentUrl: https://mp.weixin.qq.com/s/IANQyVNlXWik-Zrckfy4bA +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EdrawSoft/MindMaster/12.3.9.1235/EdrawSoft.MindMaster.yaml b/manifests/e/EdrawSoft/MindMaster/12.3.9.1235/EdrawSoft.MindMaster.yaml new file mode 100644 index 0000000000000..0d9d23445c7df --- /dev/null +++ b/manifests/e/EdrawSoft/MindMaster/12.3.9.1235/EdrawSoft.MindMaster.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: EdrawSoft.MindMaster +PackageVersion: 12.3.9.1235 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.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/Elastic/Auditbeat/9.0.3/Elastic.Auditbeat.installer.yaml b/manifests/e/Elastic/Auditbeat/9.0.3/Elastic.Auditbeat.installer.yaml new file mode 100644 index 0000000000000..59845d840e041 --- /dev/null +++ b/manifests/e/Elastic/Auditbeat/9.0.3/Elastic.Auditbeat.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: Elastic.Auditbeat +PackageVersion: 9.0.3 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +Commands: +- auditbeat +ProductCode: '{F52C0025-5CB3-5DE7-84F7-A49A147885F3}' +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- UpgradeCode: '{F52C0025-5CB3-5DE7-84F7-A49A847845F3}' +Installers: +- Architecture: x64 + InstallerUrl: https://artifacts.elastic.co/downloads/beats/auditbeat/auditbeat-9.0.3-windows-x86_64.msi + InstallerSha256: DF7C141E326136FBD07F1F6530BB63A179130EA0903D4B067E9C2263D7F9CCC2 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Auditbeat/9.0.3/Elastic.Auditbeat.locale.en-US.yaml b/manifests/e/Elastic/Auditbeat/9.0.3/Elastic.Auditbeat.locale.en-US.yaml new file mode 100644 index 0000000000000..bc2add415fb1e --- /dev/null +++ b/manifests/e/Elastic/Auditbeat/9.0.3/Elastic.Auditbeat.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Elastic.Auditbeat +PackageVersion: 9.0.3 +PackageLocale: en-US +Publisher: Elastic +PublisherUrl: https://www.elastic.co/ +PublisherSupportUrl: https://github.com/elastic/beats/issues +PrivacyUrl: https://www.elastic.co/legal/privacy-statement +Author: Elasticsearch B.V. +PackageName: Beats auditbeat +PackageUrl: https://www.elastic.co/downloads/beats/auditbeat +License: Elastic-2.0 +LicenseUrl: https://github.com/elastic/beats/blob/HEAD/LICENSE.txt +Copyright: © 2025. Elasticsearch B.V. All Rights Reserved +ShortDescription: Collect your Linux audit framework data and monitor the integrity of your files. +ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Auditbeat/9.0.3/Elastic.Auditbeat.locale.zh-CN.yaml b/manifests/e/Elastic/Auditbeat/9.0.3/Elastic.Auditbeat.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ff6a756d03eff --- /dev/null +++ b/manifests/e/Elastic/Auditbeat/9.0.3/Elastic.Auditbeat.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Elastic.Auditbeat +PackageVersion: 9.0.3 +PackageLocale: zh-CN +ShortDescription: 收集您的 Linux 审计框架数据并监控文件完整性。 +ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Auditbeat/9.0.3/Elastic.Auditbeat.yaml b/manifests/e/Elastic/Auditbeat/9.0.3/Elastic.Auditbeat.yaml new file mode 100644 index 0000000000000..b488e182933c6 --- /dev/null +++ b/manifests/e/Elastic/Auditbeat/9.0.3/Elastic.Auditbeat.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: Elastic.Auditbeat +PackageVersion: 9.0.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Filebeat/9.0.3/Elastic.Filebeat.installer.yaml b/manifests/e/Elastic/Filebeat/9.0.3/Elastic.Filebeat.installer.yaml new file mode 100644 index 0000000000000..a8ca563cbcd0a --- /dev/null +++ b/manifests/e/Elastic/Filebeat/9.0.3/Elastic.Filebeat.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: Elastic.Filebeat +PackageVersion: 9.0.3 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +Commands: +- filebeat +ProductCode: '{2E7B78F4-AE35-56EE-867F-51E274528798}' +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- UpgradeCode: '{2E7B78F4-AE35-56EE-867F-51E2E4524798}' +Installers: +- Architecture: x64 + InstallerUrl: https://artifacts.elastic.co/downloads/beats/packetbeat/packetbeat-9.0.3-windows-x86_64.msi + InstallerSha256: 93654981918DA8F23E306A616826F035684819BEEF8C6D92E606FFBDE2BE76BF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Filebeat/9.0.3/Elastic.Filebeat.locale.en-US.yaml b/manifests/e/Elastic/Filebeat/9.0.3/Elastic.Filebeat.locale.en-US.yaml new file mode 100644 index 0000000000000..7677b308e9085 --- /dev/null +++ b/manifests/e/Elastic/Filebeat/9.0.3/Elastic.Filebeat.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: Elastic.Filebeat +PackageVersion: 9.0.3 +PackageLocale: en-US +Publisher: Elastic +PublisherUrl: https://www.elastic.co/ +PublisherSupportUrl: https://github.com/elastic/beats/issues +PrivacyUrl: https://www.elastic.co/legal/privacy-statement +Author: Elasticsearch B.V. +PackageName: Beats filebeat +PackageUrl: https://www.elastic.co/downloads/beats/filebeat +License: Elastic-2.0 +LicenseUrl: https://github.com/elastic/beats/blob/HEAD/LICENSE.txt +Copyright: © 2025. Elasticsearch B.V. All Rights Reserved +ShortDescription: Tails and ships log files +Description: Filebeat is an open source file harvester, mostly used to fetch logs files and feed them into logstash. Together with the libbeat lumberjack output is a replacement for logstash-forwarder. +ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Filebeat/9.0.3/Elastic.Filebeat.locale.zh-CN.yaml b/manifests/e/Elastic/Filebeat/9.0.3/Elastic.Filebeat.locale.zh-CN.yaml new file mode 100644 index 0000000000000..417b9855cf8ed --- /dev/null +++ b/manifests/e/Elastic/Filebeat/9.0.3/Elastic.Filebeat.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: Elastic.Filebeat +PackageVersion: 9.0.3 +PackageLocale: zh-CN +ShortDescription: 跟踪和传输日志文件 +Description: Filebeat 是一款开源的文件采集器,主要用于收集日志文件并将其传输至 Logstash。结合 libbeat 的 lumberjack 输出功能,它可作为 logstash-forwarder 的替代方案。 +ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Filebeat/9.0.3/Elastic.Filebeat.yaml b/manifests/e/Elastic/Filebeat/9.0.3/Elastic.Filebeat.yaml new file mode 100644 index 0000000000000..72ed280284016 --- /dev/null +++ b/manifests/e/Elastic/Filebeat/9.0.3/Elastic.Filebeat.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: Elastic.Filebeat +PackageVersion: 9.0.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Heartbeat/9.0.3/Elastic.Heartbeat.installer.yaml b/manifests/e/Elastic/Heartbeat/9.0.3/Elastic.Heartbeat.installer.yaml new file mode 100644 index 0000000000000..c6ae827377270 --- /dev/null +++ b/manifests/e/Elastic/Heartbeat/9.0.3/Elastic.Heartbeat.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: Elastic.Heartbeat +PackageVersion: 9.0.3 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +Commands: +- heartbeat +ProductCode: '{D1A2A571-99C7-52CE-B31F-D73B687BF920}' +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- UpgradeCode: '{D1A2A571-99C7-52CE-B31F-D73BD87BB920}' +Installers: +- Architecture: x64 + InstallerUrl: https://artifacts.elastic.co/downloads/beats/heartbeat/heartbeat-9.0.3-windows-x86_64.msi + InstallerSha256: 042A1770D86F7B52100628E12B1636B8A64F8CA5B6B74EFA32F014D33D7DBE48 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Heartbeat/9.0.3/Elastic.Heartbeat.locale.en-US.yaml b/manifests/e/Elastic/Heartbeat/9.0.3/Elastic.Heartbeat.locale.en-US.yaml new file mode 100644 index 0000000000000..a34e1cbaed4fe --- /dev/null +++ b/manifests/e/Elastic/Heartbeat/9.0.3/Elastic.Heartbeat.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: Elastic.Heartbeat +PackageVersion: 9.0.3 +PackageLocale: en-US +Publisher: Elastic +PublisherUrl: https://www.elastic.co/ +PublisherSupportUrl: https://github.com/elastic/beats/issues +PrivacyUrl: https://www.elastic.co/legal/privacy-statement +Author: Elasticsearch B.V. +PackageName: Beats heartbeat +PackageUrl: https://www.elastic.co/downloads/beats/heartbeat +License: Elastic-2.0 +LicenseUrl: https://github.com/elastic/beats/blob/HEAD/LICENSE.txt +Copyright: © 2025. Elasticsearch B.V. All Rights Reserved +ShortDescription: Ping remote services for availability +Description: Heartbeat is a beat for testing service availability using PING based on ICMP, TCP or higher level protocols. +ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Heartbeat/9.0.3/Elastic.Heartbeat.locale.zh-CN.yaml b/manifests/e/Elastic/Heartbeat/9.0.3/Elastic.Heartbeat.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1f47cfc226108 --- /dev/null +++ b/manifests/e/Elastic/Heartbeat/9.0.3/Elastic.Heartbeat.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: Elastic.Heartbeat +PackageVersion: 9.0.3 +PackageLocale: zh-CN +ShortDescription: 检测远程服务可用性 +Description: Heartbeat 是通过基于 ICMP、TCP 或更高层协议的 PING 测试服务可用性的 Beat。 +ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Heartbeat/9.0.3/Elastic.Heartbeat.yaml b/manifests/e/Elastic/Heartbeat/9.0.3/Elastic.Heartbeat.yaml new file mode 100644 index 0000000000000..810e46021c1ef --- /dev/null +++ b/manifests/e/Elastic/Heartbeat/9.0.3/Elastic.Heartbeat.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: Elastic.Heartbeat +PackageVersion: 9.0.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Metricbeat/9.0.3/Elastic.Metricbeat.installer.yaml b/manifests/e/Elastic/Metricbeat/9.0.3/Elastic.Metricbeat.installer.yaml new file mode 100644 index 0000000000000..165d9c8d4c42a --- /dev/null +++ b/manifests/e/Elastic/Metricbeat/9.0.3/Elastic.Metricbeat.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: Elastic.Metricbeat +PackageVersion: 9.0.3 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +Commands: +- metricbeat +ProductCode: '{493322A2-BB80-5176-867D-9F6A163D4E2B}' +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- UpgradeCode: '{493322A2-BB80-5176-867D-9F6A863D0E2B}' +Installers: +- Architecture: x64 + InstallerUrl: https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-9.0.3-windows-x86_64.msi + InstallerSha256: 7F589BC918C7CB30D4428F42B878AC93988332B2F8BD067FA3A8A8337A895CD4 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Metricbeat/9.0.3/Elastic.Metricbeat.locale.en-US.yaml b/manifests/e/Elastic/Metricbeat/9.0.3/Elastic.Metricbeat.locale.en-US.yaml new file mode 100644 index 0000000000000..35b23e789a8f8 --- /dev/null +++ b/manifests/e/Elastic/Metricbeat/9.0.3/Elastic.Metricbeat.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: Elastic.Metricbeat +PackageVersion: 9.0.3 +PackageLocale: en-US +Publisher: Elastic +PublisherUrl: https://www.elastic.co/ +PublisherSupportUrl: https://github.com/elastic/beats/issues +PrivacyUrl: https://www.elastic.co/legal/privacy-statement +Author: Elasticsearch B.V. +PackageName: Beats metricbeat +PackageUrl: https://www.elastic.co/downloads/beats/metricbeat +License: Elastic-2.0 +LicenseUrl: https://github.com/elastic/beats/blob/HEAD/LICENSE.txt +Copyright: © 2025. Elasticsearch B.V. All Rights Reserved +ShortDescription: Fetches sets of metrics from the operating system and services +Description: Metricbeat fetches a set of metrics on a predefined interval from the operating system and services such as Apache web server, Redis, and more and ships them to Elasticsearch or Logstash. +ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Metricbeat/9.0.3/Elastic.Metricbeat.locale.zh-CN.yaml b/manifests/e/Elastic/Metricbeat/9.0.3/Elastic.Metricbeat.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c79fc27464bbf --- /dev/null +++ b/manifests/e/Elastic/Metricbeat/9.0.3/Elastic.Metricbeat.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: Elastic.Metricbeat +PackageVersion: 9.0.3 +PackageLocale: zh-CN +ShortDescription: 从操作系统和服务中获取指标集 +Description: Metricbeat 按照预定义的时间间隔,从操作系统及诸如 Apache 网页服务器、Redis 等服务中采集一组指标数据,并将其传输至 Elasticsearch 或 Logstash。 +ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Metricbeat/9.0.3/Elastic.Metricbeat.yaml b/manifests/e/Elastic/Metricbeat/9.0.3/Elastic.Metricbeat.yaml new file mode 100644 index 0000000000000..816c05ad77832 --- /dev/null +++ b/manifests/e/Elastic/Metricbeat/9.0.3/Elastic.Metricbeat.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: Elastic.Metricbeat +PackageVersion: 9.0.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Packetbeat/9.0.3/Elastic.Packetbeat.installer.yaml b/manifests/e/Elastic/Packetbeat/9.0.3/Elastic.Packetbeat.installer.yaml new file mode 100644 index 0000000000000..be63a3ca1de6e --- /dev/null +++ b/manifests/e/Elastic/Packetbeat/9.0.3/Elastic.Packetbeat.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: Elastic.Packetbeat +PackageVersion: 9.0.3 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +Commands: +- packetbeat +ProductCode: '{2E7B78F4-AE35-56EE-867F-51E274528798}' +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- UpgradeCode: '{2E7B78F4-AE35-56EE-867F-51E2E4524798}' +Installers: +- Architecture: x64 + InstallerUrl: https://artifacts.elastic.co/downloads/beats/packetbeat/packetbeat-9.0.3-windows-x86_64.msi + InstallerSha256: 93654981918DA8F23E306A616826F035684819BEEF8C6D92E606FFBDE2BE76BF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Packetbeat/9.0.3/Elastic.Packetbeat.locale.en-US.yaml b/manifests/e/Elastic/Packetbeat/9.0.3/Elastic.Packetbeat.locale.en-US.yaml new file mode 100644 index 0000000000000..b0df7f2932e5b --- /dev/null +++ b/manifests/e/Elastic/Packetbeat/9.0.3/Elastic.Packetbeat.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: Elastic.Packetbeat +PackageVersion: 9.0.3 +PackageLocale: en-US +Publisher: Elastic +PublisherUrl: https://www.elastic.co/ +PublisherSupportUrl: https://github.com/elastic/beats/issues +PrivacyUrl: https://www.elastic.co/legal/privacy-statement +Author: Elasticsearch B.V. +PackageName: Beats packetbeat +PackageUrl: https://www.elastic.co/downloads/beats/packetbeat +License: Elastic-2.0 +LicenseUrl: https://github.com/elastic/beats/blob/HEAD/LICENSE.txt +Copyright: © 2025. Elasticsearch B.V. All Rights Reserved +ShortDescription: Monitors the network and applications by sniffing packets +Description: |- + Packetbeat is an open source network packet analyzer that ships the data to Elasticsearch. Think of it like a distributed real-time Wireshark with a lot more analytics features. + The Packetbeat shippers sniff the traffic between your application processes, parse on the fly protocols like HTTP, MySQL, PostgreSQL, Redis or Thrift and correlate the messages into transactions. + For each transaction, the shipper inserts a JSON document into Elasticsearch, where it is stored and indexed. You can then use Kibana to view key metrics and do ad-hoc queries against the data. +ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Packetbeat/9.0.3/Elastic.Packetbeat.locale.zh-CN.yaml b/manifests/e/Elastic/Packetbeat/9.0.3/Elastic.Packetbeat.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e5a2e1330e60e --- /dev/null +++ b/manifests/e/Elastic/Packetbeat/9.0.3/Elastic.Packetbeat.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Elastic.Packetbeat +PackageVersion: 9.0.3 +PackageLocale: zh-CN +ShortDescription: 通过嗅探数据包来监视网络和应用程序 +Description: |- + Packetbeat 是一款开源网络数据包分析器,可将数据实时传输至 Elasticsearch。它如同一个具备丰富分析功能的分布式实时版 Wireshark。 + Packetbeat 嗅探器能够实时捕获应用程序进程间的流量,动态解析 HTTP、MySQL、PostgreSQL、Redis 或 Thrift 等协议,并将消息关联为完整事务。 + 对于每个事务,嗅探器会生成 JSON 格式文档并写入 Elasticsearch 进行存储和索引。随后您可通过 Kibana 可视化关键指标,并对数据进行即席查询。 +ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Packetbeat/9.0.3/Elastic.Packetbeat.yaml b/manifests/e/Elastic/Packetbeat/9.0.3/Elastic.Packetbeat.yaml new file mode 100644 index 0000000000000..4b224d815045b --- /dev/null +++ b/manifests/e/Elastic/Packetbeat/9.0.3/Elastic.Packetbeat.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: Elastic.Packetbeat +PackageVersion: 9.0.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Winlogbeat/9.0.3/Elastic.Winlogbeat.installer.yaml b/manifests/e/Elastic/Winlogbeat/9.0.3/Elastic.Winlogbeat.installer.yaml new file mode 100644 index 0000000000000..161b4338672a3 --- /dev/null +++ b/manifests/e/Elastic/Winlogbeat/9.0.3/Elastic.Winlogbeat.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: Elastic.Winlogbeat +PackageVersion: 9.0.3 +Commands: +- winlogbeat +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://artifacts.elastic.co/downloads/beats/winlogbeat/winlogbeat-9.0.3-windows-x86_64.msi + InstallerSha256: B0FF66F9A098A9BC850640A3ECA006619F2C0E9E80089A9D3569DBB913ADEED7 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + UpgradeBehavior: install + ProductCode: '{2DE7C165-4793-5EE1-9DF0-372082356E2B}' + AppsAndFeaturesEntries: + - UpgradeCode: '{2DE7C165-4793-5EE1-9DF0-3720F2352E2B}' +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: winlogbeat-9.0.3-windows-x86_64\winlogbeat.exe + PortableCommandAlias: winlogbeat + InstallerUrl: https://artifacts.elastic.co/downloads/beats/winlogbeat/winlogbeat-9.0.3-windows-x86_64.zip + InstallerSha256: 4A9FF00F983BEA8597CAD20A3D4F295C49BC1847DB67C163DEA79150BBB70AAF + ArchiveBinariesDependOnPath: true +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Winlogbeat/9.0.3/Elastic.Winlogbeat.locale.en-US.yaml b/manifests/e/Elastic/Winlogbeat/9.0.3/Elastic.Winlogbeat.locale.en-US.yaml new file mode 100644 index 0000000000000..09ae08694b10a --- /dev/null +++ b/manifests/e/Elastic/Winlogbeat/9.0.3/Elastic.Winlogbeat.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: Elastic.Winlogbeat +PackageVersion: 9.0.3 +PackageLocale: en-US +Publisher: Elastic +PublisherUrl: https://www.elastic.co/ +PublisherSupportUrl: https://github.com/elastic/beats/issues +PrivacyUrl: https://www.elastic.co/legal/privacy-statement +Author: Elasticsearch B.V. +PackageName: Beats winlogbeat +PackageUrl: https://www.elastic.co/downloads/beats/winlogbeat +License: Elastic-2.0 +LicenseUrl: https://github.com/elastic/beats/blob/HEAD/LICENSE.txt +Copyright: © 2025. Elasticsearch B.V. All Rights Reserved +ShortDescription: Fetches and ships Windows Event logs +Description: Winlogbeat is an open-source log collector that ships Windows Event Logs to Elasticsearch or Logstash. It installs and runs as a Windows service. +ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Winlogbeat/9.0.3/Elastic.Winlogbeat.locale.zh-CN.yaml b/manifests/e/Elastic/Winlogbeat/9.0.3/Elastic.Winlogbeat.locale.zh-CN.yaml new file mode 100644 index 0000000000000..79550e61c2ac6 --- /dev/null +++ b/manifests/e/Elastic/Winlogbeat/9.0.3/Elastic.Winlogbeat.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: Elastic.Winlogbeat +PackageVersion: 9.0.3 +PackageLocale: zh-CN +ShortDescription: 收集和传输 Windows 事件日志 +Description: Winlogbeat 是一款开源日志采集器,专用于将 Windows 事件日志传输至 Elasticsearch 或 Logstash。它以 Windows 服务的形式安装并运行。 +ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elastic/Winlogbeat/9.0.3/Elastic.Winlogbeat.yaml b/manifests/e/Elastic/Winlogbeat/9.0.3/Elastic.Winlogbeat.yaml new file mode 100644 index 0000000000000..7c477402e6ccb --- /dev/null +++ b/manifests/e/Elastic/Winlogbeat/9.0.3/Elastic.Winlogbeat.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: Elastic.Winlogbeat +PackageVersion: 9.0.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.496.0.6009/ElectronicArts.EADesktop.installer.yaml b/manifests/e/ElectronicArts/EADesktop/13.496.0.6009/ElectronicArts.EADesktop.installer.yaml new file mode 100644 index 0000000000000..139adae399de7 --- /dev/null +++ b/manifests/e/ElectronicArts/EADesktop/13.496.0.6009/ElectronicArts.EADesktop.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ElectronicArts.EADesktop +PackageVersion: 13.496.0.6009 +InstallerType: burn +Scope: machine +InstallerSwitches: + InstallLocation: InstallFolder="" +UpgradeBehavior: install +Protocols: +- ealink +- link2ea +- origin +- origin2 +ProductCode: '{f7e89808-daf6-43f3-82ac-5c0c96f2e1d4}' +AppsAndFeaturesEntries: +- ProductCode: '{f7e89808-daf6-43f3-82ac-5c0c96f2e1d4}' + UpgradeCode: '{ADF2591E-00D2-4FFF-9BF4-9CCDAE6BDC67}' +Installers: +- Architecture: x64 + InstallerUrl: https://origin-a.akamaihd.net/EA-Desktop-Client-Download/installer-releases/EAappInstaller-13.496.0.6009-3733.exe + InstallerSha256: 9E9B5179F503CC0D649214FBC4DE82E806E9563B773D833EB157F79D60CF1966 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.496.0.6009/ElectronicArts.EADesktop.locale.en-US.yaml b/manifests/e/ElectronicArts/EADesktop/13.496.0.6009/ElectronicArts.EADesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..085178a618823 --- /dev/null +++ b/manifests/e/ElectronicArts/EADesktop/13.496.0.6009/ElectronicArts.EADesktop.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ElectronicArts.EADesktop +PackageVersion: 13.496.0.6009 +PackageLocale: en-US +Publisher: Electronic Arts +PublisherUrl: https://www.ea.com/ +PublisherSupportUrl: https://help.ea.com/ +PrivacyUrl: https://www.ea.com/legal/privacy-and-cookie-policy +Author: Electronic Arts Inc. +PackageName: EA app +PackageUrl: https://www.ea.com/ea-app +License: Proprietary +LicenseUrl: https://tos.ea.com/legalapp/WEBTERMS/US/en/PC/ +Copyright: © 2024 Electronic Arts Inc. +ShortDescription: Play great PC games and connect with your friends, all in one place. +Description: Built on feedback from players like you, the EA Desktop app is the newest iteration of our PC platform. The beta includes new features and overall improvements to power a faster, smarter, more connected desktop app. +Moniker: eaapp +Tags: +- ea +- ea-desktop +- game +- gaming +- launcher +- origin +- store +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.496.0.6009/ElectronicArts.EADesktop.locale.zh-CN.yaml b/manifests/e/ElectronicArts/EADesktop/13.496.0.6009/ElectronicArts.EADesktop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5d00f1b9b382b --- /dev/null +++ b/manifests/e/ElectronicArts/EADesktop/13.496.0.6009/ElectronicArts.EADesktop.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: ElectronicArts.EADesktop +PackageVersion: 13.496.0.6009 +PackageLocale: zh-CN +Publisher: Electronic Arts +PublisherUrl: https://www.ea.com/zh-cn +PublisherSupportUrl: https://help.ea.com/ +PrivacyUrl: https://www.ea.com/zh-cn/legal/privacy-and-cookie-policy +Author: Electronic Arts Inc. +PackageName: EA app +PackageUrl: https://www.ea.com/ea-app +License: 专有软件 +LicenseUrl: https://tos.ea.com/legalapp/WEBTERMS/US/sc/PC/ +Copyright: © 2024 Electronic Arts Inc. +ShortDescription: 在一个地方游玩精彩的 PC 游戏并与朋友交流。 +Description: 根据玩家的反馈,我们开发了 EA Desktop 应用程序,作为 PC 平台的最新迭代。测试版包括新功能和整体改进,为更快、更智能、更互联的桌面应用程序提供动力。 +Tags: +- ea +- ea-desktop +- origin +- 启动器 +- 商店 +- 游戏 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.496.0.6009/ElectronicArts.EADesktop.yaml b/manifests/e/ElectronicArts/EADesktop/13.496.0.6009/ElectronicArts.EADesktop.yaml new file mode 100644 index 0000000000000..aa46499db23e1 --- /dev/null +++ b/manifests/e/ElectronicArts/EADesktop/13.496.0.6009/ElectronicArts.EADesktop.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: ElectronicArts.EADesktop +PackageVersion: 13.496.0.6009 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.501.0.6014/ElectronicArts.EADesktop.installer.yaml b/manifests/e/ElectronicArts/EADesktop/13.501.0.6014/ElectronicArts.EADesktop.installer.yaml new file mode 100644 index 0000000000000..37b9c81cb7acd --- /dev/null +++ b/manifests/e/ElectronicArts/EADesktop/13.501.0.6014/ElectronicArts.EADesktop.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ElectronicArts.EADesktop +PackageVersion: 13.501.0.6014 +InstallerType: burn +Scope: machine +InstallerSwitches: + InstallLocation: InstallFolder="" +UpgradeBehavior: install +Protocols: +- ealink +- link2ea +- origin +- origin2 +ProductCode: '{3eaae85b-0d1b-4ca0-b8ac-cafa230d2a2f}' +AppsAndFeaturesEntries: +- ProductCode: '{3eaae85b-0d1b-4ca0-b8ac-cafa230d2a2f}' + UpgradeCode: '{ADF2591E-00D2-4FFF-9BF4-9CCDAE6BDC67}' +Installers: +- Architecture: x64 + InstallerUrl: https://origin-a.akamaihd.net/EA-Desktop-Client-Download/installer-releases/EAappInstaller-13.501.0.6014-3743.exe + InstallerSha256: 071A81035267C15AD0124D2BD1595A4B5D66FFD74E92441641C028F733756450 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.501.0.6014/ElectronicArts.EADesktop.locale.en-US.yaml b/manifests/e/ElectronicArts/EADesktop/13.501.0.6014/ElectronicArts.EADesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..eb88b404dd4c9 --- /dev/null +++ b/manifests/e/ElectronicArts/EADesktop/13.501.0.6014/ElectronicArts.EADesktop.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ElectronicArts.EADesktop +PackageVersion: 13.501.0.6014 +PackageLocale: en-US +Publisher: Electronic Arts +PublisherUrl: https://www.ea.com/ +PublisherSupportUrl: https://help.ea.com/ +PrivacyUrl: https://www.ea.com/legal/privacy-and-cookie-policy +Author: Electronic Arts Inc. +PackageName: EA app +PackageUrl: https://www.ea.com/ea-app +License: Proprietary +LicenseUrl: https://tos.ea.com/legalapp/WEBTERMS/US/en/PC/ +Copyright: © 2024 Electronic Arts Inc. +ShortDescription: Play great PC games and connect with your friends, all in one place. +Description: Built on feedback from players like you, the EA Desktop app is the newest iteration of our PC platform. The beta includes new features and overall improvements to power a faster, smarter, more connected desktop app. +Moniker: eaapp +Tags: +- ea +- ea-desktop +- game +- gaming +- launcher +- origin +- store +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.501.0.6014/ElectronicArts.EADesktop.locale.zh-CN.yaml b/manifests/e/ElectronicArts/EADesktop/13.501.0.6014/ElectronicArts.EADesktop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..19d0c7fc14338 --- /dev/null +++ b/manifests/e/ElectronicArts/EADesktop/13.501.0.6014/ElectronicArts.EADesktop.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: ElectronicArts.EADesktop +PackageVersion: 13.501.0.6014 +PackageLocale: zh-CN +Publisher: Electronic Arts +PublisherUrl: https://www.ea.com/zh-cn +PublisherSupportUrl: https://help.ea.com/ +PrivacyUrl: https://www.ea.com/zh-cn/legal/privacy-and-cookie-policy +Author: Electronic Arts Inc. +PackageName: EA app +PackageUrl: https://www.ea.com/ea-app +License: 专有软件 +LicenseUrl: https://tos.ea.com/legalapp/WEBTERMS/US/sc/PC/ +Copyright: © 2024 Electronic Arts Inc. +ShortDescription: 在一个地方游玩精彩的 PC 游戏并与朋友交流。 +Description: 根据玩家的反馈,我们开发了 EA Desktop 应用程序,作为 PC 平台的最新迭代。测试版包括新功能和整体改进,为更快、更智能、更互联的桌面应用程序提供动力。 +Tags: +- ea +- ea-desktop +- origin +- 启动器 +- 商店 +- 游戏 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.501.0.6014/ElectronicArts.EADesktop.yaml b/manifests/e/ElectronicArts/EADesktop/13.501.0.6014/ElectronicArts.EADesktop.yaml new file mode 100644 index 0000000000000..3b12a1fb2d6ca --- /dev/null +++ b/manifests/e/ElectronicArts/EADesktop/13.501.0.6014/ElectronicArts.EADesktop.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: ElectronicArts.EADesktop +PackageVersion: 13.501.0.6014 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.501.1.6009/ElectronicArts.EADesktop.installer.yaml b/manifests/e/ElectronicArts/EADesktop/13.501.1.6009/ElectronicArts.EADesktop.installer.yaml new file mode 100644 index 0000000000000..29bc311372160 --- /dev/null +++ b/manifests/e/ElectronicArts/EADesktop/13.501.1.6009/ElectronicArts.EADesktop.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ElectronicArts.EADesktop +PackageVersion: 13.501.1.6009 +InstallerType: burn +Scope: machine +InstallerSwitches: + InstallLocation: InstallFolder="" +UpgradeBehavior: install +Protocols: +- ealink +- link2ea +- origin +- origin2 +ProductCode: '{0054f00a-b94f-4b45-b4a2-6a40fd0db875}' +AppsAndFeaturesEntries: +- ProductCode: '{0054f00a-b94f-4b45-b4a2-6a40fd0db875}' + UpgradeCode: '{ADF2591E-00D2-4FFF-9BF4-9CCDAE6BDC67}' +Installers: +- Architecture: x64 + InstallerUrl: https://origin-a.akamaihd.net/EA-Desktop-Client-Download/installer-releases/EAappInstaller-13.501.1.6009-752.exe + InstallerSha256: 6B0B7041761F4204822FE6D67132CE4E13402895802F9F4DC3495C3C0D2A9E2B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.501.1.6009/ElectronicArts.EADesktop.locale.en-US.yaml b/manifests/e/ElectronicArts/EADesktop/13.501.1.6009/ElectronicArts.EADesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..a5d0c14daad65 --- /dev/null +++ b/manifests/e/ElectronicArts/EADesktop/13.501.1.6009/ElectronicArts.EADesktop.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ElectronicArts.EADesktop +PackageVersion: 13.501.1.6009 +PackageLocale: en-US +Publisher: Electronic Arts +PublisherUrl: https://www.ea.com/ +PublisherSupportUrl: https://help.ea.com/ +PrivacyUrl: https://www.ea.com/legal/privacy-and-cookie-policy +Author: Electronic Arts Inc. +PackageName: EA app +PackageUrl: https://www.ea.com/ea-app +License: Proprietary +LicenseUrl: https://tos.ea.com/legalapp/WEBTERMS/US/en/PC/ +Copyright: © 2024 Electronic Arts Inc. +ShortDescription: Play great PC games and connect with your friends, all in one place. +Description: Built on feedback from players like you, the EA Desktop app is the newest iteration of our PC platform. The beta includes new features and overall improvements to power a faster, smarter, more connected desktop app. +Moniker: eaapp +Tags: +- ea +- ea-desktop +- game +- gaming +- launcher +- origin +- store +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.501.1.6009/ElectronicArts.EADesktop.locale.zh-CN.yaml b/manifests/e/ElectronicArts/EADesktop/13.501.1.6009/ElectronicArts.EADesktop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..508ed2fd7b41c --- /dev/null +++ b/manifests/e/ElectronicArts/EADesktop/13.501.1.6009/ElectronicArts.EADesktop.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: ElectronicArts.EADesktop +PackageVersion: 13.501.1.6009 +PackageLocale: zh-CN +Publisher: Electronic Arts +PublisherUrl: https://www.ea.com/zh-cn +PublisherSupportUrl: https://help.ea.com/ +PrivacyUrl: https://www.ea.com/zh-cn/legal/privacy-and-cookie-policy +Author: Electronic Arts Inc. +PackageName: EA app +PackageUrl: https://www.ea.com/ea-app +License: 专有软件 +LicenseUrl: https://tos.ea.com/legalapp/WEBTERMS/US/sc/PC/ +Copyright: © 2024 Electronic Arts Inc. +ShortDescription: 在一个地方游玩精彩的 PC 游戏并与朋友交流。 +Description: 根据玩家的反馈,我们开发了 EA Desktop 应用程序,作为 PC 平台的最新迭代。测试版包括新功能和整体改进,为更快、更智能、更互联的桌面应用程序提供动力。 +Tags: +- ea +- ea-desktop +- origin +- 启动器 +- 商店 +- 游戏 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.501.1.6009/ElectronicArts.EADesktop.yaml b/manifests/e/ElectronicArts/EADesktop/13.501.1.6009/ElectronicArts.EADesktop.yaml new file mode 100644 index 0000000000000..836193f07ca19 --- /dev/null +++ b/manifests/e/ElectronicArts/EADesktop/13.501.1.6009/ElectronicArts.EADesktop.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: ElectronicArts.EADesktop +PackageVersion: 13.501.1.6009 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9346081.0/ElectronicArts.EAJavelinAnticheat.installer.yaml b/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9346081.0/ElectronicArts.EAJavelinAnticheat.installer.yaml deleted file mode 100644 index 03e386a54cb00..0000000000000 --- a/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9346081.0/ElectronicArts.EAJavelinAnticheat.installer.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/18 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: ElectronicArts.EAJavelinAnticheat -PackageVersion: 1.0.9346081.0 -InstallerType: portable -Commands: -- eajavelin -Installers: -- Architecture: x64 - InstallerUrl: https://cdn.eaanticheat.ac.ea.com/EAAntiCheat.Installer.exe - InstallerSha256: CD11F63FA0C527215674E883AEE711EE15B5446C9E6A77691609E5D02B7DC636 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9346081.0/ElectronicArts.EAJavelinAnticheat.yaml b/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9346081.0/ElectronicArts.EAJavelinAnticheat.yaml deleted file mode 100644 index b211246861f17..0000000000000 --- a/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9346081.0/ElectronicArts.EAJavelinAnticheat.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/18 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: ElectronicArts.EAJavelinAnticheat -PackageVersion: 1.0.9346081.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9577799.0/ElectronicArts.EAJavelinAnticheat.installer.yaml b/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9577799.0/ElectronicArts.EAJavelinAnticheat.installer.yaml new file mode 100644 index 0000000000000..6f61be6b47669 --- /dev/null +++ b/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9577799.0/ElectronicArts.EAJavelinAnticheat.installer.yaml @@ -0,0 +1,14 @@ +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ElectronicArts.EAJavelinAnticheat +PackageVersion: 1.0.9577799.0 +InstallerType: portable +Commands: +- eajavelin +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.eaanticheat.ac.ea.com/EAAntiCheat.Installer.exe + InstallerSha256: 24040E7AE2178A3419D06B8B7DF4607EAB70691F1956C627371FF26DFA1F5814 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9346081.0/ElectronicArts.EAJavelinAnticheat.locale.en-US.yaml b/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9577799.0/ElectronicArts.EAJavelinAnticheat.locale.en-US.yaml similarity index 84% rename from manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9346081.0/ElectronicArts.EAJavelinAnticheat.locale.en-US.yaml rename to manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9577799.0/ElectronicArts.EAJavelinAnticheat.locale.en-US.yaml index 215b0f70eef47..cef438a18ecb4 100644 --- a/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9346081.0/ElectronicArts.EAJavelinAnticheat.locale.en-US.yaml +++ b/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9577799.0/ElectronicArts.EAJavelinAnticheat.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jun/18 +# Automatically updated by the winget bot at 2025/Jul/03 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: ElectronicArts.EAJavelinAnticheat -PackageVersion: 1.0.9346081.0 +PackageVersion: 1.0.9577799.0 PackageLocale: en-US Publisher: Electronic Arts PackageName: EA Javelin Anticheat diff --git a/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9577799.0/ElectronicArts.EAJavelinAnticheat.yaml b/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9577799.0/ElectronicArts.EAJavelinAnticheat.yaml new file mode 100644 index 0000000000000..e40ea9d27a9c6 --- /dev/null +++ b/manifests/e/ElectronicArts/EAJavelinAnticheat/1.0.9577799.0/ElectronicArts.EAJavelinAnticheat.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: ElectronicArts.EAJavelinAnticheat +PackageVersion: 1.0.9577799.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElectronicTeam/VirtualSerialPortDriver/11.0.1068/ElectronicTeam.VirtualSerialPortDriver.locale.en-US.yaml b/manifests/e/ElectronicTeam/VirtualSerialPortDriver/11.0.1068/ElectronicTeam.VirtualSerialPortDriver.locale.en-US.yaml index 2f4248cc823fe..a1206ecba3427 100644 --- a/manifests/e/ElectronicTeam/VirtualSerialPortDriver/11.0.1068/ElectronicTeam.VirtualSerialPortDriver.locale.en-US.yaml +++ b/manifests/e/ElectronicTeam/VirtualSerialPortDriver/11.0.1068/ElectronicTeam.VirtualSerialPortDriver.locale.en-US.yaml @@ -17,6 +17,8 @@ Tags: - port - serial - virtual +- sershare.inf +- spbus.inf PurchaseUrl: https://www.eltima.com/purchase/vspdxp/ ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/e/Element/Element/1.11.105/Element.Element.installer.yaml b/manifests/e/Element/Element/1.11.105/Element.Element.installer.yaml new file mode 100644 index 0000000000000..e1f2b285c1c79 --- /dev/null +++ b/manifests/e/Element/Element/1.11.105/Element.Element.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: Element.Element +PackageVersion: 1.11.105 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- element +ProductCode: element-desktop +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x64 + InstallerUrl: https://packages.element.io/desktop/install/win32/x64/Element%20Setup%201.11.105.exe + InstallerSha256: 7455255D33F32D6B36655B46A1C36205497C950DAD6552F8ACBC8FD21A976BE8 +- Architecture: arm64 + InstallerUrl: https://packages.element.io/desktop/install/win32/arm64/Element%20Setup%201.11.105.exe + InstallerSha256: EA3160C894E3ADAF5884DBC33C720F46893B11DADBC302D3E9B8405FBEFDE4D0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Element/Element/1.11.105/Element.Element.locale.en-US.yaml b/manifests/e/Element/Element/1.11.105/Element.Element.locale.en-US.yaml new file mode 100644 index 0000000000000..49dcbb5e48bca --- /dev/null +++ b/manifests/e/Element/Element/1.11.105/Element.Element.locale.en-US.yaml @@ -0,0 +1,61 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Element.Element +PackageVersion: 1.11.105 +PackageLocale: en-US +Publisher: Element +PublisherUrl: https://element.io/ +PublisherSupportUrl: https://element.io/help +PrivacyUrl: https://element.io/privacy +Author: New Vector Ltd +PackageName: Element +PackageUrl: https://element.io/download +License: AGPL-3.0-only or GPL-3.0-only +LicenseUrl: https://github.com/element-hq/element-desktop/blob/HEAD/LICENSE-GPL-3.0 +Copyright: Copyright © 2024 Element +CopyrightUrl: https://element.io/copyright +ShortDescription: Secure collaboration and messaging +Description: Element is a Matrix-based end-to-end encrypted messenger and secure collaboration app. It’s decentralized for digital sovereign self-hosting, or through a hosting service such as Element Matrix Services. Element operates on the open Matrix network to provide interoperability and easy connections. +Moniker: element +Tags: +- chat +- collaborate +- collaboration +- encrypt +- encryption +- im +- instant-messaging +- matrix +- message +- privacy +- riot +- secure +- security +- send +- talk +ReleaseNotes: |- + ✨ Features + - Add support for migrating to kwallet6 (#2390). Contributed by @t3chguy. + - New room list: add context menu to room list item (#29952). Contributed by @florianduros. + - Support for custom message components via Module API (#30074). Contributed by @Half-Shot. + - Prompt users to set up recovery (#30075). Contributed by @uhoreg. + - Update IconButton colors (#30124). Contributed by @florianduros. + - New room list: filter list can be collapsed (#29992). Contributed by @florianduros. + - Show EmptyRoomListView when low priority filter matches zero rooms (#30122). Contributed by @MidhunSureshR. + 🐛 Bug Fixes + - Fix element-desktop-ssoid profile deeplinking for OIDC (#2396). Contributed by @t3chguy. + - Add support for migrating to kwallet6 (#2390). Contributed by @t3chguy. + - Fix untranslatable string "People" in notifications beta (#30165). Contributed by @t3chguy. + - Force verification even after logging in via delegate (#30141). Contributed by @andybalaam. + - Hide add integrations button based on UIComponent.AddIntegrations (#30140). Contributed by @t3chguy. + - Use nav for new room list and label sections (#30134). Contributed by @dbkr. + - Spacestore should emit event after rebuilding home space (#30132). Contributed by @MidhunSureshR. + - Handle m.room.pinned_events being invalid (#30129). Contributed by @t3chguy. +ReleaseNotesUrl: https://github.com/element-hq/element-desktop/releases/tag/v1.11.105 +PurchaseUrl: https://element.io/pricing +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://element.io/user-guide +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Element/Element/1.11.105/Element.Element.locale.zh-CN.yaml b/manifests/e/Element/Element/1.11.105/Element.Element.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7a81a9863393d --- /dev/null +++ b/manifests/e/Element/Element/1.11.105/Element.Element.locale.zh-CN.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Element.Element +PackageVersion: 1.11.105 +PackageLocale: zh-CN +Publisher: Element +PublisherUrl: https://element.io/ +PublisherSupportUrl: https://element.io/help +PrivacyUrl: https://element.io/privacy +Author: New Vector Ltd +PackageName: Element +PackageUrl: https://element.io/download +License: AGPL-3.0-only 或 GPL-3.0-only +LicenseUrl: https://github.com/element-hq/element-desktop/blob/HEAD/LICENSE-GPL-3.0 +Copyright: Copyright © 2024 Element +CopyrightUrl: https://element.io/copyright +ShortDescription: 安全协作和通讯 +Description: Element 是一款基于 Matrix 的端到端加密通讯和安全协作应用。它是去中心化的,可由数字主权机构自行托管,或通过 Element Matrix Services 等托管服务托管。Element 在开放的 Matrix 网络上运行,提供互操作性和便捷的连接。 +Tags: +- matrix +- riot +- 信息 +- 加密 +- 协作 +- 协同 +- 发送 +- 安全 +- 消息 +- 聊天 +- 隐私 +ReleaseNotesUrl: https://github.com/element-hq/element-desktop/releases/tag/v1.11.105 +PurchaseUrl: https://element.io/pricing +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://element.io/user-guide +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Element/Element/1.11.105/Element.Element.yaml b/manifests/e/Element/Element/1.11.105/Element.Element.yaml new file mode 100644 index 0000000000000..2c1b25d2a0507 --- /dev/null +++ b/manifests/e/Element/Element/1.11.105/Element.Element.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: Element.Element +PackageVersion: 1.11.105 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElementLabs/LMStudio/0.3.17/ElementLabs.LMStudio.installer.yaml b/manifests/e/ElementLabs/LMStudio/0.3.17/ElementLabs.LMStudio.installer.yaml new file mode 100644 index 0000000000000..4516df904a42e --- /dev/null +++ b/manifests/e/ElementLabs/LMStudio/0.3.17/ElementLabs.LMStudio.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: ElementLabs.LMStudio +PackageVersion: 0.3.17 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- lmstudio +ProductCode: c6dbe996-22a9-5998-b542-7abe33da3b83 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://installers.lmstudio.ai/win32/x64/0.3.17-11/LM-Studio-0.3.17-11-x64.exe + InstallerSha256: 1EED79D388853183BA9A1363967AF7FC801A3C9A4F41B861F1A081DFCF9C830A + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://installers.lmstudio.ai/win32/x64/0.3.17-11/LM-Studio-0.3.17-11-x64.exe + InstallerSha256: 1EED79D388853183BA9A1363967AF7FC801A3C9A4F41B861F1A081DFCF9C830A + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://installers.lmstudio.ai/win32/arm64/0.3.17-11/LM-Studio-0.3.17-11-arm64.exe + InstallerSha256: 3234428F0F7E4DAA2BE87047EF0E7F94B0AFF71825AD269830563CE3E6BC4F76 + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://installers.lmstudio.ai/win32/arm64/0.3.17-11/LM-Studio-0.3.17-11-arm64.exe + InstallerSha256: 3234428F0F7E4DAA2BE87047EF0E7F94B0AFF71825AD269830563CE3E6BC4F76 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElementLabs/LMStudio/0.3.17/ElementLabs.LMStudio.locale.en-US.yaml b/manifests/e/ElementLabs/LMStudio/0.3.17/ElementLabs.LMStudio.locale.en-US.yaml new file mode 100644 index 0000000000000..1bb7e4bcf0fcb --- /dev/null +++ b/manifests/e/ElementLabs/LMStudio/0.3.17/ElementLabs.LMStudio.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ElementLabs.LMStudio +PackageVersion: 0.3.17 +PackageLocale: en-US +Publisher: LM Studio +PublisherUrl: https://lmstudio.ai/ +Author: Element Labs, Inc. +PackageName: LM Studio +PackageUrl: https://lmstudio.ai/ +License: Freeware +LicenseUrl: https://lmstudio.ai/terms +Copyright: © LM Studio 2023 - 2024 +CopyrightUrl: https://lmstudio.ai/terms +ShortDescription: Discover, download, and run local LLMs +Description: LM Studio is an easy to use desktop app for experimenting with local and open-source Large Language Models (LLMs). The LM Studio cross platform desktop app allows you to download and run any ggml-compatible model from Hugging Face, and provides a simple yet powerful model configuration and inferencing UI. The app leverages your GPU when possible. +Tags: +- ai +- large-language-model +- llama +- llm +- mistral +ReleaseNotesUrl: https://lmstudio.ai/blog +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://lmstudio.ai/docs/welcome +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElementLabs/LMStudio/0.3.17/ElementLabs.LMStudio.locale.zh-CN.yaml b/manifests/e/ElementLabs/LMStudio/0.3.17/ElementLabs.LMStudio.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f8ddaa500d987 --- /dev/null +++ b/manifests/e/ElementLabs/LMStudio/0.3.17/ElementLabs.LMStudio.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: ElementLabs.LMStudio +PackageVersion: 0.3.17 +PackageLocale: zh-CN +Publisher: LM Studio +PublisherUrl: https://lmstudio.ai/ +Author: Element Labs, Inc. +PackageName: LM Studio +PackageUrl: https://lmstudio.ai/ +License: 免费软件 +LicenseUrl: https://lmstudio.ai/terms +Copyright: © LM Studio 2023 - 2024 +CopyrightUrl: https://lmstudio.ai/terms +ShortDescription: 发现、下载和运行本地大语言模型 +Description: LM Studio 是一款易用的桌面应用,用于对本地开源大语言模型(LLM)进行实验。LM Studio 跨平台桌面应用允许您从 Hugging Face 下载并运行任何兼容 ggml 的模型,并提供简单而强大的模型配置和推理用户界面。该应用程序尽可能利用 GPU。 +Tags: +- llama +- llm +- mistral +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://lmstudio.ai/blog +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://lmstudio.ai/docs/welcome +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/ElementLabs/LMStudio/0.3.17/ElementLabs.LMStudio.yaml b/manifests/e/ElementLabs/LMStudio/0.3.17/ElementLabs.LMStudio.yaml new file mode 100644 index 0000000000000..efa2ad74e51f8 --- /dev/null +++ b/manifests/e/ElementLabs/LMStudio/0.3.17/ElementLabs.LMStudio.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: ElementLabs.LMStudio +PackageVersion: 0.3.17 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elgato/EpocCam/3.4.0/Elgato.EpocCam.locale.en-US.yaml b/manifests/e/Elgato/EpocCam/3.4.0/Elgato.EpocCam.locale.en-US.yaml index ff48d8851fb09..bb26c4c979861 100644 --- a/manifests/e/Elgato/EpocCam/3.4.0/Elgato.EpocCam.locale.en-US.yaml +++ b/manifests/e/Elgato/EpocCam/3.4.0/Elgato.EpocCam.locale.en-US.yaml @@ -18,7 +18,10 @@ License: Copyright Elgato ShortDescription: Software for using a phone as a webcam # Description: # Moniker: -# Tags: +Tags: +- kinonivd.inf +- kinonivad.inf +- facecam # ReleaseNotes: # ReleaseNotesUrl: # PurchaseUrl: diff --git a/manifests/e/ElyPrismLauncher/ElyPrismLauncher/6.3-2/ElyPrismLauncher.ElyPrismLauncher.installer.yaml b/manifests/e/ElyPrismLauncher/ElyPrismLauncher/6.3-2/ElyPrismLauncher.ElyPrismLauncher.installer.yaml deleted file mode 100644 index e37f95e9f1035..0000000000000 --- a/manifests/e/ElyPrismLauncher/ElyPrismLauncher/6.3-2/ElyPrismLauncher.ElyPrismLauncher.installer.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with komac v2.12.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: ElyPrismLauncher.ElyPrismLauncher -PackageVersion: 6.3-2 -InstallerLocale: en-US -InstallerType: nullsoft -Scope: user -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -ProductCode: PrismLauncher -ReleaseDate: 2023-03-12 -AppsAndFeaturesEntries: -- DisplayName: Prism Launcher - Publisher: Prism Launcher Contributors - DisplayVersion: '6.3' - ProductCode: PrismLauncher -InstallationMetadata: - DefaultInstallLocation: '%LocalAppData%\Programs\PrismLauncher' -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ElyPrismLauncher/ElyPrismLauncher/releases/download/6.3-2/PrismLauncher-Windows-MSVC-Setup-6.3-2.exe - InstallerSha256: 81256BDDB9312CD907E5FA4331F22D02C55C7080520908D8A888505CAD9D80C0 - Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.VCRedist.2015+.x64 -- Architecture: arm64 - InstallerUrl: https://github.com/ElyPrismLauncher/ElyPrismLauncher/releases/download/6.3-2/PrismLauncher-Windows-MSVC-arm64-Setup-6.3-2.exe - InstallerSha256: 1A66E5D98031DC5A40E5425665917FB86BB32FA71A1A75BB3B61BCC4CF2D56F4 - Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/e/ElyPrismLauncher/ElyPrismLauncher/6.3-2/ElyPrismLauncher.ElyPrismLauncher.locale.en-US.yaml b/manifests/e/ElyPrismLauncher/ElyPrismLauncher/6.3-2/ElyPrismLauncher.ElyPrismLauncher.locale.en-US.yaml deleted file mode 100644 index 9c90c05924c58..0000000000000 --- a/manifests/e/ElyPrismLauncher/ElyPrismLauncher/6.3-2/ElyPrismLauncher.ElyPrismLauncher.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with komac v2.12.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: ElyPrismLauncher.ElyPrismLauncher -PackageVersion: 6.3-2 -PackageLocale: en-US -Publisher: ElyPrismLauncher -PublisherUrl: https://elyprismlauncher.github.io/ -PublisherSupportUrl: https://github.com/ElyPrismLauncher/ElyPrismLauncher/issues -Author: ElyPrismLauncher Contributors -PackageName: ElyPrismLauncher -PackageUrl: https://github.com/ElyPrismLauncher/ElyPrismLauncher -License: GPL-3.0 -LicenseUrl: https://github.com/ElyPrismLauncher/ElyPrismLauncher/blob/HEAD/LICENSE -Copyright: © 2022-2025 Prism Launcher Contributors\n© 2021-2022 PolyMC Contributors\n© 2012-2021 MultiMC Contributors -CopyrightUrl: https://github.com/ElyPrismLauncher/ElyPrismLauncher/blob/develop/COPYING.md -ShortDescription: This fork of Prism Launcher adds integrated support for Ely.by accounts. -Tags: -- authlib-injector -- elyby -- launcher -- minecraft -- multimc -- multimc5 -- polymc -- prismlauncher -ReleaseNotes: |- - - The authlib-injector will no longer be used if account.ely.by is unavailable (including if there's no internet) - - Fixed cases where authlib-injector would or wouldn't be used when it should be if there is a Ely.by and Microsoft account with the same username - - The launcher will no longer display addresses for account.ely.by and skinsystem.ely.by in the log - - The launcher will no longer display Java arguments for authlib-injector in the log -ReleaseNotesUrl: https://github.com/ElyPrismLauncher/ElyPrismLauncher/releases/tag/6.3-2 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/e/ElyPrismLauncher/ElyPrismLauncher/6.3-2/ElyPrismLauncher.ElyPrismLauncher.yaml b/manifests/e/ElyPrismLauncher/ElyPrismLauncher/6.3-2/ElyPrismLauncher.ElyPrismLauncher.yaml deleted file mode 100644 index 1ea74bb0f06c9..0000000000000 --- a/manifests/e/ElyPrismLauncher/ElyPrismLauncher/6.3-2/ElyPrismLauncher.ElyPrismLauncher.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.12.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: ElyPrismLauncher.ElyPrismLauncher -PackageVersion: 6.3-2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/e/EmbravaPtyLtd/EmbravaConnect/5.5.7/EmbravaPtyLtd.EmbravaConnect.installer.yaml b/manifests/e/EmbravaPtyLtd/EmbravaConnect/5.5.7/EmbravaPtyLtd.EmbravaConnect.installer.yaml new file mode 100644 index 0000000000000..328baffaf09ca --- /dev/null +++ b/manifests/e/EmbravaPtyLtd/EmbravaConnect/5.5.7/EmbravaPtyLtd.EmbravaConnect.installer.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: EmbravaPtyLtd.EmbravaConnect +PackageVersion: 5.5.7 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: wix +NestedInstallerFiles: +- RelativeFilePath: EmbravaConnect.msi +ProductCode: '{F8BC5FA5-CD95-466E-9B97-2DDE18AF5245}' +ReleaseDate: 2025-06-27 +Installers: +- Architecture: neutral + InstallerUrl: https://embrava.github.io/embrava/EmbravaConnectForWindows/EmbravaConnect_v5.5.7.zip + InstallerSha256: DB402EFA88D54B5121FE8F0381FA625104AF31E3FD1BF5F140679250A9424DC9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/EmbravaPtyLtd/EmbravaConnect/5.5.7/EmbravaPtyLtd.EmbravaConnect.locale.en-US.yaml b/manifests/e/EmbravaPtyLtd/EmbravaConnect/5.5.7/EmbravaPtyLtd.EmbravaConnect.locale.en-US.yaml new file mode 100644 index 0000000000000..46ac842a763c3 --- /dev/null +++ b/manifests/e/EmbravaPtyLtd/EmbravaConnect/5.5.7/EmbravaPtyLtd.EmbravaConnect.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: EmbravaPtyLtd.EmbravaConnect +PackageVersion: 5.5.7 +PackageLocale: en-US +Publisher: Embrava Pty Ltd +PublisherUrl: https://embrava.com/ +PublisherSupportUrl: https://embrava.com/pages/software +PrivacyUrl: https://cdn.shopify.com/s/files/1/0244/8061/files/embrava-privacy-policy.pdf?980 +PackageName: Embrava Connect +PackageUrl: https://embrava.com/pages/software +License: Proprietary +Copyright: © 2023 Embrava. All Rights Reserved +ShortDescription: Allows control of Embrava Blynclight products. +PurchaseUrl: https://embrava.com/pages/where-to-buy +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/EmbravaPtyLtd/EmbravaConnect/5.5.7/EmbravaPtyLtd.EmbravaConnect.yaml b/manifests/e/EmbravaPtyLtd/EmbravaConnect/5.5.7/EmbravaPtyLtd.EmbravaConnect.yaml new file mode 100644 index 0000000000000..c0f8a33238409 --- /dev/null +++ b/manifests/e/EmbravaPtyLtd/EmbravaConnect/5.5.7/EmbravaPtyLtd.EmbravaConnect.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: EmbravaPtyLtd.EmbravaConnect +PackageVersion: 5.5.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Emurasoft/EmEditor/25.2.0/Emurasoft.EmEditor.installer.yaml b/manifests/e/Emurasoft/EmEditor/25.2.0/Emurasoft.EmEditor.installer.yaml new file mode 100644 index 0000000000000..08a1fda462344 --- /dev/null +++ b/manifests/e/Emurasoft/EmEditor/25.2.0/Emurasoft.EmEditor.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Emurasoft.EmEditor +PackageVersion: 25.2.0 +InstallerType: msi +InstallerSwitches: + InstallLocation: APPDIR="" +UpgradeBehavior: install +FileExtensions: +- eeworkspace +- htm +- jsee +- txt +- vbee +ProductCode: '{C1F588FD-80DD-430E-B147-6450B299ECBC}' +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- UpgradeCode: '{F33C06EF-F3AC-40CC-9A28-77BD5FBE708E}' +Installers: +- Architecture: x64 + InstallerUrl: https://download.emeditor.info/emed64_25.2.0.msi + InstallerSha256: 583A40BE39B0EE22E74BAC799AA9C73E20F3EB967427D95A805ABE26A55674AD +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Emurasoft/EmEditor/25.2.0/Emurasoft.EmEditor.locale.en-US.yaml b/manifests/e/Emurasoft/EmEditor/25.2.0/Emurasoft.EmEditor.locale.en-US.yaml new file mode 100644 index 0000000000000..1d5486e6d6119 --- /dev/null +++ b/manifests/e/Emurasoft/EmEditor/25.2.0/Emurasoft.EmEditor.locale.en-US.yaml @@ -0,0 +1,81 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Emurasoft.EmEditor +PackageVersion: 25.2.0 +PackageLocale: en-US +Publisher: Emurasoft, Inc. +PublisherUrl: https://www.emeditor.com/ +PublisherSupportUrl: https://www.emeditor.com/support/ +PrivacyUrl: https://www.emeditor.com/about/privacy-policy/ +Author: Emurasoft, Inc. +PackageName: EmEditor +PackageUrl: https://www.emeditor.com/ +License: Proprietary +LicenseUrl: https://www.emeditor.com/about/eula/ +Copyright: Copyright © 1997-2024 by Emurasoft, Inc. +CopyrightUrl: https://www.emeditor.com/about/eula/ +ShortDescription: A fast, lightweight, yet extensible, easy-to-use text editor, code editor, CSV editor, and large file viewer for Windows. +Moniker: emeditor +Tags: +- code +- coding +- editing +- editor +ReleaseNotes: |- + We’re excited to announce the release of EmEditor v25.2.0! + Expanded Generative AI Features (ChatAI plug-in required) + One of the major highlights in v25.2 is the enhancement of generative AI features. While EmEditor has supported the OpenAI API since v23.1, we’ve received many requests to support additional generative AI services, especially those compatible with the OpenAI API. In response, Makoto Emura has made the following improvements to AI prompts and chat features: + 1. Support for DeepSeek API + The DeepSeek models, deepseek-chat and deepseek-reasoner, are now supported on Chat with AI and AI prompts. DeepSeek provides AI services similar to OpenAI. To use DeepSeek, you will need to create a DeepSeek API key. + 2. Support for LM Studio + Using the OpenAI or DeepSeek APIs requires an internet connection and sends data externally, but running an AI model locally is more private. That’s why we’ve experimentally added support for LM Studio, a program that lets you run various open-source AI models on your own PC. After installing LM Studio, you can try many different AI models. Note that some models require significant disk space or specific hardware (CPU/GPU). For example, Gemma 3 12B (8.15GB) didn’t work in my environment, but Gemma 3 1B (720MB) ran fine. Local models may not match OpenAI or DeepSeek in performance or response speed, but they’re free and don’t rely on paid services. Even more powerful models may be available in the future. + 3. Support for Compatible Models + You can now freely customize endpoint URLs for both the OpenAI and DeepSeek APIs, making it easier to use other services compatible with these APIs. However, simply changing the API endpoint doesn’t guarantee compatibility, so please use this feature at your own risk. + With these updates, you can choose between the OpenAI API, DeepSeek API, and LM Studio. OpenAI and DeepSeek offer similarily powerful models. If you want a free and secure (but possibly slower) AI, LM Studio is a great choice. Select the AI model that best fits your needs and budget. + 4. AI Connection Settings Moved + The AI settings for Chat with AI that were previously in Customize AI Options and Customize Chat with AI have been moved into the Chat with AI window. You can access the new settings dialog window by opening Chat with AI, clicking the ⚙ (Settings) icon, and selecting Settings. + 5. Reasoning Support + Chat with AI now supports reasoning models, including DeepSeek’s deepseek-reasoner and OpenAI’s o4-mini. These models provide more intelligent and accurate responses compared to non-reasoning models. When you use a reasoning model, the response will show a Show reasoning button at the top of the response. By default, the reasoning output will be visible, but you can hide it by clicking the button. + 6. How to Use + Since v25.0, you need to install the ChatAI plugin to use AI features in EmEditor (not available in the Store version). If you haven’t installed it yet, please do so first, then check Enable AI in the AI Options of the Customize dialog. Starting with this version, API keys and model settings for the OpenAI and DeepSeek APIs are now configured from the ⚙ (Settings) icon in the sidebar at the top left of the AI and Chat screen. API keys and models entered in the AI Options of the Customize dialog are now used specifically for the AI-assisted writing feature. For details on obtaining API keys or setting up LM Studio, please see the How to Use the Chat with AI Plugin. Please note that the AI-assisted writing feature currently only supports the OpenAI API, but support for other AI services is planned. + + Improved Sorting by Date and Time + Sorting by date and time has been available for a while, but there are many date formats used around the world. For example: + June 13, 2026 + 2025-06-10 + 6/12/2025 + 11/6/2025 + 2025 年 6 月 9 日 + All of these are dates, but which formats were recognized depended on the Windows API. In this version, you can now specify date formats explicitly for more accurate sorting. The format specification method is the same as the numeric range expressions for search and filter added in v21.3. + For example: + yyyy-MM-dd|M/dd/yyyy|yyyy 年 M 月 d 日 + If you specify this and run Sort by Date and Time Newest to Oldest, the example above would be sorted as follows: + 6/12/2025 + 2025-06-10 + 2025 年 6 月 9 日 + June 13, 2026 + 11/6/2025 + Lines that don’t match the specified formats remain at the bottom, and only matching lines are sorted. If you want to see which dates are being sorted, you can set the same format for search or filter, and only matching dates will be highlighted. Specifying the date/time format also improves sorting speed. + + Expanded Toolbar Customization + Previously, only the basic toolbar could be customized. Now, you can freely customize the search, filter, and Markdown toolbars too. Add any command as a button and use your favorite icons. The toolbar customization dialog is now integrated as a page within the Customize dialog, replacing the old fixed-size dialog. Menu and file encoding settings dialogs have also been integrated in the same way. + + Better Usability in the Customize Dialog + The Customize dialog now has 40 pages, which made finding the right page difficult. You can now sort pages alphabetically in your Windows language or hide pages you don’t use. Click Filter/Sort from the new > button next to the search box at the top left. + Previously, entering a keyword in the search box only showed the relevant page, but it could still be hard to locate a specific setting. Now, by selecting Search All Options from the > button menu, you can search for a setting throughout EmEditor. + + Support for 64-bit Windows 8.1 and Later Only, Plus Performance Improvements + As previously announced, this version drops support for Windows 7 and all 32-bit versions. You’ll need 64-bit Windows 8.1 or later, or Windows Server 2012 R2 or later. Microsoft ended support for Windows 7 in January 2020. By supporting only newer OS versions, we’ve been able to further optimize EmEditor, improving startup speed and more. According to our tests, startup speed is now 1.79 times faster and date filtering is 1.45 times faster compared to v25.0. + Bugs reported during the preview version have also been fixed. + We hope you enjoy using EmEditor, whether you choose the Professional or Free version. Please contact us or write in our forums if you have any questions, feature requests, or suggestions. + Thank you for using EmEditor! + — Yutaka Emura + Check out the EmEditor v25.2 New Features for more details and screenshots. + If you use the Desktop Installer version, you can select Check for Updates from the Help menu to download the latest version. If this method fails, please download the latest version, and run the downloaded installer. If you use the Desktop portable version, you can go to the Download page to get the latest version. The Store App version can be updated through the (Microsoft Store after a few days. +ReleaseNotesUrl: https://www.emeditor.com/emeditor-core/emeditor-v25-2-0-released-ai-feature-enhancements-sort-by-date-toolbar-customization-performance-improvements/ +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://www.emeditor.com/doc/emeditor-pro-manual-en14.pdf +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Emurasoft/EmEditor/25.2.0/Emurasoft.EmEditor.locale.zh-CN.yaml b/manifests/e/Emurasoft/EmEditor/25.2.0/Emurasoft.EmEditor.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1183a2e0f9599 --- /dev/null +++ b/manifests/e/Emurasoft/EmEditor/25.2.0/Emurasoft.EmEditor.locale.zh-CN.yaml @@ -0,0 +1,76 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Emurasoft.EmEditor +PackageVersion: 25.2.0 +PackageLocale: zh-CN +Publisher: Emurasoft, Inc. +PublisherUrl: https://zh-cn.emeditor.com/ +PublisherSupportUrl: https://zh-cn.emeditor.com/support/ +PrivacyUrl: https://zh-cn.emeditor.com/about/privacy-policy/ +Author: Emurasoft, Inc. +PackageName: EmEditor +PackageUrl: https://zh-cn.emeditor.com/ +License: 专有软件 +Copyright: Copyright © 1997-2024 by Emurasoft, Inc. +ShortDescription: 一款适用于 Windows 的轻快、易用、可扩展的文本编辑器、代码编辑器、CSV 编辑器和大型文件查看器。 +Tags: +- 代码 +- 编辑 +- 编辑器 +ReleaseNotes: |- + 我们很高兴地宣布,EmEditor v25.2.0 正式发布! + 扩展的生成式 AI 功能(需安装 ChatAI 插件) + v25.2 的一大亮点是生成式 AI 功能的增强。虽然 EmEditor 自 v23.1 起就已支持 OpenAI API,但我们收到许多用户希望支持更多生成式 AI 服务的请求,特别是那些可与 OpenAI API 相匹配的 AI 服务。对此,江村诚先生对 AI 提示和聊天功能做出了如下改进: + 1. 支持 DeepSeek API + DeepSeek 模型 deepseek-chat 和 deepseek-reasoner 现已在 AI 聊天和 AI 提示中获得支持。DeepSeek 提供类似于 OpenAI 的 AI 服务。如需使用 DeepSeek,您需要创建 DeepSeek API 密钥。 + 2. 支持 LM Studio + 使用 OpenAI 或 DeepSeek API 需要联网并将数据发送到外部,但本地运行 AI 模型则更注重隐私。因此,我们实验性地增加了对 LM Studio 的支持。LM Studio 是一款可让您在本地运行多种开源 AI 模型的程序。安装 LM Studio 后,您可以尝试多种 AI 模型。请注意,有些模型需要较大的磁盘空间或特定硬件(CPU/GPU)。例如,Gemma 3 12B(8.15GB)在我的环境下无法运行,但 Gemma 3 1B(720MB)运行良好。本地模型的性能或响应速度可能不及 OpenAI 或 DeepSeek,但它们是免费的,也无需依赖付费服务。未来可能还会有更强大的本地模型可供使用。 + 3. 支持兼容模型 + 现在,您可以自由自定义 OpenAI 和 DeepSeek API 的端点 URL,更方便地使用其他兼容这些 API 的服务。但仅更改 API 端点并不能保证完全兼容,请自行承担风险使用此功能。 + 通过这些更新,您可以在 OpenAI API、DeepSeek API 和 LM Studio 之间选择。OpenAI 和 DeepSeek 提供类似强大的模型。如果您需要免费且安全(但可能较慢)的 AI,本地 LM Studio 是不错的选择。请选择最适合您需求和预算的 AI 模型。 + 4. AI 连接设置位置变更 + AI 聊天的设置此前位于“自定义 AI 选项”和“自定义与 AI 聊天”中,现在已移至“与 AI 聊天”窗口。您可以打开 与 AI 聊天,点击 ⚙(设置)图标,并选择 设置,进入新的设置对话框。 + 5. 推理模型支持 + 与 AI 聊天现已支持推理模型,包括 DeepSeek 的 deepseek-reasoner 和 OpenAI 的 o4-mini。这些模型相比非推理模型能提供更智能、更准确的回复。当您使用推理模型时,回复顶部会显示 显示推理 按钮。默认情况下,推理内容会显示,您也可点击按钮将其隐藏。 + 6. 使用方法 + 自 v25.0 起,您需安装 ChatAI 插件 才能在 EmEditor 中使用 AI 功能(商店版暂不支持)。如尚未安装,请先安装,然后在自定义对话框的 AI 选项里勾选启用 AI。从本版本开始,OpenAI 和 DeepSeek API 的 API 密钥及模型设置已迁移至与 AI 聊天屏幕左上角侧边栏的 ⚙(设置)图标中。自定义对话框 AI 选项里填写的 API 密钥和模型现仅用于 AI 辅助写作功能。关于获取 API 密钥或设置 LM Studio 的详细说明,请参见如何使用与 AI 聊天插件。请注意,AI 辅助写作功能目前仅支持 OpenAI API,未来将支持更多的 AI 服务。 + + 改进日期和时间排序 + 日期和时间排序功能已经存在一段时间,但世界各地日期格式繁多。例如: + June 13, 2026 + 2025-06-10 + 6/12/2025 + 11/6/2025 + 2025 年 6 月 9 日 + 这些都是日期,但能否被识别取决于 Windows API。本版本中,您可以显式指定日期格式,实现更准确的排序。格式指定方法与 v21.3 新增的数值范围表达式相同。 + 例如: + yyyy-MM-dd|M/dd/yyyy|yyyy 年 M 月 d 日 + 指定后,执行按日期和时间从新到旧排序,上述示例会被排序如下: + 6/12/2025 + 2025-06-10 + 2025 年 6 月 9 日 + June 13, 2026 + 11/6/2025 + 不符合指定格式的行会留在底部,只有匹配的行会被排序。如果想查看哪些日期被排序,可以在搜索或筛选中设置相同格式,只有匹配的日期会被高亮。指定日期/时间格式还可提升排序速度。 + + 工具栏自定义范围扩展 + 此前,只有基础工具栏可自定义。现在,您还可以自由自定义搜索、筛选和 Markdown 工具栏。可添加任意命令为按钮,并使用您喜欢的图标。工具栏自定义对话框现已集成为自定义对话框中的一个页面,取代了旧的固定大小对话框。菜单和文件编码设置对话框也同样集成到自定义对话框中。 + + 自定义对话框的易用性提升 + 自定义对话框现有 40 个页面,这让查找目标页面变得困难。现在,您可以按 Windows 语言字母顺序排序页面,或隐藏不常用页面。点击左上角搜索框旁的新 > 按钮,在弹出的菜单中选择筛选/排序来排序或隐藏不常用页面。 + 此前,在搜索框输入关键词只会显示相关页面,但定位具体设置仍不容易。现在,从 > 按钮菜单选择搜索所有选项,可在 EmEditor 全局搜索设置。 + 仅支持 64 位 Windows 8.1 及更高版本,同时性能提升 + 如 此前公告,本版本不再支持 Windows 7 及所有 32 位版本。您需要 64 位 Windows 8.1 或更高版本,或 Windows Server 2012 R2 及更高版本。微软已于 2020 年 1 月终止对 Windows 7 的支持。仅支持较新操作系统后,我们进一步优化了 EmEditor,提高了启动速度等性能。根据我们的测试,启动速度比 v25.0 快 1.79 倍,日期筛选速度提升 1.45 倍。 + 在预览版期间报告的 Bug 也已修复。 + 无论您选择专业版还是 免费版,我们都希望您喜欢使用 EmEditor。如有任何问题、功能请求或建议,请随时联系我们或在我们的论坛中留言。 + 感谢您使用 EmEditor! + — 江村 豊 + 点击查看 EmEditor v25.2 新功能,了解更多详情和截图。 + 如果您使用桌面安装版,可在 帮助菜单下选择检查更新下载最新版。如该方法无效,请到此下载最新版本,并运行安装程序。如果您使用桌面便携版,可前往下载页面获取最新版。商店应用版可在几天后通过(Microsoft Store)更新。 +ReleaseNotesUrl: https://zh-cn.emeditor.com/emeditor-core/emeditor-v25-2-0-%e5%8f%91%e5%b8%83-ai-%e5%8a%9f%e8%83%bd%e5%a2%9e%e5%bc%ba%e3%80%81%e6%8c%89%e6%97%a5%e6%9c%9f%e6%8e%92%e5%ba%8f%e3%80%81%e5%b7%a5%e5%85%b7%e6%a0%8f%e8%87%aa/ +Documentations: +- DocumentLabel: 使用手册 + DocumentUrl: https://www.emeditor.com/doc/emeditor-pro-manual-en14.pdf +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Emurasoft/EmEditor/25.2.0/Emurasoft.EmEditor.yaml b/manifests/e/Emurasoft/EmEditor/25.2.0/Emurasoft.EmEditor.yaml new file mode 100644 index 0000000000000..76308eb29a811 --- /dev/null +++ b/manifests/e/Emurasoft/EmEditor/25.2.0/Emurasoft.EmEditor.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: Emurasoft.EmEditor +PackageVersion: 25.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Emurasoft/EmEditor/25.2.1/Emurasoft.EmEditor.installer.yaml b/manifests/e/Emurasoft/EmEditor/25.2.1/Emurasoft.EmEditor.installer.yaml new file mode 100644 index 0000000000000..8558fcb7a4fe2 --- /dev/null +++ b/manifests/e/Emurasoft/EmEditor/25.2.1/Emurasoft.EmEditor.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Emurasoft.EmEditor +PackageVersion: 25.2.1 +InstallerType: msi +InstallerSwitches: + InstallLocation: APPDIR="" +UpgradeBehavior: install +FileExtensions: +- eeworkspace +- htm +- jsee +- txt +- vbee +ProductCode: '{F86B8740-808F-4E41-B23B-3F4F69987906}' +ReleaseDate: 2025-06-26 +AppsAndFeaturesEntries: +- UpgradeCode: '{F33C06EF-F3AC-40CC-9A28-77BD5FBE708E}' +Installers: +- Architecture: x64 + InstallerUrl: https://download.emeditor.info/emed64_25.2.1.msi + InstallerSha256: 23C7D9D4BD1C89E8B5508858C65786A7DDE088FD072202B8FFE341DD82626599 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Emurasoft/EmEditor/25.2.1/Emurasoft.EmEditor.locale.en-US.yaml b/manifests/e/Emurasoft/EmEditor/25.2.1/Emurasoft.EmEditor.locale.en-US.yaml new file mode 100644 index 0000000000000..ffbc1995c6fd8 --- /dev/null +++ b/manifests/e/Emurasoft/EmEditor/25.2.1/Emurasoft.EmEditor.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Emurasoft.EmEditor +PackageVersion: 25.2.1 +PackageLocale: en-US +Publisher: Emurasoft, Inc. +PublisherUrl: https://www.emeditor.com/ +PublisherSupportUrl: https://www.emeditor.com/support/ +PrivacyUrl: https://www.emeditor.com/about/privacy-policy/ +Author: Emurasoft, Inc. +PackageName: EmEditor +PackageUrl: https://www.emeditor.com/ +License: Proprietary +LicenseUrl: https://www.emeditor.com/about/eula/ +Copyright: Copyright © 1997-2024 by Emurasoft, Inc. +CopyrightUrl: https://www.emeditor.com/about/eula/ +ShortDescription: A fast, lightweight, yet extensible, easy-to-use text editor, code editor, CSV editor, and large file viewer for Windows. +Moniker: emeditor +Tags: +- code +- coding +- editing +- editor +ReleaseNotes: |- + Today, we are releasing EmEditor v25.2.1. + v25.2.1 includes the following bug fixes. Please make sure to always update to the latest version for stable operations. + - Fixed an issue where some plugins were displayed only in English (EI_GET_LANGUAGE). + - Resolved a problem with the font list display. + - Improved line spacing adjustments in the Markdown Design View. + - Fixed an issue where the position of the HTML toolbar was not saved in certain cases. + - You can now save options like “Selected Text” and “Word at Cursor”—accessible from the “>” button on the Find toolbar—separately from the settings in the “Find” and “Find in Files” dialogs. + - Fixed a bug where searching files with regular expressions could cause the application to freeze (Find in Files). + - Fixed a crash that could occur when selecting “Auto Add Column Widths” in the CSV Converter. + - Enhanced the way comparison results are displayed. + - Fixed customer reported issues (1, 2). + If you use the Desktop Installer version, you can select Check for Updates from the Help menu to download the latest version. If this method fails, please download the latest version, and run the downloaded installer. If you use the Desktop portable version, you can go to the Download page to get the latest version. The Store App version can be updated through the (Microsoft Store after a few days. +ReleaseNotesUrl: https://www.emeditor.com/emeditor-core/emeditor-v25-2-1-released/ +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://www.emeditor.com/doc/emeditor-pro-manual-en14.pdf +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Emurasoft/EmEditor/25.2.1/Emurasoft.EmEditor.locale.zh-CN.yaml b/manifests/e/Emurasoft/EmEditor/25.2.1/Emurasoft.EmEditor.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ed5e126d4d88b --- /dev/null +++ b/manifests/e/Emurasoft/EmEditor/25.2.1/Emurasoft.EmEditor.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: Emurasoft.EmEditor +PackageVersion: 25.2.1 +PackageLocale: zh-CN +Publisher: Emurasoft, Inc. +PublisherUrl: https://zh-cn.emeditor.com/ +PublisherSupportUrl: https://zh-cn.emeditor.com/support/ +PrivacyUrl: https://zh-cn.emeditor.com/about/privacy-policy/ +Author: Emurasoft, Inc. +PackageName: EmEditor +PackageUrl: https://zh-cn.emeditor.com/ +License: 专有软件 +Copyright: Copyright © 1997-2024 by Emurasoft, Inc. +ShortDescription: 一款适用于 Windows 的轻快、易用、可扩展的文本编辑器、代码编辑器、CSV 编辑器和大型文件查看器。 +Tags: +- 代码 +- 编辑 +- 编辑器 +ReleaseNotesUrl: https://zh-cn.emeditor.com/blog/ +Documentations: +- DocumentLabel: 使用手册 + DocumentUrl: https://www.emeditor.com/doc/emeditor-pro-manual-en14.pdf +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Emurasoft/EmEditor/25.2.1/Emurasoft.EmEditor.yaml b/manifests/e/Emurasoft/EmEditor/25.2.1/Emurasoft.EmEditor.yaml new file mode 100644 index 0000000000000..6ca0846a49692 --- /dev/null +++ b/manifests/e/Emurasoft/EmEditor/25.2.1/Emurasoft.EmEditor.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: Emurasoft.EmEditor +PackageVersion: 25.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Emurasoft/EmEditor/25.2.2/Emurasoft.EmEditor.installer.yaml b/manifests/e/Emurasoft/EmEditor/25.2.2/Emurasoft.EmEditor.installer.yaml new file mode 100644 index 0000000000000..0f6474d726286 --- /dev/null +++ b/manifests/e/Emurasoft/EmEditor/25.2.2/Emurasoft.EmEditor.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Emurasoft.EmEditor +PackageVersion: 25.2.2 +InstallerType: msi +InstallerSwitches: + InstallLocation: APPDIR="" +UpgradeBehavior: install +FileExtensions: +- eeworkspace +- htm +- jsee +- txt +- vbee +ProductCode: '{FFBE6215-EDFA-4C6B-B792-DAA11D3B7049}' +ReleaseDate: 2025-06-30 +AppsAndFeaturesEntries: +- UpgradeCode: '{F33C06EF-F3AC-40CC-9A28-77BD5FBE708E}' +Installers: +- Architecture: x64 + InstallerUrl: https://download.emeditor.info/emed64_25.2.2.msi + InstallerSha256: D2A83E87079964A240738D15B9E47643D0F88CD1C08455D15D6374446FE1D40F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Emurasoft/EmEditor/25.2.2/Emurasoft.EmEditor.locale.en-US.yaml b/manifests/e/Emurasoft/EmEditor/25.2.2/Emurasoft.EmEditor.locale.en-US.yaml new file mode 100644 index 0000000000000..02fb946f5f920 --- /dev/null +++ b/manifests/e/Emurasoft/EmEditor/25.2.2/Emurasoft.EmEditor.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: Emurasoft.EmEditor +PackageVersion: 25.2.2 +PackageLocale: en-US +Publisher: Emurasoft, Inc. +PublisherUrl: https://www.emeditor.com/ +PublisherSupportUrl: https://www.emeditor.com/support/ +PrivacyUrl: https://www.emeditor.com/about/privacy-policy/ +Author: Emurasoft, Inc. +PackageName: EmEditor +PackageUrl: https://www.emeditor.com/ +License: Proprietary +LicenseUrl: https://www.emeditor.com/about/eula/ +Copyright: Copyright © 1997-2024 by Emurasoft, Inc. +CopyrightUrl: https://www.emeditor.com/about/eula/ +ShortDescription: A fast, lightweight, yet extensible, easy-to-use text editor, code editor, CSV editor, and large file viewer for Windows. +Moniker: emeditor +Tags: +- code +- coding +- editing +- editor +ReleaseNotes: |- + Today, we are releasing EmEditor v25.2.2. + v25.2.2 includes the following bug fixes. Please make sure to always update to the latest version for stable operations. + - Fixed issues related to the Toolbar Buttons and Menus pages in the Customize dialog. + If you use the Desktop Installer version, you can select Check for Updates from the Help menu to download the latest version. If this method fails, please download the latest version, and run the downloaded installer. If you use the Desktop portable version, you can go to the Download page to get the latest version. The Store App version can be updated through the (Microsoft Store after a few days. +ReleaseNotesUrl: https://www.emeditor.com/emeditor-core/emeditor-v25-2-2-released/ +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://www.emeditor.com/doc/emeditor-pro-manual-en14.pdf +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Emurasoft/EmEditor/25.2.2/Emurasoft.EmEditor.locale.zh-CN.yaml b/manifests/e/Emurasoft/EmEditor/25.2.2/Emurasoft.EmEditor.locale.zh-CN.yaml new file mode 100644 index 0000000000000..005429ae926d6 --- /dev/null +++ b/manifests/e/Emurasoft/EmEditor/25.2.2/Emurasoft.EmEditor.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: Emurasoft.EmEditor +PackageVersion: 25.2.2 +PackageLocale: zh-CN +Publisher: Emurasoft, Inc. +PublisherUrl: https://zh-cn.emeditor.com/ +PublisherSupportUrl: https://zh-cn.emeditor.com/support/ +PrivacyUrl: https://zh-cn.emeditor.com/about/privacy-policy/ +Author: Emurasoft, Inc. +PackageName: EmEditor +PackageUrl: https://zh-cn.emeditor.com/ +License: 专有软件 +Copyright: Copyright © 1997-2024 by Emurasoft, Inc. +ShortDescription: 一款适用于 Windows 的轻快、易用、可扩展的文本编辑器、代码编辑器、CSV 编辑器和大型文件查看器。 +Tags: +- 代码 +- 编辑 +- 编辑器 +ReleaseNotes: |- + 今天,我们发布了 EmEditor v25.2.2。 + v25.2.2 包含以下错误修复。请务必始终更新到最新版本以确保稳定运行。 + - 修复了“自定义”对话框中与工具栏按钮和菜单页面相关的问题。 + 如果您使用桌面安装版本,可以在帮助中选择检查更新以下载最新版本。如果此方法失败,请下载最新版本,并运行下载的安装程序。 如果您使用桌面便携版本,可以访问下载页面以下载最新版本。商店应用版本可以在几天后通过 Microsoft Store (64 位 或 32 位) 更新。 +ReleaseNotesUrl: https://zh-cn.emeditor.com/emeditor-core/emeditor-v25-2-2-released/ +Documentations: +- DocumentLabel: 使用手册 + DocumentUrl: https://www.emeditor.com/doc/emeditor-pro-manual-en14.pdf +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Emurasoft/EmEditor/25.2.2/Emurasoft.EmEditor.yaml b/manifests/e/Emurasoft/EmEditor/25.2.2/Emurasoft.EmEditor.yaml new file mode 100644 index 0000000000000..c3599ed0e53f5 --- /dev/null +++ b/manifests/e/Emurasoft/EmEditor/25.2.2/Emurasoft.EmEditor.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: Emurasoft.EmEditor +PackageVersion: 25.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/EndlessSky/EndlessSky/0.10.14/EndlessSky.EndlessSky.installer.yaml b/manifests/e/EndlessSky/EndlessSky/0.10.14/EndlessSky.EndlessSky.installer.yaml new file mode 100644 index 0000000000000..c22b0f5c7287b --- /dev/null +++ b/manifests/e/EndlessSky/EndlessSky/0.10.14/EndlessSky.EndlessSky.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: EndlessSky.EndlessSky +PackageVersion: 0.10.14 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/endless-sky/endless-sky/releases/download/v0.10.14/EndlessSky-v0.10.14-win64-setup.exe + InstallerSha256: FED4946B4BA690744A99472F5EF956273CE5AB4F3BE70B7DC99EAA715A7D63E6 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/e/EndlessSky/EndlessSky/0.10.14/EndlessSky.EndlessSky.locale.en-US.yaml b/manifests/e/EndlessSky/EndlessSky/0.10.14/EndlessSky.EndlessSky.locale.en-US.yaml new file mode 100644 index 0000000000000..45fae2d00ed65 --- /dev/null +++ b/manifests/e/EndlessSky/EndlessSky/0.10.14/EndlessSky.EndlessSky.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: EndlessSky.EndlessSky +PackageVersion: 0.10.14 +PackageLocale: en-US +Publisher: Endless Sky +PackageName: Endless Sky +PackageUrl: https://endless-sky.github.io +License: GPL-3.0 +ShortDescription: A sandbox-style space exploration game. +Tags: +- videogame +- outerspace +- strategy +- combat +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/e/EndlessSky/EndlessSky/0.10.14/EndlessSky.EndlessSky.yaml b/manifests/e/EndlessSky/EndlessSky/0.10.14/EndlessSky.EndlessSky.yaml new file mode 100644 index 0000000000000..91543721a35b7 --- /dev/null +++ b/manifests/e/EndlessSky/EndlessSky/0.10.14/EndlessSky.EndlessSky.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: EndlessSky.EndlessSky +PackageVersion: 0.10.14 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/e/Enter-tainer/typstyle/0.13.11/Enter-tainer.typstyle.installer.yaml b/manifests/e/Enter-tainer/typstyle/0.13.11/Enter-tainer.typstyle.installer.yaml index 3bf253ea61ec1..40ee20d69d06c 100644 --- a/manifests/e/Enter-tainer/typstyle/0.13.11/Enter-tainer.typstyle.installer.yaml +++ b/manifests/e/Enter-tainer/typstyle/0.13.11/Enter-tainer.typstyle.installer.yaml @@ -9,13 +9,13 @@ Commands: ReleaseDate: 2025-06-15 Installers: - Architecture: x64 - InstallerUrl: https://github.com/Enter-tainer/typstyle/releases/download/v0.13.11/typstyle-x86_64-pc-windows-msvc.exe + InstallerUrl: https://github.com/typstyle-rs/typstyle/releases/download/v0.13.11/typstyle-x86_64-pc-windows-msvc.exe InstallerSha256: 6E5C51ACA3EB3189A10576FAC97C494CC4F15505E390DCAD8F3940542FD9501E Dependencies: PackageDependencies: - PackageIdentifier: Microsoft.VCRedist.2015+.x64 - Architecture: arm64 - InstallerUrl: https://github.com/Enter-tainer/typstyle/releases/download/v0.13.11/typstyle-aarch64-pc-windows-msvc.exe + InstallerUrl: https://github.com/typstyle-rs/typstyle/releases/download/v0.13.11/typstyle-aarch64-pc-windows-msvc.exe InstallerSha256: 14F53AE0FA35D43946B157EAF07D39D6D579E9B9B0FA5426D37E61014A5951A0 Dependencies: PackageDependencies: diff --git a/manifests/e/Enter-tainer/typstyle/0.13.11/Enter-tainer.typstyle.locale.en-US.yaml b/manifests/e/Enter-tainer/typstyle/0.13.11/Enter-tainer.typstyle.locale.en-US.yaml index 1258c247e1848..2133c165f246c 100644 --- a/manifests/e/Enter-tainer/typstyle/0.13.11/Enter-tainer.typstyle.locale.en-US.yaml +++ b/manifests/e/Enter-tainer/typstyle/0.13.11/Enter-tainer.typstyle.locale.en-US.yaml @@ -6,13 +6,13 @@ PackageVersion: 0.13.11 PackageLocale: en-US Publisher: Wenzhuo Liu PublisherUrl: https://mgt.moe/ -PublisherSupportUrl: https://github.com/Enter-tainer/typstyle/issues +PublisherSupportUrl: https://github.com/typstyle-rs/typstyle/issues Author: Wenzhuo Liu PackageName: typstyle -PackageUrl: https://enter-tainer.github.io/typstyle/ +PackageUrl: https://typstyle-rs.github.io/typstyle/ License: Apache-2.0 -LicenseUrl: https://github.com/Enter-tainer/typstyle/blob/HEAD/LICENSE -Copyright: Copyright © 2023 - 2024 Typstyle Contributors +LicenseUrl: https://github.com/typstyle-rs/typstyle/blob/HEAD/LICENSE +Copyright: Copyright © 2023 - 2025 Typstyle Contributors ShortDescription: Beautiful and reliable typst code formatter Tags: - typst @@ -24,6 +24,6 @@ ReleaseNotes: |- - Enhancement: Labels are no longer reflowed to the next line with text wrapping enabled. - Bug fix: Texts spanning multiple lines, such as strings, inline raws, or syntax nodes marked typstyle off are correctly layouted according to their line widths. - Bug fix: When the last arg of func call is not combinable, the flavor is respect. -ReleaseNotesUrl: https://github.com/Enter-tainer/typstyle/releases/tag/v0.13.11 +ReleaseNotesUrl: https://github.com/typstyle-rs/typstyle/releases/tag/v0.13.11 ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/e/Enter-tainer/typstyle/0.13.11/Enter-tainer.typstyle.locale.zh-CN.yaml b/manifests/e/Enter-tainer/typstyle/0.13.11/Enter-tainer.typstyle.locale.zh-CN.yaml index 7ac130a45511a..a71cb5fbef7f7 100644 --- a/manifests/e/Enter-tainer/typstyle/0.13.11/Enter-tainer.typstyle.locale.zh-CN.yaml +++ b/manifests/e/Enter-tainer/typstyle/0.13.11/Enter-tainer.typstyle.locale.zh-CN.yaml @@ -5,6 +5,5 @@ PackageIdentifier: Enter-tainer.typstyle PackageVersion: 0.13.11 PackageLocale: zh-CN ShortDescription: 美观可靠的 typst 代码格式化工具 -ReleaseNotesUrl: https://github.com/Enter-tainer/typstyle/releases/tag/v0.13.11 ManifestType: locale ManifestVersion: 1.10.0 diff --git a/manifests/e/Enter-tainer/typstyle/0.13.13/Enter-tainer.typstyle.installer.yaml b/manifests/e/Enter-tainer/typstyle/0.13.13/Enter-tainer.typstyle.installer.yaml new file mode 100644 index 0000000000000..aec3800e7050f --- /dev/null +++ b/manifests/e/Enter-tainer/typstyle/0.13.13/Enter-tainer.typstyle.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: Enter-tainer.typstyle +PackageVersion: 0.13.13 +InstallerType: portable +Commands: +- typstyle +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/typstyle-rs/typstyle/releases/download/v0.13.13/typstyle-x86_64-pc-windows-msvc.exe + InstallerSha256: E213143666EAA15E4F18971A1EF6A634D5CC302D01693D8C9F5E31E22318FB41 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/typstyle-rs/typstyle/releases/download/v0.13.13/typstyle-aarch64-pc-windows-msvc.exe + InstallerSha256: 73F1F9E0D6CCAD218E66B2A0F8AEF938C8893ECD65A0B153507C867A5DB69331 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Enter-tainer/typstyle/0.13.13/Enter-tainer.typstyle.locale.en-US.yaml b/manifests/e/Enter-tainer/typstyle/0.13.13/Enter-tainer.typstyle.locale.en-US.yaml new file mode 100644 index 0000000000000..cb4794528c301 --- /dev/null +++ b/manifests/e/Enter-tainer/typstyle/0.13.13/Enter-tainer.typstyle.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: Enter-tainer.typstyle +PackageVersion: 0.13.13 +PackageLocale: en-US +Publisher: Wenzhuo Liu +PublisherUrl: https://mgt.moe/ +PublisherSupportUrl: https://github.com/typstyle-rs/typstyle/issues +Author: Wenzhuo Liu +PackageName: typstyle +PackageUrl: https://typstyle-rs.github.io/typstyle/ +License: Apache-2.0 +LicenseUrl: https://github.com/typstyle-rs/typstyle/blob/HEAD/LICENSE +Copyright: Copyright © 2023 - 2025 Typstyle Contributors +ShortDescription: Beautiful and reliable typst code formatter +Tags: +- typst +ReleaseNotes: '- Bug fix(CI): Fixed a CI misconfiguration that prevented the release of v0.13.12.' +ReleaseNotesUrl: https://github.com/typstyle-rs/typstyle/releases/tag/v0.13.13 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Enter-tainer/typstyle/0.13.13/Enter-tainer.typstyle.locale.zh-CN.yaml b/manifests/e/Enter-tainer/typstyle/0.13.13/Enter-tainer.typstyle.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9caf6fee0d136 --- /dev/null +++ b/manifests/e/Enter-tainer/typstyle/0.13.13/Enter-tainer.typstyle.locale.zh-CN.yaml @@ -0,0 +1,9 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Enter-tainer.typstyle +PackageVersion: 0.13.13 +PackageLocale: zh-CN +ShortDescription: 美观可靠的 typst 代码格式化工具 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Enter-tainer/typstyle/0.13.13/Enter-tainer.typstyle.yaml b/manifests/e/Enter-tainer/typstyle/0.13.13/Enter-tainer.typstyle.yaml new file mode 100644 index 0000000000000..5597305f3d31e --- /dev/null +++ b/manifests/e/Enter-tainer/typstyle/0.13.13/Enter-tainer.typstyle.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: Enter-tainer.typstyle +PackageVersion: 0.13.13 +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/Equicord/Equibop/2.1.5/Equicord.Equibop.installer.yaml b/manifests/e/Equicord/Equibop/2.1.5/Equicord.Equibop.installer.yaml new file mode 100644 index 0000000000000..d544cbdb4fae6 --- /dev/null +++ b/manifests/e/Equicord/Equibop/2.1.5/Equicord.Equibop.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Equicord.Equibop +PackageVersion: 2.1.5 +InstallerLocale: en-US +InstallerType: nullsoft +UpgradeBehavior: install +ProductCode: c3f6e296-41ac-5ef9-aa06-55665efd99ac +ReleaseDate: 2025-06-25 +AppsAndFeaturesEntries: +- DisplayName: Equibop 2.1.5 + ProductCode: c3f6e296-41ac-5ef9-aa06-55665efd99ac +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Equicord/Equibop/releases/download/v2.1.5/Equibop-win-x64.exe + InstallerSha256: 8BAC8391F4ACB081E68357ABF285441FA9F7CDBE6F36CE51A8E56D1C40822ADE +- Architecture: arm64 + InstallerUrl: https://github.com/Equicord/Equibop/releases/download/v2.1.5/Equibop-win-arm64.exe + InstallerSha256: 3707AD28EE048FCFA52D5C93F21679B213EF78AEDC6FDF707FAE6F34DAE9E2A1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Equicord/Equibop/2.1.5/Equicord.Equibop.locale.en-US.yaml b/manifests/e/Equicord/Equibop/2.1.5/Equicord.Equibop.locale.en-US.yaml new file mode 100644 index 0000000000000..1c4be0a34cce9 --- /dev/null +++ b/manifests/e/Equicord/Equibop/2.1.5/Equicord.Equibop.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Equicord.Equibop +PackageVersion: 2.1.5 +PackageLocale: en-US +Publisher: Equicord +PublisherUrl: https://github.com/Equicord +PublisherSupportUrl: https://github.com/Equicord/Equibop/issues +Author: Equicord +PackageName: Equibop +PackageUrl: https://github.com/Equicord/Equibop +License: GPL-3.0 +LicenseUrl: https://github.com/Equicord/Equibop/blob/HEAD/LICENSE +Copyright: Copyright © 2024 Equicord +CopyrightUrl: https://github.com/Equicord/Equibop/blob/main/LICENSE +ShortDescription: ' Equibop is a custom Discord App aiming to give you better performance and improve linux support' +Moniker: equibop +Tags: +- client +- discord +- equicord +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Equicord/Equibop/2.1.5/Equicord.Equibop.yaml b/manifests/e/Equicord/Equibop/2.1.5/Equicord.Equibop.yaml new file mode 100644 index 0000000000000..c8d0ee00be0db --- /dev/null +++ b/manifests/e/Equicord/Equibop/2.1.5/Equicord.Equibop.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: Equicord.Equibop +PackageVersion: 2.1.5 +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/Everbridge/Everbridge360/25.5.1.11954/Everbridge.Everbridge360.installer.yaml b/manifests/e/Everbridge/Everbridge360/25.5.1.11954/Everbridge.Everbridge360.installer.yaml deleted file mode 100644 index e9f2e158d783a..0000000000000 --- a/manifests/e/Everbridge/Everbridge360/25.5.1.11954/Everbridge.Everbridge360.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Everbridge.Everbridge360 -PackageVersion: 25.5.1.11954 -Protocols: -- ebenterprise -- ebmobile -Installers: -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://download.everbridge.net/files/windows/Everbridge360.msi - InstallerSha256: B6ACC979D09AFF705098D4FD514E3FF87EEE5F7B9DC81BD8B5BE73AD71E87B00 - ProductCode: '{A30D6910-5504-478F-947E-603B2FAB1464}' - AppsAndFeaturesEntries: - - UpgradeCode: '{E28F2BD2-3F0F-4B9E-ABB1-EE5C4351378A}' -- Platform: - - Windows.Desktop - MinimumOSVersion: 10.0.17763.0 - Architecture: x64 - InstallerType: msix - InstallerUrl: https://download.everbridge.net/files/windows/Everbridge360.msix - InstallerSha256: 2879F8E371AA2A67006AFB45E32494AD6FA65EEF3FCF3EFF236E2432F2127E34 - SignatureSha256: 19261AB09B70E7068997FB3FF451110870F5FDC22D099712E2DBC829B2B03CEF - PackageFamilyName: EverbridgeInc.Everbridge360_hmrm6xy0gf0ja -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/e/Everbridge/Everbridge360/25.5.1.11954/Everbridge.Everbridge360.locale.zh-CN.yaml b/manifests/e/Everbridge/Everbridge360/25.5.1.11954/Everbridge.Everbridge360.locale.zh-CN.yaml deleted file mode 100644 index 9a7be07638f87..0000000000000 --- a/manifests/e/Everbridge/Everbridge360/25.5.1.11954/Everbridge.Everbridge360.locale.zh-CN.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Everbridge.Everbridge360 -PackageVersion: 25.5.1.11954 -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/e/Everbridge/Everbridge360/25.5.1.11954/Everbridge.Everbridge360.yaml b/manifests/e/Everbridge/Everbridge360/25.5.1.11954/Everbridge.Everbridge360.yaml deleted file mode 100644 index b372ec5f716ba..0000000000000 --- a/manifests/e/Everbridge/Everbridge360/25.5.1.11954/Everbridge.Everbridge360.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Everbridge.Everbridge360 -PackageVersion: 25.5.1.11954 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/e/Everbridge/Everbridge360/25.6.0.12137/Everbridge.Everbridge360.installer.yaml b/manifests/e/Everbridge/Everbridge360/25.6.0.12137/Everbridge.Everbridge360.installer.yaml new file mode 100644 index 0000000000000..78a9632d9ec5b --- /dev/null +++ b/manifests/e/Everbridge/Everbridge360/25.6.0.12137/Everbridge.Everbridge360.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: Everbridge.Everbridge360 +PackageVersion: 25.6.0.12137 +Protocols: +- ebenterprise +- ebmobile +Installers: +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download.everbridge.net/files/windows/Everbridge360.msi + InstallerSha256: 9AF96E136E3E16D19B2212193CB7845F4B06788168CDA031A0E61E1EFB2C1FA0 + ProductCode: '{6F2C36EC-470C-4ED1-979B-2B0BA07A7DD7}' + AppsAndFeaturesEntries: + - UpgradeCode: '{E28F2BD2-3F0F-4B9E-ABB1-EE5C4351378A}' +- Platform: + - Windows.Desktop + MinimumOSVersion: 10.0.17763.0 + Architecture: x64 + InstallerType: msix + InstallerUrl: https://download.everbridge.net/files/windows/Everbridge360.msix + InstallerSha256: DE7A4084F94FFB4BA2E019C33DB6828F2216C41F262701DA63C639639B506681 + SignatureSha256: BC975CE1A5F6361E9419C82AD6F04D4B23424F9FEE2B26B85DFB9FA2CE1DFB3C + PackageFamilyName: EverbridgeInc.Everbridge360_hmrm6xy0gf0ja +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Everbridge/Everbridge360/25.5.1.11954/Everbridge.Everbridge360.locale.en-US.yaml b/manifests/e/Everbridge/Everbridge360/25.6.0.12137/Everbridge.Everbridge360.locale.en-US.yaml similarity index 85% rename from manifests/e/Everbridge/Everbridge360/25.5.1.11954/Everbridge.Everbridge360.locale.en-US.yaml rename to manifests/e/Everbridge/Everbridge360/25.6.0.12137/Everbridge.Everbridge360.locale.en-US.yaml index ed7874ce9db9b..a9da40a46c641 100644 --- a/manifests/e/Everbridge/Everbridge360/25.5.1.11954/Everbridge.Everbridge360.locale.en-US.yaml +++ b/manifests/e/Everbridge/Everbridge360/25.6.0.12137/Everbridge.Everbridge360.locale.en-US.yaml @@ -1,28 +1,21 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Everbridge.Everbridge360 -PackageVersion: 25.5.1.11954 -PackageLocale: en-US -Publisher: Everbridge Inc -PublisherUrl: https://www.everbridge.com/ -PublisherSupportUrl: https://www.everbridge.com/support/ -PrivacyUrl: https://www.everbridge.com/about/legal/privacy-notice/ -Author: Everbridge, Inc. -PackageName: Everbridge 360 -PackageUrl: https://www.everbridge.com/platform/applications/ -License: Proprietary -LicenseUrl: https://www.everbridge.com/about/legal/terms-of-use/ -Copyright: © 2025 Everbridge. All rights reserved. -CopyrightUrl: https://www.everbridge.com/about/legal/terms-of-use/ -ShortDescription: Stay connected with your workplace, school, or any other organization you're connected to and receive vital information during critical events, or while managing your response to an incident. -Description: Stay connected with your workplace, school, or any other organization you're connected to and receive vital information during critical events, or while managing your response to an incident. To access the app, your organization will provide you with a login code. -# Moniker: -# Tags: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.10.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Everbridge.Everbridge360 +PackageVersion: 25.6.0.12137 +PackageLocale: en-US +Publisher: Everbridge Inc +PublisherUrl: https://www.everbridge.com/ +PublisherSupportUrl: https://www.everbridge.com/support/ +PrivacyUrl: https://www.everbridge.com/about/legal/privacy-notice/ +Author: Everbridge, Inc. +PackageName: Everbridge 360 +PackageUrl: https://www.everbridge.com/platform/applications/ +License: Proprietary +LicenseUrl: https://www.everbridge.com/about/legal/terms-of-use/ +Copyright: © 2025 Everbridge. All rights reserved. +CopyrightUrl: https://www.everbridge.com/about/legal/terms-of-use/ +ShortDescription: Stay connected with your workplace, school, or any other organization you're connected to and receive vital information during critical events, or while managing your response to an incident. +Description: Stay connected with your workplace, school, or any other organization you're connected to and receive vital information during critical events, or while managing your response to an incident. To access the app, your organization will provide you with a login code. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Everbridge/Everbridge360/25.6.0.12137/Everbridge.Everbridge360.locale.zh-CN.yaml b/manifests/e/Everbridge/Everbridge360/25.6.0.12137/Everbridge.Everbridge360.locale.zh-CN.yaml new file mode 100644 index 0000000000000..999be5c35588b --- /dev/null +++ b/manifests/e/Everbridge/Everbridge360/25.6.0.12137/Everbridge.Everbridge360.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: Everbridge.Everbridge360 +PackageVersion: 25.6.0.12137 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 与您所在的工作场所、学校或其他关联组织保持联系,在紧急事件发生时接收重要信息,或在处理事件响应时进行管理。 +Description: 与您所在的工作场所、学校或其他关联组织保持联系,在紧急事件发生时接收重要信息,或在处理事件响应时进行管理。要使用该应用程序,您的组织需为您提供登录代码。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Everbridge/Everbridge360/25.6.0.12137/Everbridge.Everbridge360.yaml b/manifests/e/Everbridge/Everbridge360/25.6.0.12137/Everbridge.Everbridge360.yaml new file mode 100644 index 0000000000000..1b7be52eb1e05 --- /dev/null +++ b/manifests/e/Everbridge/Everbridge360/25.6.0.12137/Everbridge.Everbridge360.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: Everbridge.Everbridge360 +PackageVersion: 25.6.0.12137 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evernote/Evernote/10.143.4/Evernote.Evernote.installer.yaml b/manifests/e/Evernote/Evernote/10.143.4/Evernote.Evernote.installer.yaml new file mode 100644 index 0000000000000..b7e6c12858959 --- /dev/null +++ b/manifests/e/Evernote/Evernote/10.143.4/Evernote.Evernote.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: Evernote.Evernote +PackageVersion: 10.143.4 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- en +- evernote +FileExtensions: +- enex +ProductCode: e4251011-875e-51f3-a464-121adaff5aaa +ReleaseDate: 2025-06-25 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://win.desktop.evernote.com/builds/Evernote-10.143.4-win-ddl-stage-20250625104217-083d8c0a8751dd1a8dece534962af4e85c8ea296-setup.exe + InstallerSha256: 779C2734320BEC9950F766F3C579B322C5EA3AD366CC42579C41A4AC12CC5546 + InstallerSwitches: + Custom: /currentuser +- Architecture: x86 + Scope: machine + InstallerUrl: https://win.desktop.evernote.com/builds/Evernote-10.143.4-win-ddl-stage-20250625104217-083d8c0a8751dd1a8dece534962af4e85c8ea296-setup.exe + InstallerSha256: 779C2734320BEC9950F766F3C579B322C5EA3AD366CC42579C41A4AC12CC5546 + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +- Architecture: x64 + Scope: user + InstallerUrl: https://win.desktop.evernote.com/builds/Evernote-10.143.4-win-ddl-stage-20250625104217-083d8c0a8751dd1a8dece534962af4e85c8ea296-setup.exe + InstallerSha256: 779C2734320BEC9950F766F3C579B322C5EA3AD366CC42579C41A4AC12CC5546 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://win.desktop.evernote.com/builds/Evernote-10.143.4-win-ddl-stage-20250625104217-083d8c0a8751dd1a8dece534962af4e85c8ea296-setup.exe + InstallerSha256: 779C2734320BEC9950F766F3C579B322C5EA3AD366CC42579C41A4AC12CC5546 + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evernote/Evernote/10.143.4/Evernote.Evernote.locale.en-US.yaml b/manifests/e/Evernote/Evernote/10.143.4/Evernote.Evernote.locale.en-US.yaml new file mode 100644 index 0000000000000..6660811c14e99 --- /dev/null +++ b/manifests/e/Evernote/Evernote/10.143.4/Evernote.Evernote.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: Evernote.Evernote +PackageVersion: 10.143.4 +PackageLocale: en-US +Publisher: Evernote Corporation +PublisherUrl: https://evernote.com/ +PublisherSupportUrl: https://help.evernote.com/ +PrivacyUrl: https://evernote.com/privacy/policy +Author: Evernote Corporation +PackageName: Evernote +PackageUrl: https://evernote.com/download +License: Proprietary +LicenseUrl: https://evernote.com/legal/terms-of-service +Copyright: © 2019 - 2024 Evernote Corporation. All rights reserved. +CopyrightUrl: https://evernote.com/legal/trademark-use +ShortDescription: Remember everything and tackle any project with your notes, tasks, and schedule all in one place. +Description: Evernote helps you focus on what matters most and have access to your information when you need it. Input typed notes or scan handwritten notes. Add to-do’s, photos, images, web pages, or audio ... and it’s all instantly searchable. Organize notes any way you want and share with anyone. And Evernote syncs across your devices so your information is always with you, everywhere you go. +Moniker: evernote +Tags: +- calendar +- checklist +- collaborate +- collaboration +- list +- memo +- memorandum +- notes +- schedule +- task +- to-do +- todo +ReleaseNotes: |- + Fixes: + - Fixed a bug that caused the editor to be cut and horizontally scrollable, making notes content not fully visible. +PurchaseUrl: https://evernote.com/compare-plans +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evernote/Evernote/10.143.4/Evernote.Evernote.locale.zh-CN.yaml b/manifests/e/Evernote/Evernote/10.143.4/Evernote.Evernote.locale.zh-CN.yaml new file mode 100644 index 0000000000000..895d3261fc06f --- /dev/null +++ b/manifests/e/Evernote/Evernote/10.143.4/Evernote.Evernote.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: Evernote.Evernote +PackageVersion: 10.143.4 +PackageLocale: zh-CN +Publisher: Evernote Corporation +PublisherUrl: https://evernote.com/ +PublisherSupportUrl: https://help.evernote.com/ +PrivacyUrl: https://evernote.com/privacy/policy +Author: Evernote Corporation +PackageName: Evernote +PackageUrl: https://evernote.com/download +License: 专有软件 +LicenseUrl: https://evernote.com/legal/terms-of-service +Copyright: © 2019 - 2024 Evernote Corporation。保留所有权利。 +CopyrightUrl: https://evernote.com/legal/trademark-use +ShortDescription: 在一处记住所有内容,并通过笔记、任务和日程处理一切。 +Description: Evernote 可帮助您专注于最重要的事情,并在需要时获取信息。输入打字笔记或扫描手写笔记,添加待办事项、照片、图片、网页或音频……并且所有内容都可即时搜索。以任何方式组织笔记,并与任何人共享。Evernote 还能在您的设备间同步,让你的信息随时随地与你同在。 +Tags: +- 任务 +- 列表 +- 协作 +- 协同 +- 备忘 +- 备忘录 +- 待办 +- 待办事项 +- 提醒事项 +- 日历 +- 日程 +- 清单 +- 笔记 +PurchaseUrl: https://evernote.com/compare-plans +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evernote/Evernote/10.143.4/Evernote.Evernote.yaml b/manifests/e/Evernote/Evernote/10.143.4/Evernote.Evernote.yaml new file mode 100644 index 0000000000000..0dddd134674a5 --- /dev/null +++ b/manifests/e/Evernote/Evernote/10.143.4/Evernote.Evernote.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: Evernote.Evernote +PackageVersion: 10.143.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evernote/Evernote/10.144.3/Evernote.Evernote.installer.yaml b/manifests/e/Evernote/Evernote/10.144.3/Evernote.Evernote.installer.yaml new file mode 100644 index 0000000000000..b0a625da3a688 --- /dev/null +++ b/manifests/e/Evernote/Evernote/10.144.3/Evernote.Evernote.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: Evernote.Evernote +PackageVersion: 10.144.3 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- en +- evernote +FileExtensions: +- enex +ProductCode: e4251011-875e-51f3-a464-121adaff5aaa +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://win.desktop.evernote.com/builds/Evernote-10.144.3-win-ddl-stage-20250630161008-90ec367d7a3ef0f5da7b0f9103ea292c8238dbb9-setup.exe + InstallerSha256: 44588DAB15C037860DA18715025E995E3374E51C6BE4F8C99958815CEDF2A12B + InstallerSwitches: + Custom: /currentuser +- Architecture: x86 + Scope: machine + InstallerUrl: https://win.desktop.evernote.com/builds/Evernote-10.144.3-win-ddl-stage-20250630161008-90ec367d7a3ef0f5da7b0f9103ea292c8238dbb9-setup.exe + InstallerSha256: 44588DAB15C037860DA18715025E995E3374E51C6BE4F8C99958815CEDF2A12B + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +- Architecture: x64 + Scope: user + InstallerUrl: https://win.desktop.evernote.com/builds/Evernote-10.144.3-win-ddl-stage-20250630161008-90ec367d7a3ef0f5da7b0f9103ea292c8238dbb9-setup.exe + InstallerSha256: 44588DAB15C037860DA18715025E995E3374E51C6BE4F8C99958815CEDF2A12B + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://win.desktop.evernote.com/builds/Evernote-10.144.3-win-ddl-stage-20250630161008-90ec367d7a3ef0f5da7b0f9103ea292c8238dbb9-setup.exe + InstallerSha256: 44588DAB15C037860DA18715025E995E3374E51C6BE4F8C99958815CEDF2A12B + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evernote/Evernote/10.144.3/Evernote.Evernote.locale.en-US.yaml b/manifests/e/Evernote/Evernote/10.144.3/Evernote.Evernote.locale.en-US.yaml new file mode 100644 index 0000000000000..0f8e1f0a774c9 --- /dev/null +++ b/manifests/e/Evernote/Evernote/10.144.3/Evernote.Evernote.locale.en-US.yaml @@ -0,0 +1,48 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Evernote.Evernote +PackageVersion: 10.144.3 +PackageLocale: en-US +Publisher: Evernote Corporation +PublisherUrl: https://evernote.com/ +PublisherSupportUrl: https://help.evernote.com/ +PrivacyUrl: https://evernote.com/privacy/policy +Author: Evernote Corporation +PackageName: Evernote +PackageUrl: https://evernote.com/download +License: Proprietary +LicenseUrl: https://evernote.com/legal/terms-of-service +Copyright: © 2019 - 2024 Evernote Corporation. All rights reserved. +CopyrightUrl: https://evernote.com/legal/trademark-use +ShortDescription: Remember everything and tackle any project with your notes, tasks, and schedule all in one place. +Description: Evernote helps you focus on what matters most and have access to your information when you need it. Input typed notes or scan handwritten notes. Add to-do’s, photos, images, web pages, or audio ... and it’s all instantly searchable. Organize notes any way you want and share with anyone. And Evernote syncs across your devices so your information is always with you, everywhere you go. +Moniker: evernote +Tags: +- calendar +- checklist +- collaborate +- collaboration +- list +- memo +- memorandum +- notes +- schedule +- task +- to-do +- todo +ReleaseNotes: |- + New features: + - A major update to Search is being rolled out. It now opens front and center for better focus, offers smarter and more relevant suggestions as you type, and features a refreshed default view that highlights recent and recommended content, making it faster and easier to find what you need. + - You can now show or hide the note list using the button in the top-left corner of your note. Or use the shortcut CMD/CTRL + Alt + V to switch between views. + - Shared notes now show a "Shared with me" section in the breadcrumb at the top of the note. + + Fixes: + - Fixed an issue where the selected task priority wasn't properly highlighted and could not be removed + - Fixed an issue that prevented the app from scrolling to the correct result when the match was found in the note title + - Fixed an issue that affected typing inside text fields in Japanese and Korean + - Fixed an issue that occasionally caused sidebar preferences to reset unexpectedly + - Fixed an issue where clicking on a pinned note in a Space would incorrectly redirect users to the Home screen +PurchaseUrl: https://evernote.com/compare-plans +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evernote/Evernote/10.144.3/Evernote.Evernote.locale.zh-CN.yaml b/manifests/e/Evernote/Evernote/10.144.3/Evernote.Evernote.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4334254fff341 --- /dev/null +++ b/manifests/e/Evernote/Evernote/10.144.3/Evernote.Evernote.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: Evernote.Evernote +PackageVersion: 10.144.3 +PackageLocale: zh-CN +Publisher: Evernote Corporation +PublisherUrl: https://evernote.com/ +PublisherSupportUrl: https://help.evernote.com/ +PrivacyUrl: https://evernote.com/privacy/policy +Author: Evernote Corporation +PackageName: Evernote +PackageUrl: https://evernote.com/download +License: 专有软件 +LicenseUrl: https://evernote.com/legal/terms-of-service +Copyright: © 2019 - 2024 Evernote Corporation。保留所有权利。 +CopyrightUrl: https://evernote.com/legal/trademark-use +ShortDescription: 在一处记住所有内容,并通过笔记、任务和日程处理一切。 +Description: Evernote 可帮助您专注于最重要的事情,并在需要时获取信息。输入打字笔记或扫描手写笔记,添加待办事项、照片、图片、网页或音频……并且所有内容都可即时搜索。以任何方式组织笔记,并与任何人共享。Evernote 还能在您的设备间同步,让你的信息随时随地与你同在。 +Tags: +- 任务 +- 列表 +- 协作 +- 协同 +- 备忘 +- 备忘录 +- 待办 +- 待办事项 +- 提醒事项 +- 日历 +- 日程 +- 清单 +- 笔记 +PurchaseUrl: https://evernote.com/compare-plans +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evernote/Evernote/10.144.3/Evernote.Evernote.yaml b/manifests/e/Evernote/Evernote/10.144.3/Evernote.Evernote.yaml new file mode 100644 index 0000000000000..f2119c37abca1 --- /dev/null +++ b/manifests/e/Evernote/Evernote/10.144.3/Evernote.Evernote.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: Evernote.Evernote +PackageVersion: 10.144.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evernote/Evernote/CN/7.3.20/Evernote.Evernote.CN.installer.yaml b/manifests/e/Evernote/Evernote/CN/7.3.20/Evernote.Evernote.CN.installer.yaml new file mode 100644 index 0000000000000..46ec668e7edbf --- /dev/null +++ b/manifests/e/Evernote/Evernote/CN/7.3.20/Evernote.Evernote.CN.installer.yaml @@ -0,0 +1,64 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Evernote.Evernote.CN +PackageVersion: 7.3.20 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /quiet /norestart /hpnoreboot + SilentWithProgress: /qb /norestart /hpnoreboot + InstallLocation: APPLICATIONFOLDER="" + Log: /log "" + Custom: /suppressclient +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 +UpgradeBehavior: install +ProductCode: '{D6C8AE4C-5B27-11F0-9523-A02919234D82}' +AppsAndFeaturesEntries: +- ProductCode: '{D6C8AE4C-5B27-11F0-9523-A02919234D82}' + UpgradeCode: '{2A693264-27E0-4B77-97CC-EADA39E115BF}' + InstallerType: wix +Installers: +- Architecture: x86 + InstallerUrl: https://cdn-dl.yinxiang.com/YXWin6/public/Evernote_7.3.20.9094.exe + InstallerSha256: BF9BC538D0CFA4E6A826B20EDC5E2F39F828E7BB9B0C46514A8D5962B5904AF3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evernote/Evernote/CN/7.3.20/Evernote.Evernote.CN.locale.en-US.yaml b/manifests/e/Evernote/Evernote/CN/7.3.20/Evernote.Evernote.CN.locale.en-US.yaml new file mode 100644 index 0000000000000..5925e7b2dcc8c --- /dev/null +++ b/manifests/e/Evernote/Evernote/CN/7.3.20/Evernote.Evernote.CN.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Evernote.Evernote.CN +PackageVersion: 7.3.20 +PackageLocale: en-US +Publisher: Beijing Yinxiang Biji Technologies Co., Ltd. +PublisherUrl: https://www.yinxiang.com/ +PublisherSupportUrl: https://www.yinxiang.com/help/ +PrivacyUrl: https://www.yinxiang.com/legal-privacy/ +Author: Beijing Yinxiang Biji Technologies Co., Ltd. +PackageName: 印象笔记 +PackageUrl: https://www.yinxiang.com/dl-win/ +License: Proprietary +LicenseUrl: https://www.yinxiang.com/legal/tos/ +Copyright: Copyright 2024 Evernote China. All rights reserved. +CopyrightUrl: https://www.yinxiang.com/legal/trademark/ +ShortDescription: Get, organize and share notes anytime, anywhere, making inspiration always with you! +Description: Note with Evernotes like your second brain. Evernotes can help you work, study and live efficiently. It can sync across devices seamlessly, clip WeChat, Weibo, webpage and other contents quickly, and collect, backup, note, share and archive information in one-stop. +Moniker: yinxiang +Tags: +- calendar +- checklist +- collaborate +- collaboration +- list +- memo +- memorandum +- notes +- schedule +- task +- to-do +- todo +ReleaseNotes: |- + 【AI Assistant】 + - New AI PPT Generation Function Added + - Supports generating PPT based on note content + 【Experience and performance optimization】 + - Solved some known issues and enhanced product stability. +ReleaseNotesUrl: https://update.yinxiang.com/public/YXWin6/ReleaseNotes_7.3.20.9094_en-us.html +PurchaseUrl: https://www.yinxiang.com/pricing/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evernote/Evernote/CN/7.3.20/Evernote.Evernote.CN.locale.zh-CN.yaml b/manifests/e/Evernote/Evernote/CN/7.3.20/Evernote.Evernote.CN.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d0d04adfcbf77 --- /dev/null +++ b/manifests/e/Evernote/Evernote/CN/7.3.20/Evernote.Evernote.CN.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: Evernote.Evernote.CN +PackageVersion: 7.3.20 +PackageLocale: zh-CN +Publisher: Beijing Yinxiang Biji Technologies Co., Ltd. +PublisherUrl: https://www.yinxiang.com/ +PublisherSupportUrl: https://www.yinxiang.com/help/ +PrivacyUrl: https://www.yinxiang.com/legal-privacy/ +Author: 北京印象笔记科技有限公司 +PackageName: 印象笔记 +PackageUrl: https://www.yinxiang.com/dl-win/ +License: 专有软件 +LicenseUrl: https://www.yinxiang.com/legal/tos/ +Copyright: Copyright 2024 Evernote China. All rights reserved. +CopyrightUrl: https://www.yinxiang.com/legal/trademark/ +ShortDescription: 随时随地获取、整理、分享笔记,让灵感时刻与你同行 +Description: 作为你的第二大脑,记录就用印象笔记。印象笔记可以帮助你高效工作、学习与生活。支持无缝多端同步,快速保存微信、微博、网页等内容,一站式完成信息的收集备份、高效记录、分享和永久保存。 +Tags: +- 任务 +- 列表 +- 协作 +- 协同 +- 备忘 +- 备忘录 +- 待办 +- 待办事项 +- 提醒事项 +- 日历 +- 日程 +- 清单 +- 笔记 +ReleaseNotes: |- + 已拥有印象笔记帐户的用户,可直接登录帐户,您的帐户、笔记、数据和付款等任何信息均可同步到此 App,且不会发生变化 + 【AI 助理】 + - 新增生成 AI PPT 功能 + - 支持基于笔记内容生成 PPT + 【体验及性能优化】 + - 解决了部分已知问题并增强了产品稳定性 +ReleaseNotesUrl: https://update.yinxiang.com/public/YXWin6/ReleaseNotes_7.3.20.9094_zh-CN.html +PurchaseUrl: https://www.yinxiang.com/pricing/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evernote/Evernote/CN/7.3.20/Evernote.Evernote.CN.yaml b/manifests/e/Evernote/Evernote/CN/7.3.20/Evernote.Evernote.CN.yaml new file mode 100644 index 0000000000000..295490710c6d3 --- /dev/null +++ b/manifests/e/Evernote/Evernote/CN/7.3.20/Evernote.Evernote.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: Evernote.Evernote.CN +PackageVersion: 7.3.20 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evope/Evope/1.1.6.66/Evope.Evope.installer.yaml b/manifests/e/Evope/Evope/1.1.6.66/Evope.Evope.installer.yaml deleted file mode 100644 index 3ad6c17e9d6b2..0000000000000 --- a/manifests/e/Evope/Evope/1.1.6.66/Evope.Evope.installer.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/12 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Evope.Evope -PackageVersion: 1.1.6.66 -InstallerType: inno -Installers: -- Architecture: x64 - InstallerUrl: https://app.evope.com.br/evopesetup.exe - InstallerSha256: F5B6F28E43CB5D965785038CB612A61C29F123DFAC5802D90DB4CB3236763F45 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/e/Evope/Evope/1.1.6.66/Evope.Evope.locale.pt-BR.yaml b/manifests/e/Evope/Evope/1.1.6.66/Evope.Evope.locale.pt-BR.yaml deleted file mode 100644 index b4cb43cc1ebfc..0000000000000 --- a/manifests/e/Evope/Evope/1.1.6.66/Evope.Evope.locale.pt-BR.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/12 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Evope.Evope -PackageVersion: 1.1.6.66 -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.66/Evope.Evope.yaml b/manifests/e/Evope/Evope/1.1.6.66/Evope.Evope.yaml deleted file mode 100644 index 3868a203ddb22..0000000000000 --- a/manifests/e/Evope/Evope/1.1.6.66/Evope.Evope.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/12 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Evope.Evope -PackageVersion: 1.1.6.66 -DefaultLocale: pt-BR -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/e/Evope/Evope/1.1.6.77/Evope.Evope.installer.yaml b/manifests/e/Evope/Evope/1.1.6.77/Evope.Evope.installer.yaml new file mode 100644 index 0000000000000..b0de15b52ff3b --- /dev/null +++ b/manifests/e/Evope/Evope/1.1.6.77/Evope.Evope.installer.yaml @@ -0,0 +1,12 @@ +# Automatically updated by the winget bot at 2025/Jul/04 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Evope.Evope +PackageVersion: 1.1.6.77 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://app.evope.com.br/evopesetup.exe + InstallerSha256: 58C35D234FC5FAB4DC7B37B3F417D4996BE04E55AEF46B896248DF2A94C3485F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Evope/Evope/1.1.6.77/Evope.Evope.locale.pt-BR.yaml b/manifests/e/Evope/Evope/1.1.6.77/Evope.Evope.locale.pt-BR.yaml new file mode 100644 index 0000000000000..9e36306759c59 --- /dev/null +++ b/manifests/e/Evope/Evope/1.1.6.77/Evope.Evope.locale.pt-BR.yaml @@ -0,0 +1,13 @@ +# Automatically updated by the winget bot at 2025/Jul/04 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Evope.Evope +PackageVersion: 1.1.6.77 +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.77/Evope.Evope.yaml b/manifests/e/Evope/Evope/1.1.6.77/Evope.Evope.yaml new file mode 100644 index 0000000000000..57b92f80b073f --- /dev/null +++ b/manifests/e/Evope/Evope/1.1.6.77/Evope.Evope.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/04 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Evope.Evope +PackageVersion: 1.1.6.77 +DefaultLocale: pt-BR +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/Exoscale/CLI/1.85.2/Exoscale.CLI.installer.yaml b/manifests/e/Exoscale/CLI/1.85.2/Exoscale.CLI.installer.yaml new file mode 100644 index 0000000000000..00206b1d31747 --- /dev/null +++ b/manifests/e/Exoscale/CLI/1.85.2/Exoscale.CLI.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Exoscale.CLI +PackageVersion: 1.85.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: exo.exe +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/exoscale/cli/releases/download/v1.85.2/exoscale-cli_1.85.2_windows_amd64.zip + InstallerSha256: 0E173945F46D019702011C908B20758822B68C7D23A9BC91C1CEA4149281FDA4 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Exoscale/CLI/1.85.2/Exoscale.CLI.locale.en-US.yaml b/manifests/e/Exoscale/CLI/1.85.2/Exoscale.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..a2a8f57543979 --- /dev/null +++ b/manifests/e/Exoscale/CLI/1.85.2/Exoscale.CLI.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Exoscale.CLI +PackageVersion: 1.85.2 +PackageLocale: en-US +Publisher: Exoscale +PublisherUrl: https://www.exoscale.com/ +PublisherSupportUrl: https://www.exoscale.com/support/ +PrivacyUrl: https://www.exoscale.com/privacy/ +Author: Nunix +PackageName: Exoscale CLI +PackageUrl: https://github.com/exoscale/cli +License: Apache-2.0 +LicenseUrl: https://github.com/exoscale/cli/blob/HEAD/LICENSE +ShortDescription: The official command-line tool to access Exoscale services. +Description: exo is the official command-line tool to access Exoscale services. You can manage your infrastructure from a user-friendly command line, with all the benefits of a scriptable interface. +Moniker: exoscale +Tags: +- scoop-bucket +ReleaseNotes: See the CHANGELOG for details. +ReleaseNotesUrl: https://github.com/exoscale/cli/releases/tag/v1.85.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/Exoscale/CLI/1.85.2/Exoscale.CLI.yaml b/manifests/e/Exoscale/CLI/1.85.2/Exoscale.CLI.yaml new file mode 100644 index 0000000000000..d8078c0266932 --- /dev/null +++ b/manifests/e/Exoscale/CLI/1.85.2/Exoscale.CLI.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: Exoscale.CLI +PackageVersion: 1.85.2 +DefaultLocale: en-US +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.4/e2eSoft.iVCam.locale.en-US.yaml b/manifests/e/e2eSoft/iVCam/7.3.4/e2eSoft.iVCam.locale.en-US.yaml deleted file mode 100644 index 1e94d14c7a71f..0000000000000 --- a/manifests/e/e2eSoft/iVCam/7.3.4/e2eSoft.iVCam.locale.en-US.yaml +++ /dev/null @@ -1,31 +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.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 diff --git a/manifests/e/e2eSoft/iVCam/7.3.4/e2eSoft.iVCam.yaml b/manifests/e/e2eSoft/iVCam/7.3.4/e2eSoft.iVCam.yaml deleted file mode 100644 index 24450177b659a..0000000000000 --- a/manifests/e/e2eSoft/iVCam/7.3.4/e2eSoft.iVCam.yaml +++ /dev/null @@ -1,8 +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.version.1.9.0.schema.json - -PackageIdentifier: e2eSoft.iVCam -PackageVersion: 7.3.4 -DefaultLocale: en-US -ManifestType: version -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.7/e2eSoft.iVCam.locale.en-US.yaml b/manifests/e/e2eSoft/iVCam/7.3.7/e2eSoft.iVCam.locale.en-US.yaml new file mode 100644 index 0000000000000..7f7e2e00c652f --- /dev/null +++ b/manifests/e/e2eSoft/iVCam/7.3.7/e2eSoft.iVCam.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: 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/eMClient/eMClient/10.3.2545.0/eMClient.eMClient.installer.yaml b/manifests/e/eMClient/eMClient/10.3.2545.0/eMClient.eMClient.installer.yaml new file mode 100644 index 0000000000000..07ccb5f548121 --- /dev/null +++ b/manifests/e/eMClient/eMClient/10.3.2545.0/eMClient.eMClient.installer.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: eMClient.eMClient +PackageVersion: 10.3.2545.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{138138E2-C177-4BFD-AB7F-29537EE629BD}' +AppsAndFeaturesEntries: +- Publisher: eM Client s.r.o. + ProductCode: '{138138E2-C177-4BFD-AB7F-29537EE629BD}' + UpgradeCode: '{D8A1DC6C-8EDA-4135-8E82-6F4EEA116B2F}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\eM Client' +Installers: +- Architecture: x86 + InstallerUrl: https://cdn-dist.emclient.com/dist/v10.3.2545/setup.msi + InstallerSha256: 469DB9649675173B3051376DA0DE37CF8DF937064CC15D95FCDDD77C0B5BD45C +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/e/eMClient/eMClient/10.3.2545.0/eMClient.eMClient.locale.en-US.yaml b/manifests/e/eMClient/eMClient/10.3.2545.0/eMClient.eMClient.locale.en-US.yaml new file mode 100644 index 0000000000000..3a99ef97e4484 --- /dev/null +++ b/manifests/e/eMClient/eMClient/10.3.2545.0/eMClient.eMClient.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: eMClient.eMClient +PackageVersion: 10.3.2545.0 +PackageLocale: en-US +Publisher: eM Client Inc. +PublisherUrl: https://www.emclient.com/ +PublisherSupportUrl: https://www.emclient.com/support +PrivacyUrl: https://www.emclient.com/docs/em-client-privacy-policy.pdf +Author: eM Client s.r.o. +PackageName: eM Client +PackageUrl: https://www.emclient.com/ +License: Proprietary - Freemium +LicenseUrl: https://www.emclient.com/pricing +Copyright: Copyright (c) eM Client +CopyrightUrl: https://www.emclient.com/docs/em-client-terms-of-use.pdf +ShortDescription: Fast email client with full Gmail, Hotmail and other services synchronization. Best replacement for MS Outlook or Thunderbird. Free version for Home users. +Moniker: emclient +Tags: +- calendar +- contacts +- email +- email-client +- exchange +- imap +- mail +- outlook +- pgp +- pop +- rss +- smtp +- tasks +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/e/eMClient/eMClient/10.3.2545.0/eMClient.eMClient.yaml b/manifests/e/eMClient/eMClient/10.3.2545.0/eMClient.eMClient.yaml new file mode 100644 index 0000000000000..50889f5dfb6c0 --- /dev/null +++ b/manifests/e/eMClient/eMClient/10.3.2545.0/eMClient.eMClient.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: eMClient.eMClient +PackageVersion: 10.3.2545.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/e/eask/cli/0.11.7/eask.cli.installer.yaml b/manifests/e/eask/cli/0.11.7/eask.cli.installer.yaml new file mode 100644 index 0000000000000..58c9b737505c8 --- /dev/null +++ b/manifests/e/eask/cli/0.11.7/eask.cli.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: eask.cli +PackageVersion: 0.11.7 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: eask.exe +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/emacs-eask/cli/releases/download/0.11.7/eask_0.11.7_win-x64.zip + InstallerSha256: 5C6AE72A1D6828197D5A136FE5D6822889C2D0D875845AB113C47B7F821AC1B5 +- Architecture: arm64 + InstallerUrl: https://github.com/emacs-eask/cli/releases/download/0.11.7/eask_0.11.7_win-arm64.zip + InstallerSha256: 2F4AE423EADA70614FE4F54CA7316CF2170215E998C767A449604138329D849C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/eask/cli/0.11.7/eask.cli.locale.en-US.yaml b/manifests/e/eask/cli/0.11.7/eask.cli.locale.en-US.yaml new file mode 100644 index 0000000000000..870dc40158b36 --- /dev/null +++ b/manifests/e/eask/cli/0.11.7/eask.cli.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: eask.cli +PackageVersion: 0.11.7 +PackageLocale: en-US +Publisher: The Eask Authors +PublisherUrl: https://emacs-eask.github.io/ +PublisherSupportUrl: https://github.com/emacs-eask/cli/issues +Author: The Eask Authors +PackageName: eask-cli +PackageUrl: https://emacs-eask.github.io/ +License: GPL-3.0 +LicenseUrl: https://emacs-eask.github.io/License/ +Copyright: Copyright 2024 The Eask Authors. +ShortDescription: CLI for building, running, testing, and managing your Emacs Lisp dependencies +Description: Eask was built to use as a package development tool in your Elisp packages. But +Tags: +- elisp-emacs +ReleaseNotes: |- + - fix(install): Package installed calculation (a479d53) + - fix(install-file): Get correct install package name (#318) + - feat: Add :try for depends-on DSL (#319) + - fix: Warning missing lexical-binding cookie in Eask-file (#320) + - fix(extern): Avoid patching compat functions (524c02d) + - feat(_prepare.el): Respect global/system-wide packages (e0732f2) + - fix(lisp/extern): Clean up compat (2b41f5d) + - fix(lisp): Paint keywords with nested ansi codes (#323) + - feat(create): Add new command for el-project (#325) + - feat(lint): Add command for org-lint (#328) + - fix: Avoid using white color for light theme (8acdc65) +ReleaseNotesUrl: https://github.com/emacs-eask/cli/releases/tag/0.11.7 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/eask/cli/0.11.7/eask.cli.yaml b/manifests/e/eask/cli/0.11.7/eask.cli.yaml new file mode 100644 index 0000000000000..7544aa3a86e34 --- /dev/null +++ b/manifests/e/eask/cli/0.11.7/eask.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: eask.cli +PackageVersion: 0.11.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.10/eat-pray-ai.yutu.installer.yaml b/manifests/e/eat-pray-ai/yutu/0.9.10/eat-pray-ai.yutu.installer.yaml new file mode 100644 index 0000000000000..1f0f7b329daf8 --- /dev/null +++ b/manifests/e/eat-pray-ai/yutu/0.9.10/eat-pray-ai.yutu.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: eat-pray-ai.yutu +PackageVersion: 0.9.10 +InstallerType: portable +InstallModes: +- silentWithProgress +UpgradeBehavior: install +Commands: +- yutu +ReleaseDate: 2025-07-05 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/eat-pray-ai/yutu/releases/download/v0.9.10/yutu-windows-amd64.exe + InstallerSha256: 20C3384DB01D471A2264BEAEDEE41BD5D21BBAAEB65CAAF9E825933488F13537 +- Architecture: arm64 + InstallerUrl: https://github.com/eat-pray-ai/yutu/releases/download/v0.9.10/yutu-windows-arm64.exe + InstallerSha256: 24C70399317866490A9BF6A23904E2621D125F2592E17EB33F31FC82497D2C49 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.10/eat-pray-ai.yutu.locale.en-US.yaml b/manifests/e/eat-pray-ai/yutu/0.9.10/eat-pray-ai.yutu.locale.en-US.yaml new file mode 100644 index 0000000000000..ccfb7ab188794 --- /dev/null +++ b/manifests/e/eat-pray-ai/yutu/0.9.10/eat-pray-ai.yutu.locale.en-US.yaml @@ -0,0 +1,42 @@ +# 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: eat-pray-ai.yutu +PackageVersion: 0.9.10 +PackageLocale: en-US +Publisher: eat-pray-ai +PublisherUrl: https://github.com/eat-pray-ai +PublisherSupportUrl: https://github.com/eat-pray-ai/yutu/issues +Author: Chaoqun +PackageName: yutu +PackageUrl: https://github.com/eat-pray-ai/yutu +License: MIT +LicenseUrl: https://github.com/eat-pray-ai/yutu/blob/HEAD/LICENSE +Copyright: Copyright (c) [eat-pray-ai & Chaoqun] +CopyrightUrl: https://raw.githubusercontent.com/eat-pray-ai/yutu/main/LICENSE +ShortDescription: yutu is a fully functional CLI for YouTube +Description: yutu is a fully functional CLI for YouTube, which can be used to manupulate YouTube videos, playlists, channels, etc. +Moniker: yutu +Tags: +- automation +- cli +- youtube +ReleaseNotes: |- + Changelog + Features + - 78f50cd: 🚸 Use table as default output (@OpenWaygate) + - 4292aeb: ♻️ Extract output usage (@OpenWaygate) + - dacc321: ✨ Allow jsonpath when print json or yaml (@OpenWaygate) + - f859570: ✨ Add jsonpath flag (@OpenWaygate) + - bace73c: ♻️ Extract command runner (@OpenWaygate) + - 0c88ed9: 💥 Support mcp server (@OpenWaygate) + - 774446b: 🚸 Set enum options (@OpenWaygate) + - 5d92e0b: ♻️ Extract common usages and add enum options (@OpenWaygate) + Bug Fixes and Tests + - 3e61ad2: ✏️ Format cp tool name (@OpenWaygate) + - 5a16174: 🐛 Remedy auth with cred (@OpenWaygate) + Documentation + - a074d55: 📝 Update readme about mcp (@OpenWaygate) +ReleaseNotesUrl: https://github.com/eat-pray-ai/yutu/releases/tag/v0.9.10 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.10/eat-pray-ai.yutu.yaml b/manifests/e/eat-pray-ai/yutu/0.9.10/eat-pray-ai.yutu.yaml new file mode 100644 index 0000000000000..2ccab890e4aa0 --- /dev/null +++ b/manifests/e/eat-pray-ai/yutu/0.9.10/eat-pray-ai.yutu.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: eat-pray-ai.yutu +PackageVersion: 0.9.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.5/eat-pray-ai.yutu.installer.yaml b/manifests/e/eat-pray-ai/yutu/0.9.5/eat-pray-ai.yutu.installer.yaml deleted file mode 100644 index 67724883ed349..0000000000000 --- a/manifests/e/eat-pray-ai/yutu/0.9.5/eat-pray-ai.yutu.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with WinGet Releaser using komac v2.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: eat-pray-ai.yutu -PackageVersion: 0.9.5 -InstallerType: portable -InstallModes: -- silentWithProgress -UpgradeBehavior: install -Commands: -- yutu -ReleaseDate: 2024-07-29 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/eat-pray-ai/yutu/releases/download/v0.9.5/yutu-windows-amd64.exe - InstallerSha256: D6D33DCEFBA1A2EFF665628CAAE08B3FAFBFE42C6AE9DDDAA142FF923A2E389F -- Architecture: arm64 - InstallerUrl: https://github.com/eat-pray-ai/yutu/releases/download/v0.9.5/yutu-windows-arm64.exe - InstallerSha256: C6AE5B9D72829473CAD3FDFE791B86AF6896565A64586236D96FF5DCECDB078A -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.5/eat-pray-ai.yutu.locale.en-US.yaml b/manifests/e/eat-pray-ai/yutu/0.9.5/eat-pray-ai.yutu.locale.en-US.yaml deleted file mode 100644 index 34bffa6d25b69..0000000000000 --- a/manifests/e/eat-pray-ai/yutu/0.9.5/eat-pray-ai.yutu.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with WinGet Releaser using komac v2.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: eat-pray-ai.yutu -PackageVersion: 0.9.5 -PackageLocale: en-US -Publisher: eat-pray-ai -PublisherUrl: https://github.com/eat-pray-ai -PublisherSupportUrl: https://github.com/eat-pray-ai/yutu/issues -Author: Chaoqun -PackageName: yutu -PackageUrl: https://github.com/eat-pray-ai/yutu -License: MIT -LicenseUrl: https://github.com/eat-pray-ai/yutu/blob/HEAD/LICENSE -Copyright: Copyright (c) [eat-pray-ai & Chaoqun] -CopyrightUrl: https://raw.githubusercontent.com/eat-pray-ai/yutu/main/LICENSE -ShortDescription: yutu is a fully functional CLI for YouTube -Description: yutu is a fully functional CLI for YouTube, which can be used to manupulate YouTube videos, playlists, channels, etc. -Moniker: yutu -Tags: -- automation -- cli -- youtube -ReleaseNotesUrl: https://github.com/eat-pray-ai/yutu/releases/tag/v0.9.5 -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.5/eat-pray-ai.yutu.yaml b/manifests/e/eat-pray-ai/yutu/0.9.5/eat-pray-ai.yutu.yaml deleted file mode 100644 index d6734d10bea5a..0000000000000 --- a/manifests/e/eat-pray-ai/yutu/0.9.5/eat-pray-ai.yutu.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: eat-pray-ai.yutu -PackageVersion: 0.9.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.6/eat-pray-ai.yutu.installer.yaml b/manifests/e/eat-pray-ai/yutu/0.9.6/eat-pray-ai.yutu.installer.yaml deleted file mode 100644 index 771d83a8f3cf8..0000000000000 --- a/manifests/e/eat-pray-ai/yutu/0.9.6/eat-pray-ai.yutu.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with WinGet Releaser using komac v2.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: eat-pray-ai.yutu -PackageVersion: 0.9.6 -InstallerType: portable -InstallModes: -- silentWithProgress -UpgradeBehavior: install -Commands: -- yutu -ReleaseDate: 2024-08-04 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/eat-pray-ai/yutu/releases/download/v0.9.6/yutu-windows-amd64.exe - InstallerSha256: 74252B474439BEA491D05449F7A7C9200238763A476E8B74D336462825A35130 -- Architecture: arm64 - InstallerUrl: https://github.com/eat-pray-ai/yutu/releases/download/v0.9.6/yutu-windows-arm64.exe - InstallerSha256: 2BAE13A05A670B03BEDD54E52BF0504F16B7A4F27D0818FA7CA8D7B2991A235D -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.6/eat-pray-ai.yutu.locale.en-US.yaml b/manifests/e/eat-pray-ai/yutu/0.9.6/eat-pray-ai.yutu.locale.en-US.yaml deleted file mode 100644 index a7a068cc7e5e4..0000000000000 --- a/manifests/e/eat-pray-ai/yutu/0.9.6/eat-pray-ai.yutu.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with WinGet Releaser using komac v2.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: eat-pray-ai.yutu -PackageVersion: 0.9.6 -PackageLocale: en-US -Publisher: eat-pray-ai -PublisherUrl: https://github.com/eat-pray-ai -PublisherSupportUrl: https://github.com/eat-pray-ai/yutu/issues -Author: Chaoqun -PackageName: yutu -PackageUrl: https://github.com/eat-pray-ai/yutu -License: MIT -LicenseUrl: https://github.com/eat-pray-ai/yutu/blob/HEAD/LICENSE -Copyright: Copyright (c) [eat-pray-ai & Chaoqun] -CopyrightUrl: https://raw.githubusercontent.com/eat-pray-ai/yutu/main/LICENSE -ShortDescription: yutu is a fully functional CLI for YouTube -Description: yutu is a fully functional CLI for YouTube, which can be used to manupulate YouTube videos, playlists, channels, etc. -Moniker: yutu -Tags: -- automation -- cli -- youtube -ReleaseNotesUrl: https://github.com/eat-pray-ai/yutu/releases/tag/v0.9.6 -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.6/eat-pray-ai.yutu.yaml b/manifests/e/eat-pray-ai/yutu/0.9.6/eat-pray-ai.yutu.yaml deleted file mode 100644 index bf695873ccb08..0000000000000 --- a/manifests/e/eat-pray-ai/yutu/0.9.6/eat-pray-ai.yutu.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: eat-pray-ai.yutu -PackageVersion: 0.9.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.7/eat-pray-ai.yutu.installer.yaml b/manifests/e/eat-pray-ai/yutu/0.9.7/eat-pray-ai.yutu.installer.yaml deleted file mode 100644 index 85664fbd9f645..0000000000000 --- a/manifests/e/eat-pray-ai/yutu/0.9.7/eat-pray-ai.yutu.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with WinGet Releaser using komac v2.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: eat-pray-ai.yutu -PackageVersion: 0.9.7 -InstallerType: portable -InstallModes: -- silentWithProgress -UpgradeBehavior: install -Commands: -- yutu -ReleaseDate: 2024-09-18 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/eat-pray-ai/yutu/releases/download/v0.9.7/yutu-windows-amd64.exe - InstallerSha256: 2C5332BA5E86438D509927B5466D99453CDEB2354CAB630EA8F518ACED3A3181 -- Architecture: arm64 - InstallerUrl: https://github.com/eat-pray-ai/yutu/releases/download/v0.9.7/yutu-windows-arm64.exe - InstallerSha256: 7DE7670CE4B6203A5F81CDB2185B033392114D2F909B5DE3EAD0893956715867 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.7/eat-pray-ai.yutu.locale.en-US.yaml b/manifests/e/eat-pray-ai/yutu/0.9.7/eat-pray-ai.yutu.locale.en-US.yaml deleted file mode 100644 index 1e9a2de410856..0000000000000 --- a/manifests/e/eat-pray-ai/yutu/0.9.7/eat-pray-ai.yutu.locale.en-US.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with WinGet Releaser using komac v2.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: eat-pray-ai.yutu -PackageVersion: 0.9.7 -PackageLocale: en-US -Publisher: eat-pray-ai -PublisherUrl: https://github.com/eat-pray-ai -PublisherSupportUrl: https://github.com/eat-pray-ai/yutu/issues -Author: Chaoqun -PackageName: yutu -PackageUrl: https://github.com/eat-pray-ai/yutu -License: MIT -LicenseUrl: https://github.com/eat-pray-ai/yutu/blob/HEAD/LICENSE -Copyright: Copyright (c) [eat-pray-ai & Chaoqun] -CopyrightUrl: https://raw.githubusercontent.com/eat-pray-ai/yutu/main/LICENSE -ShortDescription: yutu is a fully functional CLI for YouTube -Description: yutu is a fully functional CLI for YouTube, which can be used to manupulate YouTube videos, playlists, channels, etc. -Moniker: yutu -Tags: -- automation -- cli -- youtube -ReleaseNotes: |- - Changelog - Features - - ✨ Add super chat event service (@OpenWaygate) - - ✨ Support list super chat event (@OpenWaygate) - Documentation - - 📝 Update implemented features (@OpenWaygate) - Others - - ⬆️ Bump golang.org/x/oauth2 from 0.21.0 to 0.22.0 (@dependabot[bot]) - - ♻️ Simplify directory hierarchy (@OpenWaygate) - - ⬆️ Bump google.golang.org/api from 0.190.0 to 0.191.0 (@dependabot[bot]) - - ⬆️ Bump github.com/savioxavier/termlink from 1.3.0 to 1.4.0 (@dependabot[bot]) - - ⬆️ Upgrade go and go deps (@OpenWaygate) - - 🚸 Aligh shorthand (@OpenWaygate) - - ⬆️ Bump github.com/savioxavier/termlink from 1.4.0 to 1.4.1 (@dependabot[bot]) - - ⬆️ Bump google.golang.org/api from 0.192.0 to 0.194.0 (@dependabot[bot]) - - ⬆️ Upgrade go deps (@OpenWaygate) - - 💬 Align help text (@OpenWaygate) - - 👷 Improve ci script (@OpenWaygate) - - 💄 Generate icon and version info (@OpenWaygate) - - 👷 Init goreleaser config (@OpenWaygate) - - ⬆️ Upgrade go deps (@OpenWaygate) - - 👷 Use goreleaser (@OpenWaygate) - - 💚 Add missing winres config (@OpenWaygate) - - 💚 Make worktree clean when build (@OpenWaygate) - - 💚 Update action permission (@OpenWaygate) -ReleaseNotesUrl: https://github.com/eat-pray-ai/yutu/releases/tag/v0.9.7 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.7/eat-pray-ai.yutu.locale.zh-CN.yaml b/manifests/e/eat-pray-ai/yutu/0.9.7/eat-pray-ai.yutu.locale.zh-CN.yaml deleted file mode 100644 index 1150b008d63ed..0000000000000 --- a/manifests/e/eat-pray-ai/yutu/0.9.7/eat-pray-ai.yutu.locale.zh-CN.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with WinGet Releaser using komac v2.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json - -PackageIdentifier: eat-pray-ai.yutu -PackageVersion: 0.9.7 -PackageLocale: zh-CN -Publisher: eat-pray-ai -PublisherUrl: https://github.com/eat-pray-ai -PublisherSupportUrl: https://github.com/eat-pray-ai/yutu/issues -Author: Chaoqun -PackageName: yutu -PackageUrl: https://github.com/eat-pray-ai/yutu -License: MIT -LicenseUrl: https://github.com/eat-pray-ai/yutu/blob/HEAD/LICENSE -Copyright: Copyright (c) [eat-pray-ai & Chaoqun] -CopyrightUrl: https://raw.githubusercontent.com/eat-pray-ai/yutu/main/LICENSE -ShortDescription: yutu 是一款功能齐全的 YouTube CLI -Description: yutu 是一款功能齐全的 YouTube CLI,可用于管理 YouTube 视频、播放列表、频道等。 -# Moniker: yutu -Tags: -- 自动化 -- cli -- youtube -ReleaseNotes: |- - Changelog - Features - - ✨ Add super chat event service (@OpenWaygate) - - ✨ Support list super chat event (@OpenWaygate) - Documentation - - 📝 Update implemented features (@OpenWaygate) - Others - - ⬆️ Bump golang.org/x/oauth2 from 0.21.0 to 0.22.0 (@dependabot[bot]) - - ♻️ Simplify directory hierarchy (@OpenWaygate) - - ⬆️ Bump google.golang.org/api from 0.190.0 to 0.191.0 (@dependabot[bot]) - - ⬆️ Bump github.com/savioxavier/termlink from 1.3.0 to 1.4.0 (@dependabot[bot]) - - ⬆️ Upgrade go and go deps (@OpenWaygate) - - 🚸 Aligh shorthand (@OpenWaygate) - - ⬆️ Bump github.com/savioxavier/termlink from 1.4.0 to 1.4.1 (@dependabot[bot]) - - ⬆️ Bump google.golang.org/api from 0.192.0 to 0.194.0 (@dependabot[bot]) - - ⬆️ Upgrade go deps (@OpenWaygate) - - 💬 Align help text (@OpenWaygate) - - 👷 Improve ci script (@OpenWaygate) - - 💄 Generate icon and version info (@OpenWaygate) - - 👷 Init goreleaser config (@OpenWaygate) - - ⬆️ Upgrade go deps (@OpenWaygate) - - 👷 Use goreleaser (@OpenWaygate) - - 💚 Add missing winres config (@OpenWaygate) - - 💚 Make worktree clean when build (@OpenWaygate) - - 💚 Update action permission (@OpenWaygate) -ReleaseNotesUrl: https://github.com/eat-pray-ai/yutu/releases/tag/v0.9.7 -ManifestType: locale -ManifestVersion: 1.9.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.7/eat-pray-ai.yutu.yaml b/manifests/e/eat-pray-ai/yutu/0.9.7/eat-pray-ai.yutu.yaml deleted file mode 100644 index 9e17cddc72efd..0000000000000 --- a/manifests/e/eat-pray-ai/yutu/0.9.7/eat-pray-ai.yutu.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: eat-pray-ai.yutu -PackageVersion: 0.9.7 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.9/eat-pray-ai.yutu.installer.yaml b/manifests/e/eat-pray-ai/yutu/0.9.9/eat-pray-ai.yutu.installer.yaml new file mode 100644 index 0000000000000..11b899d4f8368 --- /dev/null +++ b/manifests/e/eat-pray-ai/yutu/0.9.9/eat-pray-ai.yutu.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: eat-pray-ai.yutu +PackageVersion: 0.9.9 +InstallerType: portable +InstallModes: +- silentWithProgress +UpgradeBehavior: install +Commands: +- yutu +ReleaseDate: 2025-06-28 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/eat-pray-ai/yutu/releases/download/v0.9.9/yutu-windows-amd64.exe + InstallerSha256: 363C0484217F2744F1CF2FB8209C499AC3E92F4F09303CF2CF459506CAAC4F09 +- Architecture: arm64 + InstallerUrl: https://github.com/eat-pray-ai/yutu/releases/download/v0.9.9/yutu-windows-arm64.exe + InstallerSha256: C6F723319E62826103723E27573059405212D8EC19A77EAF4E16444CBC6DC1DD +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.9/eat-pray-ai.yutu.locale.en-US.yaml b/manifests/e/eat-pray-ai/yutu/0.9.9/eat-pray-ai.yutu.locale.en-US.yaml new file mode 100644 index 0000000000000..77339e4a43fe5 --- /dev/null +++ b/manifests/e/eat-pray-ai/yutu/0.9.9/eat-pray-ai.yutu.locale.en-US.yaml @@ -0,0 +1,70 @@ +# 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: eat-pray-ai.yutu +PackageVersion: 0.9.9 +PackageLocale: en-US +Publisher: eat-pray-ai +PublisherUrl: https://github.com/eat-pray-ai +PublisherSupportUrl: https://github.com/eat-pray-ai/yutu/issues +Author: Chaoqun +PackageName: yutu +PackageUrl: https://github.com/eat-pray-ai/yutu +License: MIT +LicenseUrl: https://github.com/eat-pray-ai/yutu/blob/HEAD/LICENSE +Copyright: Copyright (c) [eat-pray-ai & Chaoqun] +CopyrightUrl: https://raw.githubusercontent.com/eat-pray-ai/yutu/main/LICENSE +ShortDescription: yutu is a fully functional CLI for YouTube +Description: yutu is a fully functional CLI for YouTube, which can be used to manupulate YouTube videos, playlists, channels, etc. +Moniker: yutu +Tags: +- automation +- cli +- youtube +ReleaseNotes: |- + Changelog + Features + - 9240653: ✨ Add playlistImage service (@OpenWaygate) + - a729d05: ✨ Support list playlist image (@OpenWaygate) + - 806985f: ♻️ Auth support more format (@OpenWaygate) + - 6b67d3a: 💥 Introduce mcp in activity (@OpenWaygate) + - 0264b55: ♻️ Refactor bool as pointer (@OpenWaygate) + - 2543222: ♻️ Refactor flag usage for mcp (@OpenWaygate) + - b909ab5: ✨ Support multiple targets (@OpenWaygate) + - cb7594c: ✨ Support multiple targets (@OpenWaygate) + - 3dc2bbc: ✨ Finish playlist image (@OpenWaygate) + - 399ae25: 🚸 Improve required flags (@OpenWaygate) + - 1cf9583: ♻️ Refactor flag usage and mcp logging (@OpenWaygate) + - ad4a29d: ✨ Specify annotations in mcp tool (@OpenWaygate) + - ff631cd: 🚸 Table format output (@OpenWaygate) + Bug Fixes and Tests + - 861ef69: 🐛 Fix auth using docker image (@OpenWaygate) + - 46f2fb1: ✅ Add test for playlist image service (@OpenWaygate) + - 379e9f3: ✅ Fix tests for bool pointer (@OpenWaygate) + - 5084c0f: ✅ Remedy tests for ids (@OpenWaygate) + - 871d405: ✅ Remedy tests for ids (@OpenWaygate) + - 675eaf4: 🐛 Add missing channel id in channel banner (@OpenWaygate) + - 2b94637: ✅ Add command tests for playlist image (@OpenWaygate) + - 118e8a3: 🐛 Remedy ResetBool not work (@OpenWaygate) + - e526ca6: ✅ Add tests for utils (@OpenWaygate) + Documentation + - 376c88d: 📝 Update usage about docker (@OpenWaygate) + - 7f66973: 📝 Brew available (@OpenWaygate) + - 3bbf6c1: 📝 Add new badges and features (@OpenWaygate) + CI/CD + - 147102e: 👷 Add annotations into docker image (@OpenWaygate) + - a9cc86f: 👷 Support build with bazel! (@OpenWaygate) + - ef5a644: 👷 Config bazel cross-compile (@OpenWaygate) + - ec9a491: 👷 Config x_defs in bazel (@OpenWaygate) + - af14265: 👷 Config nogo and fix detected errors (@OpenWaygate) + Others + - 87569ee: 💬 Improve long help message (@OpenWaygate) + - e7a99a9: ➕ Add and upgrade go deps (@OpenWaygate) + - 8b4acf4: 🧑‍💻 Improve error handle (@OpenWaygate) + - af001bc: 🔨 Update test and bazel scripts (@OpenWaygate) + - 50fd850: 🥅 Improve err handling in caption (@OpenWaygate) + - 575e4a9: 🥅 Improve err handling (@OpenWaygate) + - ad22b2a: 💬 Align output format (@OpenWaygate) +ReleaseNotesUrl: https://github.com/eat-pray-ai/yutu/releases/tag/v0.9.9 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/eat-pray-ai/yutu/0.9.9/eat-pray-ai.yutu.yaml b/manifests/e/eat-pray-ai/yutu/0.9.9/eat-pray-ai.yutu.yaml new file mode 100644 index 0000000000000..6a013de138992 --- /dev/null +++ b/manifests/e/eat-pray-ai/yutu/0.9.9/eat-pray-ai.yutu.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: eat-pray-ai.yutu +PackageVersion: 0.9.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/ebkr/r2modman/3.2.1/ebkr.r2modman.installer.yaml b/manifests/e/ebkr/r2modman/3.2.1/ebkr.r2modman.installer.yaml new file mode 100644 index 0000000000000..2b66c7caf57b1 --- /dev/null +++ b/manifests/e/ebkr/r2modman/3.2.1/ebkr.r2modman.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: ebkr.r2modman +PackageVersion: 3.2.1 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- ror2mm +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/ebkr/r2modmanPlus/releases/download/v3.2.1/r2modman-Setup-3.2.1.exe + InstallerSha256: A3D0EA235D35C41B89F14AC40EB945B9FE1B3BF6B901A872CD59CF930A1D2C2E + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/ebkr/r2modmanPlus/releases/download/v3.2.1/r2modman-Setup-3.2.1.exe + InstallerSha256: A3D0EA235D35C41B89F14AC40EB945B9FE1B3BF6B901A872CD59CF930A1D2C2E + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/ebkr/r2modman/3.2.1/ebkr.r2modman.locale.en-US.yaml b/manifests/e/ebkr/r2modman/3.2.1/ebkr.r2modman.locale.en-US.yaml new file mode 100644 index 0000000000000..3fe4a91a40603 --- /dev/null +++ b/manifests/e/ebkr/r2modman/3.2.1/ebkr.r2modman.locale.en-US.yaml @@ -0,0 +1,89 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ebkr.r2modman +PackageVersion: 3.2.1 +PackageLocale: en-US +Publisher: ebkr +PublisherUrl: https://github.com/ebkr +PublisherSupportUrl: https://github.com/ebkr/r2modmanPlus/issues +Author: Cade Ayres +PackageName: r2modman +PackageUrl: https://github.com/ebkr/r2modmanPlus +License: MIT +LicenseUrl: https://github.com/ebkr/r2modmanPlus/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Cade Ayres +ShortDescription: A simple and easy to use mod manager for several games using Thunderstore. +Description: A simple and easy to use mod manager for several games using Thunderstore. A mod manager is an application to make it easier to control which mods you have installed. +Tags: +- bepinex +- mod +- mod-manager +- mods +- unity +ReleaseNotes: |- + What's Changed + - Auto-close ProfileManagementModal on file export by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1752 + - DownloadMixin to Composable by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1757 + - ProfilesMixin to Composable by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1758 + - Ported CategoryFilterModal to Composition API by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1766 + - Ported ErrorModal to Composition API by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1767 + - Ported CategorySelectorModal to Composition API by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1768 + - Ported GameRunningModal to Composition API by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1769 + - Convert imports to relative by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1771 + - Add Painting VR and update Monster Train 2 from demo to full release by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1773 + - Fix Painting VR install dir by @anttimaki in https://github.com/ebkr/r2modmanPlus/pull/1774 + - Composition API: Profile Modals by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1772 + - Composition API: Settings Components by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1775 + - Ported AssociatedModsModal to Composition API by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1779 + - Ported DisableModModal to Composition API by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1777 + - Ported SearchAndSort to Composition API by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1778 + - Ported LocalModCard to Composition API by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1781 + - Ported DownloadModModal to Composition API by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1776 + - Ported UninstallModModal to Composition API by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1784 + - Drop Dexie mocking from DependencyUtils tests by @anttimaki in https://github.com/ebkr/r2modmanPlus/pull/1786 + - Add a new game: "DEPO : Death Epileptic Pixel Origins" and update assets by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1788 + - Generic downloader by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1735 + - Dependency list unit tests by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1739 + - Add new game: 9 Kings by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1794 + - Round (floor) the percentage generated by generateProgressPercentage by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1792 + - Undo accidental reverts by @anttimaki in https://github.com/ebkr/r2modmanPlus/pull/1795 + - Fix profile import by @anttimaki in https://github.com/ebkr/r2modmanPlus/pull/1797 + - Feature/vue27/config editor by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1796 + - Feature/vue27/navigation components by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1800 + - Fix generateProgressPercentage by hard returning 100 by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1803 + - Composition API: Mod Lists Components by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1804 + - Ported Manager.vue to Composition API by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1801 + - Ported Splash and Mixin to Composition API + Composable by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1791 + - Feature/vue27/card components by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1806 + - Add 2 new games: "Guilty as Sock!" and "Return of the Obra Dinn" by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1799 + - Add a retry functionality to DownloadMonitor's failed downloads by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1798 + - Feature/vue27/views by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1807 + - Corrected IDs to remove type error by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1810 + - Allow retrying failed downloads from ErrorModal by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1802 + - Add missing required prop by @anttimaki in https://github.com/ebkr/r2modmanPlus/pull/1812 + - Ported App.vue to Composition API by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1793 + - Feature/vue27/input components by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1809 + - Feature/vue27/remaining components by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1811 + - Stop cfg editing showing QuillEditor by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1814 + - Add a new game: PIGFACE Demo by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1818 + - Add PEAK by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1819 + - Fix update all modal not opening by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1820 + - Thunderstore ecosystem integration by @anttimaki in https://github.com/ebkr/r2modmanPlus/pull/1724 + - Refactor and fix unit tests for InstallRuleInstaller by @anttimaki in https://github.com/ebkr/r2modmanPlus/pull/1744 + - Remove InstallRule definition files by @anttimaki in https://github.com/ebkr/r2modmanPlus/pull/1745 + - Merge InstallationRuleApplicator to InstallationRules by @anttimaki in https://github.com/ebkr/r2modmanPlus/pull/1746 + - Use enums provided Thunderstore ecosystem by @anttimaki in https://github.com/ebkr/r2modmanPlus/pull/1821 + - Dropped vue class component and decorator dependencies by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1815 + - Update Thunderstore ecosystem schema and data by @anttimaki in https://github.com/ebkr/r2modmanPlus/pull/1828 + - Prevent unhandled errors from happening when log file doesn't exist by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1830 + - Display correct information when there are no mods to update and the … by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1829 + - Add a background color to the buttons' sticky toolbar on DownloadMonitor by @VilppeRiskidev in https://github.com/ebkr/r2modmanPlus/pull/1832 + - Release 3.2.1 by @ebkr in https://github.com/ebkr/r2modmanPlus/pull/1835 + Full Changelog: https://github.com/ebkr/r2modmanPlus/compare/v3.2.0...v3.2.1 +ReleaseNotesUrl: https://github.com/ebkr/r2modmanPlus/releases/tag/v3.2.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ebkr/r2modmanPlus/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/ebkr/r2modman/3.2.1/ebkr.r2modman.locale.zh-CN.yaml b/manifests/e/ebkr/r2modman/3.2.1/ebkr.r2modman.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4ebc5ffeac519 --- /dev/null +++ b/manifests/e/ebkr/r2modman/3.2.1/ebkr.r2modman.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: ebkr.r2modman +PackageVersion: 3.2.1 +PackageLocale: zh-CN +Publisher: ebkr +PackageName: r2modman +ShortDescription: 一款简单易用的 mod 管理器,适用于多款使用 Thunderstore 的游戏。 +Description: 一款简单易用的 mod 管理器,适用于多款使用 Thunderstore 的游戏。mod 管理器是一种可帮助您更轻松地控制已安装的 mod 的应用程序。 +Tags: +- bepinex +- unity +- 模组 +ReleaseNotesUrl: https://github.com/ebkr/r2modmanPlus/releases/tag/v3.2.1 +Documentations: +- DocumentLabel: 维基 + DocumentUrl: https://github.com/ebkr/r2modmanPlus/wiki +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/e/ebkr/r2modman/3.2.1/ebkr.r2modman.yaml b/manifests/e/ebkr/r2modman/3.2.1/ebkr.r2modman.yaml new file mode 100644 index 0000000000000..aa59d16d72c28 --- /dev/null +++ b/manifests/e/ebkr/r2modman/3.2.1/ebkr.r2modman.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: ebkr.r2modman +PackageVersion: 3.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/electerm/electerm/1.100.6/electerm.electerm.installer.yaml b/manifests/e/electerm/electerm/1.100.6/electerm.electerm.installer.yaml new file mode 100644 index 0000000000000..736ad4176e853 --- /dev/null +++ b/manifests/e/electerm/electerm/1.100.6/electerm.electerm.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: electerm.electerm +PackageVersion: 1.100.6 +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd +ReleaseDate: 2025-06-26 +AppsAndFeaturesEntries: +- DisplayName: electerm 1.100.6 + ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/electerm/electerm/releases/download/v1.100.6/electerm-1.100.6-win-x64-installer.exe + InstallerSha256: 227335B87A280E2892E70721C46FF12ED80854CEB1A86BB6021EE2E7422F557E + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/electerm/electerm/releases/download/v1.100.6/electerm-1.100.6-win-x64-installer.exe + InstallerSha256: 227335B87A280E2892E70721C46FF12ED80854CEB1A86BB6021EE2E7422F557E + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/electerm/electerm/1.100.6/electerm.electerm.locale.en-US.yaml b/manifests/e/electerm/electerm/1.100.6/electerm.electerm.locale.en-US.yaml new file mode 100644 index 0000000000000..7f12bde2daae8 --- /dev/null +++ b/manifests/e/electerm/electerm/1.100.6/electerm.electerm.locale.en-US.yaml @@ -0,0 +1,56 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: electerm.electerm +PackageVersion: 1.100.6 +PackageLocale: en-US +Publisher: ZHAO Xudong +PublisherUrl: https://github.com/electerm/electerm +PublisherSupportUrl: https://github.com/electerm/electerm/issues +PrivacyUrl: https://github.com/electerm/electerm/wiki/privacy-notice +Author: ZHAO Xudong +PackageName: electerm +PackageUrl: https://github.com/electerm/electerm +License: MIT +LicenseUrl: https://github.com/electerm/electerm/blob/HEAD/LICENSE +Copyright: Copyright (c) 2017~tomorrow electerm, ZHAO Xudong +CopyrightUrl: https://raw.githubusercontent.com/electerm/electerm/master/LICENSE +ShortDescription: Terminal/ssh/sftp client(linux, mac, win) based on electron/ssh2/node-pty/xterm/antd/subx and other libs +Description: Terminal/ssh/sftp client(linux, mac, win) based on electron/ssh2/node-pty/xterm/antd/subx and other libs +Moniker: electerm +Tags: +- cli +- cmd +- command-line +- command-prompt +- console +- developer-tools +- file-manager +- powershell +- ps +- sftp +- shell +- ssh +- terminal +- utilities +- wsl +ReleaseNotes: |- + Major update + - Run session in standalone process to improve performance (#3960) + Bug fixes + - Fix search prev keyword + New features + - Add setting to allow multi instance + Other updates + - Use localhost instead of 127.0.0.1 to avoid issue when use VPN + 主要更新 + - 会话运行在独立的进程中,以提高性能 (#3960) + 修复问题 + - 修复搜索上一个关键字的问题 + 新增功能 + - 增加设置,允许同时运行多个实例 + 其他更新 + - 使用 localhost 替代 127.0.0.1,以避免使用 VPN 时的问题 +ReleaseNotesUrl: https://github.com/electerm/electerm/releases/tag/v1.100.6 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/electerm/electerm/1.100.6/electerm.electerm.yaml b/manifests/e/electerm/electerm/1.100.6/electerm.electerm.yaml new file mode 100644 index 0000000000000..ade634c56f1f2 --- /dev/null +++ b/manifests/e/electerm/electerm/1.100.6/electerm.electerm.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: electerm.electerm +PackageVersion: 1.100.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/electerm/electerm/1.100.8/electerm.electerm.installer.yaml b/manifests/e/electerm/electerm/1.100.8/electerm.electerm.installer.yaml new file mode 100644 index 0000000000000..cd41f86ede8ba --- /dev/null +++ b/manifests/e/electerm/electerm/1.100.8/electerm.electerm.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: electerm.electerm +PackageVersion: 1.100.8 +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd +ReleaseDate: 2025-06-26 +AppsAndFeaturesEntries: +- DisplayName: electerm 1.100.8 + ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/electerm/electerm/releases/download/v1.100.8/electerm-1.100.8-win-x64-installer.exe + InstallerSha256: A1EADCA423C0706298329BF4D14C19316D604EAD05E026B9F9604D5EB65083BD + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/electerm/electerm/releases/download/v1.100.8/electerm-1.100.8-win-x64-installer.exe + InstallerSha256: A1EADCA423C0706298329BF4D14C19316D604EAD05E026B9F9604D5EB65083BD + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/electerm/electerm/1.100.8/electerm.electerm.locale.en-US.yaml b/manifests/e/electerm/electerm/1.100.8/electerm.electerm.locale.en-US.yaml new file mode 100644 index 0000000000000..6835f6181c014 --- /dev/null +++ b/manifests/e/electerm/electerm/1.100.8/electerm.electerm.locale.en-US.yaml @@ -0,0 +1,56 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: electerm.electerm +PackageVersion: 1.100.8 +PackageLocale: en-US +Publisher: ZHAO Xudong +PublisherUrl: https://github.com/electerm/electerm +PublisherSupportUrl: https://github.com/electerm/electerm/issues +PrivacyUrl: https://github.com/electerm/electerm/wiki/privacy-notice +Author: ZHAO Xudong +PackageName: electerm +PackageUrl: https://github.com/electerm/electerm +License: MIT +LicenseUrl: https://github.com/electerm/electerm/blob/HEAD/LICENSE +Copyright: Copyright (c) 2017~tomorrow electerm, ZHAO Xudong +CopyrightUrl: https://raw.githubusercontent.com/electerm/electerm/master/LICENSE +ShortDescription: Terminal/ssh/sftp client(linux, mac, win) based on electron/ssh2/node-pty/xterm/antd/subx and other libs +Description: Terminal/ssh/sftp client(linux, mac, win) based on electron/ssh2/node-pty/xterm/antd/subx and other libs +Moniker: electerm +Tags: +- cli +- cmd +- command-line +- command-prompt +- console +- developer-tools +- file-manager +- powershell +- ps +- sftp +- shell +- ssh +- terminal +- utilities +- wsl +ReleaseNotes: |- + Major update + - Run session in standalone process to improve performance (#3960) + Bug fixes + - Fix search prev keyword + New features + - Add setting to allow multi instance + Other updates + - Use localhost instead of 127.0.0.1 to avoid issue when use VPN + 主要更新 + - 会话运行在独立的进程中,以提高性能 (#3960) + 修复问题 + - 修复搜索上一个关键字的问题 + 新增功能 + - 增加设置,允许同时运行多个实例 + 其他更新 + - 使用 localhost 替代 127.0.0.1,以避免使用 VPN 时的问题 +ReleaseNotesUrl: https://github.com/electerm/electerm/releases/tag/v1.100.8 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/electerm/electerm/1.100.8/electerm.electerm.yaml b/manifests/e/electerm/electerm/1.100.8/electerm.electerm.yaml new file mode 100644 index 0000000000000..2c726738dd607 --- /dev/null +++ b/manifests/e/electerm/electerm/1.100.8/electerm.electerm.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: electerm.electerm +PackageVersion: 1.100.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/eloston/ungoogled-chromium/138.0.7204.96/eloston.ungoogled-chromium.installer.yaml b/manifests/e/eloston/ungoogled-chromium/138.0.7204.96/eloston.ungoogled-chromium.installer.yaml new file mode 100644 index 0000000000000..77f0631aee3d2 --- /dev/null +++ b/manifests/e/eloston/ungoogled-chromium/138.0.7204.96/eloston.ungoogled-chromium.installer.yaml @@ -0,0 +1,105 @@ +PackageIdentifier: eloston.ungoogled-chromium +PackageVersion: 138.0.7204.96 +InstallerLocale: en-US +MinimumOSVersion: 10.0.0.0 +UpgradeBehavior: install +Protocols: + - http + - https +FileExtensions: + - crx + - htm + - html + - pdf + - url +Installers: + - Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: >- + https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/138.0.7204.96-1.1/ungoogled-chromium_138.0.7204.96-1.1_installer_x64.exe + InstallerSha256: 5B979DEEB0A440D908B3377F2FF64E31E161523779788E10DA6E9BB4EB143F33 + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + Custom: '--system-level' + - Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: >- + https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/138.0.7204.96-1.1/ungoogled-chromium_138.0.7204.96-1.1_installer_x64.exe + InstallerSha256: 5B979DEEB0A440D908B3377F2FF64E31E161523779788E10DA6E9BB4EB143F33 + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + - Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ungoogled-chromium_138.0.7204.96-1.1_windows_x64\chrome.exe + PortableCommandAlias: chrome + InstallerUrl: >- + https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/138.0.7204.96-1.1/ungoogled-chromium_138.0.7204.96-1.1_windows_x64.zip + InstallerSha256: 379AAEB98786B351EB0FE1131D7CECD8DD0119430A2D998CFE8307B426C1EEA9 + ArchiveBinariesDependOnPath: true + - Architecture: x86 + InstallerType: exe + Scope: user + InstallerUrl: >- + https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/138.0.7204.96-1.1/ungoogled-chromium_138.0.7204.96-1.1_installer_x86.exe + InstallerSha256: A0F2F35CE429A74BE36C3405F689307D29013FB9BB53348A5FB3F8D997DCCA87 + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + - Architecture: x86 + InstallerType: exe + Scope: machine + InstallerUrl: >- + https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/138.0.7204.96-1.1/ungoogled-chromium_138.0.7204.96-1.1_installer_x86.exe + InstallerSha256: A0F2F35CE429A74BE36C3405F689307D29013FB9BB53348A5FB3F8D997DCCA87 + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + Custom: '--system-level' + - Architecture: x86 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ungoogled-chromium_138.0.7204.96-1.1_windows_x86\chrome.exe + PortableCommandAlias: chrome + InstallerUrl: >- + https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/138.0.7204.96-1.1/ungoogled-chromium_138.0.7204.96-1.1_windows_x86.zip + InstallerSha256: 1106BD85D85DAEE7B7D29610F60E9CD5AF66FE63506AE1B8B5FBC5D1D84B1546 + ArchiveBinariesDependOnPath: true + - Architecture: arm64 + InstallerType: exe + Scope: user + InstallerUrl: >- + https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/138.0.7204.96-1.1/ungoogled-chromium_138.0.7204.96-1.1_installer_arm64.exe + InstallerSha256: 985F8763119358E3D2CA97C6367091CF86576128334E9C554D72537AA83C2DAC + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + - Architecture: arm64 + InstallerType: exe + Scope: machine + InstallerUrl: >- + https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/138.0.7204.96-1.1/ungoogled-chromium_138.0.7204.96-1.1_installer_arm64.exe + InstallerSha256: 985F8763119358E3D2CA97C6367091CF86576128334E9C554D72537AA83C2DAC + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + Custom: '--system-level' + - Architecture: arm64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ungoogled-chromium_138.0.7204.96-1.1_windows_arm64\chrome.exe + PortableCommandAlias: chrome + InstallerUrl: >- + https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/138.0.7204.96-1.1/ungoogled-chromium_138.0.7204.96-1.1_windows_arm64.zip + InstallerSha256: 18CBDBE1DB33A1F784EE4CFB92D89357BD9AA72F50DF35B8148D0CF9040B476E + ArchiveBinariesDependOnPath: true +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: '2025-07-04' diff --git a/manifests/e/eloston/ungoogled-chromium/138.0.7204.96/eloston.ungoogled-chromium.locale.en-US.yaml b/manifests/e/eloston/ungoogled-chromium/138.0.7204.96/eloston.ungoogled-chromium.locale.en-US.yaml new file mode 100644 index 0000000000000..c893263e10d79 --- /dev/null +++ b/manifests/e/eloston/ungoogled-chromium/138.0.7204.96/eloston.ungoogled-chromium.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: eloston.ungoogled-chromium +PackageVersion: 138.0.7204.96 +PackageLocale: en-US +Publisher: The Chromium Authors +PublisherUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows +PublisherSupportUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows/issues +Author: Eloston +PackageName: Chromium +PackageUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows/releases +License: BSD 3-Clause License +LicenseUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows/blob/master/LICENSE +Copyright: Copyright 2022 The ungoogled-chromium Authors +CopyrightUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows/blob/master/LICENSE +ShortDescription: ungoogled-chromium is Google Chromium without dependency on Google web services. +Description: |- + ungoogled-chromium is a set of configuration flags, patches, and custom scripts. + + These components altogether strive to accomplish the following + * Disable or remove offending services and features that communicate with Google or weaken privacy + * Strip binaries from the source tree, and use those provided by the system or build them from source + * Add, modify, or disable features that inhibit control and transparency (these changes are minor and do not have significant impacts on the general user experience) + + ungoogled-chromium should not be considered a fork of Chromium. + The main reason for this is that a fork is associated with more significant deviations from the Chromium, such as branding, configuration formats, file locations, and other interface changes. + ungoogled-chromium will not modify the Chromium browser outside of the project's goals. + Since these goals and requirements are not precise, unclear situations are discussed and decided on a case-by-case basis. +Moniker: ungoogled-chromium +Tags: +- browser +- chromium +- ungoogled +ReleaseNotesUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/tag/138.0.7204.96-1.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/e/eloston/ungoogled-chromium/138.0.7204.96/eloston.ungoogled-chromium.yaml b/manifests/e/eloston/ungoogled-chromium/138.0.7204.96/eloston.ungoogled-chromium.yaml new file mode 100644 index 0000000000000..34eed77e597b5 --- /dev/null +++ b/manifests/e/eloston/ungoogled-chromium/138.0.7204.96/eloston.ungoogled-chromium.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: eloston.ungoogled-chromium +PackageVersion: 138.0.7204.96 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/e/ente-io/photos-desktop/1.7.14/ente-io.photos-desktop.installer.yaml b/manifests/e/ente-io/photos-desktop/1.7.14/ente-io.photos-desktop.installer.yaml new file mode 100644 index 0000000000000..5df9dead743e6 --- /dev/null +++ b/manifests/e/ente-io/photos-desktop/1.7.14/ente-io.photos-desktop.installer.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ente-io.photos-desktop +PackageVersion: 1.7.14 +InstallerLocale: en-US +InstallerType: nullsoft +ProductCode: fb682768-51c6-5397-92da-171dc1777808 +ReleaseDate: 2025-07-01 +AppsAndFeaturesEntries: +- DisplayName: ente 1.7.14 + Publisher: Ente + ProductCode: fb682768-51c6-5397-92da-171dc1777808 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/ente-io/photos-desktop/releases/download/v1.7.14/ente-1.7.14.exe + InstallerSha256: ECB1D95CB5D786676CE62670EF4511FE684B8459B9E77B0E0C8BCD1DFED8D322 +- Architecture: x64 + InstallerUrl: https://github.com/ente-io/photos-desktop/releases/download/v1.7.14/ente-1.7.14-x64.exe + InstallerSha256: 4F8CA620A06B1DCB48D53BBB2671E507BC017769094D82AFE9017D93E7E798DD +- Architecture: arm64 + InstallerUrl: https://github.com/ente-io/photos-desktop/releases/download/v1.7.14/ente-1.7.14-arm64.exe + InstallerSha256: 9BD858AC5288DB59A73EB1658AC340AAB702A4430907B2F1F5558639F896CB4B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/ente-io/photos-desktop/1.7.14/ente-io.photos-desktop.locale.en-US.yaml b/manifests/e/ente-io/photos-desktop/1.7.14/ente-io.photos-desktop.locale.en-US.yaml new file mode 100644 index 0000000000000..d8b89edb10375 --- /dev/null +++ b/manifests/e/ente-io/photos-desktop/1.7.14/ente-io.photos-desktop.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: ente-io.photos-desktop +PackageVersion: 1.7.14 +PackageLocale: en-US +Publisher: ente +PublisherUrl: https://github.com/ente-io +PublisherSupportUrl: https://github.com/ente-io/photos-desktop/issues +PackageName: ente +PackageUrl: https://github.com/ente-io/photos-desktop +License: AGPL-3.0 +LicenseUrl: https://github.com/ente-io/photos-desktop/blob/HEAD/LICENSE +Copyright: Copyright © 2022 ente +ShortDescription: Desktop client for ente.io +Moniker: ente-photos +ReleaseNotes: '- Increase file size limit to 10 GB.' +ReleaseNotesUrl: https://github.com/ente-io/photos-desktop/releases/tag/v1.7.14 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/ente-io/photos-desktop/1.7.14/ente-io.photos-desktop.yaml b/manifests/e/ente-io/photos-desktop/1.7.14/ente-io.photos-desktop.yaml new file mode 100644 index 0000000000000..7aa12221880fe --- /dev/null +++ b/manifests/e/ente-io/photos-desktop/1.7.14/ente-io.photos-desktop.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: ente-io.photos-desktop +PackageVersion: 1.7.14 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/everauto/zTasker/2.2.3/everauto.zTasker.installer.yaml b/manifests/e/everauto/zTasker/2.2.3/everauto.zTasker.installer.yaml new file mode 100644 index 0000000000000..612fef93822ee --- /dev/null +++ b/manifests/e/everauto/zTasker/2.2.3/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.3 +InstallerType: inno +Scope: user +UpgradeBehavior: install +ProductCode: '{442746B5-64EF-4EE7-9B23-F52EB95E1CF0}_is1' +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x86 + InstallerUrl: https://www.everauto.net/down/zTasker_2.2.3_Setup.exe + InstallerSha256: BCDCD9A1745A258C7D8E50DB380FBF47CD61E3217A0957048C3503767F9AA207 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/everauto/zTasker/2.2.3/everauto.zTasker.locale.en-US.yaml b/manifests/e/everauto/zTasker/2.2.3/everauto.zTasker.locale.en-US.yaml new file mode 100644 index 0000000000000..015e6046cf312 --- /dev/null +++ b/manifests/e/everauto/zTasker/2.2.3/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.3 +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.3/everauto.zTasker.locale.zh-CN.yaml b/manifests/e/everauto/zTasker/2.2.3/everauto.zTasker.locale.zh-CN.yaml new file mode 100644 index 0000000000000..03bda57361d80 --- /dev/null +++ b/manifests/e/everauto/zTasker/2.2.3/everauto.zTasker.locale.zh-CN.yaml @@ -0,0 +1,78 @@ +# 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.3 +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: |- + 新增: + **全面变量替换化,能够支持变量替换的输入框,几乎都可以了 + 任务->音量,增加获取系统当前音量 + 任务->窗口,增加获取活动窗口标题|类名 + 任务->窗口->窗口移动,可以用鼠标选择区域了 + 任务->提醒->挡屏休息,可以定制显示文字 + 任务->数据->字符串处理,增加字符串替换 + 任务->数据->字符串处理,增加字符串格式化 + 任务->文件->txt 文件操作,增加同步异步执行选择 + 任务->文件分类,增加删除文件符号链接 + 任务->文件分类,删除文件夹(目录)符号链接 + 任务->文件分类,增加获取文件管理器中选中的文件 + 任务->输入分类,增加获取鼠标位置 + + 复合任务->条件判断,添加静音检测 + 复合任务->条件判断,添加按键按下检测 + 复合任务子任务状态,可以在任务列表下次运行列显示 + + 具有文件列表编辑的任务设置,增加编辑功能,增加删除时确认 + + 选项->任务列表,增加手动运行时更新最后运行时间设置 + + 改进: + **不同分辨率下的键鼠录制回放,可以自动修正点击定位问题 + **V1 版本的 ahk 运行库,移动到 V1 子目录,代码里请用 v1/xxx.ahk 引用 + **复合任务编辑时,现在可以多选设置复子任务的启用禁用状态 + **每隔月开始时间现在可以从往年开始设置,不再限制从今年开始 + 创建符号链接,目标已经存在时,现在可以正确创建 + 优化任务列表加载速度 + 优化任务编辑窗口速度 + 悬浮提示框的显示效果 + + 修复: + 文件夹移动任务,当未选择任何过滤器时,可能源文件删除失败的问题 + 唤醒后空闲统计出错,导致空闲类计划任务错误执行的问题 + 复合任务中下载、压缩、上传、停止播放子任务点击任务列表中的停止按钮时,崩溃的问题 + 键鼠回放任务,设置的热键第二次运行会失效问题 + 键鼠录制时,极端情形下可能崩溃问题 + 变量替换{clip.trim}无法生效问题 + 倒计时任务如果过期后启动 zTasker,任务列表状态没有改为停止的问题 + + 其它改进和修复 +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.3/everauto.zTasker.yaml b/manifests/e/everauto/zTasker/2.2.3/everauto.zTasker.yaml new file mode 100644 index 0000000000000..da93f3def9e06 --- /dev/null +++ b/manifests/e/everauto/zTasker/2.2.3/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.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/everauto/zTasker/2.2.4/everauto.zTasker.installer.yaml b/manifests/e/everauto/zTasker/2.2.4/everauto.zTasker.installer.yaml new file mode 100644 index 0000000000000..6b7fba4aa43bc --- /dev/null +++ b/manifests/e/everauto/zTasker/2.2.4/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.4 +InstallerType: inno +Scope: user +UpgradeBehavior: install +ProductCode: '{442746B5-64EF-4EE7-9B23-F52EB95E1CF0}_is1' +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x86 + InstallerUrl: https://www.everauto.net/down/zTasker_2.2.4_Setup.exe + InstallerSha256: 0EEE6CE9779BD30B6A845D838B1D72EE17A3251442BDEC0D99C94660E8628062 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/everauto/zTasker/2.2.4/everauto.zTasker.locale.en-US.yaml b/manifests/e/everauto/zTasker/2.2.4/everauto.zTasker.locale.en-US.yaml new file mode 100644 index 0000000000000..ac6df2d8a659d --- /dev/null +++ b/manifests/e/everauto/zTasker/2.2.4/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.4 +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.4/everauto.zTasker.locale.zh-CN.yaml b/manifests/e/everauto/zTasker/2.2.4/everauto.zTasker.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d17a2aaf5ffa9 --- /dev/null +++ b/manifests/e/everauto/zTasker/2.2.4/everauto.zTasker.locale.zh-CN.yaml @@ -0,0 +1,66 @@ +# 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.4 +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: |- + 新增: + **弹窗提醒和倒计时窗口,可选更多显示位置,现在可以显示在任何角落 + **任务->显示,增加设置系统 DPI 缩放 + **新命令行参数-import:文件名,导入任务,详情参见顶部工具栏的更多提示或者论坛帮助区 + 计划中和复合任务条件判断里,图像搜索增加颜色误差设置 + 复合任务,条件判断,增加 ping 通判断 + 任务->窗口,关闭窗口,增加关闭活动窗口设置 + 任务->窗口,结束窗口及其进程,增加忽略本软件窗口选项 + 任务->输入,鼠标点击、按下、移动,增加部分匹配和激活窗口选项 + 任务->显示,增加获取屏幕分辨率 + 任务->文件,增加生成临时文件 + 任务->文件,增加提取文件路径 + 主菜单,备份恢复,增加打开任务备份目录 + + 改进: + **改善某些任务运行时,同时编辑的稳定性 + 窗口检测支持匹配多个相同的窗口,但最好还是指定唯一的匹配条件 + 任务文件自动备份到 TasksBackup 目录时,使用 zip 压缩方式,内部保留任务文件名,减小大小,同时方便恢复 + 任务->显示,切换显示配置,在显示器禁用后,也能获取正确的名称了 + 获取窗口大小和位置,可以额外保存到变量名 x,变量名 y 为分割后的值 + 计划和复合任务里,图象搜索、颜色搜索输入框支持变量替换 + + 修复: + 任务属性再次编辑无法加载属性的问题,比如弹窗提醒 + 挡屏休息勾选显示当前时间,无法应用的问题 + 互联网连接判断有些情况下可能不准确的问题 + 任务->数据->字符串替换功能异常问题 + 鼠标位置相关任务,如果是小数,转换异常的问题 + + 其它改进和修复 +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.4/everauto.zTasker.yaml b/manifests/e/everauto/zTasker/2.2.4/everauto.zTasker.yaml new file mode 100644 index 0000000000000..6f7d0e0027ed5 --- /dev/null +++ b/manifests/e/everauto/zTasker/2.2.4/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.4 +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/e/evilmartians/lefthook/1.11.15/evilmartians.lefthook.installer.yaml b/manifests/e/evilmartians/lefthook/1.11.15/evilmartians.lefthook.installer.yaml new file mode 100644 index 0000000000000..5845c5e5b59ed --- /dev/null +++ b/manifests/e/evilmartians/lefthook/1.11.15/evilmartians.lefthook.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: evilmartians.lefthook +PackageVersion: 1.11.15 +InstallerType: portable +UpgradeBehavior: install +Commands: +- lefthook +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/evilmartians/lefthook/releases/download/v1.11.15/lefthook_1.11.15_Windows_i386.exe + InstallerSha256: 9D573C1354A38969FC70A22F0A387BFF666581E9DC6982BFFB9309D01373710A +- Architecture: x64 + InstallerUrl: https://github.com/evilmartians/lefthook/releases/download/v1.11.15/lefthook_1.11.15_Windows_x86_64.exe + InstallerSha256: 69EBAEF9F4ABE324907E085F5B708C114AA8E28C38950DD9D51814D28D565469 +- Architecture: arm64 + InstallerUrl: https://github.com/evilmartians/lefthook/releases/download/v1.11.15/lefthook_1.11.15_Windows_arm64.exe + InstallerSha256: F45A4824C16986920D262DE9C1E0D59C4C633900A2EF298A4689951CB27E571A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/evilmartians/lefthook/1.11.15/evilmartians.lefthook.locale.en-US.yaml b/manifests/e/evilmartians/lefthook/1.11.15/evilmartians.lefthook.locale.en-US.yaml new file mode 100644 index 0000000000000..4282b5e1e05ef --- /dev/null +++ b/manifests/e/evilmartians/lefthook/1.11.15/evilmartians.lefthook.locale.en-US.yaml @@ -0,0 +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: evilmartians.lefthook +PackageVersion: 1.11.15 +PackageLocale: en-US +Publisher: Evil Martians +PublisherUrl: https://evilmartians.com/ +PublisherSupportUrl: https://github.com/evilmartians/lefthook/issues +PackageName: Lefthook +PackageUrl: https://github.com/evilmartians/lefthook +License: MIT +LicenseUrl: https://github.com/evilmartians/lefthook/blob/HEAD/LICENSE +ShortDescription: Fast and powerful Git hooks manager for any type of projects. +Tags: +- git +- go +- golang +- hacktoberfest +- hooks +- lefthook +- manager +ReleaseNotes: |- + Changelog + - b6ccea3 chore(deps): bump github.com/go-viper/mapstructure/v2 + - 35da657 chore: regexp use improvements (#1034) + - d1eb3be chore: upgrade golangci-lint to v2, address findings (#1027) + - a62f614 chore: use CODEOWNERS + - 975f9d6 ci: update GoReleaser configurations (#1040) + - 5f4ebed deps: bump github.com/kaptinlin/jsonschema from 0.2.3 to 0.2.4 (#1028) + - 48f20d0 deps: bump github.com/kaptinlin/jsonschema from 0.2.4 to 0.4.1 (#1036) + - bba9079 deps: bump github.com/kaptinlin/jsonschema from 0.4.1 to 0.4.2 (#1042) + - aacadf2 deps: bump github.com/kaptinlin/jsonschema from 0.4.2 to 0.4.3 + - 6db1f86 deps: bump github.com/kaptinlin/jsonschema from 0.4.3 to 0.4.5 + - 6fad8d2 deps: bump github.com/knadh/koanf/parsers/yaml from 1.0.0 to 1.1.0 + - 4a71900 deps: bump github.com/knadh/koanf/v2 from 2.2.0 to 2.2.1 (#1043) + - 8dd8544 feat: add exclude arg (#1063) + - f37db18 feat: inherit group envs (#1061) + - 01fafb8 feat: show time for jobs (#1044) + - e8dca0c feat: support devbox (#1031) + - 4075145 fix: apply implicit staged files filter to all files when all files arg given (#1062) + - 612ab19 fix: bump goreleaser + - e3f5b2d fix: friendlier updater error message + - 12430c5 v1.11.14 +ReleaseNotesUrl: https://github.com/evilmartians/lefthook/releases/tag/v1.11.15 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/evilmartians/lefthook/1.11.15/evilmartians.lefthook.yaml b/manifests/e/evilmartians/lefthook/1.11.15/evilmartians.lefthook.yaml new file mode 100644 index 0000000000000..25ec81e4a20ad --- /dev/null +++ b/manifests/e/evilmartians/lefthook/1.11.15/evilmartians.lefthook.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: evilmartians.lefthook +PackageVersion: 1.11.15 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/evilmartians/lefthook/1.12.0/evilmartians.lefthook.installer.yaml b/manifests/e/evilmartians/lefthook/1.12.0/evilmartians.lefthook.installer.yaml new file mode 100644 index 0000000000000..13869b9c0c3a6 --- /dev/null +++ b/manifests/e/evilmartians/lefthook/1.12.0/evilmartians.lefthook.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: evilmartians.lefthook +PackageVersion: 1.12.0 +InstallerType: portable +UpgradeBehavior: install +Commands: +- lefthook +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/evilmartians/lefthook/releases/download/v1.12.0/lefthook_1.12.0_Windows_i386.exe + InstallerSha256: 0853C99A7070E5DA31C485C8E60E21664E6A3225EA53E2710C2DB932DB472E28 +- Architecture: x64 + InstallerUrl: https://github.com/evilmartians/lefthook/releases/download/v1.12.0/lefthook_1.12.0_Windows_x86_64.exe + InstallerSha256: 62B82157896585B70B1B7606CF0B5DBE027FE619BCF1631D34AF2281F2E33659 +- Architecture: arm64 + InstallerUrl: https://github.com/evilmartians/lefthook/releases/download/v1.12.0/lefthook_1.12.0_Windows_arm64.exe + InstallerSha256: B23CA2A0E1DDB7F65B7F8C725E531D4BFF7FE8E2D9687817AC11FFF12C65E41C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/evilmartians/lefthook/1.12.0/evilmartians.lefthook.locale.en-US.yaml b/manifests/e/evilmartians/lefthook/1.12.0/evilmartians.lefthook.locale.en-US.yaml new file mode 100644 index 0000000000000..208de45acc5e3 --- /dev/null +++ b/manifests/e/evilmartians/lefthook/1.12.0/evilmartians.lefthook.locale.en-US.yaml @@ -0,0 +1,29 @@ +# 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: evilmartians.lefthook +PackageVersion: 1.12.0 +PackageLocale: en-US +Publisher: Evil Martians +PublisherUrl: https://evilmartians.com/ +PublisherSupportUrl: https://github.com/evilmartians/lefthook/issues +PackageName: Lefthook +PackageUrl: https://github.com/evilmartians/lefthook +License: MIT +LicenseUrl: https://github.com/evilmartians/lefthook/blob/HEAD/LICENSE +ShortDescription: Fast and powerful Git hooks manager for any type of projects. +Tags: +- git +- go +- golang +- hacktoberfest +- hooks +- lefthook +- manager +ReleaseNotes: |- + Changelog + - eff9fd7 feat: allow installing only specific hooks (#1069) + - 1cea54f refactor!: restructure files and folders, remove deprecated options (#1067) +ReleaseNotesUrl: https://github.com/evilmartians/lefthook/releases/tag/v1.12.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/evilmartians/lefthook/1.12.0/evilmartians.lefthook.yaml b/manifests/e/evilmartians/lefthook/1.12.0/evilmartians.lefthook.yaml new file mode 100644 index 0000000000000..796a51a16574b --- /dev/null +++ b/manifests/e/evilmartians/lefthook/1.12.0/evilmartians.lefthook.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: evilmartians.lefthook +PackageVersion: 1.12.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/ez/launcher/1.0.3/ez.launcher.installer.yaml b/manifests/e/ez/launcher/1.0.3/ez.launcher.installer.yaml deleted file mode 100644 index b8e4b035dd2f7..0000000000000 --- a/manifests/e/ez/launcher/1.0.3/ez.launcher.installer.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Created using wingetcreate 1.5.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: ez.launcher -PackageVersion: 1.0.3 -InstallerType: nullsoft -Installers: -- InstallerUrl: https://dl.toine.me/d/EZ/EZ-Launcher-win-x64.exe - Architecture: x64 - InstallerSha256: 158AA3CEFFFD614CB281E38C8DD937EC62DE62F9A0245AC3F8AC700EF3EAE838 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/e/ez/launcher/1.0.3/ez.launcher.locale.en-US.yaml b/manifests/e/ez/launcher/1.0.3/ez.launcher.locale.en-US.yaml deleted file mode 100644 index a00dad8e0f20d..0000000000000 --- a/manifests/e/ez/launcher/1.0.3/ez.launcher.locale.en-US.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Created using wingetcreate 1.5.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: ez.launcher -PackageVersion: 1.0.3 -PackageLocale: en-US -Publisher: Toine -PackageName: EZ Launcher -License: MIT -Copyright: Copyright © 2023 Toine -ShortDescription: The new best Minecraft Launcher -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/e/ez/launcher/1.0.3/ez.launcher.yaml b/manifests/e/ez/launcher/1.0.3/ez.launcher.yaml deleted file mode 100644 index 5773376248c73..0000000000000 --- a/manifests/e/ez/launcher/1.0.3/ez.launcher.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.5.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: ez.launcher -PackageVersion: 1.0.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/e/ez/launcher/1.0.4/ez.launcher.installer.yaml b/manifests/e/ez/launcher/1.0.4/ez.launcher.installer.yaml deleted file mode 100644 index 17eb0b63a03fa..0000000000000 --- a/manifests/e/ez/launcher/1.0.4/ez.launcher.installer.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Created using wingetcreate 1.5.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: ez.launcher -PackageVersion: 1.0.4 -InstallerType: nullsoft -Installers: -- Architecture: x64 - InstallerUrl: https://dl.toine.me/d/EZ/EZ-Launcher-win-x64-winget.exe - InstallerSha256: 9A2558CADFE7104B6DA222E867DDB4204241973AD83E669DAC6A418ED8629B7E -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/e/ez/launcher/1.0.4/ez.launcher.locale.en-US.yaml b/manifests/e/ez/launcher/1.0.4/ez.launcher.locale.en-US.yaml deleted file mode 100644 index 90452915c4651..0000000000000 --- a/manifests/e/ez/launcher/1.0.4/ez.launcher.locale.en-US.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Created using wingetcreate 1.5.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: ez.launcher -PackageVersion: 1.0.4 -PackageLocale: en-US -Publisher: Toine -PackageName: EZ Launcher -License: MIT -Copyright: Copyright © 2023 Toine -ShortDescription: The new best Minecraft Launcher -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/e/ez/launcher/1.0.4/ez.launcher.yaml b/manifests/e/ez/launcher/1.0.4/ez.launcher.yaml deleted file mode 100644 index 5cfd4a048a3a2..0000000000000 --- a/manifests/e/ez/launcher/1.0.4/ez.launcher.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.5.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: ez.launcher -PackageVersion: 1.0.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/e/eza-community/eza/0.21.6/eza-community.eza.installer.yaml b/manifests/e/eza-community/eza/0.21.6/eza-community.eza.installer.yaml new file mode 100644 index 0000000000000..f5d8ddda7f591 --- /dev/null +++ b/manifests/e/eza-community/eza/0.21.6/eza-community.eza.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: eza-community.eza +PackageVersion: 0.21.6 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: eza.exe +UpgradeBehavior: install +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/eza-community/eza/releases/download/v0.21.6/eza.exe_x86_64-pc-windows-gnu.zip + InstallerSha256: 04C5870E0CF5CF74F792F342B9227EEE282F583A4DF3970F6BAA97C385DF0317 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/eza-community/eza/0.21.6/eza-community.eza.locale.en-US.yaml b/manifests/e/eza-community/eza/0.21.6/eza-community.eza.locale.en-US.yaml new file mode 100644 index 0000000000000..ed11b2a032209 --- /dev/null +++ b/manifests/e/eza-community/eza/0.21.6/eza-community.eza.locale.en-US.yaml @@ -0,0 +1,96 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: eza-community.eza +PackageVersion: 0.21.6 +PackageLocale: en-US +Publisher: eza community +PublisherUrl: https://eza.rocks/ +PublisherSupportUrl: https://github.com/eza-community/eza/issues +PackageName: eza +PackageUrl: https://github.com/eza-community/eza +License: EUPL-1.2 +LicenseUrl: https://github.com/eza-community/eza/blob/HEAD/LICENSE.txt +ShortDescription: A modern, maintained replacement for ls, built on exa. +Description: |- + eza is a modern, maintained replacement for the venerable file-listing + command-line program ls that ships with Unix and Linux operating systems, + giving it more features and better defaults. + + It uses colours to distinguish file types and metadata. + It knows about symlinks, extended attributes, and Git. + And it's small, fast, and just one single binary +Tags: +- color +- command-line +- files +- hacktoberfest +- icons +- ls +- nerd-fonts +- rust +- terminal +- tools +ReleaseNotes: |- + Changelog + [0.21.6] - 2025-06-26 + Documentation + - Add missing --absolute option to man page + Features + - Add prettier icon for .prettierrc.{json,json5,toml,yaml,yml} + Miscellaneous Tasks + - Upgrade FreeBSD to 14.3-RELEASE in unit tests workflow + - Eza v0.21.6 changelogs, version bump + Build + - Bump libc from 0.2.172 to 0.2.174 + - Cargo bump 2025-06-26 + - Flake bump 2025-06-26 + Checksums + sha256sum + 535f48151fa6ed02d842b5d5d2eb34c3aa15a95d217586a2483750f991313b69 ./target/bin-0.21.6/eza_aarch64-unknown-linux-gnu_no_libgit.tar.gz + d3a47cc707982a2f1de426858ea998487110d5219d2dec3073a41f42984d1444 ./target/bin-0.21.6/eza_aarch64-unknown-linux-gnu_no_libgit.zip + 89c1bef544628c4685b96810e59614bd414ff25da85d66be123ad4371ae69efc ./target/bin-0.21.6/eza_aarch64-unknown-linux-gnu.tar.gz + bb575c8eef7ffbfe4d186e7e44083168e597d3605b5de239d7973baf8d9b2fa8 ./target/bin-0.21.6/eza_aarch64-unknown-linux-gnu.zip + d6c005e07c1da278700495c632439ab15907bccb6898e13bfbb8b4ae201c1f35 ./target/bin-0.21.6/eza_arm-unknown-linux-gnueabihf_no_libgit.tar.gz + 6d15295f443e0dd1c26c0099411938853497e37038603a639cdc90506a355d4e ./target/bin-0.21.6/eza_arm-unknown-linux-gnueabihf_no_libgit.zip + 93739c419bd637b062d6cc1a8be92d4a363130b158352723ee1c5ad892918eda ./target/bin-0.21.6/eza_arm-unknown-linux-gnueabihf.tar.gz + 76d2930c52815c38013a88c0dfcece4f7a660b816140cbb732375d949fd8ebbd ./target/bin-0.21.6/eza_arm-unknown-linux-gnueabihf.zip + e58871166d63df546306b5d35963999755ad6c313ca83416a97caa96a77d21f8 ./target/bin-0.21.6/eza.exe_x86_64-pc-windows-gnu.tar.gz + 04c5870e0cf5cf74f792f342b9227eee282f583a4df3970f6baa97c385df0317 ./target/bin-0.21.6/eza.exe_x86_64-pc-windows-gnu.zip + fcc21123bb81baacef1975db7aa5c1dd1bb085a8ab73f13cbbbac636c6061342 ./target/bin-0.21.6/eza_x86_64-unknown-linux-gnu.tar.gz + c884d7e3d84b70d8bf18ee505d8e3c4b912621482413b5b835e1af469fac1978 ./target/bin-0.21.6/eza_x86_64-unknown-linux-gnu.zip + 7163d0cb403ef0268d80f02ef6a8480a9a156feb67fe6234bd48399f5414006d ./target/bin-0.21.6/eza_x86_64-unknown-linux-musl.tar.gz + fcd6c06fd95faf7137ec9ada03ba79dc497027eb66a013f90f160a6d0dd05393 ./target/bin-0.21.6/eza_x86_64-unknown-linux-musl.zip + md5sum + 9ed2d4ecbdf3c34722837c49deab9ef3 ./target/bin-0.21.6/eza_aarch64-unknown-linux-gnu_no_libgit.tar.gz + a81ee5dba7fc3bd484963c576006fb7b ./target/bin-0.21.6/eza_aarch64-unknown-linux-gnu_no_libgit.zip + c709c33459e49bdc8dd38d5bb8dff597 ./target/bin-0.21.6/eza_aarch64-unknown-linux-gnu.tar.gz + 2f205c737b690d0edda22bcdc4a10de0 ./target/bin-0.21.6/eza_aarch64-unknown-linux-gnu.zip + 4b6d5c11562cad4d36beb9df681d0280 ./target/bin-0.21.6/eza_arm-unknown-linux-gnueabihf_no_libgit.tar.gz + dce63c6af019af0d23e8a4d798857957 ./target/bin-0.21.6/eza_arm-unknown-linux-gnueabihf_no_libgit.zip + 5fd0223bff538b7db0c59ed36cbc307b ./target/bin-0.21.6/eza_arm-unknown-linux-gnueabihf.tar.gz + d1ab20f56faeabcb3bdec02b0d3f289d ./target/bin-0.21.6/eza_arm-unknown-linux-gnueabihf.zip + 46312d61e55629568c59582c8788097d ./target/bin-0.21.6/eza.exe_x86_64-pc-windows-gnu.tar.gz + 519a09eb64cb2b833b1f7c0cc931ecc5 ./target/bin-0.21.6/eza.exe_x86_64-pc-windows-gnu.zip + f121751471112d78e15d4b7d45464dd0 ./target/bin-0.21.6/eza_x86_64-unknown-linux-gnu.tar.gz + 4127f88f1fe38373fd048c353f75e413 ./target/bin-0.21.6/eza_x86_64-unknown-linux-gnu.zip + e05df628997b1abc676c4cd5486bf80b ./target/bin-0.21.6/eza_x86_64-unknown-linux-musl.tar.gz + bc455acefaae21eeace937d2875cdb50 ./target/bin-0.21.6/eza_x86_64-unknown-linux-musl.zip + blake3sum + 93cd270e382fa62d66f20a8a3e0bd427233020c35c25085c1f37f981f471748d ./target/bin-0.21.6/eza_aarch64-unknown-linux-gnu_no_libgit.tar.gz + deec747c2a21f88e676e08d4d6c839d1169664bf677e4b07e52ebf0ef9056bb7 ./target/bin-0.21.6/eza_aarch64-unknown-linux-gnu_no_libgit.zip + b5f825dc7d0ff44aa9dcc5e685e93a844dd35bc950731b0b3fdb56a95efdae51 ./target/bin-0.21.6/eza_aarch64-unknown-linux-gnu.tar.gz + 86be9a7cda782d7673025bd8f69026c38be739e5143c77acb0c7e21ecc8a8dee ./target/bin-0.21.6/eza_aarch64-unknown-linux-gnu.zip + 458892684c86ea71a7d1c7866c6a3c07bcdecfa0168729ed60aceb4483bf2b82 ./target/bin-0.21.6/eza_arm-unknown-linux-gnueabihf_no_libgit.tar.gz + 45e79c48317f2b736b48a5d650c48962928a9e46d0bf476d57971ecbd4df5056 ./target/bin-0.21.6/eza_arm-unknown-linux-gnueabihf_no_libgit.zip + 35cefbd39ef54ccd324590b46a36c3da07c8f04fc706a14be03e2066260c43cb ./target/bin-0.21.6/eza_arm-unknown-linux-gnueabihf.tar.gz + 2f80186ccb269807c3a937c0f4382fea68f3388ce7be2ae785e62a189bf97e38 ./target/bin-0.21.6/eza_arm-unknown-linux-gnueabihf.zip + 463fb80b01d10e2dd9f3f31451819e66deb99678c82c0aeea79a18efa555f29b ./target/bin-0.21.6/eza.exe_x86_64-pc-windows-gnu.tar.gz + 5345bde86fb8a2852e0f74a62822c4aea6366324919da7807c1830e3bdc0be9a ./target/bin-0.21.6/eza.exe_x86_64-pc-windows-gnu.zip + 4611db3de06bfa950519ea5af9e2e075f45f938be50bb719a68d7c191e52c181 ./target/bin-0.21.6/eza_x86_64-unknown-linux-gnu.tar.gz + f5b18a319ef81e9642cf912bd79edc3fccf6665108eec5c2967d3e5d617f2cd9 ./target/bin-0.21.6/eza_x86_64-unknown-linux-gnu.zip + edc5cdb927e7d599b08832382faa5039ef7d5301046ca2790985b8536352f417 ./target/bin-0.21.6/eza_x86_64-unknown-linux-musl.tar.gz + 10a21e78e4be55543ab89c9a69b83c5850be8521e5714026782c2de4a1621ab0 ./target/bin-0.21.6/eza_x86_64-unknown-linux-musl.zip +ReleaseNotesUrl: https://github.com/eza-community/eza/releases/tag/v0.21.6 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/eza-community/eza/0.21.6/eza-community.eza.yaml b/manifests/e/eza-community/eza/0.21.6/eza-community.eza.yaml new file mode 100644 index 0000000000000..7d9a155fed5fd --- /dev/null +++ b/manifests/e/eza-community/eza/0.21.6/eza-community.eza.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: eza-community.eza +PackageVersion: 0.21.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/eza-community/eza/0.22.0/eza-community.eza.installer.yaml b/manifests/e/eza-community/eza/0.22.0/eza-community.eza.installer.yaml new file mode 100644 index 0000000000000..7e73faf70eac8 --- /dev/null +++ b/manifests/e/eza-community/eza/0.22.0/eza-community.eza.installer.yaml @@ -0,0 +1,17 @@ +# 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: eza-community.eza +PackageVersion: 0.22.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: eza.exe +UpgradeBehavior: install +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/eza-community/eza/releases/download/v0.22.0/eza.exe_x86_64-pc-windows-gnu.zip + InstallerSha256: F2F033D4B65467C80410DD3387C44D5EC20F7AEDB5B426B45DE50FC873ACD931 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/eza-community/eza/0.22.0/eza-community.eza.locale.en-US.yaml b/manifests/e/eza-community/eza/0.22.0/eza-community.eza.locale.en-US.yaml new file mode 100644 index 0000000000000..c7dd207a1ab29 --- /dev/null +++ b/manifests/e/eza-community/eza/0.22.0/eza-community.eza.locale.en-US.yaml @@ -0,0 +1,103 @@ +# 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: eza-community.eza +PackageVersion: 0.22.0 +PackageLocale: en-US +Publisher: eza community +PublisherUrl: https://eza.rocks/ +PublisherSupportUrl: https://github.com/eza-community/eza/issues +PackageName: eza +PackageUrl: https://github.com/eza-community/eza +License: EUPL-1.2 +LicenseUrl: https://github.com/eza-community/eza/blob/HEAD/LICENSE.txt +ShortDescription: A modern, maintained replacement for ls, built on exa. +Description: |- + eza is a modern, maintained replacement for the venerable file-listing + command-line program ls that ships with Unix and Linux operating systems, + giving it more features and better defaults. + + It uses colours to distinguish file types and metadata. + It knows about symlinks, extended attributes, and Git. + And it's small, fast, and just one single binary +Tags: +- color +- command-line +- files +- hacktoberfest +- icons +- ls +- nerd-fonts +- rust +- terminal +- tools +ReleaseNotes: |- + Description + BREAKING CHANGE: The behavior of the -d flag has been refined to be more + consistent with ls. Its long flag has been changed to --treat-dirs-as-files + for clarity, while --list-dirs is retained as a backward-compatible alias to be + removed in a future release. + Changelog + Bug Fixes + - Replace default_input_path check with "." check + Documentation + - "cheks" should be "checks" + Features + - [breaking] Define -d/--treat-dirs-as-files behavior, tests + Miscellaneous Tasks + - Eza v0.22.0 changelogs, version bump + Build + - Bump phf from 0.11.3 to 0.12.1 + - Cargo bump 2025-07-03 + - Flake bump 2025-07-03 + Ci + - Automate dependency updates + Checksums + sha256sum + 2de8e507312f59e50c40b875ad06a1fdb515ad5caf93de2be568704df7b8b97f ./target/bin-0.22.0/eza_aarch64-unknown-linux-gnu_no_libgit.tar.gz + b06a7cf57fecd48e0c641976cbd61e1528a877af04df16f0abfc722b88477a8e ./target/bin-0.22.0/eza_aarch64-unknown-linux-gnu_no_libgit.zip + 4b250da2c06d8cb0b0e3344ca7a38a7419e064d859b7b61bbd693bf26fa129f8 ./target/bin-0.22.0/eza_aarch64-unknown-linux-gnu.tar.gz + ccfff1873a91956f90c1c1844fae973906602eb95d0bd6f4828f3be28b16a12d ./target/bin-0.22.0/eza_aarch64-unknown-linux-gnu.zip + 7407928fd414cc312c8def52d705cfc573a58f049a8a380cf77729e3a47852bf ./target/bin-0.22.0/eza_arm-unknown-linux-gnueabihf_no_libgit.tar.gz + 5b720be2fc812a7e66a746095fe318fbae3be91c8a0f5044d04e584945f2afb8 ./target/bin-0.22.0/eza_arm-unknown-linux-gnueabihf_no_libgit.zip + 77e2c9e39b1e67ab1c241df41124612590ef77ef32021719608c9626e1d9bbcf ./target/bin-0.22.0/eza_arm-unknown-linux-gnueabihf.tar.gz + 5c299b57e8e9518d3ac9c86fa5283ed58a3cd680eabdbbd7b18ff0c02be15e07 ./target/bin-0.22.0/eza_arm-unknown-linux-gnueabihf.zip + 12c766d48673579a6cd0a267d4e5101c889a160af6002c16161c4694cc19ecd1 ./target/bin-0.22.0/eza.exe_x86_64-pc-windows-gnu.tar.gz + f2f033d4b65467c80410dd3387c44d5ec20f7aedb5b426b45de50fc873acd931 ./target/bin-0.22.0/eza.exe_x86_64-pc-windows-gnu.zip + 46153e02382e4e30d5e32bd3b0a075ede7dab67b1db4293513673f27567c5606 ./target/bin-0.22.0/eza_x86_64-unknown-linux-gnu.tar.gz + 31898f58cb00ec196f7c9a20e9594b258e021995069e922df8e136be4e6c2061 ./target/bin-0.22.0/eza_x86_64-unknown-linux-gnu.zip + 0fe7b6216773cffd5e670c4fd15fa9556970e868331080edfbe566182ddec7c7 ./target/bin-0.22.0/eza_x86_64-unknown-linux-musl.tar.gz + d88ae16009f5a110dc36c785a44cb8cf4b84e24542ebe164572560f188e28f10 ./target/bin-0.22.0/eza_x86_64-unknown-linux-musl.zip + md5sum + e8a05827af99235be404d6cbdbab1468 ./target/bin-0.22.0/eza_aarch64-unknown-linux-gnu_no_libgit.tar.gz + 221cdad4a7982753db09944e7dcc6663 ./target/bin-0.22.0/eza_aarch64-unknown-linux-gnu_no_libgit.zip + 07f3a80633938f49cb3eb62df1a14230 ./target/bin-0.22.0/eza_aarch64-unknown-linux-gnu.tar.gz + f741539d2e8fd8ef98d525f0a3bd2fc8 ./target/bin-0.22.0/eza_aarch64-unknown-linux-gnu.zip + 88d886d4d6d99ebc8cf13d1137664bbd ./target/bin-0.22.0/eza_arm-unknown-linux-gnueabihf_no_libgit.tar.gz + b6c9f56b5edd20c169d3d77d0936c4bb ./target/bin-0.22.0/eza_arm-unknown-linux-gnueabihf_no_libgit.zip + 1cd1534ea8de7a791b681237de9ea999 ./target/bin-0.22.0/eza_arm-unknown-linux-gnueabihf.tar.gz + 4ff5cb8ef6c95b0a976b40458d9bf977 ./target/bin-0.22.0/eza_arm-unknown-linux-gnueabihf.zip + a658dcbe5ab7a4e29bccf4876dbe58bf ./target/bin-0.22.0/eza.exe_x86_64-pc-windows-gnu.tar.gz + bae0d3075b97f8571f262be937d36156 ./target/bin-0.22.0/eza.exe_x86_64-pc-windows-gnu.zip + a98d782f9ccb6bf696b3002ecdba9f6b ./target/bin-0.22.0/eza_x86_64-unknown-linux-gnu.tar.gz + 22999dbd8216d91796e707d924eb8cfd ./target/bin-0.22.0/eza_x86_64-unknown-linux-gnu.zip + 79074ade6d7cd52dc1772a97958eac0a ./target/bin-0.22.0/eza_x86_64-unknown-linux-musl.tar.gz + 5130b9d55c3a77dd2989be16666c76e4 ./target/bin-0.22.0/eza_x86_64-unknown-linux-musl.zip + blake3sum + 9815c7c378e3b16a413153412a9d6ab63a4a296d74b5cca4fa1fa5b480279544 ./target/bin-0.22.0/eza_aarch64-unknown-linux-gnu_no_libgit.tar.gz + 0fc0bf64f3b1a6f1f99853c0f99ac19b64e702e9794af77955307f0238f51fcd ./target/bin-0.22.0/eza_aarch64-unknown-linux-gnu_no_libgit.zip + 903239730764e7cd29d3e2bfc0e89d95b31c403d429a5bd421112dcb4f37ba74 ./target/bin-0.22.0/eza_aarch64-unknown-linux-gnu.tar.gz + 6486eb0c46eca8591fccd13fae014d5d40948810ad3f17b11f83ca98d53eeb0b ./target/bin-0.22.0/eza_aarch64-unknown-linux-gnu.zip + a56d014e97f514fb30b1f479cdd22351259afed828f48e8074c79abf91238e6c ./target/bin-0.22.0/eza_arm-unknown-linux-gnueabihf_no_libgit.tar.gz + 501835fd7670bb89dbc0e0da052d183bf217b202b319a532ff9f46092db42ce4 ./target/bin-0.22.0/eza_arm-unknown-linux-gnueabihf_no_libgit.zip + ca94d24b514147e00e9c9d9c5e88580f9ef912636cdde9787d3cbf0582cca8f2 ./target/bin-0.22.0/eza_arm-unknown-linux-gnueabihf.tar.gz + c69c24a64af23c1ef641c6d549215047f9548905a199d47774a13f14819e55b2 ./target/bin-0.22.0/eza_arm-unknown-linux-gnueabihf.zip + 4375ce16b3d38e585f8b4cbdb88aee6973720bb0d9993a8ed47fa0bdad8b6e46 ./target/bin-0.22.0/eza.exe_x86_64-pc-windows-gnu.tar.gz + 5094bb1de6b5db7105ff7bc59e97d2ac58b2e0cb08c9e7aaa7b9228fb72d3dcb ./target/bin-0.22.0/eza.exe_x86_64-pc-windows-gnu.zip + 3f6bc64d6de9216890f9f2b6c59adbc4c64ba86876bee3fdcd4c318d52ff2a12 ./target/bin-0.22.0/eza_x86_64-unknown-linux-gnu.tar.gz + 27eff4621bfe231a8bd8fc3436e5c429945cc6fede8888ba5845cf49f1a8b560 ./target/bin-0.22.0/eza_x86_64-unknown-linux-gnu.zip + 9776ba0457a3a1113749cfc7f518790f9d016750596b78591d55196b6a87d2a0 ./target/bin-0.22.0/eza_x86_64-unknown-linux-musl.tar.gz + c6195cc41b8fd4d3c394140f6ca391f6891facedfe18059b0a85e426d4355e07 ./target/bin-0.22.0/eza_x86_64-unknown-linux-musl.zip +ReleaseNotesUrl: https://github.com/eza-community/eza/releases/tag/v0.22.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/eza-community/eza/0.22.0/eza-community.eza.yaml b/manifests/e/eza-community/eza/0.22.0/eza-community.eza.yaml new file mode 100644 index 0000000000000..c0edcb8314b66 --- /dev/null +++ b/manifests/e/eza-community/eza/0.22.0/eza-community.eza.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: eza-community.eza +PackageVersion: 0.22.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FACEITLTD/FACEITClient/2.1.26/FACEITLTD.FACEITClient.installer.yaml b/manifests/f/FACEITLTD/FACEITClient/2.1.26/FACEITLTD.FACEITClient.installer.yaml deleted file mode 100644 index e2c3281b42461..0000000000000 --- a/manifests/f/FACEITLTD/FACEITClient/2.1.26/FACEITLTD.FACEITClient.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/18 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: FACEITLTD.FACEITClient -PackageVersion: 2.1.26 -InstallerLocale: en-US -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: exe -Scope: machine -InstallModes: -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -Installers: -- Architecture: x64 - InstallerUrl: https://faceit-client.faceit-cdn.net/release/FACEIT-setup-latest.exe - InstallerSha256: 38CAAA4E20153FD2D96B5521928218454713EB6B7CC560615531285AA45ED244 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/f/FACEITLTD/FACEITClient/2.1.26/FACEITLTD.FACEITClient.yaml b/manifests/f/FACEITLTD/FACEITClient/2.1.26/FACEITLTD.FACEITClient.yaml deleted file mode 100644 index 1d65b45d0a0f6..0000000000000 --- a/manifests/f/FACEITLTD/FACEITClient/2.1.26/FACEITLTD.FACEITClient.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/18 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: FACEITLTD.FACEITClient -PackageVersion: 2.1.26 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/f/FACEITLTD/FACEITClient/2.1.40/FACEITLTD.FACEITClient.installer.yaml b/manifests/f/FACEITLTD/FACEITClient/2.1.40/FACEITLTD.FACEITClient.installer.yaml new file mode 100644 index 0000000000000..39747cecf7a5a --- /dev/null +++ b/manifests/f/FACEITLTD/FACEITClient/2.1.40/FACEITLTD.FACEITClient.installer.yaml @@ -0,0 +1,23 @@ +# Automatically updated by the winget bot at 2025/Jul/05 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: FACEITLTD.FACEITClient +PackageVersion: 2.1.40 +InstallerLocale: en-US +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: exe +Scope: machine +InstallModes: +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://faceit-client.faceit-cdn.net/release/FACEIT-setup-latest.exe + InstallerSha256: 7FA2822EE499594467147B76C1785B7880085E3114B23942C3E0682C42884430 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/FACEITLTD/FACEITClient/2.1.26/FACEITLTD.FACEITClient.locale.en-US.yaml b/manifests/f/FACEITLTD/FACEITClient/2.1.40/FACEITLTD.FACEITClient.locale.en-US.yaml similarity index 89% rename from manifests/f/FACEITLTD/FACEITClient/2.1.26/FACEITLTD.FACEITClient.locale.en-US.yaml rename to manifests/f/FACEITLTD/FACEITClient/2.1.40/FACEITLTD.FACEITClient.locale.en-US.yaml index b7972ae563aa1..825d8b8aec766 100644 --- a/manifests/f/FACEITLTD/FACEITClient/2.1.26/FACEITLTD.FACEITClient.locale.en-US.yaml +++ b/manifests/f/FACEITLTD/FACEITClient/2.1.40/FACEITLTD.FACEITClient.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jun/18 +# Automatically updated by the winget bot at 2025/Jul/05 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: FACEITLTD.FACEITClient -PackageVersion: 2.1.26 +PackageVersion: 2.1.40 PackageLocale: en-US Publisher: FACEIT Ltd. PrivacyUrl: https://corporate.faceit.com/privacy diff --git a/manifests/f/FACEITLTD/FACEITClient/2.1.40/FACEITLTD.FACEITClient.yaml b/manifests/f/FACEITLTD/FACEITClient/2.1.40/FACEITLTD.FACEITClient.yaml new file mode 100644 index 0000000000000..4f5f7edd1f25b --- /dev/null +++ b/manifests/f/FACEITLTD/FACEITClient/2.1.40/FACEITLTD.FACEITClient.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/05 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: FACEITLTD.FACEITClient +PackageVersion: 2.1.40 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FOSSA/FOSSA-cli/3.10.11/FOSSA.FOSSA-cli.installer.yaml b/manifests/f/FOSSA/FOSSA-cli/3.10.11/FOSSA.FOSSA-cli.installer.yaml new file mode 100644 index 0000000000000..72d835b9bbc73 --- /dev/null +++ b/manifests/f/FOSSA/FOSSA-cli/3.10.11/FOSSA.FOSSA-cli.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: FOSSA.FOSSA-cli +PackageVersion: 3.10.11 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: fossa.exe +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/fossas/fossa-cli/releases/download/v3.10.11/fossa_3.10.11_windows_amd64.zip + InstallerSha256: 860EE375C97C7A77FEB45BBF1330CFE78D9B210E74310D73BE1CAE8121F3E949 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/FOSSA/FOSSA-cli/3.10.11/FOSSA.FOSSA-cli.locale.en-US.yaml b/manifests/f/FOSSA/FOSSA-cli/3.10.11/FOSSA.FOSSA-cli.locale.en-US.yaml new file mode 100644 index 0000000000000..89f5e7dde6e07 --- /dev/null +++ b/manifests/f/FOSSA/FOSSA-cli/3.10.11/FOSSA.FOSSA-cli.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: FOSSA.FOSSA-cli +PackageVersion: 3.10.11 +PackageLocale: en-US +Publisher: FOSSA +PublisherUrl: https://fossa.com/ +PublisherSupportUrl: https://github.com/fossas/fossa-cli/issues +PackageName: fossa-cli +PackageUrl: https://github.com/fossas/fossa-cli +License: MPL-2.0 +LicenseUrl: https://github.com/fossas/fossa-cli/blob/HEAD/LICENSE +ShortDescription: Fast, portable and reliable dependency analysis for any codebase. +Moniker: fossa +Tags: +- open-source-licensing +- open-source-vulnerabilities +ReleaseNotes: |- + What's Changed + - Make it clearer that our manual dependency support is not specific to GitHub by @csasarak in #1554 + - Fix unzipping JARs that symlink to other layers by @zlav in #1555 + - Update Documentation Links by @gilfaizon in #1556 + - Add rendergraph to releases by @jssblck in #1558 + Full Changelog: v3.10.10...v3.10.11 +ReleaseNotesUrl: https://github.com/fossas/fossa-cli/releases/tag/v3.10.11 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/FOSSA/FOSSA-cli/3.10.11/FOSSA.FOSSA-cli.yaml b/manifests/f/FOSSA/FOSSA-cli/3.10.11/FOSSA.FOSSA-cli.yaml new file mode 100644 index 0000000000000..0b97d08c4ccc3 --- /dev/null +++ b/manifests/f/FOSSA/FOSSA-cli/3.10.11/FOSSA.FOSSA-cli.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: FOSSA.FOSSA-cli +PackageVersion: 3.10.11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FastCopy/IPMsg/5.7.3/FastCopy.IPMsg.installer.yaml b/manifests/f/FastCopy/IPMsg/5.7.3/FastCopy.IPMsg.installer.yaml new file mode 100644 index 0000000000000..015e7aa4191a4 --- /dev/null +++ b/manifests/f/FastCopy/IPMsg/5.7.3/FastCopy.IPMsg.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: FastCopy.IPMsg +PackageVersion: 5.7.3 +MinimumOSVersion: 10.0.0.0 +InstallerType: exe +Scope: user +InstallerSwitches: + Silent: /SILENT + SilentWithProgress: /SILENT +Installers: +- Architecture: x86 + InstallerUrl: https://raw.githubusercontent.com/FastCopyLab/IPMsgDist/main/ipmsg5.7.3_installer.exe + InstallerSha256: DAFA7FF85B6D6BD6B119A94DDAD4809AF2E748E59B88227BA8DC7BB85BC72AF2 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/f/FastCopy/IPMsg/5.7.3/FastCopy.IPMsg.locale.ja-JP.yaml b/manifests/f/FastCopy/IPMsg/5.7.3/FastCopy.IPMsg.locale.ja-JP.yaml new file mode 100644 index 0000000000000..319d5435f00c9 --- /dev/null +++ b/manifests/f/FastCopy/IPMsg/5.7.3/FastCopy.IPMsg.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: FastCopy.IPMsg +PackageVersion: 5.7.3 +PackageLocale: ja-JP +Publisher: H.Shirouzu & FastCopy Lab, LLC. +PackageName: IP Messenger for Win +PackageUrl: https://github.com/FastCopyLab/IPMsgDist +License: Freeware +ShortDescription: Serverless lightweight Messenger for LAN. +Moniker: ipmsg +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/f/FastCopy/IPMsg/5.7.3/FastCopy.IPMsg.yaml b/manifests/f/FastCopy/IPMsg/5.7.3/FastCopy.IPMsg.yaml new file mode 100644 index 0000000000000..5c795d8ab2331 --- /dev/null +++ b/manifests/f/FastCopy/IPMsg/5.7.3/FastCopy.IPMsg.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: FastCopy.IPMsg +PackageVersion: 5.7.3 +DefaultLocale: ja-JP +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/f/Faster3ck/Converseen/0.14.0.0/Faster3ck.Converseen.installer.yaml b/manifests/f/Faster3ck/Converseen/0.14.0.0/Faster3ck.Converseen.installer.yaml new file mode 100644 index 0000000000000..b68386f3028b5 --- /dev/null +++ b/manifests/f/Faster3ck/Converseen/0.14.0.0/Faster3ck.Converseen.installer.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Faster3ck.Converseen +PackageVersion: 0.14.0.0 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{B35C58D3-FBD2-4A81-8371-588F51000024}' +ReleaseDate: 2025-04-25 +AppsAndFeaturesEntries: +- UpgradeCode: '{B35C58D3-FBD2-4A81-8371-588F51EC180F}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Converseen' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Faster3ck/Converseen/releases/download/v0.14.0.0/Converseen-0.14.0.0-1-win32-setup.msi + InstallerSha256: 99D7190655A3C09563C6023F4B21C4337C069ECA217B5B55CD5D59619BED5546 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Faster3ck/Converseen/0.14.0.0/Faster3ck.Converseen.locale.en-US.yaml b/manifests/f/Faster3ck/Converseen/0.14.0.0/Faster3ck.Converseen.locale.en-US.yaml new file mode 100644 index 0000000000000..44cfe8ed6e946 --- /dev/null +++ b/manifests/f/Faster3ck/Converseen/0.14.0.0/Faster3ck.Converseen.locale.en-US.yaml @@ -0,0 +1,53 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Faster3ck.Converseen +PackageVersion: 0.14.0.0 +PackageLocale: en-US +Publisher: Francesco Mondello +PublisherUrl: https://github.com/Faster3ck +PublisherSupportUrl: https://github.com/Faster3ck/Converseen/issues +Author: Francesco Mondello +PackageName: Converseen +PackageUrl: https://github.com/Faster3ck/Converseen +License: GPL-3.0 +LicenseUrl: https://github.com/Faster3ck/Converseen/blob/main/COPYING.txt +ShortDescription: Converseen is a batch image converter and resizer +Description: |- + Converseen is a free cross-platform batch image processor for Windows, Linux, + macOS, FreeBSD, and other operating systems. It allows you to convert, resize, + rotate, and flip an infinite number of images with a single mouse click. + Moreover, Converseen can convert an entire PDF document into a set of images + with your preferred characteristics. You can choose from over 100+ formats, + set the size, resolution, and the filename. + + Thanks to ImageMagick, the powerful image manipulation library, Converseen can + handle more than 100 image formats, including DPX, EXR, GIF, JPEG, JPEG-2000, + PNG, SVG, TIFF, WebP, HEIC/HEIF, and many others. Converseen is designed to be + user-friendly, fast, practical, and best of all, it’s available for free! +Tags: +- batch-image-processor +- image +- image-converter +- image-processing +- image-resizer +ReleaseNotes: |- + ## Changelog + + - Images are now displayed and converted with the correct orientation when Exif + orientation data is present + - Fixed a bug when importing TIF files + - Updated Russian translation by @alevtina-karashokova in #188 + - Various Bugfixes + + ## New Contributors + + - @alevtina-karashokova made their first contribution in #188 + + ## Other Changes + + - The AppImage version now supports Ubuntu 22.04 and later, as Ubuntu 20.04 has + reached end-of-life (EOL). +ReleaseNotesUrl: https://github.com/Faster3ck/Converseen/releases/tag/v0.14.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Faster3ck/Converseen/0.14.0.0/Faster3ck.Converseen.yaml b/manifests/f/Faster3ck/Converseen/0.14.0.0/Faster3ck.Converseen.yaml new file mode 100644 index 0000000000000..caf89a8481a38 --- /dev/null +++ b/manifests/f/Faster3ck/Converseen/0.14.0.0/Faster3ck.Converseen.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Faster3ck.Converseen +PackageVersion: 0.14.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fastfetch-cli/Fastfetch/2.47.0/Fastfetch-cli.Fastfetch.installer.yaml b/manifests/f/Fastfetch-cli/Fastfetch/2.47.0/Fastfetch-cli.Fastfetch.installer.yaml new file mode 100644 index 0000000000000..48039f96eeb77 --- /dev/null +++ b/manifests/f/Fastfetch-cli/Fastfetch/2.47.0/Fastfetch-cli.Fastfetch.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: Fastfetch-cli.Fastfetch +PackageVersion: 2.47.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: fastfetch.exe +- RelativeFilePath: flashfetch.exe +Commands: +- fastfetch +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/fastfetch-cli/fastfetch/releases/download/2.47.0/fastfetch-windows-amd64.zip + InstallerSha256: 30816545E27CDFE8951E264D4520C7B759E9755E17091EEA0A58A9EB2B230EFD +- Architecture: arm64 + InstallerUrl: https://github.com/fastfetch-cli/fastfetch/releases/download/2.47.0/fastfetch-windows-aarch64.zip + InstallerSha256: A48D4EA579B933C8EB788383F893E640F68B14B80FC9FE00D17AE804C1538024 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fastfetch-cli/Fastfetch/2.47.0/Fastfetch-cli.Fastfetch.locale.en-US.yaml b/manifests/f/Fastfetch-cli/Fastfetch/2.47.0/Fastfetch-cli.Fastfetch.locale.en-US.yaml new file mode 100644 index 0000000000000..36f619dd7e067 --- /dev/null +++ b/manifests/f/Fastfetch-cli/Fastfetch/2.47.0/Fastfetch-cli.Fastfetch.locale.en-US.yaml @@ -0,0 +1,118 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Fastfetch-cli.Fastfetch +PackageVersion: 2.47.0 +PackageLocale: en-US +Publisher: fastfetch-cli +PublisherUrl: https://github.com/fastfetch-cli +PublisherSupportUrl: https://github.com/fastfetch-cli/fastfetch/issues +PackageName: fastfetch +PackageUrl: https://github.com/fastfetch-cli/fastfetch +License: MIT +LicenseUrl: https://github.com/fastfetch-cli/fastfetch/blob/HEAD/LICENSE +ShortDescription: Like neofetch, but much faster because written mostly in C. +Tags: +- cli +- command-line +- cross-platform +- fastfetch +- fetch +- hardware +- neofetch +- screenfetch +- terminal +ReleaseNotes: |- + Features: + - Various improvements for Solaris / OpenIndiana support + - Support BIOS (UEFI or legacy) type detection (BIOS) + - Support physical disk detection (PhysicalDisk) + - Remove leading - from login shells (Shell) + - Improve GPU detection performance (GPU) + - Drop libpciaccess dependency + - Use native API to detect sound devices (Sound) + - Drop PulseAudio dependency + - Improve DietPi OS and Raspberry Pi OS detection (#1816, OS, Linux) + - Force reporting version 26 on macOS Tahoe (OS, macOS) + - Append version string to Ubuntu variants (OS, Linux) + - Improve performance of media detection for macOS 15.4+ (Media, macOS) + - Increase PROC_FILE_BUFFSIZ to avoid possible short reads (Linux) + - Fix potential bugs in DiskIO, NetIO and CPUUsage modules + - Improve accuracy of CPU usage calculations by including interrupt and softirq times (CPUUsage, Linux / *BSD) + - Ignore init and systemd processes when detecting terminals (Terminal, Linux) + - Improve accuracy of CPU usage detection on Windows 10+ with perflib, which matches values reported by Task Manager (CPUUsage, Windows) + Bugfixes: + - Fix pci.ids file location (#1819, GPU, OpenBSD) + - Fix compiling on FreeBSD when libdrm support is disabled (#1820, GPU, FreeBSD) + Logos: + - Improve visibility on white-background terminals for some logos by replacing white with the default foreground color + - According to Wikipedia, the default foreground color is implementation-defined. It's usually black for white themes and white for dark themes. However, some terminals, notably Konsole with the default theme, use a different color, which may cause issues with some logos. + - Add Xubuntu + SHA256SUMs + 238b1104adb8e37993e74852952eface5e44afd339b7de1227f608a6b14d7b1d fastfetch-freebsd-amd64/fastfetch-freebsd-amd64.pkg + ec3817dca43861ce9a1dd487456c36d8afb2832889751c5b6ae0c00811ee029d fastfetch-freebsd-amd64/fastfetch-freebsd-amd64.tar.gz + 86bd630617c4930cc8cb0533c745a4ced76f8f712cb5ff6e9ee7ee87c11a83de fastfetch-freebsd-amd64/fastfetch-freebsd-amd64.zip + 6c6d052cda4ff326a04fabe8d45650c26513175cd981d6dc47fb609691f8abe5 fastfetch-linux-aarch64/fastfetch-linux-aarch64.deb + 02a6d4edd76dcd4523385767c389af77b650fe47e031f7b8aa57c7d46f0f07be fastfetch-linux-aarch64/fastfetch-linux-aarch64.rpm + bdd1d26f124d7616b6a7161a1dc7ec26094c90ac8398e11a980845120a43dfa4 fastfetch-linux-aarch64/fastfetch-linux-aarch64.tar.gz + b02fd6a8d7a5c7cd8510572d367053a1ec4229cc10540e4801ad10f1be9a31f2 fastfetch-linux-aarch64/fastfetch-linux-aarch64.zip + 3a2c963c207311af6c6a377230393d3135e8b0690c011f12df40209d9d2ec259 fastfetch-linux-amd64/fastfetch-linux-amd64.deb + 22701139b29278bc719a757eef34948fb135df1f0641a654e42d10c77111b019 fastfetch-linux-amd64/fastfetch-linux-amd64.rpm + cb5efd32d868b2d754c01b51bd82eadbfd9e60109ecef089410837c17e9f8381 fastfetch-linux-amd64/fastfetch-linux-amd64.tar.gz + 1ac3eea01bc89a770a6481bd785d8c7f628d63933c3506f2e7860081e52f0d1b fastfetch-linux-amd64/fastfetch-linux-amd64.zip + e94b08fa724a4332c508381ca424ab4013ceb68b584f5f2ba2c9c8868a520fb5 fastfetch-linux-armv6l/fastfetch-linux-armv6l.deb + 0dfeec3df95a58b8d9b7a4cf8a76e0440947520d97493742119a7bdb648513b8 fastfetch-linux-armv6l/fastfetch-linux-armv6l.rpm + e803d4372fb4cb8a9c22715fa44a3773e25f555e0e613f697dbd30891ce4e105 fastfetch-linux-armv6l/fastfetch-linux-armv6l.tar.gz + c45e4dbc72eaa04053203797ebc07d47eadf09b41962c5fe5d81058cf1316ee8 fastfetch-linux-armv6l/fastfetch-linux-armv6l.zip + a083db563f7e562247769dd0dc347cc576c302460de9be8345eda71a194107d2 fastfetch-linux-armv7l/fastfetch-linux-armv7l.deb + 9f3ccf8a6364d2bf41fed776351b9019c7a6de0f963ed32ad4e2127a176db393 fastfetch-linux-armv7l/fastfetch-linux-armv7l.rpm + 48800b3a3a9405c3df3aeb83fc1e11b668ea00deba404ac149f755216d30ce7e fastfetch-linux-armv7l/fastfetch-linux-armv7l.tar.gz + b765eab8145df09c4fcfa3157983ea7eaf11e9593da1bb6ede694d9a8d473f8b fastfetch-linux-armv7l/fastfetch-linux-armv7l.zip + 8c9ba564f6c229908c547b37c2826e29b38e10b830c87cd5e500458c9b3d3a83 fastfetch-linux-ppc64le/fastfetch-linux-ppc64le.deb + 685572c90b9d69abbf612c6fb32166adbedfb5a005656784d6acd294801c942c fastfetch-linux-ppc64le/fastfetch-linux-ppc64le.rpm + ca7e4b1d229d74813a8ab0c3588ae9671c7f5c3a4053fd51ca3e9a1a5732112c fastfetch-linux-ppc64le/fastfetch-linux-ppc64le.tar.gz + b95344ae160a97376e6faf7a281f9ec3597f38b91712f957d53214dda93db688 fastfetch-linux-ppc64le/fastfetch-linux-ppc64le.zip + 65e818dfe28723c243c9c847d4b687ecc88f466dd2e3310036742a2bb61b5dd0 fastfetch-linux-riscv64/fastfetch-linux-riscv64.deb + b2a0b60696976a44ad95941f71f9a848e2452a9b7cf5e02486776ddf09d9c22d fastfetch-linux-riscv64/fastfetch-linux-riscv64.rpm + 799fe9624c5cd275465165862f35381cc7e605c1703c48ab141c4e690519cef3 fastfetch-linux-riscv64/fastfetch-linux-riscv64.tar.gz + cf80b6ae0f52f0d7dbf37ac38d68d830ef48ead846a1425de35739b0c80138b6 fastfetch-linux-riscv64/fastfetch-linux-riscv64.zip + a5b1f15c22cc7e05557f0804437ab930ab6488b7dbd4c73dfd24fc8a94480415 fastfetch-linux-s390x/fastfetch-linux-s390x.deb + 95c4aa3d2b642733710dcaa1fea1da8dd8a39b869084c46a7ef06713b705c33f fastfetch-linux-s390x/fastfetch-linux-s390x.rpm + 7f64d3bf13b6f1cfdca91daa1cd3367ac84a45045f755b17cc0619e6eb9dc21b fastfetch-linux-s390x/fastfetch-linux-s390x.tar.gz + 5dac0b1e26110ac0c1a590bf9c715861731dcfa01b58de0088e9b52cff60f82c fastfetch-linux-s390x/fastfetch-linux-s390x.zip + 3391e6431bba49be82710bace8c32ed02ed4ab0086836f5f42475a4470d32f75 fastfetch-macos-aarch64/fastfetch-macos-aarch64.tar.gz + abb46bbe458309bcd83b8fbcdd85bc8b28abb33e8e21cde810c7e58642d04d9f fastfetch-macos-aarch64/fastfetch-macos-aarch64.zip + 2d50e8a864f53d9504f37d82e5d3a53ab593a4d4b84f1ab8a6de8d9b82375a46 fastfetch-macos-amd64/fastfetch-macos-amd64.tar.gz + 65024152162f210d20d46d57decd8266faffce349948c5c50fe340a3d158c413 fastfetch-macos-amd64/fastfetch-macos-amd64.zip + 9b26b937251b1c80cf9e88e41cbf384e5ae81864be17243ac59f856c61808941 fastfetch-musl-amd64/fastfetch-musl-amd64.tar.gz + 1ce47641682ca3c6d9a818d4a1ef28985e9524b0847fb05ab040b2cf25c58bab fastfetch-musl-amd64/fastfetch-musl-amd64.zip + 341a108202a1a4d28921f5da6bf13a383d7425928c0b97f1a56cad27f48ea342 fastfetch-netbsd-amd64/fastfetch-netbsd-amd64.tar.gz + a786625febee189619b40fd5ab28cc6b740e9c6fca08187b942e653ff1dd8f38 fastfetch-netbsd-amd64/fastfetch-netbsd-amd64.zip + d96428a5b1c4e8018b706daeb3556a3e8d4bf45ada36077d4221478108478053 fastfetch-openbsd-amd64/fastfetch-openbsd-amd64.tar.gz + 4a8bc5d9588563673c7faa931b3ee437b544a08a9d9326b0455d3ca2f1d990a9 fastfetch-openbsd-amd64/fastfetch-openbsd-amd64.zip + c1482b8075718a2b2db95f823419b04b81384237fdba8af56092f184e89797d3 fastfetch-source/2.47.0.tar.gz + 30612192719ccb6cef084f79e17d3ba7d6cc593dfdb7704497845ab16565fd8e fastfetch-source/2.47.0.zip + 465ef9a43c704c6f15d352e8e16ed5bf50153f0be1a27af8ccbb4f609ad6b6ee fastfetch-sunos-amd64/fastfetch-sunos-i386.tar.gz + c5087a6f8ced7a625c5742af326c6f2f77bb1a749459c271bd14e7ab6233e697 fastfetch-sunos-amd64/fastfetch-sunos-i386.zip + 9d9e606defb2c692050aa6ee62f577bce99ec160f6ed609d9049c75e346f7f12 fastfetch-windows-aarch64/fastfetch-windows-aarch64.7z + a48d4ea579b933c8eb788383f893e640f68b14b80fc9fe00d17ae804c1538024 fastfetch-windows-aarch64/fastfetch-windows-aarch64.zip + c9d4446e10fa894770a0d53d2a5dc88b09fedbf5da1ebf46bcd2d3e373dfe12f fastfetch-windows-amd64/fastfetch-windows-amd64.7z + 30816545e27cdfe8951e264d4520c7b759e9755e17091eea0a58a9eb2b230efd fastfetch-windows-amd64/fastfetch-windows-amd64.zip + SHA512SUMs + ba77c86ce0cebbabc6c00b3f3eb0196e856be02a708fe7f013b4499c1956a5b8541f2a113cb0333f919b91cef8d862b039f3f5e997a110e92cc021529c2839a3 fastfetch-freebsd-amd64/fastfetch-freebsd-amd64.pkg + afd3c2e3b50be9038650059aaf25197d6a0a4e6c2a74cdd617b049e375a8939a81310e871ad1824ed1432cd7911af64c9aaa45355114964a5c1cdb7c7aa08e85 fastfetch-freebsd-amd64/fastfetch-freebsd-amd64.tar.gz + a094208a04ebfdb0c2c0f39e8b9148fcc38a7e4d6298941c96bf3cacea3def3041bd5eee8bb8ea63692fef429d9487e15cf13e99a7c4a40f753ee005229741bb fastfetch-freebsd-amd64/fastfetch-freebsd-amd64.zip + 149a1f0f65b5c2220127d31b94a5515f0ebf2b5a6dd0f880aca161b65b457ca8b2df4a9b07c19d8ef6b037e9e8b805e3223b3bb2d3fae9b2578d080066480907 fastfetch-linux-aarch64/fastfetch-linux-aarch64.deb + cf0cb052fc1458440d08e981894ad1dd50503ea0baada54380442b5c50cc4dd4c8e376d821bb78fe5decac65b94c13823efe8cbbf069c2aa04adcc3cb95e9d9e fastfetch-linux-aarch64/fastfetch-linux-aarch64.rpm + 7613d4253e0a0aa745e6fc05cf8622a221f9cc667e4757c650297bf8631a31d010c47fb8963599ee5e6a4a43cb8c89e2bb1a4e059f2732a5a103d82ce3e475b8 fastfetch-linux-aarch64/fastfetch-linux-aarch64.tar.gz + ffde4af13bf74b3eb5d6df6e028c52cd14e298f715e75c9126540aba59b8ae082f88da0978df3b2731a869520bdc5c428ca7a9272e9d048e99a4e6e1d0135b05 fastfetch-linux-aarch64/fastfetch-linux-aarch64.zip + 99aad857a9d370d607ed13b7123fb674368c4ee5ffaabfe05f7ec0f6ef2d4186cacbda9b74148b178e68376f4f469597e76e8ab8b8f38c26566248e2411811cc fastfetch-linux-amd64/fastfetch-linux-amd64.deb + 3df265b6459540ff0a6a94c49b94f8bb6f263e21351d101dd82da2cb3feadbf20cfd79c83c05a1a47dfbdfb67d3ece8f4d977fa1559f966f6136d8d973e2b627 fastfetch-linux-amd64/fastfetch-linux-amd64.rpm + 850e6cc98aeedae43820b0ad98e5fd8f79fc8153c28be3df7cd545e624d366f22e69b6561181e291462c6fcd86c07ffd311a5b868cfaf4505267d3521c7ff89b fastfetch-linux-amd64/fastfetch-linux-amd64.tar.gz + ccf1b32c70240ead081d02ac6ae61d3f7eb84ca2cf735d4b36c9441959f83f573195984f222d0ac855578211a46b114d47a2a9515f1cd07fa6d292e84586d455 fastfetch-linux-amd64/fastfetch-linux-amd64.zip + 3a49f7bfd7ffac0806260d61ee527da1b56645117d12e0d3549ea0b5f73fd3aae80851a93bc537abb294d52759e392ade7d939fb600e38e54c240c97a3e2e0b3 fastfetch-linux-armv6l/fastfetch-linux-armv6l.deb + 45f41b4aa40603b2d3af53fa329de750f87f39ecff571e4741a3fb361144f4f7d9fed60bde268529595fa25129ac6d667122cf154c78b8f0b0cd0f47c7e1f533 fastfetch-linux-armv6l/fastfetch-linux-armv6l.rpm + 2adee481ccdbe06b2c5485e0ef71dbd7b03e2b7fc6db72dc0d5bb73724bd39ad6eabfeafa706534ab32caceb4bf1485d3ea90122007cbe69ef1a2e1b8e783255 fastfetch-linux-armv6l/fastfetch-linux-armv6l.tar.gz +ReleaseNotesUrl: https://github.com/fastfetch-cli/fastfetch/releases/tag/2.47.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fastfetch-cli/Fastfetch/2.47.0/Fastfetch-cli.Fastfetch.yaml b/manifests/f/Fastfetch-cli/Fastfetch/2.47.0/Fastfetch-cli.Fastfetch.yaml new file mode 100644 index 0000000000000..3f4693d390be8 --- /dev/null +++ b/manifests/f/Fastfetch-cli/Fastfetch/2.47.0/Fastfetch-cli.Fastfetch.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: Fastfetch-cli.Fastfetch +PackageVersion: 2.47.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fedora/FedoraMediaWriter/5.2.7/Fedora.FedoraMediaWriter.installer.yaml b/manifests/f/Fedora/FedoraMediaWriter/5.2.7/Fedora.FedoraMediaWriter.installer.yaml new file mode 100644 index 0000000000000..cfd7d40bdf153 --- /dev/null +++ b/manifests/f/Fedora/FedoraMediaWriter/5.2.7/Fedora.FedoraMediaWriter.installer.yaml @@ -0,0 +1,23 @@ +# 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: Fedora.FedoraMediaWriter +PackageVersion: 5.2.7 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: Fedora Media Writer +ReleaseDate: 2025-07-01 +AppsAndFeaturesEntries: +- ProductCode: Fedora Media Writer +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Fedora Media Writer' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/FedoraQt/MediaWriter/releases/download/5.2.7/FedoraMediaWriter-win64-5.2.7.exe + InstallerSha256: F46C869E3CDEA2A5FC064476028FB83528B30F6FA532CF760C077B13508F442E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fedora/FedoraMediaWriter/5.2.7/Fedora.FedoraMediaWriter.locale.en-US.yaml b/manifests/f/Fedora/FedoraMediaWriter/5.2.7/Fedora.FedoraMediaWriter.locale.en-US.yaml new file mode 100644 index 0000000000000..d379b0fd88f0c --- /dev/null +++ b/manifests/f/Fedora/FedoraMediaWriter/5.2.7/Fedora.FedoraMediaWriter.locale.en-US.yaml @@ -0,0 +1,29 @@ +# 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: Fedora.FedoraMediaWriter +PackageVersion: 5.2.7 +PackageLocale: en-US +Publisher: Fedora Project +PublisherUrl: https://github.com/FedoraQt +PublisherSupportUrl: https://github.com/FedoraQt/MediaWriter/issues +PrivacyUrl: https://github.com/FedoraQt/MediaWriter/blob/main/PRIVACY.md +PackageName: Fedora Media Writer +PackageUrl: https://github.com/FedoraQt/MediaWriter +License: GPL-2.0 +LicenseUrl: https://github.com/FedoraQt/MediaWriter/blob/HEAD/LICENSE.GPL-2 +ShortDescription: Fedora Media Writer is a tool that helps users put Fedora images on their portable drives such as flash disks. +Tags: +- fedora +- fedora-media-writer +- fmw +- iso +- linux +- live-usb +ReleaseNotes: |- + - Fixed version in Windows installer + - Fixed COSMIC Atomic wrongly downloading regular COSMIC spin (#877) + - Updated translations +ReleaseNotesUrl: https://github.com/FedoraQt/MediaWriter/releases/tag/5.2.7 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fedora/FedoraMediaWriter/5.2.7/Fedora.FedoraMediaWriter.yaml b/manifests/f/Fedora/FedoraMediaWriter/5.2.7/Fedora.FedoraMediaWriter.yaml new file mode 100644 index 0000000000000..5571a65f9e8c7 --- /dev/null +++ b/manifests/f/Fedora/FedoraMediaWriter/5.2.7/Fedora.FedoraMediaWriter.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: Fedora.FedoraMediaWriter +PackageVersion: 5.2.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FelixZeller/markdown-oxide/0.25.3/FelixZeller.markdown-oxide.installer.yaml b/manifests/f/FelixZeller/markdown-oxide/0.25.3/FelixZeller.markdown-oxide.installer.yaml new file mode 100644 index 0000000000000..06dd6bbaffecb --- /dev/null +++ b/manifests/f/FelixZeller/markdown-oxide/0.25.3/FelixZeller.markdown-oxide.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: FelixZeller.markdown-oxide +PackageVersion: 0.25.3 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: markdown-oxide-v0.25.3-x86_64-pc-windows-gnu/markdown-oxide.exe +UpgradeBehavior: install +Commands: +- markdown-oxide +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Feel-ix-343/markdown-oxide/releases/download/v0.25.3/markdown-oxide-v0.25.3-x86_64-pc-windows-gnu.zip + InstallerSha256: 774E1FF7CD40B3B381E4E04D2DC8C9552A8519EAE2A8958F58EF819DB5745041 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/FelixZeller/markdown-oxide/0.25.3/FelixZeller.markdown-oxide.locale.en-US.yaml b/manifests/f/FelixZeller/markdown-oxide/0.25.3/FelixZeller.markdown-oxide.locale.en-US.yaml new file mode 100644 index 0000000000000..3364fa34964c2 --- /dev/null +++ b/manifests/f/FelixZeller/markdown-oxide/0.25.3/FelixZeller.markdown-oxide.locale.en-US.yaml @@ -0,0 +1,59 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: FelixZeller.markdown-oxide +PackageVersion: 0.25.3 +PackageLocale: en-US +Publisher: Felix Zeller +PublisherUrl: https://github.com/Feel-ix-343 +PublisherSupportUrl: https://github.com/Feel-ix-343/markdown-oxide/issues +Author: Felix Zeller +PackageName: markdown-oxide +PackageUrl: https://github.com/Feel-ix-343/markdown-oxide +License: Apache-2.0 +LicenseUrl: https://github.com/Feel-ix-343/markdown-oxide/blob/HEAD/LICENSE +ShortDescription: Markdown-Oxide is a Personal Knowledge Management System(PKM) that composes with your favorite text-editor through the Language Server Protocol(LSP) +Description: |- + Markdown-Oxide is a Personal Knowledge Management System(PKM) that composes with your favorite text-editor through the Language Server Protocol(LSP). + + While other PKMs implement their own text-editors, markdown-oxide is unbundled: it leaves text-editing to a dedicated text-editor and focuses solely on robust, performant knowledge management. + + It also is inspired by and highly compatible with Obsidian. + + Editor Support: + + - The best-supported text editor is Neovim, but also popular with users are VSCode, Helix, and Zed. + + - Markdown Oxide will work with any text editor implementing the Language Server Protocol, but support for features will depend on the extent to which the editor implements the LSP. + + Markdown-oxide is for you if: + + - You have a favorite text editor -- possibly one that you have spent days configuring and cannot live without -- and it supports the LSP. + - Your set of Personal Knowledge Management needs can be met by Markdown-oxide. +Moniker: markdown-oxide +Tags: +- language-server-protocol +- lsp +- lsp-server +- markdown +- obsidian +- obsidian-md +- rust +- rust-lang +- rust-language-server +- vscode-language-support +- vscode-languageserver +ReleaseNotes: |- + What's Changed + - fix: correctly parse markdown links without including trailing parentheses by @DrakeRichards in #264 + New Contributors + - @DrakeRichards made their first contribution in #264 + Full Changelog: v0.25.2...v0.25.3 +ReleaseNotesUrl: https://github.com/Feel-ix-343/markdown-oxide/releases/tag/v0.25.3 +Documentations: +- DocumentLabel: Getting Started Guide + DocumentUrl: https://oxide.md/v0/Guides/Getting+started+with+Markdown+Oxide+Version+0 +- DocumentLabel: What is markdown-oxide + DocumentUrl: https://oxide.md/v0/Articles/Markdown-Oxide+v0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/FelixZeller/markdown-oxide/0.25.3/FelixZeller.markdown-oxide.yaml b/manifests/f/FelixZeller/markdown-oxide/0.25.3/FelixZeller.markdown-oxide.yaml new file mode 100644 index 0000000000000..de6fb31e162a6 --- /dev/null +++ b/manifests/f/FelixZeller/markdown-oxide/0.25.3/FelixZeller.markdown-oxide.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: FelixZeller.markdown-oxide +PackageVersion: 0.25.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Ferdium/Ferdium/Nightly/7.1.1-nightly.2/Ferdium.Ferdium.Nightly.installer.yaml b/manifests/f/Ferdium/Ferdium/Nightly/7.1.1-nightly.2/Ferdium.Ferdium.Nightly.installer.yaml new file mode 100644 index 0000000000000..c65a3d601bfa2 --- /dev/null +++ b/manifests/f/Ferdium/Ferdium/Nightly/7.1.1-nightly.2/Ferdium.Ferdium.Nightly.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: Ferdium.Ferdium.Nightly +PackageVersion: 7.1.1-nightly.2 +InstallerType: nullsoft +Installers: +- Architecture: arm64 + InstallerUrl: https://github.com/ferdium/ferdium-app/releases/download/v7.1.1-nightly.2/Ferdium-win-AutoSetup-7.1.1-nightly.2-arm64.exe + InstallerSha256: C50AD83FD801C2C9B8AFF1C36727C1260F288B31D3FC13BC7FAA5BDCD47D35DD +- Architecture: x64 + InstallerUrl: https://github.com/ferdium/ferdium-app/releases/download/v7.1.1-nightly.2/Ferdium-win-AutoSetup-7.1.1-nightly.2-x64.exe + InstallerSha256: 6DBCF86768E6FEA417B88643BB88CC9929E12D2076A8D22E4852D1892FBC7679 +- Architecture: x86 + InstallerUrl: https://github.com/ferdium/ferdium-app/releases/download/v7.1.1-nightly.2/Ferdium-win-AutoSetup-7.1.1-nightly.2-ia32.exe + InstallerSha256: 78EDB880D27BE03450B16E336F313C200040ABE025400EE77FAFB3E69A5BFF4D +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-27 diff --git a/manifests/f/Ferdium/Ferdium/Nightly/7.1.1-nightly.2/Ferdium.Ferdium.Nightly.locale.en-US.yaml b/manifests/f/Ferdium/Ferdium/Nightly/7.1.1-nightly.2/Ferdium.Ferdium.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..93290d0e5fa1e --- /dev/null +++ b/manifests/f/Ferdium/Ferdium/Nightly/7.1.1-nightly.2/Ferdium.Ferdium.Nightly.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Ferdium.Ferdium.Nightly +PackageVersion: 7.1.1-nightly.2 +PackageLocale: en-US +Publisher: Ferdium Contributors +PublisherUrl: https://ferdium.org +PublisherSupportUrl: https://github.com/ferdium/ferdium-app/issues +PackageName: Ferdium Nightly +PackageUrl: https://github.com/ferdium/ferdium-app +License: Apache License 2.0 +Copyright: Copyright © 2022 Ferdium Contributors +ShortDescription: Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more. +Moniker: ferdium-nightly +Tags: +- hacktoberfest +- hacktoberfest-accepted +ReleaseNotesUrl: https://github.com/ferdium/ferdium-app/releases/tag/v7.1.1-nightly.2 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/f/Ferdium/Ferdium/Nightly/7.1.1-nightly.2/Ferdium.Ferdium.Nightly.yaml b/manifests/f/Ferdium/Ferdium/Nightly/7.1.1-nightly.2/Ferdium.Ferdium.Nightly.yaml new file mode 100644 index 0000000000000..c35c9b5b2088f --- /dev/null +++ b/manifests/f/Ferdium/Ferdium/Nightly/7.1.1-nightly.2/Ferdium.Ferdium.Nightly.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: Ferdium.Ferdium.Nightly +PackageVersion: 7.1.1-nightly.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/f/FernandoMaclen/Hollama/0.35.0/FernandoMaclen.Hollama.installer.yaml b/manifests/f/FernandoMaclen/Hollama/0.35.0/FernandoMaclen.Hollama.installer.yaml new file mode 100644 index 0000000000000..8f83b18df7ee9 --- /dev/null +++ b/manifests/f/FernandoMaclen/Hollama/0.35.0/FernandoMaclen.Hollama.installer.yaml @@ -0,0 +1,12 @@ +# Automatically updated by the winget bot at 2025/Jul/04 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: FernandoMaclen.Hollama +PackageVersion: 0.35.0 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/fmaclen/hollama/releases/download/0.35.0/Hollama_0.35.0-win-x64.exe + InstallerSha256: 836508CC65DCC783F72473C58E678124E7D5A9FF7AF0AEE34411B3CEC002337F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/FernandoMaclen/Hollama/0.35.0/FernandoMaclen.Hollama.locale.en-US.yaml b/manifests/f/FernandoMaclen/Hollama/0.35.0/FernandoMaclen.Hollama.locale.en-US.yaml new file mode 100644 index 0000000000000..88b0c1d5ff036 --- /dev/null +++ b/manifests/f/FernandoMaclen/Hollama/0.35.0/FernandoMaclen.Hollama.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Automatically updated by the winget bot at 2025/Jul/04 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: FernandoMaclen.Hollama +PackageVersion: 0.35.0 +PackageLocale: en-US +Publisher: Fernando Maclen +PackageName: Hollama +License: MIT License +Copyright: Copyright © 2025 Fernando Maclen +ShortDescription: A minimal LLM chat app that runs entirely in your browser +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/FernandoMaclen/Hollama/0.35.0/FernandoMaclen.Hollama.yaml b/manifests/f/FernandoMaclen/Hollama/0.35.0/FernandoMaclen.Hollama.yaml new file mode 100644 index 0000000000000..5f0e1e788235b --- /dev/null +++ b/manifests/f/FernandoMaclen/Hollama/0.35.0/FernandoMaclen.Hollama.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/04 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: FernandoMaclen.Hollama +PackageVersion: 0.35.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Figma/Figma/125.5.6/Figma.Figma.installer.yaml b/manifests/f/Figma/Figma/125.5.6/Figma.Figma.installer.yaml index dc36b96a4936e..eca7af4a87fa7 100644 --- a/manifests/f/Figma/Figma/125.5.6/Figma.Figma.installer.yaml +++ b/manifests/f/Figma/Figma/125.5.6/Figma.Figma.installer.yaml @@ -10,7 +10,7 @@ FileExtensions: - fig ReleaseDate: 2025-06-09 Installers: -- Architecture: x86 +- Architecture: x64 InstallerType: exe Scope: user InstallerUrl: https://desktop.figma.com/win/build/Figma-125.5.6.exe @@ -22,20 +22,28 @@ Installers: Silent: --silent SilentWithProgress: --silent ProductCode: Figma -- InstallerLocale: en-US - Architecture: x86 +- Architecture: arm64 + InstallerType: exe + Scope: user + InstallerUrl: https://desktop.figma.com/win-arm/build/Figma-125.5.6.exe + InstallerSha256: 17AC1C4FA8A3F182A7692D64A89A831A0BAD087DD3736A5C727555360C9F9B1C + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: Figma +- Architecture: x64 InstallerType: wix Scope: machine InstallerUrl: https://desktop.figma.com/win/build/Figma-125.5.6.msi InstallerSha256: 9B0B4330644B2F509C938D3316990BEF81255385C091D9853021D7C30A0DFDBA InstallerSwitches: InstallLocation: APPLICATIONROOTDIRECTORY="" - ProductCode: '{234C7FE2-B90E-46EA-BFB9-18B9E827CE9A}' + ProductCode: '{234C7FE2-B90E-46EA-BFB9-18B9E827CE9A}.msq' AppsAndFeaturesEntries: - - DisplayName: Figma (Machine - MSI) - Publisher: Figma Inc. - ProductCode: '{234C7FE2-B90E-46EA-BFB9-18B9E827CE9A}' - UpgradeCode: '{CA564622-1774-4EF7-9903-4FCB1160F902}' + - InstallerType: exe InstallationMetadata: DefaultInstallLocation: '%ProgramFiles(x86)%\Figma\app-125.5.6' ManifestType: installer diff --git a/manifests/f/Figma/Figma/125.6.4/Figma.Figma.installer.yaml b/manifests/f/Figma/Figma/125.6.4/Figma.Figma.installer.yaml new file mode 100644 index 0000000000000..45ad0db531b48 --- /dev/null +++ b/manifests/f/Figma/Figma/125.6.4/Figma.Figma.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: Figma.Figma +PackageVersion: 125.6.4 +UpgradeBehavior: install +Protocols: +- figma +FileExtensions: +- fig +Installers: +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://desktop.figma.com/win/build/Figma-125.6.4.exe + InstallerSha256: 4BA1E7BF27D85C255F5EC447FA7C9CF20B31E11D6C436C9B25DCF4A50A1908CC + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: Figma +- Architecture: arm64 + InstallerType: exe + Scope: user + InstallerUrl: https://desktop.figma.com/win-arm/build/Figma-125.6.4.exe + InstallerSha256: 4639BCA34046711DE5E2E90940FCE573D205FC83BB3A0CB665F34D8695C15F25 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: Figma +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://desktop.figma.com/win/build/Figma-125.6.4.msi + InstallerSha256: 54E731E6833E415A19F238499DE0FB56A0D8CA1B44CE7285E3FEE19D73AF4D18 + InstallerSwitches: + InstallLocation: APPLICATIONROOTDIRECTORY="" + ProductCode: '{02B40044-C47B-417B-88F0-684197499517}.msq' + AppsAndFeaturesEntries: + - InstallerType: exe + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Figma\app-125.5.6' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Figma/Figma/125.6.4/Figma.Figma.locale.en-US.yaml b/manifests/f/Figma/Figma/125.6.4/Figma.Figma.locale.en-US.yaml new file mode 100644 index 0000000000000..1da8fab668beb --- /dev/null +++ b/manifests/f/Figma/Figma/125.6.4/Figma.Figma.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Figma.Figma +PackageVersion: 125.6.4 +PackageLocale: en-US +Publisher: Figma, Inc. +PublisherUrl: https://www.figma.com/ +PublisherSupportUrl: https://help.figma.com/ +PrivacyUrl: https://www.figma.com/privacy/ +Author: Figma, Inc. +PackageName: Figma +PackageUrl: https://www.figma.com/downloads/ +License: Proprietary +LicenseUrl: https://www.figma.com/tos/ +Copyright: Copyright © 2024 Figma, Inc. +CopyrightUrl: https://www.figma.com/copyright-and-ip-policy/ +ShortDescription: The Collaborative Interface Design Tool +Description: Figma is the leading collaborative design tool for building meaningful products. Seamlessly design, prototype, develop, and collect feedback in a single platform. +Moniker: figma +Tags: +- build +- design +- diagram +- flow +- flowchart +- interface +- mockup +- present +- prototype +- slides +- specification +- ui +- user-experience +- user-interface +- ux +- wireframe +PurchaseUrl: https://www.figma.com/pricing/ +Documentations: +- DocumentLabel: Best Practice Guides + DocumentUrl: https://www.figma.com/best-practices/ +- DocumentLabel: Blog + DocumentUrl: https://www.figma.com/blog/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Figma/Figma/125.6.4/Figma.Figma.locale.zh-CN.yaml b/manifests/f/Figma/Figma/125.6.4/Figma.Figma.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f0cce27194b3e --- /dev/null +++ b/manifests/f/Figma/Figma/125.6.4/Figma.Figma.locale.zh-CN.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Figma.Figma +PackageVersion: 125.6.4 +PackageLocale: zh-CN +Publisher: Figma, Inc. +PublisherUrl: https://www.figma.com/ +PublisherSupportUrl: https://help.figma.com/ +PrivacyUrl: https://www.figma.com/privacy/ +Author: Figma, Inc. +PackageName: Figma +PackageUrl: https://www.figma.com/downloads/ +License: 专有软件 +LicenseUrl: https://www.figma.com/tos/ +Copyright: Copyright © 2024 Figma, Inc. +CopyrightUrl: https://www.figma.com/copyright-and-ip-policy/ +ShortDescription: 协作界面设计工具 +Description: Figma 是领先的协作设计工具,可用于构建有意义的产品。在单一平台上无缝设计、制作原型、开发和收集反馈。 +Tags: +- 人机交互 +- 原型 +- 图表 +- 模型 +- 流程 +- 流程图 +- 用户界面 +- 界面 +- 线框图 +- 规格 +- 设计 +PurchaseUrl: https://www.figma.com/pricing/ +Documentations: +- DocumentLabel: 博客 + DocumentUrl: https://www.figma.com/blog/ +- DocumentLabel: 最佳实践指南 + DocumentUrl: https://www.figma.com/best-practices/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Figma/Figma/125.6.4/Figma.Figma.yaml b/manifests/f/Figma/Figma/125.6.4/Figma.Figma.yaml new file mode 100644 index 0000000000000..f25da8952fb8c --- /dev/null +++ b/manifests/f/Figma/Figma/125.6.4/Figma.Figma.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: Figma.Figma +PackageVersion: 125.6.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Figma/FigmaAgent/125.5.6/Figma.FigmaAgent.installer.yaml b/manifests/f/Figma/FigmaAgent/125.5.6/Figma.FigmaAgent.installer.yaml new file mode 100644 index 0000000000000..8e8e53ecef19f --- /dev/null +++ b/manifests/f/Figma/FigmaAgent/125.5.6/Figma.FigmaAgent.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: Figma.FigmaAgent +PackageVersion: 125.5.6 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: FigmaAgent +Installers: +- Architecture: x86 + InstallerUrl: https://desktop.figma.com/agent/win/FigmaAgent-125.5.6.exe + InstallerSha256: D8FDBF2AA9C47A8775061B71F529575ADDCBC67BA22EB2F843CFD4B063F97710 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Figma/FigmaAgent/125.5.6/Figma.FigmaAgent.locale.en-US.yaml b/manifests/f/Figma/FigmaAgent/125.5.6/Figma.FigmaAgent.locale.en-US.yaml new file mode 100644 index 0000000000000..2149e8b593be2 --- /dev/null +++ b/manifests/f/Figma/FigmaAgent/125.5.6/Figma.FigmaAgent.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: Figma.FigmaAgent +PackageVersion: 125.5.6 +PackageLocale: en-US +Publisher: Figma, Inc. +PublisherUrl: https://www.figma.com/ +PublisherSupportUrl: https://help.figma.com/ +PrivacyUrl: https://www.figma.com/privacy/ +PackageName: Figma Agent +PackageUrl: https://www.figma.com/downloads/ +License: Proprietary +LicenseUrl: https://www.figma.com/tos/ +Copyright: Copyright © 2024 Figma, Inc. +CopyrightUrl: https://www.figma.com/copyright-and-ip-policy/ +ShortDescription: Access fonts on your computer in Figma +Description: Figma agent is a secure background service that allows Figma to access fonts on your computer, and open Figma links in the desktop app. +Moniker: figma-agent +Tags: +- figma +- fonts +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Figma/FigmaAgent/125.5.6/Figma.FigmaAgent.locale.zh-CN.yaml b/manifests/f/Figma/FigmaAgent/125.5.6/Figma.FigmaAgent.locale.zh-CN.yaml new file mode 100644 index 0000000000000..24a560ca45a90 --- /dev/null +++ b/manifests/f/Figma/FigmaAgent/125.5.6/Figma.FigmaAgent.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: Figma.FigmaAgent +PackageVersion: 125.5.6 +PackageLocale: zh-CN +Publisher: Figma, Inc. +PublisherUrl: https://www.figma.com/ +PublisherSupportUrl: https://help.figma.com/ +PrivacyUrl: https://www.figma.com/privacy/ +PackageName: Figma Agent +PackageUrl: https://www.figma.com/downloads/ +License: 专有软件 +LicenseUrl: https://www.figma.com/tos/ +Copyright: Copyright © 2024 Figma, Inc. +CopyrightUrl: https://www.figma.com/copyright-and-ip-policy/ +ShortDescription: 在 Figma 中访问计算机上的字体 +Description: 安全的后台服务,允许 Figma 访问您计算机上的字体,并在桌面应用程序中打开 Figma 链接。 +Tags: +- figma +- fonts +- 字体 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Figma/FigmaAgent/125.5.6/Figma.FigmaAgent.yaml b/manifests/f/Figma/FigmaAgent/125.5.6/Figma.FigmaAgent.yaml new file mode 100644 index 0000000000000..a560bfa043cb4 --- /dev/null +++ b/manifests/f/Figma/FigmaAgent/125.5.6/Figma.FigmaAgent.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: Figma.FigmaAgent +PackageVersion: 125.5.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FileVoyager/FileVoyager/24.5.17.0/FileVoyager.FileVoyager.installer.yaml b/manifests/f/FileVoyager/FileVoyager/24.5.17.0/FileVoyager.FileVoyager.installer.yaml deleted file mode 100644 index e409d6cd458c6..0000000000000 --- a/manifests/f/FileVoyager/FileVoyager/24.5.17.0/FileVoyager.FileVoyager.installer.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Created using wingetcreate 1.6.1.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: FileVoyager.FileVoyager -PackageVersion: 24.5.17.0 -InstallerType: inno -Scope: machine -Installers: -- Architecture: x86 - InstallerUrl: https://www.filevoyager.com/wp-content/uploads/FileVoyager_Setup_24.5.17.0_NoVLC.exe - InstallerSha256: 65F169CE84361A5BF9A59B234120C09DDB7A53A41BAF4D84A239E943F5795491 -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/f/FileVoyager/FileVoyager/24.5.17.0/FileVoyager.FileVoyager.locale.en-US.yaml b/manifests/f/FileVoyager/FileVoyager/24.5.17.0/FileVoyager.FileVoyager.locale.en-US.yaml deleted file mode 100644 index d9c998feed79b..0000000000000 --- a/manifests/f/FileVoyager/FileVoyager/24.5.17.0/FileVoyager.FileVoyager.locale.en-US.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Created using wingetcreate 1.6.1.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: FileVoyager.FileVoyager -PackageVersion: 24.5.17.0 -PackageLocale: en-US -Publisher: FileVoyager -PackageName: FileVoyager -License: Freeware -ShortDescription: FileVoyager is a freeware file manager for Microsoft Windows using two panels of disks browsers. This dual pane layout makes very easy the transfer operations of files or folders between sources and destinations. -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/f/FileVoyager/FileVoyager/24.5.17.0/FileVoyager.FileVoyager.yaml b/manifests/f/FileVoyager/FileVoyager/24.5.17.0/FileVoyager.FileVoyager.yaml deleted file mode 100644 index 5aac02aca0c5a..0000000000000 --- a/manifests/f/FileVoyager/FileVoyager/24.5.17.0/FileVoyager.FileVoyager.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.6.1.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: FileVoyager.FileVoyager -PackageVersion: 24.5.17.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 diff --git a/manifests/f/FilesCommunity/Files/3.9.1.0/FilesCommunity.Files.installer.yaml b/manifests/f/FilesCommunity/Files/3.9.1.0/FilesCommunity.Files.installer.yaml new file mode 100644 index 0000000000000..3365247c123d9 --- /dev/null +++ b/manifests/f/FilesCommunity/Files/3.9.1.0/FilesCommunity.Files.installer.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: FilesCommunity.Files +PackageVersion: 3.9.1.0 +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.WindowsAppRuntime.1.5 + - PackageIdentifier: Microsoft.VCLibs.Desktop.14 +PackageFamilyName: Files_1y0xx7n9077q4 +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.files.community/files/stable/Files.Package_3.9.1.0_Test/Files.Package_3.9.1.0_x64_arm64.msixbundle + InstallerSha256: f7080a54255254f2b99815f91c84b1af57a7599eafa60a4ae0a0ca79f1271cbf +- Architecture: arm64 + InstallerUrl: https://cdn.files.community/files/stable/Files.Package_3.9.1.0_Test/Files.Package_3.9.1.0_x64_arm64.msixbundle + InstallerSha256: f7080a54255254f2b99815f91c84b1af57a7599eafa60a4ae0a0ca79f1271cbf +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2025-02-07 diff --git a/manifests/f/FilesCommunity/Files/3.9.1.0/FilesCommunity.Files.locale.en-US.yaml b/manifests/f/FilesCommunity/Files/3.9.1.0/FilesCommunity.Files.locale.en-US.yaml new file mode 100644 index 0000000000000..64aa0c6824a58 --- /dev/null +++ b/manifests/f/FilesCommunity/Files/3.9.1.0/FilesCommunity.Files.locale.en-US.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: FilesCommunity.Files +PackageVersion: 3.9.1.0 +PackageLocale: en-US +Publisher: Files Community +PublisherUrl: https://files.community +PackageName: Files +PackageUrl: https://github.com/files-community/Files +License: MIT +LicenseUrl: https://github.com/files-community/Files/blob/main/LICENSE +ShortDescription: Building the best file manager for Windows +Moniker: files +ReleaseNotesUrl: https://files.community/blog/posts/v3-9-1 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/f/FilesCommunity/Files/3.9.1.0/FilesCommunity.Files.yaml b/manifests/f/FilesCommunity/Files/3.9.1.0/FilesCommunity.Files.yaml new file mode 100644 index 0000000000000..64781008f95fb --- /dev/null +++ b/manifests/f/FilesCommunity/Files/3.9.1.0/FilesCommunity.Files.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: FilesCommunity.Files +PackageVersion: 3.9.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/f/FilesCommunity/FilesPreview/3.8.0.0/FilesCommunity.FilesPreview.installer.yaml b/manifests/f/FilesCommunity/FilesPreview/3.8.0.0/FilesCommunity.FilesPreview.installer.yaml deleted file mode 100644 index 3559c05707244..0000000000000 --- a/manifests/f/FilesCommunity/FilesPreview/3.8.0.0/FilesCommunity.FilesPreview.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created using wingetcreate 1.6.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: FilesCommunity.FilesPreview -PackageVersion: 3.8.0.0 -MinimumOSVersion: 10.0.19041.0 -InstallerType: msix -InstallModes: -- silent -- silentWithProgress -UpgradeBehavior: install -Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.WindowsAppRuntime.1.5 - - PackageIdentifier: Microsoft.VCLibs.Desktop.14 -PackageFamilyName: FilesPreview_1y0xx7n9077q4 -Installers: -- Architecture: x64 - InstallerUrl: https://cdn.files.community/files/preview/Files.Package_3.8.0.0_Preview_Test/Files.Package_3.8.0.0_x64_arm64_Preview.msixbundle - InstallerSha256: 82d20d4f5ca8ac22b509692da0a0182374fc73014a4113f684130d61057f9039 - SignatureSha256: 0468c38ab064c313bb8e7741693248fc04c623c6cf62a0f9620a920548ef1c72 -- Architecture: arm64 - InstallerUrl: https://cdn.files.community/files/preview/Files.Package_3.8.0.0_Preview_Test/Files.Package_3.8.0.0_x64_arm64_Preview.msixbundle - InstallerSha256: 82d20d4f5ca8ac22b509692da0a0182374fc73014a4113f684130d61057f9039 - SignatureSha256: 0468c38ab064c313bb8e7741693248fc04c623c6cf62a0f9620a920548ef1c72 -ManifestType: installer -ManifestVersion: 1.6.0 -ReleaseDate: 2024-11-23 diff --git a/manifests/f/FilesCommunity/FilesPreview/3.8.0.0/FilesCommunity.FilesPreview.yaml b/manifests/f/FilesCommunity/FilesPreview/3.8.0.0/FilesCommunity.FilesPreview.yaml deleted file mode 100644 index 86eb073e90b59..0000000000000 --- a/manifests/f/FilesCommunity/FilesPreview/3.8.0.0/FilesCommunity.FilesPreview.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.6.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: FilesCommunity.FilesPreview -PackageVersion: 3.8.0.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 diff --git a/manifests/f/FilesCommunity/FilesPreview/3.9.10.0/FilesCommunity.FilesPreview.installer.yaml b/manifests/f/FilesCommunity/FilesPreview/3.9.10.0/FilesCommunity.FilesPreview.installer.yaml new file mode 100644 index 0000000000000..07d87f0e7addf --- /dev/null +++ b/manifests/f/FilesCommunity/FilesPreview/3.9.10.0/FilesCommunity.FilesPreview.installer.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: FilesCommunity.FilesPreview +PackageVersion: 3.9.10.0 +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.WindowsAppRuntime.1.7 + - PackageIdentifier: Microsoft.VCLibs.Desktop.14 +PackageFamilyName: FilesPreview_1y0xx7n9077q4 +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.files.community/files/preview/Files.Package_3.9.10.0_Test/Files.Package_3.9.10.0_x64_arm64.msixbundle + InstallerSha256: c95fab5524c5f369ae050d1c2bd67cecf20a2bb67ea577fe7ad41e063f265a8e +- Architecture: arm64 + InstallerUrl: https://cdn.files.community/files/preview/Files.Package_3.9.10.0_Test/Files.Package_3.9.10.0_x64_arm64.msixbundle + InstallerSha256: c95fab5524c5f369ae050d1c2bd67cecf20a2bb67ea577fe7ad41e063f265a8e +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2025-01-16 diff --git a/manifests/f/FilesCommunity/FilesPreview/3.8.0.0/FilesCommunity.FilesPreview.locale.en-US.yaml b/manifests/f/FilesCommunity/FilesPreview/3.9.10.0/FilesCommunity.FilesPreview.locale.en-US.yaml similarity index 79% rename from manifests/f/FilesCommunity/FilesPreview/3.8.0.0/FilesCommunity.FilesPreview.locale.en-US.yaml rename to manifests/f/FilesCommunity/FilesPreview/3.9.10.0/FilesCommunity.FilesPreview.locale.en-US.yaml index 25470b41cbeac..97bc497785c87 100644 --- a/manifests/f/FilesCommunity/FilesPreview/3.8.0.0/FilesCommunity.FilesPreview.locale.en-US.yaml +++ b/manifests/f/FilesCommunity/FilesPreview/3.9.10.0/FilesCommunity.FilesPreview.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.6.5.0 +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json PackageIdentifier: FilesCommunity.FilesPreview -PackageVersion: 3.8.0.0 +PackageVersion: 3.9.10.0 PackageLocale: en-US Publisher: Files Community PublisherUrl: https://files.community @@ -12,6 +12,6 @@ License: MIT LicenseUrl: https://github.com/files-community/Files/blob/main/LICENSE ShortDescription: Building the best file manager for Windows Moniker: filespreview -ReleaseNotesUrl: https://files.community/blog/posts/v3-8 +ReleaseNotesUrl: https://files.community/blog/posts/v3-9-10 ManifestType: defaultLocale ManifestVersion: 1.6.0 diff --git a/manifests/f/FilesCommunity/FilesPreview/3.9.10.0/FilesCommunity.FilesPreview.yaml b/manifests/f/FilesCommunity/FilesPreview/3.9.10.0/FilesCommunity.FilesPreview.yaml new file mode 100644 index 0000000000000..3c08777306dda --- /dev/null +++ b/manifests/f/FilesCommunity/FilesPreview/3.9.10.0/FilesCommunity.FilesPreview.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: FilesCommunity.FilesPreview +PackageVersion: 3.9.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/f/FineprintSoftware/FinePrint/12.12/FineprintSoftware.FinePrint.locale.en-US.yaml b/manifests/f/FineprintSoftware/FinePrint/12.12/FineprintSoftware.FinePrint.locale.en-US.yaml index 66006aa881b83..4c359d7a9bed2 100644 --- a/manifests/f/FineprintSoftware/FinePrint/12.12/FineprintSoftware.FinePrint.locale.en-US.yaml +++ b/manifests/f/FineprintSoftware/FinePrint/12.12/FineprintSoftware.FinePrint.locale.en-US.yaml @@ -18,6 +18,8 @@ Description: Fineprint installs a printer driver that allows previewing and modi Tags: - print - printer +- fp12_x64_driver.inf +- driver ReleaseNotes: |- - fixed a bug that caused rendering failures when grayscale or lightness settings were changed - fixed a bug that sometimes caused missing text when opening PDF files diff --git a/manifests/f/FireAlpaca/FireAlpaca/2.13.18.0/FireAlpaca.FireAlpaca.installer.yaml b/manifests/f/FireAlpaca/FireAlpaca/2.13.18.0/FireAlpaca.FireAlpaca.installer.yaml deleted file mode 100644 index 2924702a4ac16..0000000000000 --- a/manifests/f/FireAlpaca/FireAlpaca/2.13.18.0/FireAlpaca.FireAlpaca.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/18 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: FireAlpaca.FireAlpaca -PackageVersion: 2.13.18.0 -MinimumOSVersion: 10.0.0.0 -InstallerType: inno -Installers: -- Architecture: x64 - InstallerUrl: https://firealpaca.com/download/win64 - InstallerSha256: 888BC0EE9322114B964522FBB3197B69B248E2D4C1B09D2615B6AB21E9DCE90C - ProductCode: FireAlpaca64_is1 - AppsAndFeaturesEntries: - - DisplayName: FireAlpaca 2.13.0 (64bit) - ProductCode: FireAlpaca64_is1 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/f/FireAlpaca/FireAlpaca/2.13.18.0/FireAlpaca.FireAlpaca.yaml b/manifests/f/FireAlpaca/FireAlpaca/2.13.18.0/FireAlpaca.FireAlpaca.yaml deleted file mode 100644 index ea5e5121b4c4d..0000000000000 --- a/manifests/f/FireAlpaca/FireAlpaca/2.13.18.0/FireAlpaca.FireAlpaca.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/18 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: FireAlpaca.FireAlpaca -PackageVersion: 2.13.18.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/f/FireAlpaca/FireAlpaca/2.13.20.0/FireAlpaca.FireAlpaca.installer.yaml b/manifests/f/FireAlpaca/FireAlpaca/2.13.20.0/FireAlpaca.FireAlpaca.installer.yaml new file mode 100644 index 0000000000000..c72a4006613ce --- /dev/null +++ b/manifests/f/FireAlpaca/FireAlpaca/2.13.20.0/FireAlpaca.FireAlpaca.installer.yaml @@ -0,0 +1,17 @@ +# Automatically updated by the winget bot at 2025/Jul/05 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: FireAlpaca.FireAlpaca +PackageVersion: 2.13.20.0 +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://firealpaca.com/download/win64 + InstallerSha256: 3982137A8E78779467FF57CCA41CBF87C648E6B62D01A060076F045110A55634 + ProductCode: FireAlpaca64_is1 + AppsAndFeaturesEntries: + - DisplayName: FireAlpaca 2.13.0 (64bit) + ProductCode: FireAlpaca64_is1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/FireAlpaca/FireAlpaca/2.13.18.0/FireAlpaca.FireAlpaca.locale.en-US.yaml b/manifests/f/FireAlpaca/FireAlpaca/2.13.20.0/FireAlpaca.FireAlpaca.locale.en-US.yaml similarity index 85% rename from manifests/f/FireAlpaca/FireAlpaca/2.13.18.0/FireAlpaca.FireAlpaca.locale.en-US.yaml rename to manifests/f/FireAlpaca/FireAlpaca/2.13.20.0/FireAlpaca.FireAlpaca.locale.en-US.yaml index 3ed1b405c1e6b..af3482c3f785c 100644 --- a/manifests/f/FireAlpaca/FireAlpaca/2.13.18.0/FireAlpaca.FireAlpaca.locale.en-US.yaml +++ b/manifests/f/FireAlpaca/FireAlpaca/2.13.20.0/FireAlpaca.FireAlpaca.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jun/18 +# Automatically updated by the winget bot at 2025/Jul/05 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: FireAlpaca.FireAlpaca -PackageVersion: 2.13.18.0 +PackageVersion: 2.13.20.0 PackageLocale: en-US Publisher: firealpaca.com PublisherUrl: https://firealpaca.com/ diff --git a/manifests/f/FireAlpaca/FireAlpaca/2.13.20.0/FireAlpaca.FireAlpaca.yaml b/manifests/f/FireAlpaca/FireAlpaca/2.13.20.0/FireAlpaca.FireAlpaca.yaml new file mode 100644 index 0000000000000..cfca5255474e4 --- /dev/null +++ b/manifests/f/FireAlpaca/FireAlpaca/2.13.20.0/FireAlpaca.FireAlpaca.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/05 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: FireAlpaca.FireAlpaca +PackageVersion: 2.13.20.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FireDaemon/CertifyOne/4.1.0/FireDaemon.CertifyOne.installer.yaml b/manifests/f/FireDaemon/CertifyOne/4.1.0/FireDaemon.CertifyOne.installer.yaml deleted file mode 100644 index f2a3c3e03d5d8..0000000000000 --- a/manifests/f/FireDaemon/CertifyOne/4.1.0/FireDaemon.CertifyOne.installer.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created using wingetcreate 1.6.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: FireDaemon.CertifyOne -PackageVersion: 4.1.0 -InstallerType: exe -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /qn - SilentWithProgress: /qb -UpgradeBehavior: install -ProductCode: '{0CB68A65-4E32-4C61-A8DA-A1DAABFFE1D5}' -ReleaseDate: 2024-09-10 -AppsAndFeaturesEntries: -- InstallerType: msi -Installers: -- Architecture: x64 - InstallerUrl: https://download.firedaemon.com/FireDaemon-Certify-One/4.1.0/Certify-One-x64-4.1.0.exe - InstallerSha256: 8D0765F158F7C9997D6C7FD4383EFFB367B4DFA02999EDD7AF8B6B84DC67DA7F -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/f/FireDaemon/CertifyOne/4.1.0/FireDaemon.CertifyOne.locale.en-US.yaml b/manifests/f/FireDaemon/CertifyOne/4.1.0/FireDaemon.CertifyOne.locale.en-US.yaml deleted file mode 100644 index 98def6abe7d81..0000000000000 --- a/manifests/f/FireDaemon/CertifyOne/4.1.0/FireDaemon.CertifyOne.locale.en-US.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Created using wingetcreate 1.6.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: FireDaemon.CertifyOne -PackageVersion: 4.1.0 -PackageLocale: en-US -Publisher: FireDaemon Technologies Limited -PublisherUrl: https://www.firedaemon.com/ -PackageName: Certify One -PackageUrl: https://www.firedaemon.com/download-certify-one -License: Proprietary -Copyright: Copyright (C) 2024 FireDaemon Technologies Limited -ShortDescription: Verify the confidentiality, integrity, authenticity, and availability of encrypted communications. -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/f/FireDaemon/CertifyOne/4.1.0/FireDaemon.CertifyOne.yaml b/manifests/f/FireDaemon/CertifyOne/4.1.0/FireDaemon.CertifyOne.yaml deleted file mode 100644 index 65a67bdb2e45f..0000000000000 --- a/manifests/f/FireDaemon/CertifyOne/4.1.0/FireDaemon.CertifyOne.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.6.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: FireDaemon.CertifyOne -PackageVersion: 4.1.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 diff --git a/manifests/f/FireDaemon/FireDaemonPro/5.4.14/FireDaemon.FireDaemonPro.installer.yaml b/manifests/f/FireDaemon/FireDaemonPro/5.4.14/FireDaemon.FireDaemonPro.installer.yaml deleted file mode 100644 index 2984bf6af0a57..0000000000000 --- a/manifests/f/FireDaemon/FireDaemonPro/5.4.14/FireDaemon.FireDaemonPro.installer.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Created using wingetcreate 1.6.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: FireDaemon.FireDaemonPro -PackageVersion: 5.4.14 -InstallerType: exe -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /exenoui /qn /norestart REBOOT=ReallySuppress - SilentWithProgress: /exenoui /qb /norestart REBOOT=ReallySuppress - InstallLocation: APPDIR= - # inactive because Advanced Installer's EXE bootstrapper requires command-line arguments to be ordered before standard MSI arguments - # Log: /exelog - Log: /L*v -UpgradeBehavior: install -ProductCode: '{910D7D76-6AA0-47F6-9155-BD8EECB10954}' -ReleaseDate: 2024-10-27 -AppsAndFeaturesEntries: -- Publisher: FireDaemon Technologies Limited - InstallerType: msi -Installers: -- Architecture: x64 - InstallerUrl: https://download.firedaemon.com/FireDaemon-Pro/5.4.14/FireDaemon-Pro-x64-5.4.14.exe - InstallerSha256: 678789529A13DD9E0198EA1F5E7BA9955F87B873F79D3FE14CA2121DBF6C222E -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/f/FireDaemon/FireDaemonPro/5.4.14/FireDaemon.FireDaemonPro.locale.en-US.yaml b/manifests/f/FireDaemon/FireDaemonPro/5.4.14/FireDaemon.FireDaemonPro.locale.en-US.yaml deleted file mode 100644 index 2307aa5d1a5ae..0000000000000 --- a/manifests/f/FireDaemon/FireDaemonPro/5.4.14/FireDaemon.FireDaemonPro.locale.en-US.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created using wingetcreate 1.6.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: FireDaemon.FireDaemonPro -PackageVersion: 5.4.14 -PackageLocale: en-US -Publisher: FireDaemon Technologies Limited -PublisherUrl: https://www.firedaemon.com -PublisherSupportUrl: https://www.firedaemon.com/support -PrivacyUrl: https://www.firedaemon.com/policies -Author: FireDaemon Technologies Limited -PackageName: FireDaemon Pro -PackageUrl: https://www.firedaemon.com/firedaemon-pro -License: Proprietary -Copyright: Copyright (C) 2024 FireDaemon Technologies Limited -ShortDescription: Run any program, application, or script as a Microsoft Windows service 24/7. -Description: Run, schedule and monitor critical programs, applications and scripts to ensure uptime and resiliency. FireDaemon Pro allows your programs to be placed in a lightweight service container for fine-grained monitoring and control. With extensive options for time scheduling, operating system scheduling, life cycle management, preconditions, dependencies and security, FireDaemon Pro is your companion to help you secure mission-critical workloads on Microsoft Windows. It is also the only tool you need for Windows service management in general (single point of responsibility). -ReleaseNotesUrl: https://kb.firedaemon.com/support/solutions/articles/4000194049 -Tags: -- services -- orchestration -- scheduling -- system-monitoring -- service-management -- management-tools -PurchaseUrl: https://www.firedaemon.com/pricing -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/f/FireDaemon/FireDaemonPro/5.4.14/FireDaemon.FireDaemonPro.yaml b/manifests/f/FireDaemon/FireDaemonPro/5.4.14/FireDaemon.FireDaemonPro.yaml deleted file mode 100644 index 1baa5c769473c..0000000000000 --- a/manifests/f/FireDaemon/FireDaemonPro/5.4.14/FireDaemon.FireDaemonPro.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.6.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: FireDaemon.FireDaemonPro -PackageVersion: 5.4.14 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 diff --git a/manifests/f/FireDaemon/FireDaemonPro/5.4.16/FireDaemon.FireDaemonPro.installer.yaml b/manifests/f/FireDaemon/FireDaemonPro/5.4.16/FireDaemon.FireDaemonPro.installer.yaml deleted file mode 100644 index 097d7d9607baa..0000000000000 --- a/manifests/f/FireDaemon/FireDaemonPro/5.4.16/FireDaemon.FireDaemonPro.installer.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Created using wingetcreate 1.9.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: FireDaemon.FireDaemonPro -PackageVersion: 5.4.16 -InstallerType: exe -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /exenoui /qn /norestart REBOOT=ReallySuppress - SilentWithProgress: /exenoui /qb /norestart REBOOT=ReallySuppress - InstallLocation: APPDIR= - # inactive because Advanced Installer's EXE bootstrapper requires command-line arguments to be ordered before standard MSI arguments - # Log: /exelog - Log: /L*v -UpgradeBehavior: install -ProductCode: '{58F2D522-B512-4A38-87BD-B51CBBA1C92D}' -ReleaseDate: 2024-12-31 -AppsAndFeaturesEntries: -- Publisher: FireDaemon Technologies Limited - InstallerType: msi -Installers: -- Architecture: x64 - InstallerUrl: https://download.firedaemon.com/FireDaemon-Pro/5.4.16/FireDaemon-Pro-x64-5.4.16.exe - InstallerSha256: 442EFB167401B84E0B2726A7945C0A6FFF351FEA2B2B4996E74BAE0D8BC6E1E7 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/f/FireDaemon/FireDaemonPro/5.4.16/FireDaemon.FireDaemonPro.locale.en-US.yaml b/manifests/f/FireDaemon/FireDaemonPro/5.4.16/FireDaemon.FireDaemonPro.locale.en-US.yaml deleted file mode 100644 index 2af17e9ae47e1..0000000000000 --- a/manifests/f/FireDaemon/FireDaemonPro/5.4.16/FireDaemon.FireDaemonPro.locale.en-US.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Created using wingetcreate 1.9.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: FireDaemon.FireDaemonPro -PackageVersion: 5.4.16 -PackageLocale: en-US -Publisher: FireDaemon Technologies Limited -PublisherUrl: https://www.firedaemon.com -PublisherSupportUrl: https://www.firedaemon.com/support -PrivacyUrl: https://www.firedaemon.com/policies -Author: FireDaemon Technologies Limited -PackageName: FireDaemon Pro -PackageUrl: https://www.firedaemon.com/firedaemon-pro -License: Proprietary -Copyright: Copyright (C) 2025 FireDaemon Technologies Limited -ShortDescription: Run any program, application, or script as a Microsoft Windows service 24/7. -Description: Run, schedule and monitor critical programs, applications and scripts to ensure uptime and resiliency. FireDaemon Pro allows your programs to be placed in a lightweight service container for fine-grained monitoring and control. With extensive options for time scheduling, operating system scheduling, life cycle management, preconditions, dependencies and security, FireDaemon Pro is your companion to help you secure mission-critical workloads on Microsoft Windows. It is also the only tool you need for Windows service management in general (single point of responsibility). -ReleaseNotesUrl: https://kb.firedaemon.com/support/solutions/articles/4000194049 -Tags: -- services -- orchestration -- scheduling -- system-monitoring -- service-management -- service-choreography -- management-tools -PurchaseUrl: https://www.firedaemon.com/pricing -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/f/FireDaemon/FireDaemonPro/5.4.16/FireDaemon.FireDaemonPro.yaml b/manifests/f/FireDaemon/FireDaemonPro/5.4.16/FireDaemon.FireDaemonPro.yaml deleted file mode 100644 index 30cee04b6e493..0000000000000 --- a/manifests/f/FireDaemon/FireDaemonPro/5.4.16/FireDaemon.FireDaemonPro.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.9.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: FireDaemon.FireDaemonPro -PackageVersion: 5.4.16 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/f/FireDaemon/FireDaemonPro/6.1.6/FireDaemon.FireDaemonPro.installer.yaml b/manifests/f/FireDaemon/FireDaemonPro/6.1.6/FireDaemon.FireDaemonPro.installer.yaml new file mode 100644 index 0000000000000..b6e5447c204ac --- /dev/null +++ b/manifests/f/FireDaemon/FireDaemonPro/6.1.6/FireDaemon.FireDaemonPro.installer.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.9.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: FireDaemon.FireDaemonPro +PackageVersion: 6.1.6 +InstallerType: exe +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /exenoui /qn /norestart REBOOT=ReallySuppress + SilentWithProgress: /exenoui /qb /norestart REBOOT=ReallySuppress + InstallLocation: APPDIR= + # inactive because Advanced Installer's EXE bootstrapper requires command-line arguments to be ordered before standard MSI arguments + # Log: /exelog + Log: /L*v +UpgradeBehavior: install +ProductCode: '{8290891D-634A-4D5C-A125-41A5CB78F3C6}' +ReleaseDate: 2025-06-29 +AppsAndFeaturesEntries: +- Publisher: FireDaemon Technologies Limited + InstallerType: msi +Installers: +- Architecture: x64 + InstallerUrl: https://download.firedaemon.com/FireDaemon-Pro/6.1.6/FireDaemon-Pro-x64-6.1.6.exe + InstallerSha256: 87436EF56CEE151A11063A013DCE4CF50D5544A632DBAABA70BF72A2DDC0C138 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/f/FireDaemon/FireDaemonPro/6.1.6/FireDaemon.FireDaemonPro.locale.en-US.yaml b/manifests/f/FireDaemon/FireDaemonPro/6.1.6/FireDaemon.FireDaemonPro.locale.en-US.yaml new file mode 100644 index 0000000000000..5854a15922d92 --- /dev/null +++ b/manifests/f/FireDaemon/FireDaemonPro/6.1.6/FireDaemon.FireDaemonPro.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.9.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: FireDaemon.FireDaemonPro +PackageVersion: 6.1.6 +PackageLocale: en-US +Publisher: FireDaemon Technologies Limited +PublisherUrl: https://www.firedaemon.com +PublisherSupportUrl: https://www.firedaemon.com/support +PrivacyUrl: https://www.firedaemon.com/policies +Author: FireDaemon Technologies Limited +PackageName: FireDaemon Pro +PackageUrl: https://www.firedaemon.com/firedaemon-pro +License: Proprietary +Copyright: Copyright (C) 2025 FireDaemon Technologies Limited +ShortDescription: Run any program, application, or script as a Microsoft Windows service 24/7. +Description: Run, schedule and monitor critical programs, applications and scripts to ensure uptime and resiliency. FireDaemon Pro allows you to place your programs in a lightweight service container for fine-grained monitoring and control, or to schedule tasks as a cron equivalent on Windows. With extensive options for time scheduling, operating system scheduling, life cycle management, preconditions, dependencies and security, FireDaemon Pro is your companion to help you secure mission-critical workloads on Microsoft Windows. It is also the only tool you need for Windows service management in general (single point of responsibility). +ReleaseNotesUrl: https://kb.firedaemon.com/support/solutions/articles/4000194049 +Tags: +- services +- orchestration +- scheduling +- system-monitoring +- service-management +- service-choreography +- management-tools +- cron +PurchaseUrl: https://www.firedaemon.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/f/FireDaemon/FireDaemonPro/6.1.6/FireDaemon.FireDaemonPro.yaml b/manifests/f/FireDaemon/FireDaemonPro/6.1.6/FireDaemon.FireDaemonPro.yaml new file mode 100644 index 0000000000000..51c90ec097f02 --- /dev/null +++ b/manifests/f/FireDaemon/FireDaemonPro/6.1.6/FireDaemon.FireDaemonPro.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: FireDaemon.FireDaemonPro +PackageVersion: 6.1.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/f/FireDaemon/OpenSSL/3.5.1/FireDaemon.OpenSSL.installer.yaml b/manifests/f/FireDaemon/OpenSSL/3.5.1/FireDaemon.OpenSSL.installer.yaml new file mode 100644 index 0000000000000..a2aa97ec2f507 --- /dev/null +++ b/manifests/f/FireDaemon/OpenSSL/3.5.1/FireDaemon.OpenSSL.installer.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: FireDaemon.OpenSSL +PackageVersion: 3.5.1 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /exenoui /qn /norestart REBOOT=ReallySuppress ADJUSTSYSTEMPATHENV=yes + SilentWithProgress: /exenoui /qb /norestart REBOOT=ReallySuppress ADJUSTSYSTEMPATHENV=yes + Log: /L*v "" + # inactive because Advanced Installer's EXE bootstrapper requires command-line arguments to be ordered before standard MSI arguments + # Log: /exelog "" + InstallLocation: APPDIR="" +UpgradeBehavior: install +Commands: +- openssl +ProductCode: '{CB53532F-09DB-4168-9AD6-1CD8DDC93F6C}' +AppsAndFeaturesEntries: +- Publisher: FireDaemon + UpgradeCode: '{D355755C-D409-4524-AA20-18CD34470F72}' + InstallerType: msi +Installers: +- Architecture: x64 + InstallerUrl: https://download.firedaemon.com/FireDaemon-OpenSSL/FireDaemon-OpenSSL-x64-3.5.1.exe + InstallerSha256: 1DB75CAB508E7EE62B159F467EFF9B9E574F2213D5B30979EF912AEE32BEB378 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/f/FireDaemon/OpenSSL/3.5.1/FireDaemon.OpenSSL.locale.en-US.yaml b/manifests/f/FireDaemon/OpenSSL/3.5.1/FireDaemon.OpenSSL.locale.en-US.yaml new file mode 100644 index 0000000000000..c281b23377c07 --- /dev/null +++ b/manifests/f/FireDaemon/OpenSSL/3.5.1/FireDaemon.OpenSSL.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: FireDaemon.OpenSSL +PackageVersion: 3.5.1 +PackageLocale: en-US +Publisher: FireDaemon +PublisherUrl: https://www.firedaemon.com/ +PublisherSupportUrl: https://www.firedaemon.com/support +PrivacyUrl: https://www.firedaemon.com/policies +Author: FireDaemon +PackageName: FireDaemon OpenSSL 3 +PackageUrl: https://www.firedaemon.com/firedaemon-openssl +License: Apache-2.0 +LicenseUrl: https://www.openssl.org/source/license.html +Copyright: © 1999-2025 FireDaemon +ShortDescription: FireDaemon OpenSSL 3 Installer +Description: |- + OpenSSL is a popular open-source software library that provides a robust, full-featured set of cryptographic functions and tools to secure communications over computer networks. It implements the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols, which are widely used to encrypt data transmissions between web servers and clients, such as web browsers. OpenSSL provides a wide range of cryptographic functions, including symmetric encryption, public-key encryption, message digest and hash functions, digital signatures, and random number generation. It supports a large number of cryptographic algorithms, such as AES, RSA, SHA, and many others. In addition to cryptographic functions, OpenSSL also provides utilities for generating and managing digital certificates and keys, creating and verifying digital signatures, and performing SSL/TLS handshake and negotiation. + The key advantages of using our OpenSSL Binary Distribution for Microsoft Windows over others that are available are: + - No need to deploy various software tools to attempt to compile the source from scratch. Our build script is available if you do want to compile OpenSSL yourself + - No external dependencies. Installing or distributing the Visual C++ Redistributable Runtime (MSVC) is unnecessary. There is an implicit dependency on the Windows Universal C Runtime (UCRT), which is included by default in all modern versions of Microsoft Windows + - Packaged for simple deployment and use case scenarios, including standalone, embeddable, deployable, or portable + - Installer and binaries are digitally signed with our Extended Validation (EV) code signing certificate to avoid Windows SmartScreen warnings and to allow you to validate binary integrity to meet your compliance requirements. +Tags: +- cryptography +- cybersecurity +- openssl +- security +- ssl +- tls +Documentations: +- DocumentLabel: FireDaemon OpenSSL Binary Distributions for Microsoft Windows + DocumentUrl: https://www.firedaemon.com/get-openssl +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/f/FireDaemon/OpenSSL/3.5.1/FireDaemon.OpenSSL.yaml b/manifests/f/FireDaemon/OpenSSL/3.5.1/FireDaemon.OpenSSL.yaml new file mode 100644 index 0000000000000..56608d0cacc9e --- /dev/null +++ b/manifests/f/FireDaemon/OpenSSL/3.5.1/FireDaemon.OpenSSL.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: FireDaemon.OpenSSL +PackageVersion: 3.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.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/Firezone/Client/Headless/1.5.1/Firezone.Client.Headless.installer.yaml b/manifests/f/Firezone/Client/Headless/1.5.1/Firezone.Client.Headless.installer.yaml new file mode 100644 index 0000000000000..800b5b71751bd --- /dev/null +++ b/manifests/f/Firezone/Client/Headless/1.5.1/Firezone.Client.Headless.installer.yaml @@ -0,0 +1,18 @@ +# 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.Headless +PackageVersion: 1.5.1 +InstallerType: portable +Commands: +- firezone-headless-client +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/firezone/firezone/releases/download/headless-client-1.5.1/firezone-client-headless-windows_1.5.1_x86_64.exe + InstallerSha256: EA304F468427CB9BBE8A037EC78D968A4A02B9AE6005935913AB53B690D4C656 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Firezone/Client/Headless/1.5.1/Firezone.Client.Headless.locale.en-US.yaml b/manifests/f/Firezone/Client/Headless/1.5.1/Firezone.Client.Headless.locale.en-US.yaml new file mode 100644 index 0000000000000..5b174595fbb67 --- /dev/null +++ b/manifests/f/Firezone/Client/Headless/1.5.1/Firezone.Client.Headless.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.Headless +PackageVersion: 1.5.1 +PackageLocale: en-US +Publisher: Firezone +PublisherUrl: https://github.com/firezone +PublisherSupportUrl: https://github.com/firezone/firezone/issues +PackageName: Firezone Headless Client +PackageUrl: https://github.com/firezone/firezone +License: Apache-2.0 +LicenseUrl: https://github.com/firezone/firezone/blob/HEAD/LICENSE +ShortDescription: Headless 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/Headless/1.5.1/Firezone.Client.Headless.yaml b/manifests/f/Firezone/Client/Headless/1.5.1/Firezone.Client.Headless.yaml new file mode 100644 index 0000000000000..73c21fe63611d --- /dev/null +++ b/manifests/f/Firezone/Client/Headless/1.5.1/Firezone.Client.Headless.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.Headless +PackageVersion: 1.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Firstversionist/Polypane/25.0.0/Firstversionist.Polypane.installer.yaml b/manifests/f/Firstversionist/Polypane/25.0.0/Firstversionist.Polypane.installer.yaml new file mode 100644 index 0000000000000..954b47532fd59 --- /dev/null +++ b/manifests/f/Firstversionist/Polypane/25.0.0/Firstversionist.Polypane.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: Firstversionist.Polypane +PackageVersion: 25.0.0 +InstallerLocale: en-US +InstallerType: nullsoft +UpgradeBehavior: install +ProductCode: 012fe6c4-73f4-51a6-b048-4c0dc64649f7 +ReleaseDate: 2025-06-27 +AppsAndFeaturesEntries: +- DisplayName: Polypane 25.0.0 + ProductCode: 012fe6c4-73f4-51a6-b048-4c0dc64649f7 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/firstversionist/polypane/releases/download/v25.0.0/Polypane-Setup-25.0.0.exe + InstallerSha256: 257694169303BC9CBD2D70DDB1760106DC3EC8A4D61EE42573C4011452CA8DFB +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Firstversionist/Polypane/25.0.0/Firstversionist.Polypane.locale.en-US.yaml b/manifests/f/Firstversionist/Polypane/25.0.0/Firstversionist.Polypane.locale.en-US.yaml new file mode 100644 index 0000000000000..2e2ddbd261ec4 --- /dev/null +++ b/manifests/f/Firstversionist/Polypane/25.0.0/Firstversionist.Polypane.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Firstversionist.Polypane +PackageVersion: 25.0.0 +PackageLocale: en-US +Publisher: Firstversionist +PublisherUrl: https://firstversionist.com/ +PublisherSupportUrl: https://polypane.app/support +PrivacyUrl: https://polypane.app/privacy +PackageName: Polypane +PackageUrl: https://polypane.app/ +License: Proprietary +LicenseUrl: https://polypane.app/legal +Copyright: Copyright © 2022 Firstversionist +ShortDescription: The browser for ambitious developers. +Moniker: polyplane +ReleaseNotes: |- + Polypane 25 + We've updated our browser extension implementation to support Manifest v3 so we support a ton more extensions, there's a new Form outline view that shows you the structure of your forms, and we've updated to Chromium 138 along with many fixes and updates to existing features. Full release notes. + New + - New Manifest v3 extensions support + - New Outline panel: Form outline view + - New Chromium 138 + Improvements + - Improved Elements panel: New CSS properties and attributes support + - Improved Elements panel: CSS property suggestions are now sorted by popularity + - Improved Meta panel: accuracy of StructuredData validation (Thanks Josh) + - Improved Storage panel: automatically updates when storage changes + - Improved Outline panel: Prevent warning about duplicate landmarks when some are hidden + - Improved Outline panel: more accurate detection of name for hidden elements + - Improved Updated default sizing of some device presets + - Improved JSON and XML viewer now support URLs with TrustedHTML enabled + - Improved Debug tools: Toggle option to move target size UI out of the way (Thanks Emma!) + - Improved Layout debugging: we now use p3 colors where available (Thanks Dyna!) + - Improved Emulation: Add a reset to defaults button (Thanks Steve!) + - Improved Color picker: Right-click suggestion to copy value or full suggestion string (Thanks Eric!) + - Improved Focus layout: Randomly resizing the pane now animates the resize + - Improved Updated Web Vitals library + - Improved Update Google fonts list + Removals + - Removed SCSS parsing in the Live CSS Panel + - Removed Support for Manifest v2 extensions + Fixes + - Fix Elements panel: issue with selectors with nested parentheses + - Fix Elements panel: Prevent non-values from being recognised as (in)valid IDs + - Fix Elements panel: Fix occurances where the tree view would remain empty until selecting an element + - Fix Elements panel: Unnamed layers weren't displayed correctly + - Fix Elements panel: Color contrast checker in a11y tab now takes font-size into account again + - Fix Source panel: Better layout in horizontal layout (Thanks Andreas!) + - Fix Meta panel: prevent crash when adding an invalid URL as domain overwrite + - Fix Undocked devtools opening when moving away from devtools panel + - Fix Context menu not working after a hard reload + - Fix Node highlights: prevent design leak issue with global CSS values + - Fix Hiding the header on mac prevented top pane buttons from being clickable (Thanks Trond!) + - Fix Remove space in front of color swatch screenshot default file name (Thanks Eric!) + - Fix Prevent resize events for unfocused tabs +ReleaseNotesUrl: https://github.com/firstversionist/polypane/releases/tag/v25.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Firstversionist/Polypane/25.0.0/Firstversionist.Polypane.yaml b/manifests/f/Firstversionist/Polypane/25.0.0/Firstversionist.Polypane.yaml new file mode 100644 index 0000000000000..f48eb81bcac26 --- /dev/null +++ b/manifests/f/Firstversionist/Polypane/25.0.0/Firstversionist.Polypane.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: Firstversionist.Polypane +PackageVersion: 25.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Firstversionist/Polypane/25.0.1/Firstversionist.Polypane.installer.yaml b/manifests/f/Firstversionist/Polypane/25.0.1/Firstversionist.Polypane.installer.yaml new file mode 100644 index 0000000000000..c28fe475e6011 --- /dev/null +++ b/manifests/f/Firstversionist/Polypane/25.0.1/Firstversionist.Polypane.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: Firstversionist.Polypane +PackageVersion: 25.0.1 +InstallerLocale: en-US +InstallerType: nullsoft +UpgradeBehavior: install +ProductCode: 012fe6c4-73f4-51a6-b048-4c0dc64649f7 +ReleaseDate: 2025-07-03 +AppsAndFeaturesEntries: +- DisplayName: Polypane 25.0.1 + ProductCode: 012fe6c4-73f4-51a6-b048-4c0dc64649f7 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/firstversionist/polypane/releases/download/v25.0.1/Polypane-Setup-25.0.1.exe + InstallerSha256: 001A0CA489655A2D132D11220776A0C4CF83C7C384527978BA2BA5A9F5CF3211 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Firstversionist/Polypane/25.0.1/Firstversionist.Polypane.locale.en-US.yaml b/manifests/f/Firstversionist/Polypane/25.0.1/Firstversionist.Polypane.locale.en-US.yaml new file mode 100644 index 0000000000000..aaf8cbfa66ace --- /dev/null +++ b/manifests/f/Firstversionist/Polypane/25.0.1/Firstversionist.Polypane.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Firstversionist.Polypane +PackageVersion: 25.0.1 +PackageLocale: en-US +Publisher: Firstversionist +PublisherUrl: https://firstversionist.com/ +PublisherSupportUrl: https://polypane.app/support +PrivacyUrl: https://polypane.app/privacy +PackageName: Polypane +PackageUrl: https://polypane.app/ +License: Proprietary +LicenseUrl: https://polypane.app/legal +Copyright: Copyright © 2022 Firstversionist +ShortDescription: The browser for ambitious developers. +Moniker: polyplane +ReleaseNotes: |- + Polypane 25.0.1 + This is a bugfix release. Full release notes. + Improvements + - Improved Elements panel now shows HTML comments in the tree view (Thanks Kim!) + - Improved Extensions: better support for extension popups + - Improved Recording: support recording of very large panes + - Improved Updates list of Google fonts + - Improved Updated Chromium 138.0.7204.97 + Fixes + - Fix Context menu on color suggestion not being visible (Thanks Eric!) + - Fix Outline panel: Fix issue where hidden buttons had an incorrect label +ReleaseNotesUrl: https://github.com/firstversionist/polypane/releases/tag/v25.0.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Firstversionist/Polypane/25.0.1/Firstversionist.Polypane.yaml b/manifests/f/Firstversionist/Polypane/25.0.1/Firstversionist.Polypane.yaml new file mode 100644 index 0000000000000..077b8b8447252 --- /dev/null +++ b/manifests/f/Firstversionist/Polypane/25.0.1/Firstversionist.Polypane.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: Firstversionist.Polypane +PackageVersion: 25.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fleet/fleetctl/4.70.0/Fleet.fleetctl.installer.yaml b/manifests/f/Fleet/fleetctl/4.70.0/Fleet.fleetctl.installer.yaml new file mode 100644 index 0000000000000..f290ab86f8df5 --- /dev/null +++ b/manifests/f/Fleet/fleetctl/4.70.0/Fleet.fleetctl.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Fleet.fleetctl +PackageVersion: 4.70.0 +InstallerType: zip +NestedInstallerType: portable +Commands: +- fleetctl +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: fleetctl_v4.70.0_windows_amd64\fleetctl.exe + PortableCommandAlias: fleetctl + InstallerUrl: https://github.com/fleetdm/fleet/releases/download/fleet-v4.70.0/fleetctl_v4.70.0_windows_amd64.zip + InstallerSha256: 74382F020DC9422697E48D87F6EBEEED00022F6647E0A6D392D4204467FC8DA4 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: fleetctl_v4.70.0_windows_arm64\fleetctl.exe + PortableCommandAlias: fleetctl + InstallerUrl: https://github.com/fleetdm/fleet/releases/download/fleet-v4.70.0/fleetctl_v4.70.0_windows_arm64.zip + InstallerSha256: 47904ADF9579FEF51E945C305904DC2D640452CAF150D5B236384A78F238BF10 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fleet/fleetctl/4.70.0/Fleet.fleetctl.locale.en-US.yaml b/manifests/f/Fleet/fleetctl/4.70.0/Fleet.fleetctl.locale.en-US.yaml new file mode 100644 index 0000000000000..653d9b0b555b1 --- /dev/null +++ b/manifests/f/Fleet/fleetctl/4.70.0/Fleet.fleetctl.locale.en-US.yaml @@ -0,0 +1,86 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Fleet.fleetctl +PackageVersion: 4.70.0 +PackageLocale: en-US +Publisher: Fleet Device Management Inc. +PublisherUrl: https://fleetdm.com/ +PublisherSupportUrl: https://github.com/fleetdm/fleet/issues +PrivacyUrl: https://fleetdm.com/legal/privacy +Author: Fleet Device Management Inc. +PackageName: fleetctl +PackageUrl: https://github.com/fleetdm/fleet +License: MIT +LicenseUrl: https://github.com/fleetdm/fleet/blob/HEAD/LICENSE +Copyright: Copyright (c) 2020-present Fleet Device Management Inc +ShortDescription: A command line interface (CLI) tool for managing Fleet from the command line. +Description: |- + fleetctl (pronounced "Fleet control") is a command line interface (CLI) tool for managing Fleet from the command line. fleetctl enables a GitOps workflow with Fleet. + fleetctl also provides a quick way to work with all the data exposed by Fleet without having to use the Fleet UI or work directly with the Fleet API. +Tags: +- fleet +ReleaseNotes: |- + Security Engineers + - Added support for Microsoft Entra ID conditional access. + - Updated vulnerabilities feed to fall back to non-primary CVSSv2/v3 sources when primary (NVD) data is not available, instead of omitting scores entirely. + - Updated custom SCEP proxy implementation to include one-time challenges. + - Added the source and username fields for host certificates, reporting 'system' or 'user' based on which keychain it was from (for macOS, it will be 'user' if coming from the "login" keychain), and the corresponding username if the source is 'user'. + - Updated certificates card on the host details and my device page to show a new keychain column. + IT Admins + - Added support for Microsoft Entra ID conditional access. + - Enabled Android MDM support. The functionality is limited to turning on Android MDM and enrolling a BYOD device. + NOTE: If your server was already using Android via the experimental DEV_ANDROID_ENABLED=1 flag, please turn off Android MDM before updating your Fleet server. + - Added support for filtering the hosts page for hosts with any of the 3 batch script execution statuses. + - Extended POST /api/v1/fleet/hosts/:id/wipe endpoint to allow users to specify the type of remote wipe for windows hosts. + - Improved releasing a macOS device during ADE enrollment, by increasing the frequency of checks for readiness. + - Added an audit log activity item for automatic install policy creation. + Other improvements and bug fixes + - Updated the Open Policy Agent (OPA) dependency to v1.4.2. + NOTE: This upgrade drops support for YAML 1.1 in configuration files. If you use the -c option to specify a configuration file when starting the Fleet server, you will need to update any yes or on values in the file to true, and any no or off values to false. + - Improved error and loading state for self-service page. + - Implemented searching the teams dropdown. + - Removed sort column buttons for host software columns that do not support sorting. + - Updated migrations to use the utf8mb4_unicode_ci collation across all tables and added a test to validate that new migrations use this collation. + - Added new optional parameter --outfile to fleetctl package to override the filename being generated. + - Updated software detection so that a new installer uploaded over an FMA app does not report as an FMA app. + - Improved error when trying to apply builtin labels. + - Updated copy and remove platform callout in manage automations modal. + - Update UI references to "Frequency" to now say "Interval". + - Prevented editing the UI MDM > End user migration section when GitOps mode is enabled, since this is GitOps-configurable. + - Made the gap between characters in password fields consistent. + - Updated to consistent 14px font size across all input and dropdown fields. + - Removed username requirements for certain MDM CIS policies. + - Added macOS redis cluster support. + - Changed to using DeleteObject S3 api for GCP interoperability. + - Updated to use the Source Code Pro font in the Disk encryption key modal for clear differentiation betweenvthe letter oh and the number zero. + - Updated go to 1.24.4 + - Fixed result count shown when running a policy. + - Fixed bug with the 'Observers can run this query' tooltip due to missing styling rules. + - Fixed possible user invite race condition. + - Fixed issue where NDES SCEP admin page was parsed using wrong UTF16 endianness. + - Fixed manual labels in gitops not selecting hosts by hardware serial or uuid. + - Fixed a database bug where the host_uuid column was too small in some secondary tables related to ADE-enrollment and IdP accounts. + - Fixed missing CORS header check for JSON requests. + - Fixed bug when listing software titles for 'All teams' which caused duplicated entries. + - Fixed a bug that caused custom OS settings targeted using "include any" label rules to never verify on hosts that only included a subset of the targeted labels + - Fixed the Docker Fleet-maintained app install script to prevent a successful install from showing + up as a failure due to directory existence checks (live as of 2025-06-13 FMA update). + - Fixed issue causing a 500 error when clicking "Manage Automations" from the Queries page when osquery logging has certain configurations. + - Fixed issue where you could not delete a bootstrap package. + - Fixed policy autofill using incorrect media-type for query. + - Fleet Free: Removed the installer dropdown (Premium-only) from the Software page and Host details > Software tab as installer filtering isn’t applicable on the Free tier. + - Fixed issue where users were not able to reenable end user migration in the UI. + Fleet's agent + The following version of Fleet's agent (fleetd) support the latest changes to Fleet: + 1. orbit-v1.44.0 + 2. fleet-desktop-v1.44.0 (included with Orbit) + 3. fleetd-chrome-v1.3.2 + While newer versions of fleetd still function with older versions of the Fleet server (and vice versa), Fleet does not actively test these scenarios and some newer features won't be available. +ReleaseNotesUrl: https://github.com/fleetdm/fleet/releases/tag/fleet-v4.70.0 +PurchaseUrl: https://fleetdm.com/pricing +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://fleetdm.com/docs +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fleet/fleetctl/4.70.0/Fleet.fleetctl.locale.zh-CN.yaml b/manifests/f/Fleet/fleetctl/4.70.0/Fleet.fleetctl.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2d10558673b4b --- /dev/null +++ b/manifests/f/Fleet/fleetctl/4.70.0/Fleet.fleetctl.locale.zh-CN.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Fleet.fleetctl +PackageVersion: 4.70.0 +PackageLocale: zh-CN +ShortDescription: 从命令行管理 Fleet 的命令行界面(CLI)工具。 +Description: |- + fleetctl(读作“Fleet control”)是一种命令行界面(CLI)工具,用于通过命令行管理 Fleet。 + fleetctl 还提供了一种快速方法来处理 Fleet 公开的所有数据,而无需使用 Fleet UI 或直接使用 Fleet API。 +ReleaseNotesUrl: https://github.com/fleetdm/fleet/releases/tag/fleet-v4.70.0 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://fleetdm.com/docs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fleet/fleetctl/4.70.0/Fleet.fleetctl.yaml b/manifests/f/Fleet/fleetctl/4.70.0/Fleet.fleetctl.yaml new file mode 100644 index 0000000000000..b03d9683e66ea --- /dev/null +++ b/manifests/f/Fleet/fleetctl/4.70.0/Fleet.fleetctl.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: Fleet.fleetctl +PackageVersion: 4.70.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FluxCD/Flux/2.6.3/FluxCD.Flux.installer.yaml b/manifests/f/FluxCD/Flux/2.6.3/FluxCD.Flux.installer.yaml new file mode 100644 index 0000000000000..bb864ef292e95 --- /dev/null +++ b/manifests/f/FluxCD/Flux/2.6.3/FluxCD.Flux.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: FluxCD.Flux +PackageVersion: 2.6.3 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: flux.exe +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/fluxcd/flux2/releases/download/v2.6.3/flux_2.6.3_windows_amd64.zip + InstallerSha256: 22931173FED8D64AFCFF86D78856EB45C3EA8A3B52EA74753CE563B2DA4663C3 +- Architecture: arm64 + InstallerUrl: https://github.com/fluxcd/flux2/releases/download/v2.6.3/flux_2.6.3_windows_arm64.zip + InstallerSha256: 552B68922437C8521F2E06C964C8E994FDEBFC9100FECEF98EEC2A8B0E880BB4 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-27 diff --git a/manifests/f/FluxCD/Flux/2.6.3/FluxCD.Flux.locale.en-US.yaml b/manifests/f/FluxCD/Flux/2.6.3/FluxCD.Flux.locale.en-US.yaml new file mode 100644 index 0000000000000..ad633219198ba --- /dev/null +++ b/manifests/f/FluxCD/Flux/2.6.3/FluxCD.Flux.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: FluxCD.Flux +PackageVersion: 2.6.3 +PackageLocale: en-US +Publisher: FluxCD +PublisherUrl: https://fluxcd.io/ +PublisherSupportUrl: https://github.com/fluxcd/flux2/issues +PackageName: Flux +PackageUrl: https://github.com/fluxcd/flux2 +License: Apache-2.0 +LicenseUrl: https://github.com/fluxcd/flux2/blob/HEAD/LICENSE +ShortDescription: A command line tool for communicating with FluxCD +Tags: +- continuous-delivery +- gitops +- gitops-toolkit +- helm +- kubernetes +- kustomize +ReleaseNotesUrl: https://github.com/fluxcd/flux2/releases/tag/v2.6.3 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/f/FluxCD/Flux/2.6.3/FluxCD.Flux.yaml b/manifests/f/FluxCD/Flux/2.6.3/FluxCD.Flux.yaml new file mode 100644 index 0000000000000..254f8446ee3a3 --- /dev/null +++ b/manifests/f/FluxCD/Flux/2.6.3/FluxCD.Flux.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: FluxCD.Flux +PackageVersion: 2.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/f/FluxCD/Flux/2.6.4/FluxCD.Flux.installer.yaml b/manifests/f/FluxCD/Flux/2.6.4/FluxCD.Flux.installer.yaml new file mode 100644 index 0000000000000..7f8f2a5c6e35e --- /dev/null +++ b/manifests/f/FluxCD/Flux/2.6.4/FluxCD.Flux.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: FluxCD.Flux +PackageVersion: 2.6.4 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: flux.exe +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/fluxcd/flux2/releases/download/v2.6.4/flux_2.6.4_windows_amd64.zip + InstallerSha256: 991ECB38AC9013B02170A0C2FAE116150510DA80C426863CE6E3B63E3F8B55B1 +- Architecture: arm64 + InstallerUrl: https://github.com/fluxcd/flux2/releases/download/v2.6.4/flux_2.6.4_windows_arm64.zip + InstallerSha256: 832D3916953C30FD3F59061B21975D86CC44AE90DDD60C7F5FB4F526FB9EE2ED +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-08 diff --git a/manifests/f/FluxCD/Flux/2.6.4/FluxCD.Flux.locale.en-US.yaml b/manifests/f/FluxCD/Flux/2.6.4/FluxCD.Flux.locale.en-US.yaml new file mode 100644 index 0000000000000..de84a7e69e305 --- /dev/null +++ b/manifests/f/FluxCD/Flux/2.6.4/FluxCD.Flux.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: FluxCD.Flux +PackageVersion: 2.6.4 +PackageLocale: en-US +Publisher: FluxCD +PublisherUrl: https://fluxcd.io/ +PublisherSupportUrl: https://github.com/fluxcd/flux2/issues +PackageName: Flux +PackageUrl: https://github.com/fluxcd/flux2 +License: Apache-2.0 +LicenseUrl: https://github.com/fluxcd/flux2/blob/HEAD/LICENSE +ShortDescription: A command line tool for communicating with FluxCD +Tags: +- continuous-delivery +- gitops +- gitops-toolkit +- helm +- kubernetes +- kustomize +ReleaseNotesUrl: https://github.com/fluxcd/flux2/releases/tag/v2.6.4 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/f/FluxCD/Flux/2.6.4/FluxCD.Flux.yaml b/manifests/f/FluxCD/Flux/2.6.4/FluxCD.Flux.yaml new file mode 100644 index 0000000000000..7db9eb82d8e57 --- /dev/null +++ b/manifests/f/FluxCD/Flux/2.6.4/FluxCD.Flux.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: FluxCD.Flux +PackageVersion: 2.6.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.145/Fly-io.flyctl.installer.yaml b/manifests/f/Fly-io/flyctl/0.3.145/Fly-io.flyctl.installer.yaml new file mode 100644 index 0000000000000..c60c0cb30c009 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.145/Fly-io.flyctl.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Fly-io.flyctl +PackageVersion: 0.3.145 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: flyctl.exe +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.3.145/flyctl_0.3.145_Windows_x86_64.zip + InstallerSha256: 9D3D1482F14FB38CF766DA6F203BA079A117E7A295C6EE07DCCFEF56CF52DAA3 +- Architecture: arm64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.3.145/flyctl_0.3.145_Windows_arm64.zip + InstallerSha256: C8A5E8F024B81252041C2DB5402AECD666F5735C9972BD9398052E22850A9FEA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.145/Fly-io.flyctl.locale.en-US.yaml b/manifests/f/Fly-io/flyctl/0.3.145/Fly-io.flyctl.locale.en-US.yaml new file mode 100644 index 0000000000000..c1b948c333455 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.145/Fly-io.flyctl.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Fly-io.flyctl +PackageVersion: 0.3.145 +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 + - 0c9ff82 Enable pgvector from flyctl mpg create (#4447) + - 47ced69 Fixes region selection based on organization for Managed Postgres (#4445) + - ee27dad Jphenow/mpg improvements (#4444) +ReleaseNotesUrl: https://github.com/superfly/flyctl/releases/tag/v0.3.145 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.145/Fly-io.flyctl.locale.ko-KR.yaml b/manifests/f/Fly-io/flyctl/0.3.145/Fly-io.flyctl.locale.ko-KR.yaml new file mode 100644 index 0000000000000..2b1b366a45f8c --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.145/Fly-io.flyctl.locale.ko-KR.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Fly-io.flyctl +PackageVersion: 0.3.145 +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.145/Fly-io.flyctl.yaml b/manifests/f/Fly-io/flyctl/0.3.145/Fly-io.flyctl.yaml new file mode 100644 index 0000000000000..51d49b25970ef --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.145/Fly-io.flyctl.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: Fly-io.flyctl +PackageVersion: 0.3.145 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.146/Fly-io.flyctl.installer.yaml b/manifests/f/Fly-io/flyctl/0.3.146/Fly-io.flyctl.installer.yaml new file mode 100644 index 0000000000000..84368677fc74d --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.146/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.146 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: flyctl.exe +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.3.146/flyctl_0.3.146_Windows_x86_64.zip + InstallerSha256: AD4F367E68ED10A7CB7A2791C8A7787406F2FA56C623E56E8052CF8B004B2FD5 +- Architecture: arm64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.3.146/flyctl_0.3.146_Windows_arm64.zip + InstallerSha256: 0E169250E39E5794C3A0B924B27C5C1DA165E00EA1DFC354FC549224312A6D92 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.146/Fly-io.flyctl.locale.en-US.yaml b/manifests/f/Fly-io/flyctl/0.3.146/Fly-io.flyctl.locale.en-US.yaml new file mode 100644 index 0000000000000..d7ddb54f26244 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.146/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.146 +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 + - a7ee436 fix: remove feature flag check from launch --db flag (#4448) + - a496394 fix connect selection without passed cluster flag (#4450) +ReleaseNotesUrl: https://github.com/superfly/flyctl/releases/tag/v0.3.146 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.146/Fly-io.flyctl.locale.ko-KR.yaml b/manifests/f/Fly-io/flyctl/0.3.146/Fly-io.flyctl.locale.ko-KR.yaml new file mode 100644 index 0000000000000..5200bded1172c --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.146/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.146 +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.146/Fly-io.flyctl.yaml b/manifests/f/Fly-io/flyctl/0.3.146/Fly-io.flyctl.yaml new file mode 100644 index 0000000000000..4dfcd164c4cc1 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.146/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.146 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.147/Fly-io.flyctl.installer.yaml b/manifests/f/Fly-io/flyctl/0.3.147/Fly-io.flyctl.installer.yaml new file mode 100644 index 0000000000000..3dfe41d2f6b99 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.147/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.147 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: flyctl.exe +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.3.147/flyctl_0.3.147_Windows_x86_64.zip + InstallerSha256: 12E96CA306A3F3CAAA6FEE57B4EDB830813A2DE33C73C9B698B67D0B156AB37E +- Architecture: arm64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.3.147/flyctl_0.3.147_Windows_arm64.zip + InstallerSha256: 97340CD8DF98FCBE87ACEB6B9D4CD42432E70FD8A93932BD9571D7603001B4E3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.147/Fly-io.flyctl.locale.en-US.yaml b/manifests/f/Fly-io/flyctl/0.3.147/Fly-io.flyctl.locale.en-US.yaml new file mode 100644 index 0000000000000..7b7a743766e73 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.147/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.147 +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 + - 1dc18d2 Fix hanging on launch/deploy by adding timeout to tracing shutdown (#4449) + - f7eefe2 Fix container file updates during deploy (#4452) +ReleaseNotesUrl: https://github.com/superfly/flyctl/releases/tag/v0.3.147 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.147/Fly-io.flyctl.locale.ko-KR.yaml b/manifests/f/Fly-io/flyctl/0.3.147/Fly-io.flyctl.locale.ko-KR.yaml new file mode 100644 index 0000000000000..a4b6a11d45ded --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.147/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.147 +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.147/Fly-io.flyctl.yaml b/manifests/f/Fly-io/flyctl/0.3.147/Fly-io.flyctl.yaml new file mode 100644 index 0000000000000..74f9c9c4785c1 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.147/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.147 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.148/Fly-io.flyctl.installer.yaml b/manifests/f/Fly-io/flyctl/0.3.148/Fly-io.flyctl.installer.yaml new file mode 100644 index 0000000000000..fdfa1bbbebd03 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.148/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.148 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: flyctl.exe +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.3.148/flyctl_0.3.148_Windows_x86_64.zip + InstallerSha256: B8282463EC646A2C399685BE23DCAE97BE6975DCEB447C4766457C8700EE8A87 +- Architecture: arm64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.3.148/flyctl_0.3.148_Windows_arm64.zip + InstallerSha256: 7762211AB287C3DFC911FDA0829B0E6208A45619D89BFD04C81928BE2CFEACAF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.148/Fly-io.flyctl.locale.en-US.yaml b/manifests/f/Fly-io/flyctl/0.3.148/Fly-io.flyctl.locale.en-US.yaml new file mode 100644 index 0000000000000..daf95a4bbf422 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.148/Fly-io.flyctl.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: Fly-io.flyctl +PackageVersion: 0.3.148 +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 + - e3f35d9 Adding extras support to python dependencies parsing (#4458) +ReleaseNotesUrl: https://github.com/superfly/flyctl/releases/tag/v0.3.148 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.148/Fly-io.flyctl.locale.ko-KR.yaml b/manifests/f/Fly-io/flyctl/0.3.148/Fly-io.flyctl.locale.ko-KR.yaml new file mode 100644 index 0000000000000..b411d4284cfef --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.148/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.148 +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.148/Fly-io.flyctl.yaml b/manifests/f/Fly-io/flyctl/0.3.148/Fly-io.flyctl.yaml new file mode 100644 index 0000000000000..3cbb789ec66d7 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.148/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.148 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.149/Fly-io.flyctl.installer.yaml b/manifests/f/Fly-io/flyctl/0.3.149/Fly-io.flyctl.installer.yaml new file mode 100644 index 0000000000000..38d811346deb4 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.149/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.149 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: flyctl.exe +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.3.149/flyctl_0.3.149_Windows_x86_64.zip + InstallerSha256: 26505E42C66751C19B76D9EEBA42325AA09A5819B450418412317B881685BD41 +- Architecture: arm64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.3.149/flyctl_0.3.149_Windows_arm64.zip + InstallerSha256: 3870BBEB60CD3BCF45127F2129AE58B9A5D247ADD60E7D47BAC457FE14E9BDFE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.149/Fly-io.flyctl.locale.en-US.yaml b/manifests/f/Fly-io/flyctl/0.3.149/Fly-io.flyctl.locale.en-US.yaml new file mode 100644 index 0000000000000..71b4b073acce2 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.149/Fly-io.flyctl.locale.en-US.yaml @@ -0,0 +1,27 @@ +# 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.149 +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 + - 2c142c1 start with pooled builders (#4459) + - c163990 Add Docker Compose support to fly deploy (#4454) + - 26a6408 Fix panic in case Cargo.toml has no dependencies (#4455) +ReleaseNotesUrl: https://github.com/superfly/flyctl/releases/tag/v0.3.149 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.149/Fly-io.flyctl.locale.ko-KR.yaml b/manifests/f/Fly-io/flyctl/0.3.149/Fly-io.flyctl.locale.ko-KR.yaml new file mode 100644 index 0000000000000..91af9c984c23d --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.149/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.149 +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.149/Fly-io.flyctl.yaml b/manifests/f/Fly-io/flyctl/0.3.149/Fly-io.flyctl.yaml new file mode 100644 index 0000000000000..62ff3b0190a26 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.149/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.149 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.151/Fly-io.flyctl.installer.yaml b/manifests/f/Fly-io/flyctl/0.3.151/Fly-io.flyctl.installer.yaml new file mode 100644 index 0000000000000..d4c5295825c8b --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.151/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.151 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: flyctl.exe +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.3.151/flyctl_0.3.151_Windows_x86_64.zip + InstallerSha256: E49F4431E367DF88F46BF7C616F7FEAE56D671365124FD5617191F262A3A1E59 +- Architecture: arm64 + InstallerUrl: https://github.com/superfly/flyctl/releases/download/v0.3.151/flyctl_0.3.151_Windows_arm64.zip + InstallerSha256: 6D609F51A184A7155E4209A5A2EB3360BAC631C4210CE5477277299F3EC21F1E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.151/Fly-io.flyctl.locale.en-US.yaml b/manifests/f/Fly-io/flyctl/0.3.151/Fly-io.flyctl.locale.en-US.yaml new file mode 100644 index 0000000000000..f9611ac3eb9c1 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.151/Fly-io.flyctl.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: Fly-io.flyctl +PackageVersion: 0.3.151 +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 + - f260d6c removed stale docs about building via docker (#4462) +ReleaseNotesUrl: https://github.com/superfly/flyctl/releases/tag/v0.3.151 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Fly-io/flyctl/0.3.151/Fly-io.flyctl.locale.ko-KR.yaml b/manifests/f/Fly-io/flyctl/0.3.151/Fly-io.flyctl.locale.ko-KR.yaml new file mode 100644 index 0000000000000..da46cb5613012 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.151/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.151 +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.151/Fly-io.flyctl.yaml b/manifests/f/Fly-io/flyctl/0.3.151/Fly-io.flyctl.yaml new file mode 100644 index 0000000000000..85d041912cbe9 --- /dev/null +++ b/manifests/f/Fly-io/flyctl/0.3.151/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.151 +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/Flydigi/FlydigiSpaceStation/3.4.8.3/Flydigi.FlydigiSpaceStation.installer.yaml b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.3/Flydigi.FlydigiSpaceStation.installer.yaml new file mode 100644 index 0000000000000..4243a7a20cd59 --- /dev/null +++ b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.3/Flydigi.FlydigiSpaceStation.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: Flydigi.FlydigiSpaceStation +PackageVersion: 3.4.8.3 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: '{7BCA93D4-0551-4DC8-8F96-D0FF8D259C99}_is1' +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x64 + InstallerUrl: https://tencent-android.cdn.flydigi.com/PC/Space%20Station3.0/FlydigiSpaceStation_setup_3.4.8.3_Release.exe + InstallerSha256: 1A27EF88E8B6D8F55363D3B5CEF70776AB92D027113BCAFEF593636D04B97DE1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.3/Flydigi.FlydigiSpaceStation.locale.en-US.yaml b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.3/Flydigi.FlydigiSpaceStation.locale.en-US.yaml new file mode 100644 index 0000000000000..40973632e1ba2 --- /dev/null +++ b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.3/Flydigi.FlydigiSpaceStation.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Flydigi.FlydigiSpaceStation +PackageVersion: 3.4.8.3 +PackageLocale: en-US +Publisher: Flydigi, Inc. +PublisherUrl: https://en.flydigi.com/ +PublisherSupportUrl: https://en.flydigi.com/index/service?nav_id=3 +Author: Shanghai Flydigi Electronics Technology Co., Ltd. +PackageName: FlydigiSpaceStation +PackageUrl: https://en.flydigi.com/index/down?nav_id=2 +License: Proprietary +Copyright: Copyright (C) 2008-2024 Shanghai Flydigi Electronics Technology Co., Ltd. All rights reserved. +ShortDescription: The companion software for Flydigi Vader 4/3 series,APEX 4/3 series and Direwolf 2 controllers. +Tags: +- controller +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.3/Flydigi.FlydigiSpaceStation.locale.zh-CN.yaml b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.3/Flydigi.FlydigiSpaceStation.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a5d5406123084 --- /dev/null +++ b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.3/Flydigi.FlydigiSpaceStation.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: Flydigi.FlydigiSpaceStation +PackageVersion: 3.4.8.3 +PackageLocale: zh-CN +Publisher: Flydigi, Inc. +PublisherUrl: https://flydigi.com/ +PublisherSupportUrl: https://flydigi.com/index/service?nav_id=3 +Author: 上海飞智电子科技有限公司 +PackageName: FlydigiSpaceStation +PackageUrl: https://flydigi.com/index/down?nav_id=2 +License: 专有软件 +Copyright: Copyright (C) 2008-2024 Shanghai Flydigi Electronics Technology Co., Ltd. All rights reserved. +ShortDescription: 适用于飞智黑武士 3/4 系列、八爪鱼 3/4、冰原狼 2 手柄的配套软件。 +Tags: +- 手柄 +- 控制器 +ReleaseNotes: |- + 1. 修复了 BS2 系列散热器在智能变频模式下灯光无法记忆的问题 + 2. 自适应游戏兼容空间站 4.0 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.3/Flydigi.FlydigiSpaceStation.yaml b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.3/Flydigi.FlydigiSpaceStation.yaml new file mode 100644 index 0000000000000..e8c5f9466591d --- /dev/null +++ b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.3/Flydigi.FlydigiSpaceStation.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: Flydigi.FlydigiSpaceStation +PackageVersion: 3.4.8.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.6/Flydigi.FlydigiSpaceStation.installer.yaml b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.6/Flydigi.FlydigiSpaceStation.installer.yaml new file mode 100644 index 0000000000000..6ddd69913b79e --- /dev/null +++ b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.6/Flydigi.FlydigiSpaceStation.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: Flydigi.FlydigiSpaceStation +PackageVersion: 3.4.8.6 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: '{7BCA93D4-0551-4DC8-8F96-D0FF8D259C99}_is1' +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://tencent-android.cdn.flydigi.com/PC/Space%20Station3.0/FlydigiSpaceStation_setup_3.4.8.6_Release.exe + InstallerSha256: 48134DA0BB0B4E3BDA316AC510F6352287AF4C0285C5DD1396E26B2D642077F5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.6/Flydigi.FlydigiSpaceStation.locale.en-US.yaml b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.6/Flydigi.FlydigiSpaceStation.locale.en-US.yaml new file mode 100644 index 0000000000000..f3013e2f7a237 --- /dev/null +++ b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.6/Flydigi.FlydigiSpaceStation.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Flydigi.FlydigiSpaceStation +PackageVersion: 3.4.8.6 +PackageLocale: en-US +Publisher: Flydigi, Inc. +PublisherUrl: https://en.flydigi.com/ +PublisherSupportUrl: https://en.flydigi.com/index/service?nav_id=3 +Author: Shanghai Flydigi Electronics Technology Co., Ltd. +PackageName: FlydigiSpaceStation +PackageUrl: https://en.flydigi.com/index/down?nav_id=2 +License: Proprietary +Copyright: Copyright (C) 2008-2024 Shanghai Flydigi Electronics Technology Co., Ltd. All rights reserved. +ShortDescription: The companion software for Flydigi Vader 4/3 series,APEX 4/3 series and Direwolf 2 controllers. +Tags: +- controller +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.6/Flydigi.FlydigiSpaceStation.locale.zh-CN.yaml b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.6/Flydigi.FlydigiSpaceStation.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a2f44c85bda93 --- /dev/null +++ b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.6/Flydigi.FlydigiSpaceStation.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: Flydigi.FlydigiSpaceStation +PackageVersion: 3.4.8.6 +PackageLocale: zh-CN +Publisher: Flydigi, Inc. +PublisherUrl: https://flydigi.com/ +PublisherSupportUrl: https://flydigi.com/index/service?nav_id=3 +Author: 上海飞智电子科技有限公司 +PackageName: FlydigiSpaceStation +PackageUrl: https://flydigi.com/index/down?nav_id=2 +License: 专有软件 +Copyright: Copyright (C) 2008-2024 Shanghai Flydigi Electronics Technology Co., Ltd. All rights reserved. +ShortDescription: 适用于飞智黑武士 3/4 系列、八爪鱼 3/4、冰原狼 2 手柄的配套软件。 +Tags: +- 手柄 +- 控制器 +ReleaseNotes: |- + 1. 修复了连接手柄时 BS2 系列散热器与空间站断联的问题 + 2. 修复了一些自适应游戏的问题 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.6/Flydigi.FlydigiSpaceStation.yaml b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.6/Flydigi.FlydigiSpaceStation.yaml new file mode 100644 index 0000000000000..6dbdc74a14e3c --- /dev/null +++ b/manifests/f/Flydigi/FlydigiSpaceStation/3.4.8.6/Flydigi.FlydigiSpaceStation.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: Flydigi.FlydigiSpaceStation +PackageVersion: 3.4.8.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.576.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.installer.yaml b/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.576.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.installer.yaml deleted file mode 100644 index ba56b484b73b5..0000000000000 --- a/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.576.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/12 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: FocusriteAudioEngineeringLtd.FocusriteControl2 -PackageVersion: 1.576.0.0 -InstallerType: inno -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: /silent -ElevationRequirement: elevatesSelf -Installers: -- Architecture: x64 - InstallerUrl: https://releases.focusrite.com/com.focusrite.focusrite-control/latest/Focusrite-Control-2.exe - InstallerSha256: 7FBB7102F1363E092D3A6A3BC9B143A7B85D4C7338FFABD79CB7AD49C80FBAEA -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.576.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.yaml b/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.576.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.yaml deleted file mode 100644 index d8019e63ddd34..0000000000000 --- a/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.576.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/12 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: FocusriteAudioEngineeringLtd.FocusriteControl2 -PackageVersion: 1.576.0.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.603.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.installer.yaml b/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.603.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.installer.yaml new file mode 100644 index 0000000000000..a449cb7d5c213 --- /dev/null +++ b/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.603.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.installer.yaml @@ -0,0 +1,18 @@ +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: FocusriteAudioEngineeringLtd.FocusriteControl2 +PackageVersion: 1.603.0.0 +InstallerType: inno +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /silent +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://releases.focusrite.com/com.focusrite.focusrite-control/latest/Focusrite-Control-2.exe + InstallerSha256: B7E514B07609A8311D6A81D189F6B52683047964990F3CFB5FDB7010D5073AD6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.576.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.locale.en-US.yaml b/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.603.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.locale.en-US.yaml similarity index 85% rename from manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.576.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.locale.en-US.yaml rename to manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.603.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.locale.en-US.yaml index 4b1138db0f006..58a1fadf22199 100644 --- a/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.576.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.locale.en-US.yaml +++ b/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.603.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jun/12 +# Automatically updated by the winget bot at 2025/Jul/03 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: FocusriteAudioEngineeringLtd.FocusriteControl2 -PackageVersion: 1.576.0.0 +PackageVersion: 1.603.0.0 PackageLocale: en-US Publisher: Focusrite Audio Engineering Ltd. PackageName: Focusrite Control 2 diff --git a/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.603.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.yaml b/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.603.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.yaml new file mode 100644 index 0000000000000..49b3a49323ba5 --- /dev/null +++ b/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.603.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: FocusriteAudioEngineeringLtd.FocusriteControl2 +PackageVersion: 1.603.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Folge/Folge/1.24.0/Folge.Folge.installer.yaml b/manifests/f/Folge/Folge/1.24.0/Folge.Folge.installer.yaml new file mode 100644 index 0000000000000..a82f4f60007e8 --- /dev/null +++ b/manifests/f/Folge/Folge/1.24.0/Folge.Folge.installer.yaml @@ -0,0 +1,37 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Folge.Folge +PackageVersion: 1.24.0 +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S + SilentWithProgress: /S +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: a6386432-8ff6-5fc0-8bfc-252affc43de8 +ReleaseDate: 2025-06-02 +AppsAndFeaturesEntries: +- ProductCode: a6386432-8ff6-5fc0-8bfc-252affc43de8 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://cdn.folge.me/Folge-1.24.0.exe + InstallerSha256: 70A26624D22E5571F34AB6EF48CCCFA59ECCCA14BFD729CE9B84968E1549C053 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://cdn.folge.me/Folge-1.24.0.exe + InstallerSha256: 70A26624D22E5571F34AB6EF48CCCFA59ECCCA14BFD729CE9B84968E1549C053 + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Folge/Folge/1.24.0/Folge.Folge.locale.en-GB.yaml b/manifests/f/Folge/Folge/1.24.0/Folge.Folge.locale.en-GB.yaml new file mode 100644 index 0000000000000..c16dd19eacd09 --- /dev/null +++ b/manifests/f/Folge/Folge/1.24.0/Folge.Folge.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Folge.Folge +PackageVersion: 1.24.0 +PackageLocale: en-GB +Publisher: Oleksii Sribnyi +PublisherSupportUrl: https://folge.me/help/ +PrivacyUrl: https://folge.me/terms-of-service#privacy +Author: Oleksii Sribnyi +PackageName: Folge +PackageUrl: https://folge.me/ +License: Proprietary +LicenseUrl: https://folge.me/eula +Copyright: Copyright © 2025 Oleksii Sribnyi +ShortDescription: Folge is a simple, free, and powerful desktop tool for creating, managing, and sharing your processes and knowledge. +Tags: +- guide +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Folge/Folge/1.24.0/Folge.Folge.yaml b/manifests/f/Folge/Folge/1.24.0/Folge.Folge.yaml new file mode 100644 index 0000000000000..97c33db7ad1a4 --- /dev/null +++ b/manifests/f/Folge/Folge/1.24.0/Folge.Folge.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: Folge.Folge +PackageVersion: 1.24.0 +DefaultLocale: en-GB +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Forkgram/Forkgram/5.16.1/Forkgram.Forkgram.installer.yaml b/manifests/f/Forkgram/Forkgram/5.16.1/Forkgram.Forkgram.installer.yaml new file mode 100644 index 0000000000000..2ebf9a4ef8c2d --- /dev/null +++ b/manifests/f/Forkgram/Forkgram/5.16.1/Forkgram.Forkgram.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: Forkgram.Forkgram +PackageVersion: 5.16.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: Telegram.exe +UpgradeBehavior: install +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/forkgram/tdesktop/releases/download/v5.16.1/Telegram.zip + InstallerSha256: 87E1FA885F8B47FBC4D8397134FE560A67D09762D41389F81298E40781298632 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Forkgram/Forkgram/5.16.1/Forkgram.Forkgram.locale.en-US.yaml b/manifests/f/Forkgram/Forkgram/5.16.1/Forkgram.Forkgram.locale.en-US.yaml new file mode 100644 index 0000000000000..c8feb794731eb --- /dev/null +++ b/manifests/f/Forkgram/Forkgram/5.16.1/Forkgram.Forkgram.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: Forkgram.Forkgram +PackageVersion: 5.16.1 +PackageLocale: en-US +Publisher: Forkgram +PublisherUrl: https://github.com/forkgram +PublisherSupportUrl: https://github.com/forkgram/tdesktop/issues +PackageName: Forkgram +PackageUrl: https://github.com/forkgram/tdesktop +License: GPL-3.0 +LicenseUrl: https://github.com/forkgram/tdesktop/blob/HEAD/LICENSE +ShortDescription: Fork of Telegram Desktop messaging app. +Description: Forkgram is a fork of the official Telegram Desktop application. It does not fundamentally change the official client and adds only some useful small features. +Moniker: forkgram +Tags: +- fork +- forkgram +- messenger +- telegram +- telegram-desktop +ReleaseNotes: — Updated version to 5.16.1. +ReleaseNotesUrl: https://github.com/forkgram/tdesktop/releases/tag/v5.16.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Forkgram/Forkgram/5.16.1/Forkgram.Forkgram.yaml b/manifests/f/Forkgram/Forkgram/5.16.1/Forkgram.Forkgram.yaml new file mode 100644 index 0000000000000..28d917384e443 --- /dev/null +++ b/manifests/f/Forkgram/Forkgram/5.16.1/Forkgram.Forkgram.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: Forkgram.Forkgram +PackageVersion: 5.16.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FreePascal/FreePascalCompiler/3.0.4/FreePascal.FreePascalCompiler.installer.yaml b/manifests/f/FreePascal/FreePascalCompiler/3.0.4/FreePascal.FreePascalCompiler.installer.yaml index 0ea9a4e6f0b42..b706e339518be 100644 --- a/manifests/f/FreePascal/FreePascalCompiler/3.0.4/FreePascal.FreePascalCompiler.installer.yaml +++ b/manifests/f/FreePascal/FreePascalCompiler/3.0.4/FreePascal.FreePascalCompiler.installer.yaml @@ -6,6 +6,9 @@ PackageVersion: 3.0.4 MinimumOSVersion: 10.0.0.0 InstallerType: inno Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/freepascal/files/Win32/3.0.4/fpc-3.0.4.i386-win32.exe/download + InstallerSha256: 1F6323D3362ECA1F0B2F63160C2329205DF0415F6AA9D8E42910629AAAA823BB - Architecture: x64 InstallerUrl: https://sourceforge.net/projects/freepascal/files/Win32/3.0.4/fpc-3.0.4.i386-win32.cross.x86_64-win64.exe/download InstallerSha256: DB98A440459C884AFD62F822ADE13E08CBD54C65F844425DD683E0CA3E7B94F5 diff --git a/manifests/f/FreePascal/FreePascalCompiler/3.2.0/FreePascal.FreePascalCompiler.installer.yaml b/manifests/f/FreePascal/FreePascalCompiler/3.2.0/FreePascal.FreePascalCompiler.installer.yaml index abf955f5546ad..61e2c1ea94fa7 100644 --- a/manifests/f/FreePascal/FreePascalCompiler/3.2.0/FreePascal.FreePascalCompiler.installer.yaml +++ b/manifests/f/FreePascal/FreePascalCompiler/3.2.0/FreePascal.FreePascalCompiler.installer.yaml @@ -6,6 +6,9 @@ PackageVersion: 3.2.0 MinimumOSVersion: 10.0.0.0 InstallerType: inno Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/freepascal/files/Win32/3.2.0/fpc-3.2.0.i386-win32.exe/download + InstallerSha256: 1DAD1EC72D7FDACE2612BB3EA25E3209CD15D655FC85D3F94FB0BF2FE47611C8 - Architecture: x64 InstallerUrl: https://sourceforge.net/projects/freepascal/files/Win32/3.2.0/fpc-3.2.0.i386-win32.cross.x86_64-win64.exe/download InstallerSha256: 40618B2ED6CB3294C78594CB9A6C2EF0F57BAD45FFA86B509A65C67392F715F6 diff --git a/manifests/f/FreePascal/FreePascalCompiler/3.2.2/FreePascal.FreePascalCompiler.installer.yaml b/manifests/f/FreePascal/FreePascalCompiler/3.2.2/FreePascal.FreePascalCompiler.installer.yaml index 28200869b603e..8b9551acce1f5 100644 --- a/manifests/f/FreePascal/FreePascalCompiler/3.2.2/FreePascal.FreePascalCompiler.installer.yaml +++ b/manifests/f/FreePascal/FreePascalCompiler/3.2.2/FreePascal.FreePascalCompiler.installer.yaml @@ -13,8 +13,11 @@ InstallModes: - silentWithProgress UpgradeBehavior: install Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/freepascal/files/Win32/3.2.2/fpc-3.2.2.win32.and.win64.exe/download + InstallerSha256: 8C255390544B051388B577EB61C6191A04883264AFE0E3369B3600A56DAF7BDE - Architecture: x64 - InstallerUrl: https://sourceforge.net/projects/freepascal/files/Win32/3.2.2/fpc-3.2.2.i386-win32.cross.x86_64-win64.exe/download - InstallerSha256: 9B4EA18D9C0A613FCC815B78612967A62D539E8C42070299C5C3C2CE8F712768 + InstallerUrl: https://sourceforge.net/projects/freepascal/files/Win32/3.2.2/fpc-3.2.2.win32.and.win64.exe/download + InstallerSha256: 8C255390544B051388B577EB61C6191A04883264AFE0E3369B3600A56DAF7BDE ManifestType: installer ManifestVersion: 1.9.0 diff --git a/manifests/f/FreedomScientific/Fusion/2025/2025.2506.36.400/FreedomScientific.Fusion.2025.installer.yaml b/manifests/f/FreedomScientific/Fusion/2025/2025.2506.36.400/FreedomScientific.Fusion.2025.installer.yaml new file mode 100644 index 0000000000000..8adc37ac10458 --- /dev/null +++ b/manifests/f/FreedomScientific/Fusion/2025/2025.2506.36.400/FreedomScientific.Fusion.2025.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: FreedomScientific.Fusion.2025 +PackageVersion: 2025.2506.36.400 +InstallerType: burn +Scope: machine +UpgradeBehavior: install +FileExtensions: +- fsca +- jcf +- mls +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 +Installers: +- Architecture: x64 + InstallerUrl: https://software.vfo.digital/Fusion/2025/2025.2506.36.400/3148877A-B434-44E4-A41F-FF05140D9F4D/F2025.2506.36.400-Offline-x64.exe + InstallerSha256: 8FDC2C33316A426DC1486DD2DFC7C7E4B099408034E735E12BCA07D3EC6C3CCF + ProductCode: '{4CCD954F-FA17-49D6-9D3B-DB0D8FCCA3E4}' + AppsAndFeaturesEntries: + - ProductCode: '{4CCD954F-FA17-49D6-9D3B-DB0D8FCCA3E4}' + UpgradeCode: '{718B4B51-7A7D-4520-B7BD-94380703B35B}' +- Architecture: arm64 + InstallerUrl: https://software.vfo.digital/Fusion/2025/2025.2506.36.400/3148877A-B434-44E4-A41F-FF05140D9F4D/F2025.2506.36.400-Offline-arm64.exe + InstallerSha256: 3E031AABAF59F109E0F48EB04F98F56564D8C233DF7EE2E219D930A50C6DAB1F + ProductCode: '{EF86D1B8-3A3D-4E7B-AC96-E3DAE5DBCD51}' + AppsAndFeaturesEntries: + - ProductCode: '{EF86D1B8-3A3D-4E7B-AC96-E3DAE5DBCD51}' + UpgradeCode: '{718B4B51-7A7D-4520-B7BD-94380703B35B}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/FreedomScientific/Fusion/2025/2025.2506.36.400/FreedomScientific.Fusion.2025.locale.en-US.yaml b/manifests/f/FreedomScientific/Fusion/2025/2025.2506.36.400/FreedomScientific.Fusion.2025.locale.en-US.yaml new file mode 100644 index 0000000000000..d54887a008b26 --- /dev/null +++ b/manifests/f/FreedomScientific/Fusion/2025/2025.2506.36.400/FreedomScientific.Fusion.2025.locale.en-US.yaml @@ -0,0 +1,87 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: FreedomScientific.Fusion.2025 +PackageVersion: 2025.2506.36.400 +PackageLocale: en-US +Publisher: Freedom Scientific +PublisherUrl: https://www.freedomscientific.com/ +PublisherSupportUrl: https://support.freedomscientific.com/ +PrivacyUrl: https://www.freedomscientific.com/privacy-policy/ +Author: Freedom Scientific, Inc. +PackageName: Freedom Scientific Fusion 2025 +PackageUrl: https://www.freedomscientific.com/products/software/fusion/ +License: Proprietary +LicenseUrl: https://support.freedomscientific.com/eula/enu/ +Copyright: Copyright © 2024 by Freedom Scientific, Inc. +CopyrightUrl: https://support.freedomscientific.com/eula/enu/ +ShortDescription: Fusion is the ultimate accessibility tool for individuals with vision loss, providing both ZoomText® and JAWS®. +Description: Fusion is the ultimate accessibility tool for schools, agencies, training centers, and businesses where individuals with vision loss are served. Fusion provides the best of both worlds – ZoomText® , with its screen magnification and visual enhancements for screen viewing ease, coupled with the power and speed of JAWS® for screen reading functionality. A single installer and one license gives you access to both ZoomText and JAWS individually, or together when run as the combined solution – Fusion. +Tags: +- accessibility +- jaws +- magnification +- magnifier +- magnify +- screen +- screen-magnification +- screen-reader +- screen-zooming +- zoom +- zoomtext +ReleaseNotes: |- + The following describes improvements made in the July 2025 update. + Starting with the July 2025 release, JAWS, ZoomText, and Fusion now support time-based Software Maintenance Agreements (SMAs) for perpetual licenses. This allows users to run any version of the software within a specified time frame. For example, a Fusion two-year timed SMA purchased on July 2, 2025, permits running any release prior to July 2, 2027. Contact Freedom Scientific sales or your local distributor for more information. + Improved Google Doc Support + ZoomText now offers noticeably improved support in Google Docs. Features like AppReader, Live Text View, mouse echo, and typing echo now work when reading or navigating documents. You may experience inconsistent results when using the App View tool while scrolling through a Google Doc. + ZoomText and Fusion 2025: Now with DirectX 11 Support for Better Performance + ZoomText and Fusion 2025 now support DirectX 11 as an Early Adopter Program feature. This new support: + - Reduces memory and resource usage + - Improves compatibility with multiple 4K monitors and modern graphics cards + - Enhances support for current and future development, which ensures a more responsive and reliable user experience. + Enable DirectX 11 in Early Adopter Program + DirectX 11 is part of the new Magnification Engine 2026 update and is available as an Early Adopter Program feature. To use DirectX 11, you must first enable the new Magnification Engine 2026 in the Early Adopter Program dialog. + - From the ZoomText or Fusion menu, choose Help > Early Adopter Program. + - In the Early Adopter Program dialog, select Magnification Engine 2026. + - Click OK and restart the software. The magnification engine and DirectX 11 are now available for use. + Navigation Quick Keys in Live Text View (Fusion only) + Live Text View in Fusion now supports Navigation Quick Keys, giving you a faster way to move through content in web pages, documents, and emails. + What are Navigation Quick Keys? + Navigation Quick Keys are single letters or keystroke combinations that let you jump to specific types of elements. For example, in a web page: + - Press H to move to the next heading. + - Press P to move to the next paragraph. + - Press B to move to the next button. + For more, see Navigation Quick Keys for a list of commonly used keystrokes. + Where can I use them? + Navigation Quick Keys are supported in: + - Web pages + - PDF files + - Microsoft Word documents + (Note, you must first enable Navigation Quick Keys by pressing INSERT+Z. You can then type the keystrokes.) + - Outlook messages + How does it work in Live Text View? + When you press a Navigation Quick Key: + - Live Text View displays the corresponding text. + - The Position Indicator symbol () appears, indicating you are using Navigation Quick Keys. + - The text is read aloud using Fusion speech. + This makes it easier to follow along visually and stay focused as you navigate. + Picture Smart AI + Fusion's Picture Smart AI Mouse Mode now analyzes the correct screen area even if the Display Adapter is set to Magnification API. + Microsoft Outlook + - The accuracy of the focus enhancement locator has been improved when reading and composing emails in Outlook. You will now see more precise tracking as you move through your messages. + - The cursor enhancement now appears in the correct position within a line of text and no longer jumps to the beginning of the line when reading a message. + - While creating a new meeting in Outlook Calendar, program echo now reliably announces each attendee as you add them from the Invite list. + - Program echo now speaks when composing an email and adding suggested recipients displayed in the To: field. + Activation + After completing product activation for a JAWS, ZoomText, or Fusion license, users are now prompted to register their software. This option is currently available for English installations. + Other Enhancements + - The Startup Wizard now works as expected in ZoomText. When you click Cancel, your changes will not be applied. + - ZoomText magnification no longer freezes when editing or entering Reading Zones. + - When using AppReader in a web browser, it now begins reading from the same location as the text cursor. + - When navigating the text cursor at the end of a line of text in a web page, ZoomText now correctly reads the text instead of saying blank. + - Vocalizer Expressive voices (version 2) are now available with ZoomText on ARM64 devices. + - Improvements have been made to the way ZoomText reads items in Visual Studio’s Solution Explorer tool. +ReleaseNotesUrl: https://support.freedomscientific.com/Downloads/Fusion/FusionWhatsNew +PurchaseUrl: https://store.freedomscientific.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/FreedomScientific/Fusion/2025/2025.2506.36.400/FreedomScientific.Fusion.2025.locale.zh-CN.yaml b/manifests/f/FreedomScientific/Fusion/2025/2025.2506.36.400/FreedomScientific.Fusion.2025.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a4f1dba9d1d6f --- /dev/null +++ b/manifests/f/FreedomScientific/Fusion/2025/2025.2506.36.400/FreedomScientific.Fusion.2025.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: FreedomScientific.Fusion.2025 +PackageVersion: 2025.2506.36.400 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: Fusion 提供 ZoomText® 和 JAWS®,是失明人士的终极无障碍工具。 +Description: Fusion 是一款终极辅助工具,适用于为视力障碍人士提供服务的学校、机构、培训中心和企业。Fusion 将两个世界级最佳产品合二为一--ZoomText® 具有屏幕放大和视觉增强功能,让屏幕浏览更加方便,同时兼具 JAWS® 的强大快速的屏幕阅读功能。只需一个安装程序和一个许可证,您就可以单独使用 ZoomText 和 JAWS,或作为组合解决方案 Fusion 一起运行。 +Tags: +- jaws +- zoomtext +- 屏幕 +- 屏幕放大 +- 屏幕缩放 +- 屏幕阅读器 +- 放大 +- 放大器 +- 放大镜 +- 无障碍 +- 缩放 +- 辅助功能 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/f/FreedomScientific/Fusion/2025/2025.2506.36.400/FreedomScientific.Fusion.2025.yaml b/manifests/f/FreedomScientific/Fusion/2025/2025.2506.36.400/FreedomScientific.Fusion.2025.yaml new file mode 100644 index 0000000000000..56b6a2badfd45 --- /dev/null +++ b/manifests/f/FreedomScientific/Fusion/2025/2025.2506.36.400/FreedomScientific.Fusion.2025.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: FreedomScientific.Fusion.2025 +PackageVersion: 2025.2506.36.400 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FreedomScientific/JAWS/2025/2025.2506.170.400/FreedomScientific.JAWS.2025.installer.yaml b/manifests/f/FreedomScientific/JAWS/2025/2025.2506.170.400/FreedomScientific.JAWS.2025.installer.yaml new file mode 100644 index 0000000000000..4864dfcdcba7c --- /dev/null +++ b/manifests/f/FreedomScientific/JAWS/2025/2025.2506.170.400/FreedomScientific.JAWS.2025.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: FreedomScientific.JAWS.2025 +PackageVersion: 2025.2506.170.400 +InstallerType: burn +Scope: machine +UpgradeBehavior: install +FileExtensions: +- fsca +- jcf +- mls +AppsAndFeaturesEntries: +- UpgradeCode: '{565EC5B2-C232-4967-8238-3D4C3CCF87FD}' +Installers: +- Architecture: x64 + InstallerUrl: https://software.vfo.digital/JAWS/2025/2025.2506.170.400/4C9BEE0D-A48E-4DDC-99FC-C1D5E1090528/J2025.2506.170.400-Offline-x64.exe + InstallerSha256: B9C3FC0CC87E16E70A7F2F70244575375DA1277E83F4DF34436C7587A3B00E7F + ProductCode: '{FD9358B0-62E8-48A4-9389-B62FD181CCF4}' +- Architecture: arm64 + InstallerUrl: https://software.vfo.digital/JAWS/2025/2025.2506.170.400/4C9BEE0D-A48E-4DDC-99FC-C1D5E1090528/J2025.2506.170.400-Offline-arm64.exe + InstallerSha256: FED5C7DA7D5E7DCBD7C5B7234E350416F9CDEAF4A05C63FD495F3F0832CF53C5 + ProductCode: '{8032C765-A97D-4DD4-BC62-3A3D548D1707}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/FreedomScientific/JAWS/2025/2025.2506.170.400/FreedomScientific.JAWS.2025.locale.en-US.yaml b/manifests/f/FreedomScientific/JAWS/2025/2025.2506.170.400/FreedomScientific.JAWS.2025.locale.en-US.yaml new file mode 100644 index 0000000000000..2964226ec5ce2 --- /dev/null +++ b/manifests/f/FreedomScientific/JAWS/2025/2025.2506.170.400/FreedomScientific.JAWS.2025.locale.en-US.yaml @@ -0,0 +1,84 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: FreedomScientific.JAWS.2025 +PackageVersion: 2025.2506.170.400 +PackageLocale: en-US +Publisher: Freedom Scientific +PublisherUrl: https://www.freedomscientific.com/ +PublisherSupportUrl: https://support.freedomscientific.com/ +PrivacyUrl: https://www.freedomscientific.com/privacy-policy/ +Author: Freedom Scientific, Inc. +PackageName: Freedom Scientific JAWS 2025 +PackageUrl: https://www.freedomscientific.com/products/software/jaws/ +License: Proprietary +LicenseUrl: https://support.freedomscientific.com/eula/enu/ +Copyright: Copyright © 2025 by Freedom Scientific, Inc. +CopyrightUrl: https://support.freedomscientific.com/eula/enu/ +ShortDescription: The screen reader that provides speech and Braille output designed for computer users whose vision loss prevents them from seeing screen content or navigating with a mouse. +Description: JAWS, Job Access With Speech, is the world’s most popular screen reader, developed for computer users whose vision loss prevents them from seeing screen content or navigating with a mouse. JAWS provides speech and Braille output for the most popular computer applications on your PC. You will be able to navigate the Internet, write a document, read an email and create presentations from your office, remote desktop, or from home. +Tags: +- accessibility +- screen +- screen-reader +ReleaseNotes: |- + The following is a list of improvements made between the May 2025 release and the July 2025 update. + Starting with the July 2025 release, JAWS, ZoomText, and Fusion now supports time-based Software Maintenance Agreements (SMAs) for perpetual licenses. This allows users to run any version of the software within a specified time frame. For example, a JAWS two-year timed SMA purchased on July 2, 2025, permits running any release prior to July 2, 2027. Contact Freedom Scientific sales or your local distributor for more information. + Label Manager + The new Label Manager offers a quick and convenient way to manage custom labels you have created for poorly labeled elements on web pages using the CTRL+INSERT+TAB keystroke. Replacing the separate Custom Label, Custom Label Delete, and Custom Label Delete All options, there is now a single dialog for modifying or deleting custom labels. The Label Manager is available in web browsers or anywhere the Virtual Cursor is active, and can be accessed through the Run JAWS Manager dialog (INSERT+F2) or by using the new layered command INSERT+SPACEBAR, ALT+L. + When the Label Manager opens, you are placed in a list containing any custom labels you have created for the current website or domain. You can then navigate to a specific label and then choose Edit Label or Delete Label depending on the action you want to perform. + Note: If the AI Labeler feature is enabled through the Early Adopter Program, the Label Manager also includes any labels generated using the INSERT+G command. + MathCAT Now the Default for Reading Math in Spanish + MathCAT is now the default for interacting with math content in the Spanish version of JAWS. This offers Spanish users improved access to math content in speech and Braille. The Código Matemático Unificado (CMU) Braille math code is in effect when your translation mode is set to Spanish Grade 1 or Grade 2. MathCAT access includes: + - When encountering math expressions on web pages or in Word documents, the expression and associated announcements are presented entirely in Spanish using both speech and Braille. + - When exploring expressions in the Math Viewer, all math content, table coordinates, and other messages are presented in Spanish using both speech and Braille. + - In the Math Viewer, users have access to all supported MathCAT commands such as setting and reading place markers. + - The ability for Spanish users to customize various Math options through the Math group in Settings Center. + Note: Support for the CMU math code in the Braille Math Editor is still a work in progress and will continue to be improved in future updates. + AI Labeler (Early Adopter Program) + - AI generated labels using INSERT+G are now saved automatically so the new label is announced each time the specific element is encountered. + - If you press INSERT+G on a web page element that already contains a custom label, JAWS displays a dialog containing both the current label and a suggested replacement. You can then choose whether or not to replace the current label with the new one. + - If the AI Labeler feature is enabled, you can now use ALT+INSERT+G to access the legacy Graphics Labeler. + ARIA and Web + - JAWS no longer announces the minimum and maximum values for sliders that contain defined text values such as elapsed time. Additionally, improved the consistency of announcing minimum and maximum values for sliders containing no specific text values. + - When reading with Say All on web pages, JAWS no longer includes tooltip/title information from elements like links as this interrupted the reading flow. + - Addressed an issue where continuously using the Headings list (INSERT+F6) to move to a heading on a page would unexpectedly stop working after a period of time. + - The Virtual Cursor now remains in sync with Forms Mode when filling out fields contained in tables. + Google Suite + - JAWS now reads the contents of tables in Google Docs as expected when navigating using Table layer commands (INSERT+SPACEBAR, T). + - Table cells are no longer announced twice while navigating by paragraph in Google Docs. + - Bullets for list items are no longer spoken twice in some instances in Google Docs. + - When pressing UP ARROW from a blank line in Google Docs, Addressed an issue where JAWS sometimes read the entire paragraph instead of the last line. + - Addressed an issue where JAWS was not reading the contents of the Find dialog after pressing CTRL+F in a Google Docs or Google Sheets document. + - When creating a new message in Gmail that contains a bulleted list, JAWS no longer says “bullet” twice if a line begins with a misspelled word. + Office Apps + - JAWS now announces group information as you navigate the View Settings in Outlook (new). + - Using table navigation commands (ALT+CTRL+ARROWS) in an Outlook (new) message no longer moves focus to the Home tab. + - After pressing ALT+I in Word to open Copilot, JAWS now speaks the current item as you navigate the available options. + - Improved JAWS indication of cross references in Word documents. This includes alerting you when text contains a link for moving to the cross referenced section, and announcing when the start of a cross referenced section includes a bookmark. + - JAWS now says “star” as expected when typing characters into the Password field in the Office 365 Encrypt Document dialog. + - You can now consistently use TAB to move through links in a PowerPoint slideshow. + - JAWS now indicates if an image or shape on a PowerPoint slide is decorative. + - JAWS no longer cuts off when reading long chat messages in Teams. + - When typing a new chat message in Teams, Addressed an issue where the Braille cursor would no longer be at the correct location if the beginning of the message included a spelling error. + - Improved navigating through Outlook messages by subject with Unified Keyboard Processing enabled. + - When navigating to a line in a loop component containing a link, JAWS now reads the entire line as expected. + Visual Studio Code + - Added a new Quick Settings option, Show Line Number in Status Cells, which allows you to configure whether or not JAWS includes the current line number in the status cells of your Braille display as you navigate a document. + Braille + - Fixed Braille commands for the BrailleSense 6 from Selvas BLV so they work as described in the product documentation. + - Added a combo box for toggling between Nemeth and UEB Math to the Math > Braille group in Settings Center. + - In a Japanese installation of JAWS, the Grade 2 Translator combo box in Settings Center now includes Liblouis and Extra, which represents the Japanese Braille translator. + Activation + - After completing product activation for a JAWS, ZoomText, or Fusion license, users are now prompted to register their software. This option is currently available for English installations. + Other + - Improved JAWS performance with using the Eclipse court reporting software in Windows 11. + - JAWS Java support now works correctly again after enabling Improved Java Swing Support from the Early Adopter Program dialog. + - JAWS now reads the current line in LibreOffice when navigating with DOWN ARROW. + - If Mouse Echo is enabled, JAWS and Fusion now correctly speaks text in the Windows Start menu when moving over it with the mouse. + - Addressed an issue experienced by a small number of users where JAWS was displaying an Update Authorization message when connecting to an AWS desktop even though the remote channel was working fine. + - Addressed an issue where JAWS was not announcing autocomplete suggestions in Visual Studio C++ projects. +ReleaseNotesUrl: https://support.freedomscientific.com/Downloads/JAWS/JAWSWhatsNew +PurchaseUrl: https://store.freedomscientific.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/FreedomScientific/JAWS/2025/2025.2506.170.400/FreedomScientific.JAWS.2025.locale.zh-CN.yaml b/manifests/f/FreedomScientific/JAWS/2025/2025.2506.170.400/FreedomScientific.JAWS.2025.locale.zh-CN.yaml new file mode 100644 index 0000000000000..129f3b489df85 --- /dev/null +++ b/manifests/f/FreedomScientific/JAWS/2025/2025.2506.170.400/FreedomScientific.JAWS.2025.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: FreedomScientific.JAWS.2025 +PackageVersion: 2025.2506.170.400 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 可语音和盲文输出的屏幕阅读器,专为视力受损而无法查看屏幕内容或使用鼠标导航的计算机用户设计。 +Description: JAWS(Job Access With Speech)是全球最受欢迎的屏幕阅读软件,专为因视力障碍而无法查看屏幕内容或使用鼠标操作电脑的用户开发。该软件能为个人电脑上各类主流应用程序提供语音和盲文输出支持,无论是办公、远程桌面还是居家场景,用户皆可借助 JAWS 浏览互联网、撰写文档、阅读邮件以及制作演示文稿。 +Tags: +- 屏幕 +- 屏幕阅读器 +- 无障碍 +- 辅助功能 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/f/FreedomScientific/JAWS/2025/2025.2506.170.400/FreedomScientific.JAWS.2025.yaml b/manifests/f/FreedomScientific/JAWS/2025/2025.2506.170.400/FreedomScientific.JAWS.2025.yaml new file mode 100644 index 0000000000000..648499dbc34ce --- /dev/null +++ b/manifests/f/FreedomScientific/JAWS/2025/2025.2506.170.400/FreedomScientific.JAWS.2025.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: FreedomScientific.JAWS.2025 +PackageVersion: 2025.2506.170.400 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Freelensapp/Freelens/1.4.0/Freelensapp.Freelens.installer.yaml b/manifests/f/Freelensapp/Freelens/1.4.0/Freelensapp.Freelens.installer.yaml new file mode 100644 index 0000000000000..d0cf37a8797f9 --- /dev/null +++ b/manifests/f/Freelensapp/Freelens/1.4.0/Freelensapp.Freelens.installer.yaml @@ -0,0 +1,54 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: Freelensapp.Freelens +PackageVersion: 1.4.0 +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- freelens +ReleaseDate: "2025-06-29" +AppsAndFeaturesEntries: +- DisplayName: Freelens 1.4.0 +Installers: +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/freelensapp/freelens/releases/download/v1.4.0/Freelens-1.4.0-windows-amd64.exe + InstallerSha256: 207277A7E24BD39999DA329CEDA8A97AA655F4D920303693C74FE6583D4E38ED + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Freelens' + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/freelensapp/freelens/releases/download/v1.4.0/Freelens-1.4.0-windows-amd64.exe + InstallerSha256: 207277A7E24BD39999DA329CEDA8A97AA655F4D920303693C74FE6583D4E38ED + InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\Freelens' + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/freelensapp/freelens/releases/download/v1.4.0/Freelens-1.4.0-windows-arm64.exe + InstallerSha256: 3B41330F5B258E139DD070BA75B6B30CEC1F6FBC1CE4054DC17995561B8A93DF + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Freelens' + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/freelensapp/freelens/releases/download/v1.4.0/Freelens-1.4.0-windows-arm64.exe + InstallerSha256: 3B41330F5B258E139DD070BA75B6B30CEC1F6FBC1CE4054DC17995561B8A93DF + InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\Freelens' + InstallerSwitches: + Custom: /currentuser +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Freelensapp/Freelens/1.4.0/Freelensapp.Freelens.locale.en-US.yaml b/manifests/f/Freelensapp/Freelens/1.4.0/Freelensapp.Freelens.locale.en-US.yaml new file mode 100644 index 0000000000000..1b6ab890db42a --- /dev/null +++ b/manifests/f/Freelensapp/Freelens/1.4.0/Freelensapp.Freelens.locale.en-US.yaml @@ -0,0 +1,37 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: Freelensapp.Freelens +PackageVersion: 1.4.0 +PackageLocale: en-US +Publisher: Freelens Authors +PublisherUrl: https://freelens.app/ +PublisherSupportUrl: https://github.com/freelensapp/freelens/issues +PackageName: Freelens +PackageUrl: https://github.com/freelensapp/freelens +License: MIT +LicenseUrl: https://github.com/freelensapp/freelens/blob/HEAD/LICENSE +ShortDescription: FOSS IDE for Kubernetes +Tags: +- cloud-native +- containers +- devops +- kubernetes +- kubernetes-dashboard +- kubernetes-ui +ReleaseNotes: "Minor improvements in UI. More components and other changes in the Extensions API.\n\n## What's Changed\n\n* + New APIs are exported, then extensions can use ie, an event list with filtering for chosen resources. See #841, #858, #859\n* + A New view for endpoint slices is added to the Network menu. See #846\n* React JSX runtime is exported in the API so extensions + can use it instead of the plain `React.createElement`. See #902 \n* All views have tooltips for items that can be too long + to present in the tables. See #882\n* Redesigned view for Jobs that presents all properties from Batch/v1 API. Jobs can + be suspended/resumed. See #882\n* Schedules for CronJobs are presented in human-readable form. See #882 \n* Column with + number of pods in Deployments and DaemonSets is split to separate columns.\n* Column with labels in Secrets list is removed.\n* + IngressClass is not namespaced, and the link to parameters is clickable. See #894, #917\n* \"About Freelens\" checks if + a newer version is available. See #898\n* HTTP proxy from the settings is used to download kubectl matching the cluster + version. See #909\n* YAML editor handles `\"yes\"` and `\"no\"` strings correctly. See #881, #886\n* Events from all namespaces + are shown in the cluster overview. See #856, #880\n* State files used by pnpm are moved to the application directory. See + #920\n* Allow installing extensions on Windows arm64. See #924\n* Validate extensions before installing them. See #924\n* + Project uses Biome 2.0 with organized imports. See #869, #874\n* Electron 35.6.0 with Chrome: 134.0.6998.205 and Node 22.15.1\n* + Helm 3.18.3\n* kubectl 1.33.2\n* freelens-k8s-proxy 1.3.4 (Update kubernetes packages to v0.33.2)\n\n**Full Changelog**: + https://github.com/freelensapp/freelens/compare/v1.3.2...v1.4.0\n\n**Discussion**: https://github.com/freelensapp/freelens/discussions/857" +ReleaseNotesUrl: https://github.com/freelensapp/freelens/releases/tag/v1.4.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Freelensapp/Freelens/1.4.0/Freelensapp.Freelens.yaml b/manifests/f/Freelensapp/Freelens/1.4.0/Freelensapp.Freelens.yaml new file mode 100644 index 0000000000000..4cadaaef80afb --- /dev/null +++ b/manifests/f/Freelensapp/Freelens/1.4.0/Freelensapp.Freelens.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: Freelensapp.Freelens +PackageVersion: 1.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.1.2506241525/FunRoutine.WorkFlowy.installer.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2506241525/FunRoutine.WorkFlowy.installer.yaml new file mode 100644 index 0000000000000..28a5396ec1ca1 --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2506241525/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.1.2506241525 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- workflowy +ProductCode: 338bed7b-1324-505d-8cb6-5c266cbaa6b3 +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.1.2506241525/WorkFlowy-Installer.exe + InstallerSha256: F0E5076958ADB15DAD35F4EBEAECA03459AEC344B238C6E1AF5D063F8CE87708 +- Architecture: x64 + InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.1.2506241525/WorkFlowy-Installer.exe + InstallerSha256: F0E5076958ADB15DAD35F4EBEAECA03459AEC344B238C6E1AF5D063F8CE87708 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.1.2506241525/FunRoutine.WorkFlowy.locale.en-US.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2506241525/FunRoutine.WorkFlowy.locale.en-US.yaml new file mode 100644 index 0000000000000..2ee25268e8c3f --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2506241525/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.1.2506241525 +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.1.2506241525 +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.1.2506241525/FunRoutine.WorkFlowy.locale.zh-CN.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2506241525/FunRoutine.WorkFlowy.locale.zh-CN.yaml new file mode 100644 index 0000000000000..08a81e690758e --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2506241525/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.1.2506241525 +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.1.2506241525 +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.1.2506241525/FunRoutine.WorkFlowy.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2506241525/FunRoutine.WorkFlowy.yaml new file mode 100644 index 0000000000000..cf12b2e94817a --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2506241525/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.1.2506241525 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.1.2506251432/FunRoutine.WorkFlowy.installer.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2506251432/FunRoutine.WorkFlowy.installer.yaml new file mode 100644 index 0000000000000..aaea493e4728a --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2506251432/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.1.2506251432 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- workflowy +ProductCode: 338bed7b-1324-505d-8cb6-5c266cbaa6b3 +ReleaseDate: 2025-06-25 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.1.2506251432/WorkFlowy-Installer.exe + InstallerSha256: E1C2DBAD0558EAF152497E91FE836FED6D4A013E4D1B83F45F3A0289E1561F39 +- Architecture: x64 + InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.1.2506251432/WorkFlowy-Installer.exe + InstallerSha256: E1C2DBAD0558EAF152497E91FE836FED6D4A013E4D1B83F45F3A0289E1561F39 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.1.2506251432/FunRoutine.WorkFlowy.locale.en-US.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2506251432/FunRoutine.WorkFlowy.locale.en-US.yaml new file mode 100644 index 0000000000000..efbb052432bb0 --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2506251432/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.1.2506251432 +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.1.2506251432 +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.1.2506251432/FunRoutine.WorkFlowy.locale.zh-CN.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2506251432/FunRoutine.WorkFlowy.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e179e0d6364b5 --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2506251432/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.1.2506251432 +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.1.2506251432 +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.1.2506251432/FunRoutine.WorkFlowy.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2506251432/FunRoutine.WorkFlowy.yaml new file mode 100644 index 0000000000000..b8d379accfa18 --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2506251432/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.1.2506251432 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.1.2507011105/FunRoutine.WorkFlowy.installer.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011105/FunRoutine.WorkFlowy.installer.yaml new file mode 100644 index 0000000000000..1eaa114e68b21 --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011105/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.1.2507011105 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- workflowy +ProductCode: 338bed7b-1324-505d-8cb6-5c266cbaa6b3 +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.1.2507011105/WorkFlowy-Installer.exe + InstallerSha256: 83690DC19EE7CA66A83A1CBFAEE20C7BCC7523AD3F90704CCB43438D16FE759A +- Architecture: x64 + InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.1.2507011105/WorkFlowy-Installer.exe + InstallerSha256: 83690DC19EE7CA66A83A1CBFAEE20C7BCC7523AD3F90704CCB43438D16FE759A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.1.2507011105/FunRoutine.WorkFlowy.locale.en-US.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011105/FunRoutine.WorkFlowy.locale.en-US.yaml new file mode 100644 index 0000000000000..7731620fa18cb --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011105/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.1.2507011105 +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.1.2507011105 +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.1.2507011105/FunRoutine.WorkFlowy.locale.zh-CN.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011105/FunRoutine.WorkFlowy.locale.zh-CN.yaml new file mode 100644 index 0000000000000..21183dc68f775 --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011105/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.1.2507011105 +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.1.2507011105 +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.1.2507011105/FunRoutine.WorkFlowy.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011105/FunRoutine.WorkFlowy.yaml new file mode 100644 index 0000000000000..cc3cf33942a3f --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011105/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.1.2507011105 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.1.2507011650/FunRoutine.WorkFlowy.installer.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011650/FunRoutine.WorkFlowy.installer.yaml new file mode 100644 index 0000000000000..3e3106c8ba94a --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011650/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.1.2507011650 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- workflowy +ProductCode: 338bed7b-1324-505d-8cb6-5c266cbaa6b3 +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.1.2507011650/WorkFlowy-Installer.exe + InstallerSha256: 67D80266C4DF6F05DEACA5691436EAAC64133A0337A082178EE0A42F1D40F6D1 +- Architecture: x64 + InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.1.2507011650/WorkFlowy-Installer.exe + InstallerSha256: 67D80266C4DF6F05DEACA5691436EAAC64133A0337A082178EE0A42F1D40F6D1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.1.2507011650/FunRoutine.WorkFlowy.locale.en-US.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011650/FunRoutine.WorkFlowy.locale.en-US.yaml new file mode 100644 index 0000000000000..cd4b3361cbb3f --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011650/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.1.2507011650 +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.1.2507011650 +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.1.2507011650/FunRoutine.WorkFlowy.locale.zh-CN.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011650/FunRoutine.WorkFlowy.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ef6700f3eabbb --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011650/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.1.2507011650 +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.1.2507011650 +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.1.2507011650/FunRoutine.WorkFlowy.yaml b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011650/FunRoutine.WorkFlowy.yaml new file mode 100644 index 0000000000000..45b1dc7f65699 --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.1.2507011650/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.1.2507011650 +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/f/f4exb/sdrangel/7.22.8/f4exb.sdrangel.installer.yaml b/manifests/f/f4exb/sdrangel/7.22.8/f4exb.sdrangel.installer.yaml new file mode 100644 index 0000000000000..2fb9863683237 --- /dev/null +++ b/manifests/f/f4exb/sdrangel/7.22.8/f4exb.sdrangel.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: f4exb.sdrangel +PackageVersion: 7.22.8 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +ProductCode: SDRangel +ReleaseDate: 2025-07-02 +AppsAndFeaturesEntries: +- ProductCode: SDRangel +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\SDRangel' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/f4exb/sdrangel/releases/download/v7.22.8/sdrangel-7.22.8-win64.exe + InstallerSha256: DD90776810D03991CE5FE5B6EA313A4309BEF3EE3132DD1A039FA9487EB1B82A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/f4exb/sdrangel/7.22.8/f4exb.sdrangel.locale.en-US.yaml b/manifests/f/f4exb/sdrangel/7.22.8/f4exb.sdrangel.locale.en-US.yaml new file mode 100644 index 0000000000000..15e4329e78027 --- /dev/null +++ b/manifests/f/f4exb/sdrangel/7.22.8/f4exb.sdrangel.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: f4exb.sdrangel +PackageVersion: 7.22.8 +PackageLocale: en-US +Publisher: f4exb +PublisherUrl: https://github.com/f4exb +PublisherSupportUrl: https://github.com/f4exb/sdrangel/issues +PackageName: SDRangel +PackageUrl: https://github.com/f4exb/sdrangel +License: GPL-3.0 +LicenseUrl: https://github.com/f4exb/sdrangel/blob/HEAD/LICENSE +ShortDescription: SDR Rx/Tx software for Airspy, Airspy HF+, BladeRF, HackRF, LimeSDR, PlutoSDR, RTL-SDR, SDRplay RSP1 and FunCube +Tags: +- airspy +- airspyhf +- bladerf +- d-star +- dmr +- dpmr +- funcube-dongle +- hackrf +- limesdr +- plutosdr +- receiver +- rtl-sdr +- sdr +- sdrplay +- transmitter +- ysf +ReleaseNotes: |- + Map and ADS-B updates + Thanks to @srcejon there are a lot of changes and new features. For details see PR #2465 + What's Changed + - Fix swagger by @f4exb in #2450 + - Add 384000 and maximum supported audio sample rates for Qt 6 by @srcejon in #2461 + - Map and ADS-B updates by @srcejon in #2465 + - A few small fixes by @srcejon in #2467 + - Fix --remote-tcp. by @srcejon in #2472 + - RemoteTCP: Add support for SDR_RX_SAMPLE_24BIT=OFF by @srcejon in #2473 + - FreqScanner: Fix crash if row is selected when remove is pressed. by @srcejon in #2474 + - Radio Astronomy: Add option to auto save data to .csv. by @srcejon in #2475 + - Fix 2478 by @f4exb in #2479 + Full Changelog: v7.22.7...v7.22.8 +ReleaseNotesUrl: https://github.com/f4exb/sdrangel/releases/tag/v7.22.8 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/f4exb/sdrangel/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/f4exb/sdrangel/7.22.8/f4exb.sdrangel.yaml b/manifests/f/f4exb/sdrangel/7.22.8/f4exb.sdrangel.yaml new file mode 100644 index 0000000000000..534732e53176e --- /dev/null +++ b/manifests/f/f4exb/sdrangel/7.22.8/f4exb.sdrangel.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: f4exb.sdrangel +PackageVersion: 7.22.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/flawiddsouza/Restfox/0.39.0/flawiddsouza.Restfox.installer.yaml b/manifests/f/flawiddsouza/Restfox/0.39.0/flawiddsouza.Restfox.installer.yaml new file mode 100644 index 0000000000000..5856586731fb8 --- /dev/null +++ b/manifests/f/flawiddsouza/Restfox/0.39.0/flawiddsouza.Restfox.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: flawiddsouza.Restfox +PackageVersion: 0.39.0 +InstallerType: exe +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/flawiddsouza/Restfox/releases/download/v0.39.0/Restfox-0.39.0.Setup.exe + InstallerSha256: 37F19F47B0549A2BE92E945E53109EC5D05A1DAE7471DC51DD63F4F9A5167BC6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/flawiddsouza/Restfox/0.39.0/flawiddsouza.Restfox.locale.en-US.yaml b/manifests/f/flawiddsouza/Restfox/0.39.0/flawiddsouza.Restfox.locale.en-US.yaml new file mode 100644 index 0000000000000..1bc1dbd3aa68b --- /dev/null +++ b/manifests/f/flawiddsouza/Restfox/0.39.0/flawiddsouza.Restfox.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: flawiddsouza.Restfox +PackageVersion: 0.39.0 +PackageLocale: en-US +Publisher: Flawid D'Souza +PublisherUrl: https://github.com/flawiddsouza +PublisherSupportUrl: https://github.com/flawiddsouza/Restfox/issues +PackageName: Restfox +PackageUrl: https://github.com/flawiddsouza/Restfox +License: MIT +LicenseUrl: https://github.com/flawiddsouza/Restfox/blob/HEAD/LICENSE +Copyright: Copyright © 2024 Flawid D'Souza +ShortDescription: Restfox +Tags: +- api-client +- api-testing +- developer-tools +- graphql-client +- hacktoberfest +- http +- http-client +- pwa +- rest-api +- rest-client +- testing-tools +- vue +- websocket +ReleaseNotes: |- + What's New + - Sidebar > Folder > environment quick switcher (resolves #312) + - Add support for additional response formats in settings and response panel for bypassing binary response warning on custom content types (resolves #339) + - Tabs in Settings + Fixes + - Import > use the same fetch logic as the rest of the app instead of directly using the fetch method to avoid CORS issues + import not respecting the disable ssl setting (resolves #330, resolves #336) + - curl import fails for multipart/form-data (resolves #335) + auto focus the textarea when showing the curl import modal + - Response Panel > remember & restore scroll position when switching tabs, not working correctly for responses that get a large response / binary response warning + - Backup Restore failing for backups having request or response data larger than 10 MB (resolves #338) + Packages + For Ubuntu, snap can be installed using: + sudo snap install restfox + For macOS, the app can be installed using homebrew: + brew install restfox + For Windows, the app can be installed using: + scoop bucket add extras + scoop install restfox + NOTE: Not all the builds have been tested properly, so please create an issue if you encounter any problems. + Full Changelog: v0.38.0...v0.39.0 +ReleaseNotesUrl: https://github.com/flawiddsouza/Restfox/releases/tag/v0.39.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/flawiddsouza/Restfox/0.39.0/flawiddsouza.Restfox.yaml b/manifests/f/flawiddsouza/Restfox/0.39.0/flawiddsouza.Restfox.yaml new file mode 100644 index 0000000000000..9c8666090c55b --- /dev/null +++ b/manifests/f/flawiddsouza/Restfox/0.39.0/flawiddsouza.Restfox.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: flawiddsouza.Restfox +PackageVersion: 0.39.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/flick9000/WinScript/1.3.6/flick9000.WinScript.installer.yaml b/manifests/f/flick9000/WinScript/1.3.6/flick9000.WinScript.installer.yaml new file mode 100644 index 0000000000000..f5985e85a18be --- /dev/null +++ b/manifests/f/flick9000/WinScript/1.3.6/flick9000.WinScript.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: flick9000.WinScript +PackageVersion: 1.3.6 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/flick9000/winscript/releases/download/v1.3.6/winscript-installer.exe + InstallerSha256: 832E315CCB976A258E4154490577E02EAFF2FE70C8A92C3B12E12CC9BE64F0CC +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-24 diff --git a/manifests/f/flick9000/WinScript/1.3.6/flick9000.WinScript.locale.en-US.yaml b/manifests/f/flick9000/WinScript/1.3.6/flick9000.WinScript.locale.en-US.yaml new file mode 100644 index 0000000000000..b0b135c2992ec --- /dev/null +++ b/manifests/f/flick9000/WinScript/1.3.6/flick9000.WinScript.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: flick9000.WinScript +PackageVersion: 1.3.6 +PackageLocale: en-US +Publisher: flick9000 +PublisherUrl: https://github.com/flick9000 +PublisherSupportUrl: https://github.com/flick9000/winscript/issues +PackageName: WinScript +PackageUrl: https://github.com/flick9000/winscript +License: GPL-3.0 +ShortDescription: Open-source tool to build your Windows 10/11 script from scratch. It includes debloat, privacy, performance & app installing scripts. +Tags: +- bloatware +- debloat +- debloater +- install-script +- installer-script +- optimize +- privacy +- privacy-tools +- script +- security +- security-tools +- telemetry +- tweaks +- windows +- windows-10 +- windows-11 +ReleaseNotesUrl: https://github.com/flick9000/winscript/releases/tag/v1.3.6 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/f/flick9000/WinScript/1.3.6/flick9000.WinScript.yaml b/manifests/f/flick9000/WinScript/1.3.6/flick9000.WinScript.yaml new file mode 100644 index 0000000000000..b70153552a811 --- /dev/null +++ b/manifests/f/flick9000/WinScript/1.3.6/flick9000.WinScript.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: flick9000.WinScript +PackageVersion: 1.3.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/f/flyingpie/windows-terminal-quake/2.0.16/flyingpie.windows-terminal-quake.installer.yaml b/manifests/f/flyingpie/windows-terminal-quake/2.0.16/flyingpie.windows-terminal-quake.installer.yaml new file mode 100644 index 0000000000000..4ba440aa0f558 --- /dev/null +++ b/manifests/f/flyingpie/windows-terminal-quake/2.0.16/flyingpie.windows-terminal-quake.installer.yaml @@ -0,0 +1,16 @@ +PackageIdentifier: flyingpie.windows-terminal-quake +PackageVersion: 2.0.16 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: wtq.exe + PortableCommandAlias: wtq +Commands: +- wtq +ReleaseDate: 2025-07-05 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/flyingpie/windows-terminal-quake/releases/download/v2.0.16/win-x64_self-contained.zip + InstallerSha256: 4e9a76b6e7025126243c34b5df53f7955934e76f604839ef577ef06058465af3 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/f/flyingpie/windows-terminal-quake/2.0.16/flyingpie.windows-terminal-quake.locale.en-US.yaml b/manifests/f/flyingpie/windows-terminal-quake/2.0.16/flyingpie.windows-terminal-quake.locale.en-US.yaml new file mode 100644 index 0000000000000..b337722924065 --- /dev/null +++ b/manifests/f/flyingpie/windows-terminal-quake/2.0.16/flyingpie.windows-terminal-quake.locale.en-US.yaml @@ -0,0 +1,13 @@ +PackageIdentifier: flyingpie.windows-terminal-quake +PackageVersion: 2.0.16 +PackageLocale: en-US +Publisher: Flyingpie +PublisherUrl: https://flyingpie.nl/ +PackageName: windows-terminal-quake +PackageUrl: https://github.com/flyingpie/windows-terminal-quake +License: MIT +LicenseUrl: https://github.com/flyingpie/windows-terminal-quake/blob/master/LICENSE +ShortDescription: Turn any app into a Quake-style toggleable app. +Moniker: windows-terminal-quake +ManifestType: defaultLocale +ManifestVersion: 1.5.0 \ No newline at end of file diff --git a/manifests/f/flyingpie/windows-terminal-quake/2.0.16/flyingpie.windows-terminal-quake.yaml b/manifests/f/flyingpie/windows-terminal-quake/2.0.16/flyingpie.windows-terminal-quake.yaml new file mode 100644 index 0000000000000..92ef359686c12 --- /dev/null +++ b/manifests/f/flyingpie/windows-terminal-quake/2.0.16/flyingpie.windows-terminal-quake.yaml @@ -0,0 +1,5 @@ +PackageIdentifier: flyingpie.windows-terminal-quake +PackageVersion: 2.0.16 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.16/flyingpie.windows-terminal-quake.prerelease.installer.yaml b/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.16/flyingpie.windows-terminal-quake.prerelease.installer.yaml new file mode 100644 index 0000000000000..3fce547a4f0be --- /dev/null +++ b/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.16/flyingpie.windows-terminal-quake.prerelease.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: flyingpie.windows-terminal-quake.prerelease +PackageVersion: 2.0.16 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: wtq.exe + PortableCommandAlias: wtq +Commands: +- wtq +ReleaseDate: 2025-07-05 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/flyingpie/windows-terminal-quake/releases/download/v2.0.16/win-x64_self-contained.zip + InstallerSha256: 4E9A76B6E7025126243C34B5DF53F7955934E76F604839EF577EF06058465AF3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.16/flyingpie.windows-terminal-quake.prerelease.locale.en-US.yaml b/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.16/flyingpie.windows-terminal-quake.prerelease.locale.en-US.yaml new file mode 100644 index 0000000000000..2ec023e1bfcd8 --- /dev/null +++ b/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.16/flyingpie.windows-terminal-quake.prerelease.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: flyingpie.windows-terminal-quake.prerelease +PackageVersion: 2.0.16 +PackageLocale: en-US +Publisher: Flyingpie +PublisherUrl: http://flyingpie.nl/ +PublisherSupportUrl: https://github.com/flyingpie/windows-terminal-quake/issues +PackageName: windows-terminal-quake-prerelease +PackageUrl: https://github.com/flyingpie/windows-terminal-quake +License: MIT +LicenseUrl: https://github.com/flyingpie/windows-terminal-quake/blob/HEAD/LICENSE +ShortDescription: Simple program that adds Quake-style drop down to user-specified applications. +Moniker: windows-terminal-quake-prerelease +Tags: +- dropdown +- linux +- quake +- terminal +- toggle +- windows +ReleaseNotes: |- + - Bugfix: Implemented missing parts for "ArgumentList" to work. + - Bugfix: Properly close & dispose logger when the application fully exits. + - Bugfix: Scoop - Removed "persist"-property from the Scoop manifest, since settings are loaded from the same location regardless of installation method (thanks to Chuckie Chen, #187). + - Bugfix: Windows - In some cases a window couldn't be brought to the foreground, due to Windows preventing abuse of said function. + - Feature: API & CLI to control WTQ programmatically (thanks to Tim Gilevich #194). + - Feature: Added 'WindowClass' as a property to match windows on (Windows only). + - Feature: Added 'WorkingDirectory' setting, for use when starting a new process. + - Feature: Apps can now be matched on their window title (see "WindowTitle" property in app settings). + - Feature: Feature flags, for scary features (such as the new window capture mentioned earlier, and the new hotkey registration through SharpHook). + - Feature: GUI - Make JSON settings visible on "Settings (JSON)" page. Cannot be saved yet. + - Feature: GUI - Suspend key presses when the hotkey field has focus (for Windows, only works with the SharpHook hotkey registration for now) #66. + - Feature: New hotkey registration subsystem through the use of SharpHook, which allows binding the "Windows" modifier on Windows. + - Feature: User events - Run command when an event is fired (such as when an app toggles on or off) (thanks to Sergio Compean, #181). + - Refactor: Docs - Unified much of the documentation around settings, to use the same (comment based) data source across the GUI, the documentation page, and the JSON schema. + - Refactor: Docs - Updated documentation page. + - Refactor: Tweaked log levels to be less verbose (thanks to Maarten). + - Refactor: Windows - Reworked how window handles are found. Before, a process was looked up, and its main window could be attached to. Now, the search process starts at the list of available windows, regardless of process. +ReleaseNotesUrl: https://github.com/flyingpie/windows-terminal-quake/releases/tag/v2.0.16 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.16/flyingpie.windows-terminal-quake.prerelease.yaml b/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.16/flyingpie.windows-terminal-quake.prerelease.yaml new file mode 100644 index 0000000000000..178d28e295bf6 --- /dev/null +++ b/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.16/flyingpie.windows-terminal-quake.prerelease.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: flyingpie.windows-terminal-quake.prerelease +PackageVersion: 2.0.16 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAI/GAI/1.2.0/GAI.GAI.installer.yaml b/manifests/g/GAI/GAI/1.2.0/GAI.GAI.installer.yaml new file mode 100644 index 0000000000000..9d472e7bc6870 --- /dev/null +++ b/manifests/g/GAI/GAI/1.2.0/GAI.GAI.installer.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: GAI.GAI +PackageVersion: 1.2.0 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Custom: /ALLUSERS +UpgradeBehavior: install +ProductCode: '{59470D0E-4D60-465A-A8A4-D04521F250B2}_is1' +ReleaseDate: 2025-06-25 +AppsAndFeaturesEntries: +- ProductCode: '{59470D0E-4D60-465A-A8A4-D04521F250B2}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Gai' +Installers: +- Architecture: x64 + InstallerUrl: https://webpath.iche2.com/release/Gai-1.2.0-Setup.exe + InstallerSha256: c1793cf7d4c68edad47bf8c424f2fb6f317acea01089a95435df90dd0bce0f6a +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/GAI/GAI/1.2.0/GAI.GAI.locale.en-US.yaml b/manifests/g/GAI/GAI/1.2.0/GAI.GAI.locale.en-US.yaml new file mode 100644 index 0000000000000..47b7f0a1cd029 --- /dev/null +++ b/manifests/g/GAI/GAI/1.2.0/GAI.GAI.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: GAI.GAI +PackageVersion: 1.2.0 +PackageLocale: en-US +Publisher: Heshan Aisipai E-commerce Co., Ltd. +PublisherUrl: https://webpath.iche2.com/gaidoc/en/ +PackageName: Gai +PackageUrl: https://webpath.iche2.com/app/gai/download_en.html +License: Proprietary +ShortDescription: Generative-AI Tools For Beginner +Description: |- + No ads, No registration, No other permissions required. Internet connection only. + + - Multimodal conversations: Text, images, videos – easily get the content you need. + - User-friendly interface: Conveniently manage prompts, instructions, parameters, and input/output. + - Scheduled Tasks: Pre-set time, automatically generate content. + - Private prompt libraries: Support offline/online prompt libraries. + - Multiple output options: Local logs or your private network server. + + Full-featured, customizable, and easy to master! +# Moniker: +Tags: +- ai +- openai +- gpt +- chatgpt +- gemini +- imagen +ReleaseNotes: |- + - support Gemini 2.5 Flash dynamic thinking. + - support Gemini 2.0 Flash preview image generation. + - support Gemini 2.0 Flash, Multimodal inputs, Text output. + - automate generative AI's scheduled tasks with python. + - on interruption, show the last input for easy chat retry. + - automatically delete logs after a set period to free up space and improve performance. + - setting - Reset Trial - fix trial errors and restart on Home. +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/GAI/GAI/1.2.0/GAI.GAI.locale.zh-CN.yaml b/manifests/g/GAI/GAI/1.2.0/GAI.GAI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b4bc6ccefc820 --- /dev/null +++ b/manifests/g/GAI/GAI/1.2.0/GAI.GAI.locale.zh-CN.yaml @@ -0,0 +1,40 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: GAI.GAI +PackageVersion: 1.2.0 +PackageLocale: zh-CN +Publisher: Heshan Aisipai E-commerce Co., Ltd. +PublisherUrl: https://webpath.iche2.com/gaidoc/zh/ +PackageName: Gai +PackageUrl: https://webpath.iche2.com/app/gai/download_zh.html +License: Proprietary +ShortDescription: Generative-AI Tools For Beginner +Description: |- + 无广告、免注册、零权限,联网即用。 + + - 多模态对话:文本、图像、音视频,轻松获取所需内容。 + - 界面友好:便捷管理提示词、指令、参数及输入输出。 + - 定时任务:预设时间,自动生成内容。 + - 私有提示词库:支持离线/联网提示词库。 + - 多种输出方式:本地日志或私有网络服务器。 + + 全功能开放,调参自由,轻松进阶! +# Moniker: +Tags: +- ai +- openai +- gpt +- chatgpt +- gemini +- imagen +ReleaseNotes: |- + - support Gemini 2.5 Flash dynamic thinking. + - support Gemini 2.0 Flash preview image generation. + - support Gemini 2.0 Flash, Multimodal inputs, Text output. + - automate generative AI's scheduled tasks with python. + - on interruption, show the last input for easy chat retry. + - automatically delete logs after a set period to free up space and improve performance. + - setting - Reset Trial - fix trial errors and restart on Home. +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/g/GAI/GAI/1.2.0/GAI.GAI.yaml b/manifests/g/GAI/GAI/1.2.0/GAI.GAI.yaml new file mode 100644 index 0000000000000..b94108d66911d --- /dev/null +++ b/manifests/g/GAI/GAI/1.2.0/GAI.GAI.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: GAI.GAI +PackageVersion: 1.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/GAM-Team/gam/7.10.05/GAM-Team.gam.installer.yaml b/manifests/g/GAM-Team/gam/7.10.05/GAM-Team.gam.installer.yaml new file mode 100644 index 0000000000000..00147461a8bf4 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.05/GAM-Team.gam.installer.yaml @@ -0,0 +1,30 @@ +# 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: GAM-Team.gam +PackageVersion: 7.10.05 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ReleaseDate: 2025-06-24 +InstallationMetadata: + DefaultInstallLocation: ./GAM7 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.10.05/gam-7.10.05-windows-x86_64.msi + InstallerSha256: 32BF5CD25BA3232A52FB0DC03BF6F4E25A2CE5DE6079FCB067ED5716EB06AA50 + ProductCode: '{A12F44D5-A7D1-4F07-B730-9DEC4BC32B77}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{A12F44D5-A7D1-4F07-B730-9DEC4BC32B77}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +- Architecture: arm64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.10.05/gam-7.10.05-windows-arm64.msi + InstallerSha256: 575153C583144D9F646505B84BE8B0457001DCCEDAD3661F32C2054A593CE538 + ProductCode: '{768632FB-4F2F-42C4-82BD-3F4BF5917CDF}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{768632FB-4F2F-42C4-82BD-3F4BF5917CDF}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.10.05/GAM-Team.gam.locale.en-US.yaml b/manifests/g/GAM-Team/gam/7.10.05/GAM-Team.gam.locale.en-US.yaml new file mode 100644 index 0000000000000..7035d9c77cdd9 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.05/GAM-Team.gam.locale.en-US.yaml @@ -0,0 +1,39 @@ +# 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: GAM-Team.gam +PackageVersion: 7.10.05 +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 +ReleaseNotes: |- + - 7.10.05 + Google renamed an error: cannotModifyInheritedTeamDrivePermission became cannotModifyInheritedPermission. + GAM will now handle the new error. + See Update History +ReleaseNotesUrl: https://github.com/GAM-team/GAM/releases/tag/v7.10.05 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/GAM-team/GAM/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.10.05/GAM-Team.gam.yaml b/manifests/g/GAM-Team/gam/7.10.05/GAM-Team.gam.yaml new file mode 100644 index 0000000000000..c1ae5a6b364d0 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.05/GAM-Team.gam.yaml @@ -0,0 +1,8 @@ +# 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: GAM-Team.gam +PackageVersion: 7.10.05 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.10.06/GAM-Team.gam.installer.yaml b/manifests/g/GAM-Team/gam/7.10.06/GAM-Team.gam.installer.yaml new file mode 100644 index 0000000000000..5fad9c90d3f58 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.06/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.10.06 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallationMetadata: + DefaultInstallLocation: ./GAM7 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.10.06/gam-7.10.06-windows-x86_64.msi + InstallerSha256: 3F58F1FA161F70D0C19953750C7D6421807DC766E3FD53E7FD70E0C06552227F + ProductCode: '{85987B10-4228-405B-B90B-765CA5662F60}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{85987B10-4228-405B-B90B-765CA5662F60}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +- Architecture: arm64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.10.06/gam-7.10.06-windows-arm64.msi + InstallerSha256: 04E3A93665CA35301D724140E319826FFDE8AD4F5DE00679CAEA0A026DAB806E + ProductCode: '{DA4BD52D-0622-4B4C-B6FF-CCC0249AA70C}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{DA4BD52D-0622-4B4C-B6FF-CCC0249AA70C}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-26 diff --git a/manifests/g/GAM-Team/gam/7.10.06/GAM-Team.gam.locale.en-US.yaml b/manifests/g/GAM-Team/gam/7.10.06/GAM-Team.gam.locale.en-US.yaml new file mode 100644 index 0000000000000..6e5ea1d4f77ba --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.06/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.10.06 +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.10.06 +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.10.06/GAM-Team.gam.yaml b/manifests/g/GAM-Team/gam/7.10.06/GAM-Team.gam.yaml new file mode 100644 index 0000000000000..f6897e060fb88 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.06/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.10.06 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/GAM-Team/gam/7.10.07/GAM-Team.gam.installer.yaml b/manifests/g/GAM-Team/gam/7.10.07/GAM-Team.gam.installer.yaml new file mode 100644 index 0000000000000..3be17ef8356e6 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.07/GAM-Team.gam.installer.yaml @@ -0,0 +1,30 @@ +# 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: GAM-Team.gam +PackageVersion: 7.10.07 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ReleaseDate: 2025-06-26 +InstallationMetadata: + DefaultInstallLocation: ./GAM7 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.10.07/gam-7.10.07-windows-x86_64.msi + InstallerSha256: AC6AC0854046180384867DB9F77ABBD2F340A90FAD2A345D669148A1FA0F9800 + ProductCode: '{C6BBD256-EAE2-4561-AA36-7EC573C4A1D3}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{C6BBD256-EAE2-4561-AA36-7EC573C4A1D3}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +- Architecture: arm64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.10.07/gam-7.10.07-windows-arm64.msi + InstallerSha256: 2B77F29CA95DC355F6A43D68A95137648A0CC59448BFD61701A09BC0DE1E7519 + ProductCode: '{EFA2A6D8-09A4-4F9C-8EC5-22E8F152A57D}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{EFA2A6D8-09A4-4F9C-8EC5-22E8F152A57D}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.10.07/GAM-Team.gam.locale.en-US.yaml b/manifests/g/GAM-Team/gam/7.10.07/GAM-Team.gam.locale.en-US.yaml new file mode 100644 index 0000000000000..6e8b0e373f103 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.07/GAM-Team.gam.locale.en-US.yaml @@ -0,0 +1,42 @@ +# 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: GAM-Team.gam +PackageVersion: 7.10.07 +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 +ReleaseNotes: |- + - 7.10.07 + Updated gam copy|move drivefile to hanndle additional instances of + the cannotModifyInheritedPermission error. + Added license SKU Google AI Ultra for Business + - ProductID - 101047 + - SKUID - 1010470008 | geminiultra + See Update History +ReleaseNotesUrl: https://github.com/GAM-team/GAM/releases/tag/v7.10.07 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/GAM-team/GAM/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.10.07/GAM-Team.gam.yaml b/manifests/g/GAM-Team/gam/7.10.07/GAM-Team.gam.yaml new file mode 100644 index 0000000000000..138a23f664ea0 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.07/GAM-Team.gam.yaml @@ -0,0 +1,8 @@ +# 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: GAM-Team.gam +PackageVersion: 7.10.07 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.10.08/GAM-Team.gam.installer.yaml b/manifests/g/GAM-Team/gam/7.10.08/GAM-Team.gam.installer.yaml new file mode 100644 index 0000000000000..c0e0a17e51720 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.08/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.10.08 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallationMetadata: + DefaultInstallLocation: ./GAM7 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.10.08/gam-7.10.08-windows-x86_64.msi + InstallerSha256: 62818B7131EAE2599480A7F4456D191720C0A00B09D5CA0C113477A1C983A097 + ProductCode: '{B2869CD4-3A69-4F95-9901-6E2755B218A8}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{B2869CD4-3A69-4F95-9901-6E2755B218A8}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +- Architecture: arm64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.10.08/gam-7.10.08-windows-arm64.msi + InstallerSha256: D005787A2C273B87D8B37DAF7F999782DC64528685FA31A89557AAE6ABD6B3FE + ProductCode: '{9ADBEC49-1A6E-4F5B-80D1-A070659EAA33}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{9ADBEC49-1A6E-4F5B-80D1-A070659EAA33}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-30 diff --git a/manifests/g/GAM-Team/gam/7.10.08/GAM-Team.gam.locale.en-US.yaml b/manifests/g/GAM-Team/gam/7.10.08/GAM-Team.gam.locale.en-US.yaml new file mode 100644 index 0000000000000..f27abc9f0b302 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.08/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.10.08 +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.10.08 +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.10.08/GAM-Team.gam.yaml b/manifests/g/GAM-Team/gam/7.10.08/GAM-Team.gam.yaml new file mode 100644 index 0000000000000..475f52fda5095 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.08/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.10.08 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/GAM-Team/gam/7.10.09/GAM-Team.gam.installer.yaml b/manifests/g/GAM-Team/gam/7.10.09/GAM-Team.gam.installer.yaml new file mode 100644 index 0000000000000..909dc0de1438c --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.09/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.10.09 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallationMetadata: + DefaultInstallLocation: ./GAM7 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.10.09/gam-7.10.09-windows-x86_64.msi + InstallerSha256: E9A648093EA02199650F4581CDD54B7F9145950433C01969D65D7960B7C6F3DC + ProductCode: '{1C6785F5-C1E1-4F92-892E-33932064F010}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{1C6785F5-C1E1-4F92-892E-33932064F010}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +- Architecture: arm64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.10.09/gam-7.10.09-windows-arm64.msi + InstallerSha256: 4FDB41A53122D98BBFC8E02E220EAA2E135D81B924F665506A3C659950B9AC81 + ProductCode: '{4B444FDF-F9A7-41C1-A8D7-3418CEDA0AC2}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{4B444FDF-F9A7-41C1-A8D7-3418CEDA0AC2}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-30 diff --git a/manifests/g/GAM-Team/gam/7.10.09/GAM-Team.gam.locale.en-US.yaml b/manifests/g/GAM-Team/gam/7.10.09/GAM-Team.gam.locale.en-US.yaml new file mode 100644 index 0000000000000..68da476e8b86a --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.09/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.10.09 +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.10.09 +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.10.09/GAM-Team.gam.yaml b/manifests/g/GAM-Team/gam/7.10.09/GAM-Team.gam.yaml new file mode 100644 index 0000000000000..f00eab0e6d1cb --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.09/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.10.09 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/GAM-Team/gam/7.10.10/GAM-Team.gam.installer.yaml b/manifests/g/GAM-Team/gam/7.10.10/GAM-Team.gam.installer.yaml new file mode 100644 index 0000000000000..ee2e682591063 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.10/GAM-Team.gam.installer.yaml @@ -0,0 +1,30 @@ +# 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: GAM-Team.gam +PackageVersion: 7.10.10 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ReleaseDate: 2025-06-30 +InstallationMetadata: + DefaultInstallLocation: ./GAM7 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.10.10/gam-7.10.10-windows-x86_64.msi + InstallerSha256: 6ADB90A74FC8A2B762806E3F188A658EBABF2BAA161A2C23F8973C3312B224E1 + ProductCode: '{E26A6FAF-5AF1-4925-BB22-105428AC504F}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{E26A6FAF-5AF1-4925-BB22-105428AC504F}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +- Architecture: arm64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.10.10/gam-7.10.10-windows-arm64.msi + InstallerSha256: CB7438C7CD3B82AEB41487653D08B5AA7F086F1694AA6547A93CB67900367CEC + ProductCode: '{199D29DA-49E2-42C2-B0BC-DC4750F19A38}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{199D29DA-49E2-42C2-B0BC-DC4750F19A38}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.10.10/GAM-Team.gam.locale.en-US.yaml b/manifests/g/GAM-Team/gam/7.10.10/GAM-Team.gam.locale.en-US.yaml new file mode 100644 index 0000000000000..f2d7a7fd3690d --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.10/GAM-Team.gam.locale.en-US.yaml @@ -0,0 +1,40 @@ +# 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: GAM-Team.gam +PackageVersion: 7.10.10 +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 +ReleaseNotes: |- + - 7.10.10 + Added choices text and hyperlink to option showwebviewlink in gam [] print|show shareddrives. + - showwebviewlink text - Displays https://drive.google.com/drive/folders/ + - showwebviewlink hyperlink - Dsiplays =HYPERLINK("https://drive.google.com/drive/folders/", "") + See Update History +ReleaseNotesUrl: https://github.com/GAM-team/GAM/releases/tag/v7.10.10 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/GAM-team/GAM/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.10.10/GAM-Team.gam.yaml b/manifests/g/GAM-Team/gam/7.10.10/GAM-Team.gam.yaml new file mode 100644 index 0000000000000..05ef9c79fd1be --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.10.10/GAM-Team.gam.yaml @@ -0,0 +1,8 @@ +# 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: GAM-Team.gam +PackageVersion: 7.10.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.11.00/GAM-Team.gam.installer.yaml b/manifests/g/GAM-Team/gam/7.11.00/GAM-Team.gam.installer.yaml new file mode 100644 index 0000000000000..2b897dc461467 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.11.00/GAM-Team.gam.installer.yaml @@ -0,0 +1,30 @@ +# 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: GAM-Team.gam +PackageVersion: 7.11.00 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ReleaseDate: 2025-07-02 +InstallationMetadata: + DefaultInstallLocation: ./GAM7 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.11.00/gam-7.11.00-windows-x86_64.msi + InstallerSha256: 7B5766B74CE9F987BABBD40E97689B8BCEAC3BA8903BD21A82EFB7864516F528 + ProductCode: '{9AA57F09-073E-4EED-A130-3313C64CA221}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{9AA57F09-073E-4EED-A130-3313C64CA221}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +- Architecture: arm64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.11.00/gam-7.11.00-windows-arm64.msi + InstallerSha256: 902C936F2654EC30C1819E212EF24D3BCE67B544116C9A64EC1307F1B919D453 + ProductCode: '{D572EBF7-C766-4F9D-A443-8B972300517A}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{D572EBF7-C766-4F9D-A443-8B972300517A}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.11.00/GAM-Team.gam.locale.en-US.yaml b/manifests/g/GAM-Team/gam/7.11.00/GAM-Team.gam.locale.en-US.yaml new file mode 100644 index 0000000000000..348b247a22ea2 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.11.00/GAM-Team.gam.locale.en-US.yaml @@ -0,0 +1,40 @@ +# 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: GAM-Team.gam +PackageVersion: 7.11.00 +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 +ReleaseNotes: |- + - 7.11.00 + Added commands to manage classroom/course announcements. + - See: https://github.com/GAM-team/GAM/wiki/Classroom-Courses#manage-course-announcements + Upgraded to OpenSSL 3.5.1. + See Update History +ReleaseNotesUrl: https://github.com/GAM-team/GAM/releases/tag/v7.11.00 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/GAM-team/GAM/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.11.00/GAM-Team.gam.yaml b/manifests/g/GAM-Team/gam/7.11.00/GAM-Team.gam.yaml new file mode 100644 index 0000000000000..6cec9b0220006 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.11.00/GAM-Team.gam.yaml @@ -0,0 +1,8 @@ +# 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: GAM-Team.gam +PackageVersion: 7.11.00 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.12.00/GAM-Team.gam.installer.yaml b/manifests/g/GAM-Team/gam/7.12.00/GAM-Team.gam.installer.yaml new file mode 100644 index 0000000000000..233310aaaeb9d --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.12.00/GAM-Team.gam.installer.yaml @@ -0,0 +1,30 @@ +# 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: GAM-Team.gam +PackageVersion: 7.12.00 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ReleaseDate: 2025-07-07 +InstallationMetadata: + DefaultInstallLocation: ./GAM7 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.12.00/gam-7.12.00-windows-x86_64.msi + InstallerSha256: 243A93A9112246D2D2892200AD469779F176DD13518E9A42158607BBC61967D5 + ProductCode: '{F7EC7B68-86E0-4E5A-8755-F676CB59472D}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{F7EC7B68-86E0-4E5A-8755-F676CB59472D}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +- Architecture: arm64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.12.00/gam-7.12.00-windows-arm64.msi + InstallerSha256: 9F626085A062AA03838904D02002B59731886C427186AF802230CD7828CECCBC + ProductCode: '{CF1696E2-1D46-4B0A-B934-0D2D53C125EF}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{CF1696E2-1D46-4B0A-B934-0D2D53C125EF}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.12.00/GAM-Team.gam.locale.en-US.yaml b/manifests/g/GAM-Team/gam/7.12.00/GAM-Team.gam.locale.en-US.yaml new file mode 100644 index 0000000000000..99ea8f7333c1a --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.12.00/GAM-Team.gam.locale.en-US.yaml @@ -0,0 +1,61 @@ +# 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: GAM-Team.gam +PackageVersion: 7.12.00 +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 +ReleaseNotes: |- + 7.12.00 + Started updated handling of missing scopes messages in client access commands; + this is a work in progress. + Updated gam info|show shareddrive to handle changes in the Drive API that caused traps. + Added downloadrestrictedforreaders and downloadrestrictedforwriters to + to support new Shared Drive restrictions. + Updated gam course create|update announcement to accept input from + a literal string, a file or a Google Doc. + ::= + ((text )| + (textfile [charset ])| + (gdoc )| + (gcsdoc )) + Added command gam check suspended that checks the suspension status of a user + and sets the return code to 0 if the user is not suspended or 26 if it is. + $ gam check suspended testok@domain.com + User: testok@domain.com, Account Suspended: False + $ echo $? + 0 + $ gam check suspended testsusp@domain.com + User: testsusp@domain.com, Account Suspended: True, Suspension Reason: ADMIN + $ echo $? + 26 + Updated gam sendemail to verify that one of recipient|to|from + immediately follows sendemail. + See Update History +ReleaseNotesUrl: https://github.com/GAM-team/GAM/releases/tag/v7.12.00 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/GAM-team/GAM/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.12.00/GAM-Team.gam.yaml b/manifests/g/GAM-Team/gam/7.12.00/GAM-Team.gam.yaml new file mode 100644 index 0000000000000..55317c31edda1 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.12.00/GAM-Team.gam.yaml @@ -0,0 +1,8 @@ +# 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: GAM-Team.gam +PackageVersion: 7.12.00 +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.233/GDevelop.GDevelop.installer.yaml b/manifests/g/GDevelop/GDevelop/5.5.233/GDevelop.GDevelop.installer.yaml new file mode 100644 index 0000000000000..441b1b8519d1c --- /dev/null +++ b/manifests/g/GDevelop/GDevelop/5.5.233/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.233 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: c2a9b91e-8206-5b4e-b81d-9aa27463c28e +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/4ian/GDevelop/releases/download/v5.5.233/GDevelop-5-Setup-5.5.233.exe + InstallerSha256: C51CC823E85D91E58C0090A48C5C4359DD86F0B56D72CF53492328950113F9D2 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/4ian/GDevelop/releases/download/v5.5.233/GDevelop-5-Setup-5.5.233.exe + InstallerSha256: C51CC823E85D91E58C0090A48C5C4359DD86F0B56D72CF53492328950113F9D2 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GDevelop/GDevelop/5.5.233/GDevelop.GDevelop.locale.en-US.yaml b/manifests/g/GDevelop/GDevelop/5.5.233/GDevelop.GDevelop.locale.en-US.yaml new file mode 100644 index 0000000000000..b18290d1ca938 --- /dev/null +++ b/manifests/g/GDevelop/GDevelop/5.5.233/GDevelop.GDevelop.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: GDevelop.GDevelop +PackageVersion: 5.5.233 +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: |- + This is a bug fix release - read all the new features, including the AI agent, in the notes of the next release. + 🐛 Bug fixes + - Multiple in-app tutorial related fixes: + - Fix wrong display of behavior update dialog during in-app tutorial, + - Fix some broken tutorials, + - Fix tutorials not always properly showing the element to scroll to, for behaviors or extensions. + - Fix translations in the AI agent. + ⚙️ Extensions + - Add expressions and actions for the Linear Movement behaviors. +ReleaseNotesUrl: https://github.com/4ian/GDevelop/releases/tag/v5.5.233 +PurchaseUrl: https://gdevelop.io/pricing +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GDevelop/GDevelop/5.5.233/GDevelop.GDevelop.locale.zh-CN.yaml b/manifests/g/GDevelop/GDevelop/5.5.233/GDevelop.GDevelop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e51f6d0337ebe --- /dev/null +++ b/manifests/g/GDevelop/GDevelop/5.5.233/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.233 +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.233 +PurchaseUrl: https://gdevelop.io/pricing +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GDevelop/GDevelop/5.5.233/GDevelop.GDevelop.yaml b/manifests/g/GDevelop/GDevelop/5.5.233/GDevelop.GDevelop.yaml new file mode 100644 index 0000000000000..872ee249d0403 --- /dev/null +++ b/manifests/g/GDevelop/GDevelop/5.5.233/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.233 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.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/GLab/GLab/1.61.0/GLab.GLab.installer.yaml b/manifests/g/GLab/GLab/1.61.0/GLab.GLab.installer.yaml new file mode 100644 index 0000000000000..2fb66a2030850 --- /dev/null +++ b/manifests/g/GLab/GLab/1.61.0/GLab.GLab.installer.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: GLab.GLab +PackageVersion: 1.61.0 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Custom: /ALLUSERS +UpgradeBehavior: install +ProductCode: '{679C50AE-F48A-46D1-9493-77F095E9884D}_is1' +ReleaseDate: 2025-06-25 +AppsAndFeaturesEntries: +- ProductCode: '{679C50AE-F48A-46D1-9493-77F095E9884D}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\glab' +Installers: +- Architecture: x64 + InstallerUrl: https://gitlab.com/gitlab-org/cli/-/releases/v1.61.0/downloads/glab_1.61.0_Windows_x86_64_installer.exe + InstallerSha256: E940815988C8E5DBB93B60F04A1E8E6C4C42D3F76EF2D806CBE3173B29B98FF0 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GLab/GLab/1.61.0/GLab.GLab.locale.en-US.yaml b/manifests/g/GLab/GLab/1.61.0/GLab.GLab.locale.en-US.yaml new file mode 100644 index 0000000000000..d2382597814e1 --- /dev/null +++ b/manifests/g/GLab/GLab/1.61.0/GLab.GLab.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: GLab.GLab +PackageVersion: 1.61.0 +PackageLocale: en-US +Publisher: GitLab +PublisherUrl: https://gitlab.com/gitlab-org/cli +PublisherSupportUrl: https://gitlab.com/gitlab-org/cli/-/issues +Author: GitLab +PackageName: GLab +PackageUrl: https://gitlab.com/gitlab-org/cli +License: MIT License +LicenseUrl: https://gitlab.com/gitlab-org/cli/-/raw/main/LICENSE +Copyright: Copyright (c) 2023-present GitLab B.V. +CopyrightUrl: https://gitlab.com/gitlab-org/cli/-/raw/main/LICENSE +ShortDescription: An open-source GitLab command line tool bringing GitLabs cool features to your command line +Description: |- + GLab is an open source GitLab CLI tool bringing GitLab to your terminal next to where you are already working with git and your code without switching between windows and browser tabs. + Work with issues, merge requests, watch running pipelines directly from your CLI among other features. + Inspired by gh, the official GitHub CLI tool. +Moniker: glab +Tags: +- cli +- command-line +- commandline +- git +- gitlab +- gitlab-cli +- glab +- glab-cli +- golang +- tool +- utility +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GLab/GLab/1.61.0/GLab.GLab.yaml b/manifests/g/GLab/GLab/1.61.0/GLab.GLab.yaml new file mode 100644 index 0000000000000..2c70cdba362f9 --- /dev/null +++ b/manifests/g/GLab/GLab/1.61.0/GLab.GLab.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: GLab.GLab +PackageVersion: 1.61.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GOG/Galaxy/2.0.86.13/GOG.Galaxy.installer.yaml b/manifests/g/GOG/Galaxy/2.0.86.13/GOG.Galaxy.installer.yaml new file mode 100644 index 0000000000000..077a45f114de3 --- /dev/null +++ b/manifests/g/GOG/Galaxy/2.0.86.13/GOG.Galaxy.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: GOG.Galaxy +PackageVersion: 2.0.86.13 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- goggalaxy +ProductCode: '{7258BA11-600C-430E-A759-27E2C691A335}_is1' +Installers: +- Architecture: x86 + InstallerUrl: https://content-system.gog.com/open_link/download?path=/open/galaxy/client/setup_galaxy_2.0.86.13.exe + InstallerSha256: 04B6DE20A454F82B468104097B729119FD0E5D085FFB953CBE640539B6D66755 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GOG/Galaxy/2.0.86.13/GOG.Galaxy.locale.en-US.yaml b/manifests/g/GOG/Galaxy/2.0.86.13/GOG.Galaxy.locale.en-US.yaml new file mode 100644 index 0000000000000..d143cb8b1ef64 --- /dev/null +++ b/manifests/g/GOG/Galaxy/2.0.86.13/GOG.Galaxy.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: GOG.Galaxy +PackageVersion: 2.0.86.13 +PackageLocale: en-US +Publisher: GOG.com +PublisherUrl: https://www.gog.com/ +PublisherSupportUrl: https://support.gog.com/ +Author: GOG Sp. z o.o. +PackageName: GOG GALAXY +PackageUrl: https://www.gog.com/galaxy +License: Proprietary +Copyright: © 2024 GOG Sp. z o.o. All rights reserved. +ShortDescription: All your games and friends in one place. +Description: GOG GALAXY 2.0 allows you to combine multiple game libraries into one and connect with your friends across all gaming platforms, consoles included! +Moniker: gog +Tags: +- game +- gaming +- store +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GOG/Galaxy/2.0.86.13/GOG.Galaxy.locale.zh-CN.yaml b/manifests/g/GOG/Galaxy/2.0.86.13/GOG.Galaxy.locale.zh-CN.yaml new file mode 100644 index 0000000000000..81375db764574 --- /dev/null +++ b/manifests/g/GOG/Galaxy/2.0.86.13/GOG.Galaxy.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: GOG.Galaxy +PackageVersion: 2.0.86.13 +PackageLocale: zh-CN +Publisher: GOG.com +PublisherUrl: https://www.gog.com/ +PublisherSupportUrl: https://support.gog.com/ +Author: GOG Sp. z o.o. +PackageName: GOG GALAXY +PackageUrl: https://www.gog.com/galaxy +License: 专有软件 +Copyright: © 2024 GOG Sp. z o.o. All rights reserved. +ShortDescription: 一站连通你的所有游戏和朋友 +Description: GOG GALAXY 2.0 允许你整合多个游戏库,并与你在所有游戏平台上的朋友建立联系,包括游戏机! +Tags: +- 商店 +- 游戏 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GOG/Galaxy/2.0.86.13/GOG.Galaxy.yaml b/manifests/g/GOG/Galaxy/2.0.86.13/GOG.Galaxy.yaml new file mode 100644 index 0000000000000..a96ae133ab23c --- /dev/null +++ b/manifests/g/GOG/Galaxy/2.0.86.13/GOG.Galaxy.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: GOG.Galaxy +PackageVersion: 2.0.86.13 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GaetanSencie/AnnualAccounting/1.9.0.0/GaetanSencie.AnnualAccounting.installer.yaml b/manifests/g/GaetanSencie/AnnualAccounting/1.9.0.0/GaetanSencie.AnnualAccounting.installer.yaml new file mode 100644 index 0000000000000..1297b75796aa9 --- /dev/null +++ b/manifests/g/GaetanSencie/AnnualAccounting/1.9.0.0/GaetanSencie.AnnualAccounting.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: GaetanSencie.AnnualAccounting +PackageVersion: 1.9.0.0 +InstallerLocale: fr-FR +InstallerType: inno +Scope: user +InstallModes: +- interactive +- silentWithProgress +FileExtensions: +- dat +- exe +- md +ProductCode: '{29D81E73-481B-4BAA-87D9-C3C253C2D435}}_is1' +ReleaseDate: 2025-04-22 +AppsAndFeaturesEntries: +- DisplayName: Simple Annual Accounting + ProductCode: '{29D81E73-481B-4BAA-87D9-C3C253C2D435}}_is1' +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Simple Annual Accounting' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/STENS66/Annual_Accounting/releases/download/V1.9.0.0/Simple.Annual.Accounting.V1-9-EN.exe + InstallerSha256: D73A70F2B7406200D17B09A2FAA4A0475D6BE4E5B4E084095FCBF0BE539043F2 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GaetanSencie/AnnualAccounting/1.9.0.0/GaetanSencie.AnnualAccounting.locale.en-US.yaml b/manifests/g/GaetanSencie/AnnualAccounting/1.9.0.0/GaetanSencie.AnnualAccounting.locale.en-US.yaml new file mode 100644 index 0000000000000..3a5df0741fcf9 --- /dev/null +++ b/manifests/g/GaetanSencie/AnnualAccounting/1.9.0.0/GaetanSencie.AnnualAccounting.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: GaetanSencie.AnnualAccounting +PackageVersion: 1.9.0.0 +PackageLocale: en-US +Publisher: Gaëtan Sencie +PublisherUrl: https://github.com/STENS66 +PublisherSupportUrl: https://github.com/STENS66/Annual_Accounting/issues +PackageName: Annual Accounting +PackageUrl: https://github.com/STENS66/Annual_Accounting +License: Proprietary +LicenseUrl: https://github.com/STENS66/Annual_Accounting/blob/HEAD/License.txt +Copyright: © Gaëtan Sencie 2023 All rights reserved +ShortDescription: Annual Accounting Setup is a very simple and lightweight accounting software coded in Python. +ReleaseNotes: |- + Version 1.9 – Simple Annual Accounting (formerly Annual Accounting) + 1. Name Change of the Application: + To ensure better consistency with the naming of my other applications published on the Microsoft Store, the name "Annual Accounting" is now changed to "Simple Annual Accounting". This change does not affect existing features but reflects a desire for uniformity and clarity in the presentation of my Windows desktop applications. + 2. New Features: + - Added functionality allowing the use of keyboard arrows (left, right, up, down) to move the cursor in different cells of the graphical interface table. + Added redirection links in the menu bar: + - A direct link to the README.md file of the GitHub repository. + - Quick access to the application usage license. + These links are now accessible in the menu bar tabs of the graphical interface. + French version available in the Microsoft store here: https://apps.microsoft.com/detail/9NRT5NWBMZR6?hl=fr-be&gl=BE&ocid=pdpshare +ReleaseNotesUrl: https://github.com/STENS66/Annual_Accounting/releases/tag/V1.9.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GaetanSencie/AnnualAccounting/1.9.0.0/GaetanSencie.AnnualAccounting.yaml b/manifests/g/GaetanSencie/AnnualAccounting/1.9.0.0/GaetanSencie.AnnualAccounting.yaml new file mode 100644 index 0000000000000..d2fba02009481 --- /dev/null +++ b/manifests/g/GaetanSencie/AnnualAccounting/1.9.0.0/GaetanSencie.AnnualAccounting.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: GaetanSencie.AnnualAccounting +PackageVersion: 1.9.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GaetanSencie/SimpleImageConverter/1.1.0.0/GaetanSencie.SimpleImageConverter.installer.yaml b/manifests/g/GaetanSencie/SimpleImageConverter/1.1.0.0/GaetanSencie.SimpleImageConverter.installer.yaml deleted file mode 100644 index b3a392e276574..0000000000000 --- a/manifests/g/GaetanSencie/SimpleImageConverter/1.1.0.0/GaetanSencie.SimpleImageConverter.installer.yaml +++ /dev/null @@ -1,24 +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: GaetanSencie.SimpleImageConverter -PackageVersion: 1.1.0.0 -InstallerType: inno -InstallModes: -- interactive -- silent -- silentWithProgress -FileExtensions: -- exe -- md -- dat -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/STENS66/Simple-Image-Converter/releases/download/V1.1.0.0/Simple.Image.Converter.V1-1.exe - InstallerSha256: B44043B1F40E0785DF6C69263D29D994BDFDDBDB541595191A2B63655BB16B60 -ManifestType: installer -ManifestVersion: 1.9.0 -ReleaseDate: 2025-04-05 -Agreements: -- AgreementLabel: Accord de licence - AgreementUrl: https://github.com/STENS66/Simple-Image-Converter/releases/download/V1.1.0.0/License.txt diff --git a/manifests/g/GaetanSencie/SimpleImageConverter/1.1.0.0/GaetanSencie.SimpleImageConverter.locale.fr-FR.yaml b/manifests/g/GaetanSencie/SimpleImageConverter/1.1.0.0/GaetanSencie.SimpleImageConverter.locale.fr-FR.yaml deleted file mode 100644 index 5d172faf7f215..0000000000000 --- a/manifests/g/GaetanSencie/SimpleImageConverter/1.1.0.0/GaetanSencie.SimpleImageConverter.locale.fr-FR.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: GaetanSencie.SimpleImageConverter -PackageVersion: 1.1.0.0 -PackageLocale: fr-FR -Publisher: Gaëtan Sencie -PublisherUrl: https://github.com/STENS66 -PublisherSupportUrl: https://github.com/STENS66/Simple-Image-Converter/issues -PrivacyUrl: https://github.com/STENS66/Privacy-Policy-Simple-Image-Converter -Author: Gaëtan Sencie -PackageName: Simple Image Converter -PackageUrl: https://github.com/STENS66/Simple-Image-Converter -License: Proprietary -LicenseUrl: https://github.com/STENS66/Simple-Image-Converter/releases/download/V1.1.0.0/License.txt -Copyright: © Gaëtan Sencie 2025 Tous droits réservés -CopyrightUrl: https://github.com/STENS66/Simple-Image-Converter -ShortDescription: Application permettant de convertir facilement des fichiers images et PDF. -Description: https://github.com/STENS66/Simple-Image-Converter -Moniker: Converter -Tags: -- simple image converter -- image converter -- converter -- image -ReleaseNotes: V1.1 -ReleaseNotesUrl: https://github.com/STENS66/Simple-Image-Converter/releases/tag/V1.1.0.0 -InstallationNotes: Merci d'utiliser "Simple Image Converter" ! -Documentations: -- DocumentUrl: https://github.com/STENS66/Simple-Image-Converter/releases/download/V1.1.0.0/README.md -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/g/GaetanSencie/SimpleImageConverter/1.1.0.0/GaetanSencie.SimpleImageConverter.yaml b/manifests/g/GaetanSencie/SimpleImageConverter/1.1.0.0/GaetanSencie.SimpleImageConverter.yaml deleted file mode 100644 index 2dad4d818ed1b..0000000000000 --- a/manifests/g/GaetanSencie/SimpleImageConverter/1.1.0.0/GaetanSencie.SimpleImageConverter.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: GaetanSencie.SimpleImageConverter -PackageVersion: 1.1.0.0 -DefaultLocale: fr-FR -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/g/GaetanSencie/SimpleImageConverter/1.2.0.0/GaetanSencie.SimpleImageConverter.installer.yaml b/manifests/g/GaetanSencie/SimpleImageConverter/1.2.0.0/GaetanSencie.SimpleImageConverter.installer.yaml deleted file mode 100644 index 0a7e4821cc82a..0000000000000 --- a/manifests/g/GaetanSencie/SimpleImageConverter/1.2.0.0/GaetanSencie.SimpleImageConverter.installer.yaml +++ /dev/null @@ -1,24 +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: GaetanSencie.SimpleImageConverter -PackageVersion: 1.2.0.0 -InstallerType: inno -InstallModes: -- interactive -- silent -- silentWithProgress -FileExtensions: -- exe -- md -- dat -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/STENS66/Simple-Image-Converter/releases/download/V1.2.0.0/Simple.Image.Converter.V1-2.exe - InstallerSha256: 1d2b34be136bbd2180b387064276022e3228a11189b421efa70211e3c827e073 -ManifestType: installer -ManifestVersion: 1.9.0 -ReleaseDate: 2025-05-14 -Agreements: -- AgreementLabel: Accord de licence - AgreementUrl: https://github.com/STENS66/Simple-Image-Converter/releases/download/V1.2.0.0/License.txt diff --git a/manifests/g/GaetanSencie/SimpleImageConverter/1.2.0.0/GaetanSencie.SimpleImageConverter.locale.fr-FR.yaml b/manifests/g/GaetanSencie/SimpleImageConverter/1.2.0.0/GaetanSencie.SimpleImageConverter.locale.fr-FR.yaml deleted file mode 100644 index 5ba5eed9f2c80..0000000000000 --- a/manifests/g/GaetanSencie/SimpleImageConverter/1.2.0.0/GaetanSencie.SimpleImageConverter.locale.fr-FR.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: GaetanSencie.SimpleImageConverter -PackageVersion: 1.2.0.0 -PackageLocale: fr-FR -Publisher: Gaëtan Sencie -PublisherUrl: https://github.com/STENS66 -PublisherSupportUrl: https://github.com/STENS66/Simple-Image-Converter/issues -PrivacyUrl: https://github.com/STENS66/Privacy-Policy-Simple-Image-Converter -Author: Gaëtan Sencie -PackageName: Simple Image Converter -PackageUrl: https://github.com/STENS66/Simple-Image-Converter -License: Proprietary -LicenseUrl: https://github.com/STENS66/Simple-Image-Converter/releases/download/V1.2.0.0/License.txt -Copyright: © Gaëtan Sencie 2025 Tous droits réservés -CopyrightUrl: https://github.com/STENS66/Simple-Image-Converter -ShortDescription: Application permettant de convertir facilement des fichiers images et PDF. -Description: https://github.com/STENS66/Simple-Image-Converter -Moniker: Converter -Tags: -- simple image converter -- image converter -- converter -- image -ReleaseNotes: V1.2 -ReleaseNotesUrl: https://github.com/STENS66/Simple-Image-Converter/releases/tag/V1.2.0.0 -InstallationNotes: Merci d'utiliser "Simple Image Converter" ! -Documentations: -- DocumentUrl: https://github.com/STENS66/Simple-Image-Converter/releases/download/V1.2.0.0/README.md -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/g/GaetanSencie/SimpleImageConverter/1.2.0.0/GaetanSencie.SimpleImageConverter.yaml b/manifests/g/GaetanSencie/SimpleImageConverter/1.2.0.0/GaetanSencie.SimpleImageConverter.yaml deleted file mode 100644 index 293da7737e3e8..0000000000000 --- a/manifests/g/GaetanSencie/SimpleImageConverter/1.2.0.0/GaetanSencie.SimpleImageConverter.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: GaetanSencie.SimpleImageConverter -PackageVersion: 1.2.0.0 -DefaultLocale: fr-FR -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/g/GaetanSencie/SimpleImageConverter/1.3.0.0/GaetanSencie.SimpleImageConverter.installer.yaml b/manifests/g/GaetanSencie/SimpleImageConverter/1.3.0.0/GaetanSencie.SimpleImageConverter.installer.yaml new file mode 100644 index 0000000000000..18cff8702944d --- /dev/null +++ b/manifests/g/GaetanSencie/SimpleImageConverter/1.3.0.0/GaetanSencie.SimpleImageConverter.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.9.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: GaetanSencie.SimpleImageConverter +PackageVersion: 1.3.0.0 +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +FileExtensions: +- exe +- md +- dat +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/STENS66/Simple-Image-Converter/releases/download/V1.3.0.0/Simple.Image.Converter.Setup.exe + InstallerSha256: 2e7305a06aaff50cdebbe3e2bd7e717dd09dfc52c7d27b36bc4cbeb036e13fb2 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-05-14 +Agreements: +- AgreementLabel: Accord de licence + AgreementUrl: https://github.com/STENS66/Simple-Image-Converter/releases/download/V1.3.0.0/License.txt diff --git a/manifests/g/GaetanSencie/SimpleImageConverter/1.3.0.0/GaetanSencie.SimpleImageConverter.locale.fr-FR.yaml b/manifests/g/GaetanSencie/SimpleImageConverter/1.3.0.0/GaetanSencie.SimpleImageConverter.locale.fr-FR.yaml new file mode 100644 index 0000000000000..3a33f5ae84d00 --- /dev/null +++ b/manifests/g/GaetanSencie/SimpleImageConverter/1.3.0.0/GaetanSencie.SimpleImageConverter.locale.fr-FR.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.9.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: GaetanSencie.SimpleImageConverter +PackageVersion: 1.3.0.0 +PackageLocale: fr-FR +Publisher: Gaëtan Sencie +PublisherUrl: https://github.com/STENS66 +PublisherSupportUrl: https://github.com/STENS66/Simple-Image-Converter/issues +PrivacyUrl: https://github.com/STENS66/Privacy-Policy-Simple-Image-Converter +Author: Gaëtan Sencie +PackageName: Simple Image Converter +PackageUrl: https://github.com/STENS66/Simple-Image-Converter +License: Proprietary +LicenseUrl: https://github.com/STENS66/Simple-Image-Converter/releases/download/V1.3.0.0/License.txt +Copyright: © Gaëtan Sencie 2025 Tous droits réservés +CopyrightUrl: https://github.com/STENS66/Simple-Image-Converter +ShortDescription: Application permettant de convertir facilement des fichiers images et PDF. +Description: https://github.com/STENS66/Simple-Image-Converter +Moniker: Converter +Tags: +- simple image converter +- image converter +- converter +- image +ReleaseNotes: V1.3 +ReleaseNotesUrl: https://github.com/STENS66/Simple-Image-Converter/releases/tag/V1.3.0.0 +InstallationNotes: Merci d'utiliser "Simple Image Converter" ! +Documentations: +- DocumentUrl: https://github.com/STENS66/Simple-Image-Converter/releases/download/V1.3.0.0/README.md +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/GaetanSencie/SimpleImageConverter/1.3.0.0/GaetanSencie.SimpleImageConverter.yaml b/manifests/g/GaetanSencie/SimpleImageConverter/1.3.0.0/GaetanSencie.SimpleImageConverter.yaml new file mode 100644 index 0000000000000..ba225371de951 --- /dev/null +++ b/manifests/g/GaetanSencie/SimpleImageConverter/1.3.0.0/GaetanSencie.SimpleImageConverter.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: GaetanSencie.SimpleImageConverter +PackageVersion: 1.3.0.0 +DefaultLocale: fr-FR +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/Gajim/Gajim/2.3.0/Gajim.Gajim.installer.yaml b/manifests/g/Gajim/Gajim/2.3.0/Gajim.Gajim.installer.yaml new file mode 100644 index 0000000000000..ca80e19cc2a6a --- /dev/null +++ b/manifests/g/Gajim/Gajim/2.3.0/Gajim.Gajim.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Gajim.Gajim +PackageVersion: 2.3.0 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S +UpgradeBehavior: install +Protocols: +- xmpp +ProductCode: Gajim +Installers: +- Architecture: x64 + InstallerUrl: https://gajim.org/downloads/2.3/Gajim-2.3.0-64bit.exe + InstallerSha256: FAA4877496AAC89A3C27A5594AD5E6B476385E3C4F95C0DEBCFF92F37AF70166 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-29 diff --git a/manifests/g/Gajim/Gajim/2.3.0/Gajim.Gajim.locale.en-US.yaml b/manifests/g/Gajim/Gajim/2.3.0/Gajim.Gajim.locale.en-US.yaml new file mode 100644 index 0000000000000..5f1a39f919bd7 --- /dev/null +++ b/manifests/g/Gajim/Gajim/2.3.0/Gajim.Gajim.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: Gajim.Gajim +PackageVersion: 2.3.0 +PackageLocale: en-US +Publisher: The Gajim Team +PublisherUrl: https://gajim.org +PublisherSupportUrl: https://gajim.org/support/extensions +PrivacyUrl: https://gajim.org/privacy +Author: The Gajim Team +PackageName: Gajim +PackageUrl: https://gajim.org +License: GPL +LicenseUrl: https://dev.gajim.org/gajim/gajim/-/blob/master/COPYING +Copyright: (C) 2003-2021 The Gajim Team https://gajim.org +ShortDescription: Fully-featured XMPP client. +Tags: +- jabber +- xmpp +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/Gajim/Gajim/2.3.0/Gajim.Gajim.yaml b/manifests/g/Gajim/Gajim/2.3.0/Gajim.Gajim.yaml new file mode 100644 index 0000000000000..3905db7411db8 --- /dev/null +++ b/manifests/g/Gajim/Gajim/2.3.0/Gajim.Gajim.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: Gajim.Gajim +PackageVersion: 2.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/Gajim/Gajim/2.3.1/Gajim.Gajim.installer.yaml b/manifests/g/Gajim/Gajim/2.3.1/Gajim.Gajim.installer.yaml new file mode 100644 index 0000000000000..33dd197ff5ac8 --- /dev/null +++ b/manifests/g/Gajim/Gajim/2.3.1/Gajim.Gajim.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Gajim.Gajim +PackageVersion: 2.3.1 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S +UpgradeBehavior: install +Protocols: +- xmpp +ProductCode: Gajim +Installers: +- Architecture: x64 + InstallerUrl: https://gajim.org/downloads/2.3/Gajim-2.3.1-64bit.exe + InstallerSha256: 5D1D82407C7216785794B6E1548C37218047B0E15F1AB3F1F50014F3A5B5AAC1 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-29 diff --git a/manifests/g/Gajim/Gajim/2.3.1/Gajim.Gajim.locale.en-US.yaml b/manifests/g/Gajim/Gajim/2.3.1/Gajim.Gajim.locale.en-US.yaml new file mode 100644 index 0000000000000..32eb2a801a695 --- /dev/null +++ b/manifests/g/Gajim/Gajim/2.3.1/Gajim.Gajim.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: Gajim.Gajim +PackageVersion: 2.3.1 +PackageLocale: en-US +Publisher: The Gajim Team +PublisherUrl: https://gajim.org +PublisherSupportUrl: https://gajim.org/support/extensions +PrivacyUrl: https://gajim.org/privacy +Author: The Gajim Team +PackageName: Gajim +PackageUrl: https://gajim.org +License: GPL +LicenseUrl: https://dev.gajim.org/gajim/gajim/-/blob/master/COPYING +Copyright: (C) 2003-2021 The Gajim Team https://gajim.org +ShortDescription: Fully-featured XMPP client. +Tags: +- jabber +- xmpp +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/Gajim/Gajim/2.3.1/Gajim.Gajim.yaml b/manifests/g/Gajim/Gajim/2.3.1/Gajim.Gajim.yaml new file mode 100644 index 0000000000000..dac3d6102a2b3 --- /dev/null +++ b/manifests/g/Gajim/Gajim/2.3.1/Gajim.Gajim.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: Gajim.Gajim +PackageVersion: 2.3.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/Gajim/Gajim/2.3.2/Gajim.Gajim.installer.yaml b/manifests/g/Gajim/Gajim/2.3.2/Gajim.Gajim.installer.yaml new file mode 100644 index 0000000000000..def1e81acf829 --- /dev/null +++ b/manifests/g/Gajim/Gajim/2.3.2/Gajim.Gajim.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Gajim.Gajim +PackageVersion: 2.3.2 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S +UpgradeBehavior: install +Protocols: +- xmpp +ProductCode: Gajim +Installers: +- Architecture: x64 + InstallerUrl: https://gajim.org/downloads/2.3/Gajim-2.3.2-64bit.exe + InstallerSha256: 02DE13D8F6867E01CB902598A58BB6ACD9C4CAE008EDAB8F33374CABF5BFB2D1 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-30 diff --git a/manifests/g/Gajim/Gajim/2.3.2/Gajim.Gajim.locale.en-US.yaml b/manifests/g/Gajim/Gajim/2.3.2/Gajim.Gajim.locale.en-US.yaml new file mode 100644 index 0000000000000..8c61b74ee06a4 --- /dev/null +++ b/manifests/g/Gajim/Gajim/2.3.2/Gajim.Gajim.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: Gajim.Gajim +PackageVersion: 2.3.2 +PackageLocale: en-US +Publisher: The Gajim Team +PublisherUrl: https://gajim.org +PublisherSupportUrl: https://gajim.org/support/extensions +PrivacyUrl: https://gajim.org/privacy +Author: The Gajim Team +PackageName: Gajim +PackageUrl: https://gajim.org +License: GPL +LicenseUrl: https://dev.gajim.org/gajim/gajim/-/blob/master/COPYING +Copyright: (C) 2003-2021 The Gajim Team https://gajim.org +ShortDescription: Fully-featured XMPP client. +Tags: +- jabber +- xmpp +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/Gajim/Gajim/2.3.2/Gajim.Gajim.yaml b/manifests/g/Gajim/Gajim/2.3.2/Gajim.Gajim.yaml new file mode 100644 index 0000000000000..6b786593313ea --- /dev/null +++ b/manifests/g/Gajim/Gajim/2.3.2/Gajim.Gajim.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: Gajim.Gajim +PackageVersion: 2.3.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/GamaPlatform/Gama/2025.06.3/GamaPlatform.Gama.installer.yaml b/manifests/g/GamaPlatform/Gama/2025.06.3/GamaPlatform.Gama.installer.yaml new file mode 100644 index 0000000000000..34354575557f3 --- /dev/null +++ b/manifests/g/GamaPlatform/Gama/2025.06.3/GamaPlatform.Gama.installer.yaml @@ -0,0 +1,34 @@ +# 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: GamaPlatform.Gama +PackageVersion: 2025.06.3 +InstallerLocale: en-US +InstallerType: inno +UpgradeBehavior: install +FileExtensions: +- gaml +ProductCode: '{60676B20-6CAD-440F-835F-9BE8AD7C067D}_is1' +ReleaseDate: 2025-06-30 +AppsAndFeaturesEntries: +- Publisher: UMI 209 UMMISCO IRD/SU & Partners + DisplayVersion: 2025.6.3-SNAPSHOT + ProductCode: '{60676B20-6CAD-440F-835F-9BE8AD7C067D}_is1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/gama-platform/gama/releases/download/2025.06.3/GAMA_2025.06.3_Windows_with_JDK.exe + InstallerSha256: 3F9C57D330F315AAC0FD5718F28C306E1EDB457814048D6FD7CC534BFA5A34EC + InstallerSwitches: + Custom: /CURRENTUSER /Lang=english +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/gama-platform/gama/releases/download/2025.06.3/GAMA_2025.06.3_Windows_with_JDK.exe + InstallerSha256: 3F9C57D330F315AAC0FD5718F28C306E1EDB457814048D6FD7CC534BFA5A34EC + InstallerSwitches: + Custom: /ALLUSERS /Lang=english + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Gama' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GamaPlatform/Gama/2025.06.3/GamaPlatform.Gama.locale.en-US.yaml b/manifests/g/GamaPlatform/Gama/2025.06.3/GamaPlatform.Gama.locale.en-US.yaml new file mode 100644 index 0000000000000..54715de9fc65b --- /dev/null +++ b/manifests/g/GamaPlatform/Gama/2025.06.3/GamaPlatform.Gama.locale.en-US.yaml @@ -0,0 +1,41 @@ +# 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: GamaPlatform.Gama +PackageVersion: 2025.06.3 +PackageLocale: en-US +Publisher: Gama-platform +PublisherUrl: https://gama-platform.org/ +PublisherSupportUrl: https://github.com/gama-platform/gama/issues +Author: Gama-platform +PackageName: Gama +PackageUrl: https://github.com/gama-platform/gama +License: GPL-3.0 +LicenseUrl: https://github.com/gama-platform/gama/blob/HEAD/LICENSE +Copyright: Gama-platform +ShortDescription: GAMA is an easy-to-use open source modeling and simulation environment for creating spatially explicit agent-based simulations. +Description: 'GAMA is an easy-to-use open source modeling and simulation environment for creating spatially explicit agent-based simulations. It has been developed to be used in any application domain: urban mobility, climate change adaptation, epidemiology, disaster evacuation strategy design, urban planning, are some of the application domains in which GAMA users are involved and for which they create models.' +Moniker: Gama +Tags: +- agent-based modelling +- gama +- modelling +- open-source +- release +- simulation +ReleaseNotes: |- + Release for GAMA 2025.06.3. + Published on 30/06/25 07:55. + What's Changed + - [GS] Multiple fixes and improvements for gama-server by @lesquoyb in #691 + Full Changelog: 2025.06.2...2025.06.3 +ReleaseNotesUrl: https://github.com/gama-platform/gama/releases/tag/2025.06.3 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://gama-platform.org/wiki/Home +- DocumentLabel: Tutorials + DocumentUrl: https://gama-platform.org/wiki/Tutorials +- DocumentLabel: User resources + DocumentUrl: https://gama-platform.org/wiki/category/resources +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GamaPlatform/Gama/2025.06.3/GamaPlatform.Gama.yaml b/manifests/g/GamaPlatform/Gama/2025.06.3/GamaPlatform.Gama.yaml new file mode 100644 index 0000000000000..41090ebddd07f --- /dev/null +++ b/manifests/g/GamaPlatform/Gama/2025.06.3/GamaPlatform.Gama.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: GamaPlatform.Gama +PackageVersion: 2025.06.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GamaPlatform/Gama/2025.06.4/GamaPlatform.Gama.installer.yaml b/manifests/g/GamaPlatform/Gama/2025.06.4/GamaPlatform.Gama.installer.yaml new file mode 100644 index 0000000000000..e2f1aa9909a8c --- /dev/null +++ b/manifests/g/GamaPlatform/Gama/2025.06.4/GamaPlatform.Gama.installer.yaml @@ -0,0 +1,33 @@ +# 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: GamaPlatform.Gama +PackageVersion: 2025.06.4 +InstallerLocale: en-US +InstallerType: inno +UpgradeBehavior: install +FileExtensions: +- gaml +ProductCode: '{60676B20-6CAD-440F-835F-9BE8AD7C067D}_is1' +ReleaseDate: 2025-07-03 +AppsAndFeaturesEntries: +- Publisher: UMI 209 UMMISCO IRD/SU & Partners + ProductCode: '{60676B20-6CAD-440F-835F-9BE8AD7C067D}_is1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/gama-platform/gama/releases/download/2025.06.4/GAMA_2025.06.4_Windows_with_JDK.exe + InstallerSha256: 49CB38F1DD67A67C441E04FF75968777D853A70E95B01F46C4A159284555D6A0 + InstallerSwitches: + Custom: /CURRENTUSER /Lang=english +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/gama-platform/gama/releases/download/2025.06.4/GAMA_2025.06.4_Windows_with_JDK.exe + InstallerSha256: 49CB38F1DD67A67C441E04FF75968777D853A70E95B01F46C4A159284555D6A0 + InstallerSwitches: + Custom: /ALLUSERS /Lang=english + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Gama' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GamaPlatform/Gama/2025.06.4/GamaPlatform.Gama.locale.en-US.yaml b/manifests/g/GamaPlatform/Gama/2025.06.4/GamaPlatform.Gama.locale.en-US.yaml new file mode 100644 index 0000000000000..d9ce15cbbe4c8 --- /dev/null +++ b/manifests/g/GamaPlatform/Gama/2025.06.4/GamaPlatform.Gama.locale.en-US.yaml @@ -0,0 +1,168 @@ +# 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: GamaPlatform.Gama +PackageVersion: 2025.06.4 +PackageLocale: en-US +Publisher: Gama-platform +PublisherUrl: https://gama-platform.org/ +PublisherSupportUrl: https://github.com/gama-platform/gama/issues +Author: Gama-platform +PackageName: Gama +PackageUrl: https://github.com/gama-platform/gama +License: GPL-3.0 +LicenseUrl: https://github.com/gama-platform/gama/blob/HEAD/LICENSE +Copyright: Gama-platform +ShortDescription: GAMA is an easy-to-use open source modeling and simulation environment for creating spatially explicit agent-based simulations. +Description: 'GAMA is an easy-to-use open source modeling and simulation environment for creating spatially explicit agent-based simulations. It has been developed to be used in any application domain: urban mobility, climate change adaptation, epidemiology, disaster evacuation strategy design, urban planning, are some of the application domains in which GAMA users are involved and for which they create models.' +Moniker: Gama +Tags: +- agent-based modelling +- gama +- modelling +- open-source +- release +- simulation +ReleaseNotes: |- + Release for GAMA 2025.06.4. + Published on 03/07/25 05:51. + What's Changed + - Remove ImgBot from repository by @RoiArthurB in #158 + - Code cleanup by @lesquoyb in #133 + - Improve library models by @lesquoyb in #173 + - Fixes #166 by @lesquoyb in #177 + - Cleans a bit the Serialisation code by removing duplicates by @AlexisDrogoul in #200 + - Fixing gama compilation with update SWT 2024 06 & JDK 21 by @RoiArthurB in #213 + - Fixes #209 by @lesquoyb in #216 + - First draft for a buffered writing of files by @lesquoyb in #183 + - Opengl lights by @lesquoyb in #212 + - fixes #214 by @lesquoyb in #215 + - Fixes #189 by @lesquoyb in #211 + - Make the try statement catch all exception instead of just GamaRuntimeException by @lesquoyb in #223 + - fix #224 on doc (log-normal operator) by @benoitgaudou in #227 + - Fix for #225 by @lesquoyb in #228 + - Fixes #160 for windows by @lesquoyb in #231 + - Fix documentation issues by @benoitgaudou in #230 + - Fixes 190 by @lesquoyb in #234 + - Improve models from library by @lesquoyb in #235 + - Fix documentation generation workflow by @RoiArthurB in #236 + - Improves lists.experiment by @lesquoyb in #241 + - Rename gaml files into experiment ones by @lesquoyb in #243 + - Fixes restore documentation + various serialization models improvements by @lesquoyb in #247 + - [MACOS] Resolve embedded JDK with simlink by @RoiArthurB in #250 + - [PRODUCT] Enforce usage of JDK 21 in headless and OSGI by @RoiArthurB in #248 + - adresses #255 - give a default value for currentLocation by @ptaillandier in #256 + - Miscellaneous improvements of the models packaged with gama by @lesquoyb in #251 + - Cleanup of gama-server by @lesquoyb in #226 + - Improves file buffering by @lesquoyb in #275 + - [BATCH] clean sensitivity analysis method in exploration by @chapuisk in #186 + - adresses issue #271 - optimized "every" by @ptaillandier in #272 + - Fix for #268 by @AlexisDrogoul in #269 + - Enable "generate release note" - Fix #249 by @RoiArthurB in #261 + - Improvements for the image layer by @lesquoyb in #263 + - Fixes #288 by @lesquoyb in #289 + - Addition of concatenate operator by @AlexisDrogoul in #292 + - Update SimulationRunner by @AlexisDrogoul in #295 + - Fixes exception when flushing all file buffers by @lesquoyb in #299 + - Fixes #281 by @lesquoyb in #300 + - Fix for #176 by adding a % for brightening images by @AlexisDrogoul in #311 + - A better handling of old workspaces (fixes #224) by @AlexisDrogoul in #310 + - Addresses bugs in physics plugin : #265 #242 by @AlexisDrogoul in #308 + - Restores backward direction in experiments and saving/reading of agents in files by @AlexisDrogoul in #306 + - Emits a warning when a parameter refers to an experiment variable in … by @AlexisDrogoul in #304 + - Proposal to remove the trim bar to gain vertical space by @AlexisDrogoul in #319 + - Displays the examples in the usages (popup doc, cf. #260) by @AlexisDrogoul in #307 + - General improvements of the benchmark statement by @lesquoyb in #322 + - Addresses #320: updates the status bar when simulations are run in parallel in batch by @AlexisDrogoul in #321 + - Addresses Status Display and parameters errors: #298 #285 #286 #273 #287 #162 by @AlexisDrogoul in #302 + - Addresses #187 by correctly outputting a matrix from an asc file by @AlexisDrogoul in #305 + - Addresses #257 by @AlexisDrogoul in #303 + - Fixes #301 + some documentation by @lesquoyb in #333 + - Clean the buffering strategies code and provide example models by @lesquoyb in #335 + - [BATCH] fix warning in model library and clarify use of batch facets for beta distribution by @chapuisk in #296 + - Add some safeguards to prevent infinite looping in AExplorationAlgorithm by @AlexisDrogoul in #345 + - Displays+Monitors syncing issues (#341 + #339) by @AlexisDrogoul in #343 + - [Exploration] Minor fixes in the facets of exploration methods by @lesquoyb in #348 + - Update FileUtils.java by @AlexisDrogoul in #364 + - Disables the lock when the camera is dynamic by @AlexisDrogoul in #353 + - Removes the option to zip or not the binary serialisation format by @AlexisDrogoul in #356 + - Miscellaneous fixes for headless legacy by @lesquoyb in #362 + - Solves #367 by reimplementing morris sampling method following SALib implementation to avoid parameters getting out of bounds by @chapuisk in #369 + - add an operator to send a GAMAimage to websocket using base64 by @ptaillandier in #365 + - Implements some tricks to have correct sizes for the buttons by @AlexisDrogoul in #372 + - Provides a fix for #379 by @AlexisDrogoul in #380 + - Fixes a potential NPE in network when closing an experiment by @lesquoyb in #392 + - Prevents a potential NPE when reading messages by @lesquoyb in #396 + - Implementation of #402 +species informations by @Jarakoto in #404 + - Upgrades JTS 1.19 tp 1.20 by @AlexisDrogoul in #415 + - Replace Batik with JSVG by @AlexisDrogoul in #413 + - Various improvements for the log operators by @lesquoyb in #401 + - Fixes the color of text in a dark console by @AlexisDrogoul in #373 + - Fix #425 by shortening test names by @AlexisDrogoul in #429 + - Add the missing operator computing the difference between two integers by @AlexisDrogoul in #430 + - Replaces JFreeChart 1.5.4 by JFreeChart 1.5.5 by @AlexisDrogoul in #420 + - [WIP] Bump to eclipse 2025 03 by @RoiArthurB in #414 + - Fixes #330 + #337 by @AlexisDrogoul in #374 + - Fix for #4 by @AlexisDrogoul in #409 + - Corrects the position of the light cone in LightHelper by @AlexisDrogoul in #312 + - Fixes #391 : Add a preference to surround highlighted text and the mechanism in GAML Editor by @AlexisDrogoul in #439 + - Adds a constant to get the current platform for #443 by @lesquoyb in #451 + - Fixes typos in NetworkSkill.java by @lesquoyb in #453 + - [bump eclipse] Fixes infinite loop and crash in windows by @lesquoyb in #456 + - Additions of listeners to GAMA server command processing by @AlexisDrogoul in #440 + - Fixes #454 - GML importation (add missing dependency) by @ptaillandier in #455 + - Fixes #447: flags invocations of actions w/o any arguments (and no defaults) by @AlexisDrogoul in #448 + - [FIELD] Bugfix #460 - remove the skip of first band to render RGB from field bands by @chapuisk in #461 + - Creation of a new status control for feedback on activities, processes, background jobs by @AlexisDrogoul in #337 + - Fixes problems with container of unknown content types by @AlexisDrogoul in #435 + - fixes #470 - improve the way, relation are taken into account (OSM data) by @ptaillandier in #471 + - Fixes #467 and other bugs related to escaping/unescaping strings by @lesquoyb in #480 + - [gaml] Adds the to_absolute_file operator by @lesquoyb in #482 + - Compile jdk21 run jdk23 by @RoiArthurB in #569 + - fixes #573 - allows to verify the finish condition when the user fills a field value by @ptaillandier in #580 + - [network] various improvements for network skill by @lesquoyb in #496 + - fix #577 by @hqnghi88 in #583 + - Fix #526 using isAssignableFrom but not sure it is right by @chapuisk in #527 + - In incVersion/setVersion, replace release by new - added volatile by @ptaillandier in #521 + - fixes #555 - For casting of string to a point with a wrong format, use float casting by @ptaillandier in #584 + - Fix eclipse config by @RoiArthurB in #593 + - Update GamaPreferences to solve #581 by @AlexisDrogoul in #602 + - Update NetworkSkill.java by @AlexisDrogoul in #626 + - Pr gen doc4 llm & fix several documentation issues by @benoitgaudou in #616 + - Tries to filter out the imported errors and fix #531 by @AlexisDrogoul in #608 + - Fix issue 605 by @RoiArthurB in #615 + - [GS GUI] Prevent loading new experiment if state is NOTREADY by @RoiArthurB in #623 + - [GS] explicitly parse values into json before sending them back in expression command by @lesquoyb in #621 + - Add a new operator to test if two geometries equal by @ptaillandier in #636 + - Adds the possibility to browse files in the global search by @AlexisDrogoul in #625 + - Moves the server to GAMA directly (instead of PlatformAgent) by @AlexisDrogoul in #634 + - Adding hyperlinks and html in parameters view by @AlexisDrogoul in #645 + - Solving the "Imported By..." issues in #542 by @AlexisDrogoul in #630 + - Rework gama-headless{.sh,.bat} by @RoiArthurB in #579 + - Fix p2 generation by @RoiArthurB in #662 + - Solving problems of synchronisation of displays (2D and 3D) by @AlexisDrogoul in #639 + - Fixes disappearing icons on Windows by @AlexisDrogoul in #663 + - [gaml] improves the 'debug' action of agents by @lesquoyb in #682 + - Windows zoom focus by @AlexisDrogoul in #690 + - Fix #650 - add the possibility to have "nan" no data value in asc files by @ptaillandier in #692 + - Improves the operation on iterators + various aspects of GAML by @AlexisDrogoul in #699 + - [GS] Multiple fixes and improvements for gama-server by @lesquoyb in #691 + New Contributors + - @RoiArthurB made their first contribution in #158 + - @lesquoyb made their first contribution in #133 + - @benoitgaudou made their first contribution in #227 + - @ptaillandier made their first contribution in #256 + - @chapuisk made their first contribution in #186 + - @Jarakoto made their first contribution in #404 + - @hqnghi88 made their first contribution in #583 + Full Changelog: 1.9.3...2025.06.4 +ReleaseNotesUrl: https://github.com/gama-platform/gama/releases/tag/2025.06.4 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://gama-platform.org/wiki/Home +- DocumentLabel: Tutorials + DocumentUrl: https://gama-platform.org/wiki/Tutorials +- DocumentLabel: User resources + DocumentUrl: https://gama-platform.org/wiki/category/resources +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GamaPlatform/Gama/2025.06.4/GamaPlatform.Gama.yaml b/manifests/g/GamaPlatform/Gama/2025.06.4/GamaPlatform.Gama.yaml new file mode 100644 index 0000000000000..daabf37c3ebfd --- /dev/null +++ b/manifests/g/GamaPlatform/Gama/2025.06.4/GamaPlatform.Gama.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: GamaPlatform.Gama +PackageVersion: 2025.06.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Game1024/OpenSpeedy/1.7.4/Game1024.OpenSpeedy.installer.yaml b/manifests/g/Game1024/OpenSpeedy/1.7.4/Game1024.OpenSpeedy.installer.yaml new file mode 100644 index 0000000000000..b65dfe7b56381 --- /dev/null +++ b/manifests/g/Game1024/OpenSpeedy/1.7.4/Game1024.OpenSpeedy.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Game1024.OpenSpeedy +PackageVersion: 1.7.4 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: OpenSpeedy.exe + PortableCommandAlias: openspeedy +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/game1024/OpenSpeedy/releases/download/v1.7.4/OpenSpeedy-v1.7.4.zip + InstallerSha256: 51C907254C3B2F2ABC81C2268CF56DC71C754CAE9D8452EF3B278AA480ECE1C3 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-23 diff --git a/manifests/g/Game1024/OpenSpeedy/1.7.4/Game1024.OpenSpeedy.locale.en-US.yaml b/manifests/g/Game1024/OpenSpeedy/1.7.4/Game1024.OpenSpeedy.locale.en-US.yaml new file mode 100644 index 0000000000000..31beaa1b02263 --- /dev/null +++ b/manifests/g/Game1024/OpenSpeedy/1.7.4/Game1024.OpenSpeedy.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: Game1024.OpenSpeedy +PackageVersion: 1.7.4 +PackageLocale: en-US +Publisher: Game1024 +PublisherUrl: https://github.com/game1024 +PublisherSupportUrl: https://github.com/game1024/OpenSpeedy/issues +PackageName: OpenSpeedy +PackageUrl: https://github.com/game1024/OpenSpeedy +License: GPL-3.0 +ShortDescription: "\U0001F3AE An open-source game speed modifier.[一款开源的游戏变速器]" +Tags: +- cplusplus +- gamedev +- gamemod +- pc +- qt +- speed-engine +- toolkit +- windows +ReleaseNotesUrl: https://github.com/game1024/OpenSpeedy/releases/tag/v1.7.4 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/game1024/OpenSpeedy/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/Game1024/OpenSpeedy/1.7.4/Game1024.OpenSpeedy.yaml b/manifests/g/Game1024/OpenSpeedy/1.7.4/Game1024.OpenSpeedy.yaml new file mode 100644 index 0000000000000..4fc5528530f34 --- /dev/null +++ b/manifests/g/Game1024/OpenSpeedy/1.7.4/Game1024.OpenSpeedy.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: Game1024.OpenSpeedy +PackageVersion: 1.7.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/Game1024/OpenSpeedy/1.7.5/Game1024.OpenSpeedy.installer.yaml b/manifests/g/Game1024/OpenSpeedy/1.7.5/Game1024.OpenSpeedy.installer.yaml new file mode 100644 index 0000000000000..99738e434c06a --- /dev/null +++ b/manifests/g/Game1024/OpenSpeedy/1.7.5/Game1024.OpenSpeedy.installer.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Game1024.OpenSpeedy +PackageVersion: 1.7.5 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: OpenSpeedy.exe + PortableCommandAlias: openspeedy +ReleaseDate: 2025-06-30 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: neutral + InstallerUrl: https://github.com/game1024/OpenSpeedy/releases/download/v1.7.5/OpenSpeedy-v1.7.5.zip + InstallerSha256: CBCEB40FA174FBBFEAC768DD3AFA850826F99C797DDB4F1EB06CD5EAC3A6F7CE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Game1024/OpenSpeedy/1.7.5/Game1024.OpenSpeedy.locale.en-US.yaml b/manifests/g/Game1024/OpenSpeedy/1.7.5/Game1024.OpenSpeedy.locale.en-US.yaml new file mode 100644 index 0000000000000..705d0011238bc --- /dev/null +++ b/manifests/g/Game1024/OpenSpeedy/1.7.5/Game1024.OpenSpeedy.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Game1024.OpenSpeedy +PackageVersion: 1.7.5 +PackageLocale: en-US +Publisher: Game1024 +PublisherUrl: https://github.com/game1024 +PublisherSupportUrl: https://github.com/game1024/OpenSpeedy/issues +PackageName: OpenSpeedy +PackageUrl: https://github.com/game1024/OpenSpeedy +License: GPL-3.0 +LicenseUrl: https://github.com/game1024/OpenSpeedy/blob/HEAD/LICENSE +ShortDescription: 🎮 An open-source game speed modifier.[一款开源的游戏变速器] +Tags: +- cplusplus +- gamedev +- gamemod +- pc +- qt +- speed-engine +- toolkit +- windows +ReleaseNotes: |- + 新增 + - 进程名称不区分大小写排序 #126 + - 添加对GetMessageTime、timeSetEvent的函数的HOOK + - 将SetProcessStatus设置的共享内存以PID粒度区分 + - 添̶加̶进̶程̶注̶入̶是̶否̶成̶功̶的̶提̶示̶ + - 添加HelloGithub徽章展示 + - 添加Wiki:加速问题排查步骤、垂直同步、管理员进程权限 + - winget方式安装 + - 修复多显示器,窗口出现在显示器区域外的问题 +ReleaseNotesUrl: https://github.com/game1024/OpenSpeedy/releases/tag/v1.7.5 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/game1024/OpenSpeedy/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Game1024/OpenSpeedy/1.7.5/Game1024.OpenSpeedy.yaml b/manifests/g/Game1024/OpenSpeedy/1.7.5/Game1024.OpenSpeedy.yaml new file mode 100644 index 0000000000000..5392f48536f62 --- /dev/null +++ b/manifests/g/Game1024/OpenSpeedy/1.7.5/Game1024.OpenSpeedy.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: Game1024.OpenSpeedy +PackageVersion: 1.7.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GameSir/GameSirConnect/1.5.6/GameSir.GameSirConnect.installer.yaml b/manifests/g/GameSir/GameSirConnect/1.5.6/GameSir.GameSirConnect.installer.yaml new file mode 100644 index 0000000000000..91761c82a75bb --- /dev/null +++ b/manifests/g/GameSir/GameSirConnect/1.5.6/GameSir.GameSirConnect.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: GameSir.GameSirConnect +PackageVersion: 1.5.6 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +ProductCode: 1796fd17-f3e3-54e3-87c2-6726acaeef5f +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://xjdl.bigeyes.com/download/GameSir-Connect-Setup-1.5.6.exe + InstallerSha256: 04CD6C4F477D1B8F7DAA358266B1B88566A22C82324EFAB99B3791F48DF838AB + InstallerSwitches: + Custom: /currentuser +- Architecture: x86 + Scope: machine + InstallerUrl: https://xjdl.bigeyes.com/download/GameSir-Connect-Setup-1.5.6.exe + InstallerSha256: 04CD6C4F477D1B8F7DAA358266B1B88566A22C82324EFAB99B3791F48DF838AB + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GameSir/GameSirConnect/1.5.6/GameSir.GameSirConnect.locale.en-US.yaml b/manifests/g/GameSir/GameSirConnect/1.5.6/GameSir.GameSirConnect.locale.en-US.yaml new file mode 100644 index 0000000000000..9b7d20008702e --- /dev/null +++ b/manifests/g/GameSir/GameSirConnect/1.5.6/GameSir.GameSirConnect.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: GameSir.GameSirConnect +PackageVersion: 1.5.6 +PackageLocale: en-US +Publisher: Guangzhou Chicken Run Network Technology Co., Ltd +PublisherUrl: https://www.gamesir.hk/ +PublisherSupportUrl: https://www.gamesir.hk/pages/support +PrivacyUrl: https://www.gamesir.hk/policies/privacy-policy +Author: Guangzhou Chicken Run Network Technology Co., Ltd. +PackageName: GameSir Connect +License: Proprietary +LicenseUrl: https://www.gamesir.hk/policies/terms-of-service +Copyright: Copyright © 2024 www.gamesir.hk +ShortDescription: The companion software for GameSir Cyclone 2 and T3 Pro controllers. +Tags: +- controller +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GameSir/GameSirConnect/1.5.6/GameSir.GameSirConnect.locale.zh-CN.yaml b/manifests/g/GameSir/GameSirConnect/1.5.6/GameSir.GameSirConnect.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b3ee08b15d5f4 --- /dev/null +++ b/manifests/g/GameSir/GameSirConnect/1.5.6/GameSir.GameSirConnect.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: GameSir.GameSirConnect +PackageVersion: 1.5.6 +PackageLocale: zh-CN +Publisher: Guangzhou Chicken Run Network Technology Co., Ltd +PublisherUrl: https://www.xiaoji.com/ +PublisherSupportUrl: https://www.xiaoji.com/services/ +Author: 广州小鸡快跑网络科技有限公司 +PackageName: GameSir Connect +PackageUrl: https://www.xiaoji.com/download/ +License: 专有软件 +Copyright: Copyright 2024 All Rights Reserved. +ShortDescription: 适用于小鸡风行者 2/九尾狐手柄的配套软件。 +Tags: +- 手柄 +- 控制器 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GameSir/GameSirConnect/1.5.6/GameSir.GameSirConnect.yaml b/manifests/g/GameSir/GameSirConnect/1.5.6/GameSir.GameSirConnect.yaml new file mode 100644 index 0000000000000..c7df4ef386978 --- /dev/null +++ b/manifests/g/GameSir/GameSirConnect/1.5.6/GameSir.GameSirConnect.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: GameSir.GameSirConnect +PackageVersion: 1.5.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GardenGnome/Pano2VR/7.1.10/GardenGnome.Pano2VR.installer.yaml b/manifests/g/GardenGnome/Pano2VR/7.1.10/GardenGnome.Pano2VR.installer.yaml new file mode 100644 index 0000000000000..803fe29d53495 --- /dev/null +++ b/manifests/g/GardenGnome/Pano2VR/7.1.10/GardenGnome.Pano2VR.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: GardenGnome.Pano2VR +PackageVersion: 7.1.10 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +FileExtensions: +- ggpkg +- ggsk +- ggskc +- ggt +- p2vr +ProductCode: Pano2VR +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://ggnome.com/download/pano2vr/pano2vr_install64_7_1_10.exe + InstallerSha256: CE0A969886A6D2723E0CC7DB69591DF9AA1B9C31F8A6A4C91E7CCD4525C3979A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GardenGnome/Pano2VR/7.1.10/GardenGnome.Pano2VR.locale.en-US.yaml b/manifests/g/GardenGnome/Pano2VR/7.1.10/GardenGnome.Pano2VR.locale.en-US.yaml new file mode 100644 index 0000000000000..c6544cfca049b --- /dev/null +++ b/manifests/g/GardenGnome/Pano2VR/7.1.10/GardenGnome.Pano2VR.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: GardenGnome.Pano2VR +PackageVersion: 7.1.10 +PackageLocale: en-US +Publisher: Garden Gnome GmbH +PublisherUrl: https://ggnome.com/ +PublisherSupportUrl: https://forum.ggnome.com/ +PrivacyUrl: https://ggnome.com/privacy-policy/ +Author: Garden Gnome GmbH +PackageName: Pano2VR - Garden Gnome Software +PackageUrl: https://ggnome.com/pano2vr/ +License: Proprietary +LicenseUrl: https://ggnome.com/terms/ +Copyright: © 2007-2025 Garden Gnome GmbH +CopyrightUrl: https://ggnome.com/terms/ +ShortDescription: A powerful virtual tour software that converts your panoramic or 360° photos and videos into interactive experiences. +Description: |- + Pano2VR is a powerful virtual tour software that converts your panoramic or 360° photos and videos into interactive experiences. + Whether you’re working on a single gigapixel panorama or a virtual tour with thousands of scenes, Pano2VR can help you create an immersive experience for any modern browser. Finished projects can be seamlessly integrated with existing websites and viewed on desktops and mobile or VR devices. +Tags: +- panorama +- virtual-reality +- virtual-tour +- vr +ReleaseNotes: |- + This is a bugfix release for Pano2VR 7.1 + - Player Click action not activating on touch devices + - Node Image set to Target View not displaying in WebVR output + - Stereo videopanoramas not displaying correctly + - Unable to place point hotspots on extreme edges of flat panoramas + Find out more in our blog post. +ReleaseNotesUrl: https://ggnome.com/2025/07/pano2vr-7-1-10-and-tutorials/ +PurchaseUrl: https://ggnome.com/pano2vr/#buy +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://ggnome.com/doc/pano2vr/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GardenGnome/Pano2VR/7.1.10/GardenGnome.Pano2VR.locale.zh-CN.yaml b/manifests/g/GardenGnome/Pano2VR/7.1.10/GardenGnome.Pano2VR.locale.zh-CN.yaml new file mode 100644 index 0000000000000..dd34586259709 --- /dev/null +++ b/manifests/g/GardenGnome/Pano2VR/7.1.10/GardenGnome.Pano2VR.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: GardenGnome.Pano2VR +PackageVersion: 7.1.10 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 一款功能强大的虚拟漫游软件,将您的全景或 360° 照片与视频转化为互动式体验。 +Description: |- + Pano2VR 是一款功能强大的虚拟漫游软件,将您的全景或 360° 照片与视频打造成互动式体验。 + 无论您是在处理单张十亿像素级全景图,还是构建包含数千场景的虚拟导览,Pano2VR 都能帮助您为任何现代浏览器打造沉浸式体验。成品项目可无缝集成至现有网站,并通过电脑、移动设备或 VR 设备进行浏览。 +Tags: +- vr +- 全景 +- 全景漫游 +- 虚拟漫游 +- 虚拟现实 +ReleaseNotesUrl: https://ggnome.com/2025/07/pano2vr-7-1-10-and-tutorials/ +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ggnome.com/doc/pano2vr/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GardenGnome/Pano2VR/7.1.10/GardenGnome.Pano2VR.yaml b/manifests/g/GardenGnome/Pano2VR/7.1.10/GardenGnome.Pano2VR.yaml new file mode 100644 index 0000000000000..cfb4adc530787 --- /dev/null +++ b/manifests/g/GardenGnome/Pano2VR/7.1.10/GardenGnome.Pano2VR.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: GardenGnome.Pano2VR +PackageVersion: 7.1.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Geany/Geany/2.1.0/Geany.Geany.installer.yaml b/manifests/g/Geany/Geany/2.1.0/Geany.Geany.installer.yaml new file mode 100644 index 0000000000000..943c4e8020656 --- /dev/null +++ b/manifests/g/Geany/Geany/2.1.0/Geany.Geany.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: Geany.Geany +PackageVersion: 2.1.0 +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/geany/geany/releases/download/2.1.0/geany-2.1_setup_unsigned.exe + InstallerSha256: E7CFFCFE86344FCD87DC3BC911E446464A844444A3DC946A99DAABBD8877A65A +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-06 diff --git a/manifests/g/Geany/Geany/2.1.0/Geany.Geany.locale.en-US.yaml b/manifests/g/Geany/Geany/2.1.0/Geany.Geany.locale.en-US.yaml new file mode 100644 index 0000000000000..7d25bf0a50d3b --- /dev/null +++ b/manifests/g/Geany/Geany/2.1.0/Geany.Geany.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Geany.Geany +PackageVersion: 2.1.0 +PackageLocale: en-US +Publisher: The Geany developer team +PublisherUrl: https://www.geany.org +PublisherSupportUrl: https://github.com/geany/geany/issues +Author: The Geany developer team +PackageName: Geany +PackageUrl: https://www.geany.org +License: GPL-2.0-or-later +LicenseUrl: https://raw.githubusercontent.com/geany/geany/master/COPYING +ShortDescription: A powerful, stable and lightweight programmer's text editor that provides tons of useful features without bogging down your workflow. +Moniker: geany +Tags: +- editor +- geany +- ide +- scintilla +- text +- texteditor +ReleaseNotesUrl: https://github.com/geany/geany/releases/tag/2.1.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/geany/geany/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/Geany/Geany/2.1.0/Geany.Geany.yaml b/manifests/g/Geany/Geany/2.1.0/Geany.Geany.yaml new file mode 100644 index 0000000000000..cb1ce56533a52 --- /dev/null +++ b/manifests/g/Geany/Geany/2.1.0/Geany.Geany.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: Geany.Geany +PackageVersion: 2.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/Geeks3D/FurMark/1/1.39.2.0/Geeks3D.FurMark.1.installer.yaml b/manifests/g/Geeks3D/FurMark/1/1.39.2.0/Geeks3D.FurMark.1.installer.yaml new file mode 100644 index 0000000000000..4cceb5596e078 --- /dev/null +++ b/manifests/g/Geeks3D/FurMark/1/1.39.2.0/Geeks3D.FurMark.1.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: Geeks3D.FurMark.1 +PackageVersion: 1.39.2.0 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +ProductCode: '{2397CAD4-2263-4CD0-96BE-E43A980B9C9A}_is1' +ReleaseDate: 2025-05-23 +AppsAndFeaturesEntries: +- ProductCode: '{2397CAD4-2263-4CD0-96BE-E43A980B9C9A}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Geeks3D\Benchmarks\FurMark' +Installers: +- Architecture: x86 + InstallerUrl: https://geeks3d.com/downloads/2025/fm1/FurMark_1.39.2.0_Setup.exe + InstallerSha256: B94B06CDAA51BEC4B3231B596207913F234A2466B57E45918659A47E42900EC3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Geeks3D/FurMark/1/1.39.2.0/Geeks3D.FurMark.1.locale.en-US.yaml b/manifests/g/Geeks3D/FurMark/1/1.39.2.0/Geeks3D.FurMark.1.locale.en-US.yaml new file mode 100644 index 0000000000000..b782c2e635eb2 --- /dev/null +++ b/manifests/g/Geeks3D/FurMark/1/1.39.2.0/Geeks3D.FurMark.1.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Geeks3D.FurMark.1 +PackageVersion: 1.39.2.0 +PackageLocale: en-US +Publisher: Geeks3D +PublisherUrl: https://geeks3d.com/ +PublisherSupportUrl: https://www.geeks3d.com/forums/index.php +PackageName: Geeks3D FurMark +PackageUrl: https://geeks3d.com/furmark/downloads/ +License: Proprietary +Copyright: (C) 2007-2025 Geeks3D.com +ShortDescription: | + FurMark is a lightweight but very intensive graphics card / GPU stress test on Windows platform. +Moniker: furmark1 +InstallationNotes: |- + FurMark 2 is currently available for Windows and Linux (OpenGL and Vulkan). + Install via package identifier `Geeks3D.FurMark.2`. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Geeks3D/FurMark/1/1.39.2.0/Geeks3D.FurMark.1.locale.zh-CN.yaml b/manifests/g/Geeks3D/FurMark/1/1.39.2.0/Geeks3D.FurMark.1.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3a9285d000baf --- /dev/null +++ b/manifests/g/Geeks3D/FurMark/1/1.39.2.0/Geeks3D.FurMark.1.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Geeks3D.FurMark.1 +PackageVersion: 1.39.2.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: FurMark 是 Windows 平台上一款轻量级但非常密集的显卡/GPU压力测试工具。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Geeks3D/FurMark/1/1.39.2.0/Geeks3D.FurMark.1.yaml b/manifests/g/Geeks3D/FurMark/1/1.39.2.0/Geeks3D.FurMark.1.yaml new file mode 100644 index 0000000000000..73f6b8d57b610 --- /dev/null +++ b/manifests/g/Geeks3D/FurMark/1/1.39.2.0/Geeks3D.FurMark.1.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: Geeks3D.FurMark.1 +PackageVersion: 1.39.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Geeks3D/FurMark/2/2.8.2.0/Geeks3D.FurMark.2.installer.yaml b/manifests/g/Geeks3D/FurMark/2/2.8.2.0/Geeks3D.FurMark.2.installer.yaml new file mode 100644 index 0000000000000..64e555d34bd02 --- /dev/null +++ b/manifests/g/Geeks3D/FurMark/2/2.8.2.0/Geeks3D.FurMark.2.installer.yaml @@ -0,0 +1,48 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Geeks3D.FurMark.2 +PackageVersion: 2.8.2.0 +InstallModes: +- interactive +- silent +- silentWithProgress +ReleaseDate: 2025-06-02 +Installers: +- Architecture: x86 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: FurMark_win32/FurMark_GUI.exe + InstallerUrl: https://gpumagick.com/downloads/files/2025/fm2/FurMark_2.8.2.0_win32.zip + InstallerSha256: AD4D4FF09D2FA278C52FFA6A29E413B8F3CD794222258EEE33E7B5252E9E22FF + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 + ArchiveBinariesDependOnPath: true +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: FurMark_win64\FurMark_GUI.exe + InstallerUrl: https://geeks3d.com/downloads/2025/fm2/FurMark_2.8.2.0_win64.zip + InstallerSha256: 5D6F65772CF1B4FA0654F047BEFFED0C2B5D5DC1E8BACFEB9FDCA4AE05B172E9 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + ArchiveBinariesDependOnPath: true +- InstallerLocale: en-US + Architecture: x64 + InstallerType: inno + Scope: machine + InstallerUrl: https://gpumagick.com/downloads/files/2025/fm2/FurMark_2.8.2.0_Win64_Setup.exe + InstallerSha256: 6FBF77DE9AE03FCCE628BF46264D0D2B5F51FBB83CFAC4356A7BFA922ADB82F0 + UpgradeBehavior: install + ProductCode: '{2397CAD4-2263-4CD0-96BE-E43A980B9C9A}_is1' + AppsAndFeaturesEntries: + - ProductCode: '{2397CAD4-2263-4CD0-96BE-E43A980B9C9A}_is1' + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Geeks3D\FurMark2_x64' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Geeks3D/FurMark/2/2.8.2.0/Geeks3D.FurMark.2.locale.en-US.yaml b/manifests/g/Geeks3D/FurMark/2/2.8.2.0/Geeks3D.FurMark.2.locale.en-US.yaml new file mode 100644 index 0000000000000..c402e38bd4c7a --- /dev/null +++ b/manifests/g/Geeks3D/FurMark/2/2.8.2.0/Geeks3D.FurMark.2.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: Geeks3D.FurMark.2 +PackageVersion: 2.8.2.0 +PackageLocale: en-US +Publisher: Geeks3D +PublisherUrl: https://geeks3d.com/ +PublisherSupportUrl: https://geeks3d.com/forums/ +PackageName: Geeks3D FurMark 2 +PackageUrl: https://geeks3d.com/furmark/downloads/ +License: Proprietary +Copyright: (C) 2007-2025 Geeks3D +ShortDescription: | + FurMark 2 (successor of the venerable FurMark 1), is a lightweight and very intensive graphics card / GPU stress test. It's also a handy OpenGL and Vulkan graphics benchmark. +Moniker: furmark2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Geeks3D/FurMark/2/2.8.2.0/Geeks3D.FurMark.2.yaml b/manifests/g/Geeks3D/FurMark/2/2.8.2.0/Geeks3D.FurMark.2.yaml new file mode 100644 index 0000000000000..d87a751397421 --- /dev/null +++ b/manifests/g/Geeks3D/FurMark/2/2.8.2.0/Geeks3D.FurMark.2.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: Geeks3D.FurMark.2 +PackageVersion: 2.8.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Genesys/GenesysCloud/2.43.829.0/Genesys.GenesysCloud.installer.yaml b/manifests/g/Genesys/GenesysCloud/2.43.829.0/Genesys.GenesysCloud.installer.yaml new file mode 100644 index 0000000000000..29d1aa4fc5b70 --- /dev/null +++ b/manifests/g/Genesys/GenesysCloud/2.43.829.0/Genesys.GenesysCloud.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: Genesys.GenesysCloud +PackageVersion: 2.43.829.0 +Scope: machine +UpgradeBehavior: install +Protocols: +- gcvideo +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://app.mypurecloud.com/directory-windows/build-assets/2.43.829-132/genesys-cloud-windows-2.43.829.exe + InstallerSha256: A8A6F5BB2F6462ADC6065ED5DDC7291704C4FC104220D9F46E4D941D7234A667 + ProductCode: '{59AE0A5F-CAF5-45CE-ACCA-EF547BD2178F}' + AppsAndFeaturesEntries: + - UpgradeCode: '{1FA949E8-10C8-4CF2-9A6E-47515E0442E9}' +- Architecture: x86 + InstallerType: wix + InstallerUrl: https://app.mypurecloud.com/directory-windows/build-assets/2.43.829-132/genesys-cloud-windows-2.43.829.msi + InstallerSha256: 44AD9671A149A5416C83E84202E6158842BF0113BB2F55CABCA548830DB136EC + InstallerSwitches: + InstallLocation: INSTALLDIR="" + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 + ProductCode: '{0C4AC15B-EF02-4450-B04B-84E88AF1DC33}' + AppsAndFeaturesEntries: + - UpgradeCode: '{A0E8C487-C337-441C-83AF-90364DA4B793}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Genesys\GenesysCloud' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Genesys/GenesysCloud/2.43.829.0/Genesys.GenesysCloud.locale.en-US.yaml b/manifests/g/Genesys/GenesysCloud/2.43.829.0/Genesys.GenesysCloud.locale.en-US.yaml new file mode 100644 index 0000000000000..3a738cd0ff44c --- /dev/null +++ b/manifests/g/Genesys/GenesysCloud/2.43.829.0/Genesys.GenesysCloud.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: Genesys.GenesysCloud +PackageVersion: 2.43.829.0 +PackageLocale: en-US +Publisher: Genesys Inc. +PublisherUrl: https://www.genesys.com/ +PublisherSupportUrl: https://help.mypurecloud.com/ +PrivacyUrl: https://www.genesys.com/company/legal/privacy-policy +Author: Genesys Cloud Services, Inc. +PackageName: GenesysCloud +PackageUrl: https://help.mypurecloud.com/articles/desktop-app/ +License: Proprietary +LicenseUrl: https://www.genesys.com/company/legal/terms-of-use +Copyright: Copyright © 2012-2025 Genesys +CopyrightUrl: https://www.genesys.com/company/legal/terms-of-use +ShortDescription: Open Genesys Cloud automatically at startup and run it in the background. +Description: |- + The Genesys Cloud desktop app is available for Windows and Mac: + - Use a dedicated application. Run Genesys Cloud as a stand-alone program, and keep it separate from your browser windows and tabs. + - Start Genesys Cloud automatically. Automatically open Genesys Cloud when your computer starts up, and avoid missing important communications. + - Run in silent mode. Close the window but continue to run Genesys Cloud in the background, allowing you to continue receiving chats and notifications. + - Update automatically. The desktop app notifies you when a newer version is available and prompts you to refresh or install it. +ReleaseNotes: |- + - Updated to Chromium 137.0.7151.69 + - Updated to .NET 4.8 + - Fixed a crash when switching between desktop and tablet mode. + - Fixed an issue with authentication involving popup windows. + - Fixed an alignment issue when switching to full-screen mode in a Genesys Cloud video call. + - Fixed an issue with the installer not overwriting some files causing a white screen issue on launch. + Note for administrators using the convenience MSI installer file. The prerequisites for the Genesys Cloud Windows application changed with this update. These prerequisites must be installed before the application is updated. .NET Framework 4.8 and Microsoft Visual C++ redistributable runtime version of at least 14.38.33135 must be installed. These are installed automatically, if necessary, by the EXE installer provided but the MSI file doesn’t have this ability. +ReleaseNotesUrl: https://help.mypurecloud.com/release-notes-home/genesys-cloud-for-windows-desktop-app-release-notes/ +PurchaseUrl: https://www.genesys.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Genesys/GenesysCloud/2.43.829.0/Genesys.GenesysCloud.locale.zh-CN.yaml b/manifests/g/Genesys/GenesysCloud/2.43.829.0/Genesys.GenesysCloud.locale.zh-CN.yaml new file mode 100644 index 0000000000000..bbfd326f5f618 --- /dev/null +++ b/manifests/g/Genesys/GenesysCloud/2.43.829.0/Genesys.GenesysCloud.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: Genesys.GenesysCloud +PackageVersion: 2.43.829.0 +PackageLocale: zh-CN +License: 专有软件 +Copyright: 版权所有 © 2012-2025 Genesys +ShortDescription: 在开机时自动打开 Genesys Cloud 并在后台运行。 +Description: |- + Genesys Cloud 桌面应用支持 Windows 和 Mac 系统: + - 专属应用。将 Genesys Cloud 作为独立程序运行,与浏览器窗口和标签页分离。 + - 开机自启。电脑开机时自动打开 Genesys Cloud,避免错过重要通讯。 + - 静默运行。关闭窗口后仍可在后台持续运行,继续接收聊天消息和通知。 + - 自动更新。当有新版本可用时,桌面应用会通知并提示您刷新或安装。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Genesys/GenesysCloud/2.43.829.0/Genesys.GenesysCloud.yaml b/manifests/g/Genesys/GenesysCloud/2.43.829.0/Genesys.GenesysCloud.yaml new file mode 100644 index 0000000000000..228499b524046 --- /dev/null +++ b/manifests/g/Genesys/GenesysCloud/2.43.829.0/Genesys.GenesysCloud.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: Genesys.GenesysCloud +PackageVersion: 2.43.829.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Genymobile/scrcpy/3.3.1/Genymobile.scrcpy.installer.yaml b/manifests/g/Genymobile/scrcpy/3.3.1/Genymobile.scrcpy.installer.yaml new file mode 100644 index 0000000000000..26dcfd483e62e --- /dev/null +++ b/manifests/g/Genymobile/scrcpy/3.3.1/Genymobile.scrcpy.installer.yaml @@ -0,0 +1,24 @@ +# Created with AutoPublish using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Genymobile.scrcpy +PackageVersion: 3.3.1 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2025-06-20 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: scrcpy-win32-v3.3.1/scrcpy.exe + PortableCommandAlias: scrcpy + InstallerUrl: https://github.com/Genymobile/scrcpy/releases/download/v3.3.1/scrcpy-win32-v3.3.1.zip + InstallerSha256: CCDF1B4F5D19DFE760446A107E55B0A010A00E097D46533A161499C9333A20A6 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: scrcpy-win64-v3.3.1/scrcpy.exe + PortableCommandAlias: scrcpy + InstallerUrl: https://github.com/Genymobile/scrcpy/releases/download/v3.3.1/scrcpy-win64-v3.3.1.zip + InstallerSha256: 4FCAD494772A3AE5DE9A133149F8856D2FC429B41795F7CF7C754E0C1BB6FBC0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Genymobile/scrcpy/3.3.1/Genymobile.scrcpy.locale.en-US.yaml b/manifests/g/Genymobile/scrcpy/3.3.1/Genymobile.scrcpy.locale.en-US.yaml new file mode 100644 index 0000000000000..463d5bea9d8d2 --- /dev/null +++ b/manifests/g/Genymobile/scrcpy/3.3.1/Genymobile.scrcpy.locale.en-US.yaml @@ -0,0 +1,57 @@ +# Created with AutoPublish using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Genymobile.scrcpy +PackageVersion: 3.3.1 +PackageLocale: en-US +Publisher: Genymobile +PublisherUrl: https://github.com/Genymobile +PublisherSupportUrl: https://github.com/Genymobile/scrcpy/issues +PrivacyUrl: https://www.genymotion.com/privacy-statement/ +Author: Romain Vimont +PackageName: scrcpy +PackageUrl: https://github.com/Genymobile/scrcpy +License: Apache-2.0 +LicenseUrl: https://github.com/Genymobile/scrcpy/blob/HEAD/LICENSE +Copyright: Copyright (C) 2018-2024 Genymobile, Romain Vimont +CopyrightUrl: https://github.com/Genymobile/scrcpy/blob/v3.1/LICENSE +ShortDescription: Display and control your Android device +Description: This application mirrors Android devices (video and audio) connected via USB or over TCP/IP, and allows to control the device with the keyboard and the mouse of the computer. It does not require any root access. +Moniker: scrcpy +Tags: +- adb +- android +- audio +- control +- copy +- device +- display +- mirror +- record +- screen +- tcp +- usb +- video +ReleaseNotes: |- + To receive a notification when a new release is available, click on Watch > Custom > Releases at the top. + scrcpy v3.3.1 + Changes since v3.3: + - Fix --power-off-on-close (#6146) + - Fix clipboard with --no-clipboard-autosync (#6151) + - Fix --list-apps and --list-cameras (#6165, #6167) + - Fix HID mouse support with SDL precise scrolling (#6156, #6172) + - Add horizontal scrolling support for HID mouse (#6172) + Highlights + Fixes + Some technical changes introduced in scrcpy 3.3 had side effects that broke certain features. This release resolves those issues. + Mouse scrolling + This version also includes several improvements and fixes related to mouse scrolling (#6172). + - BlueSky: @scrcpy.bsky.social + - Twitter: @scrcpy_app + - Reddit: r/scrcpy +ReleaseNotesUrl: https://github.com/Genymobile/scrcpy/releases/tag/v3.3.1 +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://github.com/Genymobile/scrcpy/blob/v3.1/FAQ.md +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Genymobile/scrcpy/3.3.1/Genymobile.scrcpy.yaml b/manifests/g/Genymobile/scrcpy/3.3.1/Genymobile.scrcpy.yaml new file mode 100644 index 0000000000000..c898980030d67 --- /dev/null +++ b/manifests/g/Genymobile/scrcpy/3.3.1/Genymobile.scrcpy.yaml @@ -0,0 +1,8 @@ +# Created with AutoPublish using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Genymobile.scrcpy +PackageVersion: 3.3.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.installer.yaml new file mode 100644 index 0000000000000..dbe88697fb3bf --- /dev/null +++ b/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: GeoGebra.CASCalculator +PackageVersion: 6.0.892 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +FileExtensions: +- ggb +ProductCode: GeoGebra_CAS +Installers: +- Architecture: x86 + InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-892-0.exe + InstallerSha256: 4BA4210CDEA71D23D1995AA5759EAA242FB44FF13F2729621991BF8318175E68 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.locale.en-US.yaml new file mode 100644 index 0000000000000..8df3ea6f46aa5 --- /dev/null +++ b/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.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: GeoGebra.CASCalculator +PackageVersion: 6.0.892 +PackageLocale: en-US +Publisher: International GeoGebra Institute +PublisherUrl: https://www.geogebra.org/ +PublisherSupportUrl: https://help.geogebra.org/ +PrivacyUrl: https://www.geogebra.org/privacy +Author: GeoGebra GmbH +PackageName: GeoGebra CAS Calculator +PackageUrl: https://www.geogebra.org/download +License: Proprietary +LicenseUrl: https://www.geogebra.org/license +Copyright: © 2024 GeoGebra® +ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals +Moniker: cascalculator +Tags: +- education +- geometry +- math +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6d67768a46ff6 --- /dev/null +++ b/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.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: GeoGebra.CASCalculator +PackageVersion: 6.0.892 +PackageLocale: zh-CN +Publisher: International GeoGebra Institute +PublisherUrl: https://www.geogebra.org/ +PublisherSupportUrl: https://help.geogebra.org/ +PrivacyUrl: https://www.geogebra.org/privacy +Author: GeoGebra GmbH +PackageName: GeoGebra CAS Calculator +PackageUrl: https://www.geogebra.org/download +License: 专有软件 +LicenseUrl: https://www.geogebra.org/license +Copyright: © 2024 GeoGebra® +ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 +Tags: +- 几何 +- 教育 +- 数学 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.yaml new file mode 100644 index 0000000000000..e924c79cd1af0 --- /dev/null +++ b/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.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: GeoGebra.CASCalculator +PackageVersion: 6.0.892 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CalculatorSuite/6.0.892/GeoGebra.CalculatorSuite.installer.yaml b/manifests/g/GeoGebra/CalculatorSuite/6.0.892/GeoGebra.CalculatorSuite.installer.yaml new file mode 100644 index 0000000000000..398de7aca1580 --- /dev/null +++ b/manifests/g/GeoGebra/CalculatorSuite/6.0.892/GeoGebra.CalculatorSuite.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: GeoGebra.CalculatorSuite +PackageVersion: 6.0.892 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +FileExtensions: +- ggb +ProductCode: GeoGebra_Calculator +Installers: +- Architecture: x86 + InstallerUrl: https://download.geogebra.org/installers/6.0/suite/GeoGebraCalculator-Windows-Installer-6-0-892-0.exe + InstallerSha256: 9BA89F5BF1181112C283D4CD4E25E715ABC2D9514AA28A2F7DD56615BC619148 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CalculatorSuite/6.0.892/GeoGebra.CalculatorSuite.locale.en-US.yaml b/manifests/g/GeoGebra/CalculatorSuite/6.0.892/GeoGebra.CalculatorSuite.locale.en-US.yaml new file mode 100644 index 0000000000000..822b7c28288ca --- /dev/null +++ b/manifests/g/GeoGebra/CalculatorSuite/6.0.892/GeoGebra.CalculatorSuite.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: GeoGebra.CalculatorSuite +PackageVersion: 6.0.892 +PackageLocale: en-US +Publisher: International GeoGebra Institute +PublisherUrl: https://www.geogebra.org/ +PublisherSupportUrl: https://help.geogebra.org/ +PrivacyUrl: https://www.geogebra.org/privacy +Author: GeoGebra GmbH +PackageName: GeoGebra Calculator Suite +PackageUrl: https://www.geogebra.org/download +License: Proprietary +LicenseUrl: https://www.geogebra.org/license +Copyright: © 2024 GeoGebra® +ShortDescription: Explore functions, solve equations, construct geometric shapes and 3D objects +Tags: +- education +- geometry +- graph +- graphing +- math +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CalculatorSuite/6.0.892/GeoGebra.CalculatorSuite.locale.zh-CN.yaml b/manifests/g/GeoGebra/CalculatorSuite/6.0.892/GeoGebra.CalculatorSuite.locale.zh-CN.yaml new file mode 100644 index 0000000000000..24c361a29f7b1 --- /dev/null +++ b/manifests/g/GeoGebra/CalculatorSuite/6.0.892/GeoGebra.CalculatorSuite.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: GeoGebra.CalculatorSuite +PackageVersion: 6.0.892 +PackageLocale: zh-CN +Publisher: International GeoGebra Institute +PublisherUrl: https://www.geogebra.org/ +PublisherSupportUrl: https://help.geogebra.org/ +PrivacyUrl: https://www.geogebra.org/privacy +Author: GeoGebra GmbH +PackageName: GeoGebra Calculator Suite +PackageUrl: https://www.geogebra.org/download +License: 专有软件 +LicenseUrl: https://www.geogebra.org/license +Copyright: © 2024 GeoGebra® +ShortDescription: 探索函数、解方程、构建几何图形和三维物体 +Tags: +- 几何 +- 图形 +- 教育 +- 数学 +- 绘图 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CalculatorSuite/6.0.892/GeoGebra.CalculatorSuite.yaml b/manifests/g/GeoGebra/CalculatorSuite/6.0.892/GeoGebra.CalculatorSuite.yaml new file mode 100644 index 0000000000000..c50780892b90e --- /dev/null +++ b/manifests/g/GeoGebra/CalculatorSuite/6.0.892/GeoGebra.CalculatorSuite.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: GeoGebra.CalculatorSuite +PackageVersion: 6.0.892 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/5/5.2.889.0/GeoGebra.Classic.5.installer.yaml b/manifests/g/GeoGebra/Classic/5/5.2.889.0/GeoGebra.Classic.5.installer.yaml deleted file mode 100644 index 981a59a363641..0000000000000 --- a/manifests/g/GeoGebra/Classic/5/5.2.889.0/GeoGebra.Classic.5.installer.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/12 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic.5 -PackageVersion: 5.2.889.0 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/package/win - InstallerSha256: 0CD811FF14452B825B1AA108B8D94587613B58724D3CA40F9C1D77901624D25A -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/5/5.2.889.0/GeoGebra.Classic.5.yaml b/manifests/g/GeoGebra/Classic/5/5.2.889.0/GeoGebra.Classic.5.yaml deleted file mode 100644 index fe21b50894ec0..0000000000000 --- a/manifests/g/GeoGebra/Classic/5/5.2.889.0/GeoGebra.Classic.5.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/12 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic.5 -PackageVersion: 5.2.889.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/5/5.2.892.0/GeoGebra.Classic.5.installer.yaml b/manifests/g/GeoGebra/Classic/5/5.2.892.0/GeoGebra.Classic.5.installer.yaml new file mode 100644 index 0000000000000..7127ab99bf225 --- /dev/null +++ b/manifests/g/GeoGebra/Classic/5/5.2.892.0/GeoGebra.Classic.5.installer.yaml @@ -0,0 +1,13 @@ +# Automatically updated by the winget bot at 2025/Jun/25 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: GeoGebra.Classic.5 +PackageVersion: 5.2.892.0 +MinimumOSVersion: 10.0.0.0 +InstallerType: nullsoft +Installers: +- Architecture: x86 + InstallerUrl: https://download.geogebra.org/package/win + InstallerSha256: F70711615A6AE6C188F5C185E1281743F4D54BE589F03AAB24A813573989287F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/5/5.2.889.0/GeoGebra.Classic.5.locale.en-US.yaml b/manifests/g/GeoGebra/Classic/5/5.2.892.0/GeoGebra.Classic.5.locale.en-US.yaml similarity index 91% rename from manifests/g/GeoGebra/Classic/5/5.2.889.0/GeoGebra.Classic.5.locale.en-US.yaml rename to manifests/g/GeoGebra/Classic/5/5.2.892.0/GeoGebra.Classic.5.locale.en-US.yaml index 0f32a5381ae3a..84e21d8eb72bf 100644 --- a/manifests/g/GeoGebra/Classic/5/5.2.889.0/GeoGebra.Classic.5.locale.en-US.yaml +++ b/manifests/g/GeoGebra/Classic/5/5.2.892.0/GeoGebra.Classic.5.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jun/12 +# Automatically updated by the winget bot at 2025/Jun/25 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: GeoGebra.Classic.5 -PackageVersion: 5.2.889.0 +PackageVersion: 5.2.892.0 PackageLocale: en-US Publisher: International GeoGebra Institute PublisherUrl: https://www.geogebra.org diff --git a/manifests/g/GeoGebra/Classic/5/5.2.892.0/GeoGebra.Classic.5.yaml b/manifests/g/GeoGebra/Classic/5/5.2.892.0/GeoGebra.Classic.5.yaml new file mode 100644 index 0000000000000..ee01a915b8270 --- /dev/null +++ b/manifests/g/GeoGebra/Classic/5/5.2.892.0/GeoGebra.Classic.5.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jun/25 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: GeoGebra.Classic.5 +PackageVersion: 5.2.892.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.879/GeoGebra.Classic.installer.yaml b/manifests/g/GeoGebra/Classic/6.0.879/GeoGebra.Classic.installer.yaml deleted file mode 100644 index 8be5b6ebadd82..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.879/GeoGebra.Classic.installer.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.879 -FileExtensions: -- ggb -Installers: -- Architecture: x86 - InstallerType: exe - Scope: user - InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-879-0.exe - InstallerSha256: D2A79381DD72057DE2A57C446DD8D83DD412BC72B2D445B8142D4DACEF4340C1 - InstallModes: - - interactive - - silent - InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent - UpgradeBehavior: install - ProductCode: GeoGebra_6 -- Architecture: x86 - InstallerType: wix - Scope: machine - InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-879-0.msi - InstallerSha256: CF88D31CB83D7A130143D8F069841FCF6E3ED2C2229D410C576C60B02CFB00C3 - InstallerSwitches: - InstallLocation: APPLICATIONROOTDIRECTORY="" - UpgradeBehavior: uninstallPrevious - ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' - AppsAndFeaturesEntries: - - ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' - UpgradeCode: '{27555540-BDD5-486C-94BF-D367BC812CEF}' -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.879/GeoGebra.Classic.locale.en-US.yaml b/manifests/g/GeoGebra/Classic/6.0.879/GeoGebra.Classic.locale.en-US.yaml deleted file mode 100644 index 1bd745d2a082f..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.879/GeoGebra.Classic.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.879 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Classic -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Apps bundle including free tools for geometry, spreadsheet, probability, and CAS -Moniker: geogebraclassic -Tags: -- education -- geometry -- graph -- graphing -- math -- math-tool -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.879/GeoGebra.Classic.locale.zh-CN.yaml b/manifests/g/GeoGebra/Classic/6.0.879/GeoGebra.Classic.locale.zh-CN.yaml deleted file mode 100644 index b4224bdde66e0..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.879/GeoGebra.Classic.locale.zh-CN.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.879 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Classic -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 应用程序捆绑包,包括几何、电子表格、概率和 CAS 的免费工具 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 数学工具 -- 绘图 -ManifestType: locale -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.879/GeoGebra.Classic.yaml b/manifests/g/GeoGebra/Classic/6.0.879/GeoGebra.Classic.yaml deleted file mode 100644 index 0803cfa146443..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.879/GeoGebra.Classic.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.879 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.881/GeoGebra.Classic.installer.yaml b/manifests/g/GeoGebra/Classic/6.0.881/GeoGebra.Classic.installer.yaml deleted file mode 100644 index 1632f3187d312..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.881/GeoGebra.Classic.installer.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.881 -FileExtensions: -- ggb -Installers: -- Architecture: x86 - InstallerType: exe - Scope: user - InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-881-2.exe - InstallerSha256: 70CFAD3D69101764FF6303861703F8CF315ACA859EA5B89BA9500EEF89D8A15A - InstallModes: - - interactive - - silent - InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent - UpgradeBehavior: install - ProductCode: GeoGebra_6 -- Architecture: x86 - InstallerType: wix - Scope: machine - InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-881-2.msi - InstallerSha256: 3535ABCE912A5E2C8489BBC67BFF670700F7007B6CB55429A8FEDCC03898A80A - InstallerSwitches: - InstallLocation: APPLICATIONROOTDIRECTORY="" - UpgradeBehavior: uninstallPrevious - ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' - AppsAndFeaturesEntries: - - ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' - UpgradeCode: '{27555540-BDD5-486C-94BF-D367BC812CEF}' -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.881/GeoGebra.Classic.locale.en-US.yaml b/manifests/g/GeoGebra/Classic/6.0.881/GeoGebra.Classic.locale.en-US.yaml deleted file mode 100644 index 8d09ec01236c5..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.881/GeoGebra.Classic.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.881 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Classic -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Apps bundle including free tools for geometry, spreadsheet, probability, and CAS -Moniker: geogebraclassic -Tags: -- education -- geometry -- graph -- graphing -- math -- math-tool -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.881/GeoGebra.Classic.locale.zh-CN.yaml b/manifests/g/GeoGebra/Classic/6.0.881/GeoGebra.Classic.locale.zh-CN.yaml deleted file mode 100644 index 6a4303d748b1d..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.881/GeoGebra.Classic.locale.zh-CN.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.881 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Classic -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 应用程序捆绑包,包括几何、电子表格、概率和 CAS 的免费工具 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 数学工具 -- 绘图 -ManifestType: locale -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.881/GeoGebra.Classic.yaml b/manifests/g/GeoGebra/Classic/6.0.881/GeoGebra.Classic.yaml deleted file mode 100644 index c81f30eca06ab..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.881/GeoGebra.Classic.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.881 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.882/GeoGebra.Classic.installer.yaml b/manifests/g/GeoGebra/Classic/6.0.882/GeoGebra.Classic.installer.yaml deleted file mode 100644 index 0068b518abf10..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.882/GeoGebra.Classic.installer.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.882 -FileExtensions: -- ggb -Installers: -- Architecture: x86 - InstallerType: exe - Scope: user - InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-882-0.exe - InstallerSha256: 8E027EAABC78010E4CE2B647F5515B3A9BA80EEE385F1BBCEBC9940F3992806C - InstallModes: - - interactive - - silent - InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent - UpgradeBehavior: install - ProductCode: GeoGebra_6 -- Architecture: x86 - InstallerType: wix - Scope: machine - InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-882-0.msi - InstallerSha256: FFA0EF2A3C511AFEC8DCE2F968862DAFC2F15E16E4FE41C67E6BECD053A33AFC - InstallerSwitches: - InstallLocation: APPLICATIONROOTDIRECTORY="" - UpgradeBehavior: uninstallPrevious - ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' - AppsAndFeaturesEntries: - - ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' - UpgradeCode: '{27555540-BDD5-486C-94BF-D367BC812CEF}' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.882/GeoGebra.Classic.locale.en-US.yaml b/manifests/g/GeoGebra/Classic/6.0.882/GeoGebra.Classic.locale.en-US.yaml deleted file mode 100644 index 091e6356992d3..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.882/GeoGebra.Classic.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.882 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Classic -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Apps bundle including free tools for geometry, spreadsheet, probability, and CAS -Moniker: geogebraclassic -Tags: -- education -- geometry -- graph -- graphing -- math -- math-tool -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.882/GeoGebra.Classic.locale.zh-CN.yaml b/manifests/g/GeoGebra/Classic/6.0.882/GeoGebra.Classic.locale.zh-CN.yaml deleted file mode 100644 index bf1614529be06..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.882/GeoGebra.Classic.locale.zh-CN.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.882 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Classic -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 应用程序捆绑包,包括几何、电子表格、概率和 CAS 的免费工具 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 数学工具 -- 绘图 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.882/GeoGebra.Classic.yaml b/manifests/g/GeoGebra/Classic/6.0.882/GeoGebra.Classic.yaml deleted file mode 100644 index 7ef2157a84940..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.882/GeoGebra.Classic.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.882 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.883/GeoGebra.Classic.installer.yaml b/manifests/g/GeoGebra/Classic/6.0.883/GeoGebra.Classic.installer.yaml deleted file mode 100644 index d6662601676a7..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.883/GeoGebra.Classic.installer.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.883 -FileExtensions: -- ggb -Installers: -- Architecture: x86 - InstallerType: exe - Scope: user - InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-883-0.exe - InstallerSha256: A33325C337C4F879572618D66CE9FFA60AF2B9F473EB58D6F5E5BB8DF5B9A308 - InstallModes: - - interactive - - silent - InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent - UpgradeBehavior: install - ProductCode: GeoGebra_6 -- Architecture: x86 - InstallerType: wix - Scope: machine - InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-883-0.msi - InstallerSha256: C9B6EE3CB621BD4D33328542A8E01C11A3FCD5A2E79CD49FA809CD4F81C13233 - InstallerSwitches: - InstallLocation: APPLICATIONROOTDIRECTORY="" - UpgradeBehavior: uninstallPrevious - ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' - AppsAndFeaturesEntries: - - ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' - UpgradeCode: '{27555540-BDD5-486C-94BF-D367BC812CEF}' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.883/GeoGebra.Classic.locale.en-US.yaml b/manifests/g/GeoGebra/Classic/6.0.883/GeoGebra.Classic.locale.en-US.yaml deleted file mode 100644 index 0429fc6ba0471..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.883/GeoGebra.Classic.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.883 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Classic -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Apps bundle including free tools for geometry, spreadsheet, probability, and CAS -Moniker: geogebraclassic -Tags: -- education -- geometry -- graph -- graphing -- math -- math-tool -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.883/GeoGebra.Classic.locale.zh-CN.yaml b/manifests/g/GeoGebra/Classic/6.0.883/GeoGebra.Classic.locale.zh-CN.yaml deleted file mode 100644 index c48452d50415e..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.883/GeoGebra.Classic.locale.zh-CN.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.883 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Classic -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 应用程序捆绑包,包括几何、电子表格、概率和 CAS 的免费工具 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 数学工具 -- 绘图 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.883/GeoGebra.Classic.yaml b/manifests/g/GeoGebra/Classic/6.0.883/GeoGebra.Classic.yaml deleted file mode 100644 index 7fc27471b3336..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.883/GeoGebra.Classic.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.883 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.884/GeoGebra.Classic.installer.yaml b/manifests/g/GeoGebra/Classic/6.0.884/GeoGebra.Classic.installer.yaml deleted file mode 100644 index bfa62ebf34c58..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.884/GeoGebra.Classic.installer.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.884 -FileExtensions: -- ggb -Installers: -- Architecture: x86 - InstallerType: exe - Scope: user - InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-884-1.exe - InstallerSha256: 1977D74CB7C6052F21278A71CCB6BC5C4652F6B12BD572447AFF7113EC797C17 - InstallModes: - - interactive - - silent - InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent - UpgradeBehavior: install - ProductCode: GeoGebra_6 -- Architecture: x86 - InstallerType: wix - Scope: machine - InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-884-1.msi - InstallerSha256: 8AEE6296D143742B5B385822FE97E5C86BF8FBAE5EBD45E46F4F13793A505BDD - InstallerSwitches: - InstallLocation: APPLICATIONROOTDIRECTORY="" - UpgradeBehavior: uninstallPrevious - ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' - AppsAndFeaturesEntries: - - ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' - UpgradeCode: '{27555540-BDD5-486C-94BF-D367BC812CEF}' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.884/GeoGebra.Classic.locale.en-US.yaml b/manifests/g/GeoGebra/Classic/6.0.884/GeoGebra.Classic.locale.en-US.yaml deleted file mode 100644 index bb4286aa81823..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.884/GeoGebra.Classic.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.884 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Classic -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Apps bundle including free tools for geometry, spreadsheet, probability, and CAS -Moniker: geogebraclassic -Tags: -- education -- geometry -- graph -- graphing -- math -- math-tool -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.884/GeoGebra.Classic.locale.zh-CN.yaml b/manifests/g/GeoGebra/Classic/6.0.884/GeoGebra.Classic.locale.zh-CN.yaml deleted file mode 100644 index c2cc260dce961..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.884/GeoGebra.Classic.locale.zh-CN.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.884 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Classic -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 应用程序捆绑包,包括几何、电子表格、概率和 CAS 的免费工具 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 数学工具 -- 绘图 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.884/GeoGebra.Classic.yaml b/manifests/g/GeoGebra/Classic/6.0.884/GeoGebra.Classic.yaml deleted file mode 100644 index 4e0a37f872937..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.884/GeoGebra.Classic.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.884 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.885/GeoGebra.Classic.installer.yaml b/manifests/g/GeoGebra/Classic/6.0.885/GeoGebra.Classic.installer.yaml deleted file mode 100644 index 880eedec433bf..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.885/GeoGebra.Classic.installer.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.885 -FileExtensions: -- ggb -Installers: -- Architecture: x86 - InstallerType: exe - Scope: user - InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-885-1.exe - InstallerSha256: C62F2CBBF007A7B1108E41C2A6D6897AEE1CCC62695C941FA9BB37143D20E137 - InstallModes: - - interactive - - silent - InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent - UpgradeBehavior: install - ProductCode: GeoGebra_6 -- Architecture: x86 - InstallerType: wix - Scope: machine - InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-885-1.msi - InstallerSha256: FFA1C91868BB188E6FF2C3D8A0FD49ECA97F95C5A78D9BA7E1083E0FDDB4D2E3 - InstallerSwitches: - InstallLocation: APPLICATIONROOTDIRECTORY="" - UpgradeBehavior: uninstallPrevious - ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' - AppsAndFeaturesEntries: - - ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' - UpgradeCode: '{27555540-BDD5-486C-94BF-D367BC812CEF}' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.885/GeoGebra.Classic.locale.en-US.yaml b/manifests/g/GeoGebra/Classic/6.0.885/GeoGebra.Classic.locale.en-US.yaml deleted file mode 100644 index c64b69762b3a7..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.885/GeoGebra.Classic.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.885 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Classic -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Apps bundle including free tools for geometry, spreadsheet, probability, and CAS -Moniker: geogebraclassic -Tags: -- education -- geometry -- graph -- graphing -- math -- math-tool -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.885/GeoGebra.Classic.locale.zh-CN.yaml b/manifests/g/GeoGebra/Classic/6.0.885/GeoGebra.Classic.locale.zh-CN.yaml deleted file mode 100644 index 4df68410eec07..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.885/GeoGebra.Classic.locale.zh-CN.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.885 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Classic -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 应用程序捆绑包,包括几何、电子表格、概率和 CAS 的免费工具 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 数学工具 -- 绘图 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.885/GeoGebra.Classic.yaml b/manifests/g/GeoGebra/Classic/6.0.885/GeoGebra.Classic.yaml deleted file mode 100644 index 7384d600c28fc..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.885/GeoGebra.Classic.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.885 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.886/GeoGebra.Classic.installer.yaml b/manifests/g/GeoGebra/Classic/6.0.886/GeoGebra.Classic.installer.yaml deleted file mode 100644 index 7621add12f840..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.886/GeoGebra.Classic.installer.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.886 -FileExtensions: -- ggb -Installers: -- Architecture: x86 - InstallerType: exe - Scope: user - InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-886-0.exe - InstallerSha256: 891AAD451D679A001B6B41B36A5A7DF6A5606C5BEF44E93AF927873AF502A04A - InstallModes: - - interactive - - silent - InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent - UpgradeBehavior: install - ProductCode: GeoGebra_6 -- Architecture: x86 - InstallerType: wix - Scope: machine - InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-886-0.msi - InstallerSha256: 5C4B27412F5A9245BDD833C6D5C8D1031FDA139975C96D4981085C23CDFC12E7 - InstallerSwitches: - InstallLocation: APPLICATIONROOTDIRECTORY="" - UpgradeBehavior: uninstallPrevious - ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' - AppsAndFeaturesEntries: - - ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' - UpgradeCode: '{27555540-BDD5-486C-94BF-D367BC812CEF}' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.886/GeoGebra.Classic.locale.en-US.yaml b/manifests/g/GeoGebra/Classic/6.0.886/GeoGebra.Classic.locale.en-US.yaml deleted file mode 100644 index 3ff30f5a6496d..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.886/GeoGebra.Classic.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.886 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Classic -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Apps bundle including free tools for geometry, spreadsheet, probability, and CAS -Moniker: geogebraclassic -Tags: -- education -- geometry -- graph -- graphing -- math -- math-tool -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.886/GeoGebra.Classic.locale.zh-CN.yaml b/manifests/g/GeoGebra/Classic/6.0.886/GeoGebra.Classic.locale.zh-CN.yaml deleted file mode 100644 index 29a97635ac44e..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.886/GeoGebra.Classic.locale.zh-CN.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.886 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Classic -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 应用程序捆绑包,包括几何、电子表格、概率和 CAS 的免费工具 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 数学工具 -- 绘图 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.886/GeoGebra.Classic.yaml b/manifests/g/GeoGebra/Classic/6.0.886/GeoGebra.Classic.yaml deleted file mode 100644 index 473e4d57e3575..0000000000000 --- a/manifests/g/GeoGebra/Classic/6.0.886/GeoGebra.Classic.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Classic -PackageVersion: 6.0.886 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.892/GeoGebra.Classic.installer.yaml b/manifests/g/GeoGebra/Classic/6.0.892/GeoGebra.Classic.installer.yaml new file mode 100644 index 0000000000000..82606bc8469d2 --- /dev/null +++ b/manifests/g/GeoGebra/Classic/6.0.892/GeoGebra.Classic.installer.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: GeoGebra.Classic +PackageVersion: 6.0.892 +FileExtensions: +- ggb +Installers: +- Architecture: x86 + InstallerType: exe + Scope: user + InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-892-0.exe + InstallerSha256: D5561133298ABA99EC362E0C06B3D236346716D090871C694257A047A2CC3EDC + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + UpgradeBehavior: install + ProductCode: GeoGebra_6 +- Architecture: x86 + InstallerType: wix + Scope: machine + InstallerUrl: https://download.geogebra.org/installers/6.0/GeoGebra-Windows-Installer-6-0-892-0.msi + InstallerSha256: BC40E1616B8A3C607404087AF73C08961411868472FE19FCD2FE4DE5338AF2F6 + InstallerSwitches: + InstallLocation: APPLICATIONROOTDIRECTORY="" + UpgradeBehavior: uninstallPrevious + ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' + AppsAndFeaturesEntries: + - ProductCode: '{4748282E-2448-11E8-81BC-53A8D56EE868}' + UpgradeCode: '{27555540-BDD5-486C-94BF-D367BC812CEF}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.892/GeoGebra.Classic.locale.en-US.yaml b/manifests/g/GeoGebra/Classic/6.0.892/GeoGebra.Classic.locale.en-US.yaml new file mode 100644 index 0000000000000..a875f950330fb --- /dev/null +++ b/manifests/g/GeoGebra/Classic/6.0.892/GeoGebra.Classic.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: GeoGebra.Classic +PackageVersion: 6.0.892 +PackageLocale: en-US +Publisher: International GeoGebra Institute +PublisherUrl: https://www.geogebra.org/ +PublisherSupportUrl: https://help.geogebra.org/ +PrivacyUrl: https://www.geogebra.org/privacy +Author: GeoGebra GmbH +PackageName: GeoGebra Classic +PackageUrl: https://www.geogebra.org/download +License: Proprietary +LicenseUrl: https://www.geogebra.org/license +Copyright: © 2024 GeoGebra® +ShortDescription: Apps bundle including free tools for geometry, spreadsheet, probability, and CAS +Moniker: geogebraclassic +Tags: +- education +- geometry +- graph +- graphing +- math +- math-tool +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.892/GeoGebra.Classic.locale.zh-CN.yaml b/manifests/g/GeoGebra/Classic/6.0.892/GeoGebra.Classic.locale.zh-CN.yaml new file mode 100644 index 0000000000000..09bc5ecd69495 --- /dev/null +++ b/manifests/g/GeoGebra/Classic/6.0.892/GeoGebra.Classic.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: GeoGebra.Classic +PackageVersion: 6.0.892 +PackageLocale: zh-CN +Publisher: International GeoGebra Institute +PublisherUrl: https://www.geogebra.org/ +PublisherSupportUrl: https://help.geogebra.org/ +PrivacyUrl: https://www.geogebra.org/privacy +Author: GeoGebra GmbH +PackageName: GeoGebra Classic +PackageUrl: https://www.geogebra.org/download +License: 专有软件 +LicenseUrl: https://www.geogebra.org/license +Copyright: © 2024 GeoGebra® +ShortDescription: 应用程序捆绑包,包括几何、电子表格、概率和 CAS 的免费工具 +Tags: +- 几何 +- 图形 +- 教育 +- 数学 +- 数学工具 +- 绘图 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Classic/6.0.892/GeoGebra.Classic.yaml b/manifests/g/GeoGebra/Classic/6.0.892/GeoGebra.Classic.yaml new file mode 100644 index 0000000000000..1b90b42adabd6 --- /dev/null +++ b/manifests/g/GeoGebra/Classic/6.0.892/GeoGebra.Classic.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: GeoGebra.Classic +PackageVersion: 6.0.892 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.879/GeoGebra.Geometry.installer.yaml b/manifests/g/GeoGebra/Geometry/6.0.879/GeoGebra.Geometry.installer.yaml deleted file mode 100644 index c044eeac96cc8..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.879/GeoGebra.Geometry.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.879 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_Geometry -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/geometry/GeoGebraGeometry-Windows-Installer-6-0-879-0.exe - InstallerSha256: 0321718AF1107F16928D5E935D9BFF1F5ACCA848B38C04330DA5BB7EA38EB4C2 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.879/GeoGebra.Geometry.locale.en-US.yaml b/manifests/g/GeoGebra/Geometry/6.0.879/GeoGebra.Geometry.locale.en-US.yaml deleted file mode 100644 index 694c1104af5a1..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.879/GeoGebra.Geometry.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.879 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Geometry -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Construct circles, angles, transformations and more with the free geometry tool -Moniker: geogebrageometry -Tags: -- education -- geometry -- graph -- graphing -- math -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.879/GeoGebra.Geometry.locale.zh-CN.yaml b/manifests/g/GeoGebra/Geometry/6.0.879/GeoGebra.Geometry.locale.zh-CN.yaml deleted file mode 100644 index f78f108e91c7d..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.879/GeoGebra.Geometry.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.879 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Geometry -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 使用免费几何工具构建圆、角度、变换等图形 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 绘图 -ManifestType: locale -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.879/GeoGebra.Geometry.yaml b/manifests/g/GeoGebra/Geometry/6.0.879/GeoGebra.Geometry.yaml deleted file mode 100644 index 4dd3c2643c540..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.879/GeoGebra.Geometry.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.879 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.881/GeoGebra.Geometry.installer.yaml b/manifests/g/GeoGebra/Geometry/6.0.881/GeoGebra.Geometry.installer.yaml deleted file mode 100644 index 95f0b8cd117c2..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.881/GeoGebra.Geometry.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.881 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_Geometry -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/geometry/GeoGebraGeometry-Windows-Installer-6-0-881-2.exe - InstallerSha256: 5909F26FABAFEB3A8FF0A8D096A5920051A69C1DA2FFD6A9392528A7A619A2F9 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.881/GeoGebra.Geometry.locale.en-US.yaml b/manifests/g/GeoGebra/Geometry/6.0.881/GeoGebra.Geometry.locale.en-US.yaml deleted file mode 100644 index 1f50d1f445054..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.881/GeoGebra.Geometry.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.881 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Geometry -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Construct circles, angles, transformations and more with the free geometry tool -Moniker: geogebrageometry -Tags: -- education -- geometry -- graph -- graphing -- math -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.881/GeoGebra.Geometry.locale.zh-CN.yaml b/manifests/g/GeoGebra/Geometry/6.0.881/GeoGebra.Geometry.locale.zh-CN.yaml deleted file mode 100644 index 8c024e4ec91cf..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.881/GeoGebra.Geometry.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.881 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Geometry -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 使用免费几何工具构建圆、角度、变换等图形 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 绘图 -ManifestType: locale -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.881/GeoGebra.Geometry.yaml b/manifests/g/GeoGebra/Geometry/6.0.881/GeoGebra.Geometry.yaml deleted file mode 100644 index 7b54b90d3e230..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.881/GeoGebra.Geometry.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.881 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.882/GeoGebra.Geometry.installer.yaml b/manifests/g/GeoGebra/Geometry/6.0.882/GeoGebra.Geometry.installer.yaml deleted file mode 100644 index 3baa7a2f451d0..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.882/GeoGebra.Geometry.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.882 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_Geometry -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/geometry/GeoGebraGeometry-Windows-Installer-6-0-882-0.exe - InstallerSha256: B4710923187E88C7216AE58A9A15927B08D3F6C2C8FB73ECE074053F6B7BFF76 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.882/GeoGebra.Geometry.locale.en-US.yaml b/manifests/g/GeoGebra/Geometry/6.0.882/GeoGebra.Geometry.locale.en-US.yaml deleted file mode 100644 index 0d08c12129d63..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.882/GeoGebra.Geometry.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.882 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Geometry -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Construct circles, angles, transformations and more with the free geometry tool -Moniker: geogebrageometry -Tags: -- education -- geometry -- graph -- graphing -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.882/GeoGebra.Geometry.locale.zh-CN.yaml b/manifests/g/GeoGebra/Geometry/6.0.882/GeoGebra.Geometry.locale.zh-CN.yaml deleted file mode 100644 index 1857db6d03ea4..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.882/GeoGebra.Geometry.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.882 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Geometry -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 使用免费几何工具构建圆、角度、变换等图形 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 绘图 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.882/GeoGebra.Geometry.yaml b/manifests/g/GeoGebra/Geometry/6.0.882/GeoGebra.Geometry.yaml deleted file mode 100644 index 822909fa7eee4..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.882/GeoGebra.Geometry.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.882 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.883/GeoGebra.Geometry.installer.yaml b/manifests/g/GeoGebra/Geometry/6.0.883/GeoGebra.Geometry.installer.yaml deleted file mode 100644 index 222248fd6b5de..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.883/GeoGebra.Geometry.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.883 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_Geometry -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/geometry/GeoGebraGeometry-Windows-Installer-6-0-883-0.exe - InstallerSha256: 3193B292829E9FEBA1DC9E488553AAAC65EEEA45391481C354F8B9EFADBD363F -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.883/GeoGebra.Geometry.locale.en-US.yaml b/manifests/g/GeoGebra/Geometry/6.0.883/GeoGebra.Geometry.locale.en-US.yaml deleted file mode 100644 index 0e63c91a7fa13..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.883/GeoGebra.Geometry.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.883 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Geometry -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Construct circles, angles, transformations and more with the free geometry tool -Moniker: geogebrageometry -Tags: -- education -- geometry -- graph -- graphing -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.883/GeoGebra.Geometry.locale.zh-CN.yaml b/manifests/g/GeoGebra/Geometry/6.0.883/GeoGebra.Geometry.locale.zh-CN.yaml deleted file mode 100644 index 1b6a4ee670712..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.883/GeoGebra.Geometry.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.883 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Geometry -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 使用免费几何工具构建圆、角度、变换等图形 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 绘图 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.883/GeoGebra.Geometry.yaml b/manifests/g/GeoGebra/Geometry/6.0.883/GeoGebra.Geometry.yaml deleted file mode 100644 index 538388fa56e35..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.883/GeoGebra.Geometry.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.883 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.884/GeoGebra.Geometry.installer.yaml b/manifests/g/GeoGebra/Geometry/6.0.884/GeoGebra.Geometry.installer.yaml deleted file mode 100644 index cf97358649bb3..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.884/GeoGebra.Geometry.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.884 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_Geometry -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/geometry/GeoGebraGeometry-Windows-Installer-6-0-884-1.exe - InstallerSha256: 46F090981205DBA0E90E169DAEFAAD1D4F594DF1A7FD07DC1D3EF43102A3C59F -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.884/GeoGebra.Geometry.locale.en-US.yaml b/manifests/g/GeoGebra/Geometry/6.0.884/GeoGebra.Geometry.locale.en-US.yaml deleted file mode 100644 index 038ccdd7d2b0e..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.884/GeoGebra.Geometry.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.884 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Geometry -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Construct circles, angles, transformations and more with the free geometry tool -Moniker: geogebrageometry -Tags: -- education -- geometry -- graph -- graphing -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.884/GeoGebra.Geometry.locale.zh-CN.yaml b/manifests/g/GeoGebra/Geometry/6.0.884/GeoGebra.Geometry.locale.zh-CN.yaml deleted file mode 100644 index e022c71d985b8..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.884/GeoGebra.Geometry.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.884 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Geometry -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 使用免费几何工具构建圆、角度、变换等图形 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 绘图 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.884/GeoGebra.Geometry.yaml b/manifests/g/GeoGebra/Geometry/6.0.884/GeoGebra.Geometry.yaml deleted file mode 100644 index db7a5a19335a0..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.884/GeoGebra.Geometry.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.884 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.885/GeoGebra.Geometry.installer.yaml b/manifests/g/GeoGebra/Geometry/6.0.885/GeoGebra.Geometry.installer.yaml deleted file mode 100644 index 3e7d1be22a2be..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.885/GeoGebra.Geometry.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.885 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_Geometry -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/geometry/GeoGebraGeometry-Windows-Installer-6-0-885-1.exe - InstallerSha256: EE71CC9AE1916C72D2130D4EE99E2E9B1CC640677F67D0F6A29B4B88F868C356 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.885/GeoGebra.Geometry.locale.en-US.yaml b/manifests/g/GeoGebra/Geometry/6.0.885/GeoGebra.Geometry.locale.en-US.yaml deleted file mode 100644 index 7207665be36d3..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.885/GeoGebra.Geometry.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.885 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Geometry -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Construct circles, angles, transformations and more with the free geometry tool -Moniker: geogebrageometry -Tags: -- education -- geometry -- graph -- graphing -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.885/GeoGebra.Geometry.locale.zh-CN.yaml b/manifests/g/GeoGebra/Geometry/6.0.885/GeoGebra.Geometry.locale.zh-CN.yaml deleted file mode 100644 index 2152947384615..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.885/GeoGebra.Geometry.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.885 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Geometry -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 使用免费几何工具构建圆、角度、变换等图形 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 绘图 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.885/GeoGebra.Geometry.yaml b/manifests/g/GeoGebra/Geometry/6.0.885/GeoGebra.Geometry.yaml deleted file mode 100644 index ba6be8df4acd7..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.885/GeoGebra.Geometry.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.885 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.886/GeoGebra.Geometry.installer.yaml b/manifests/g/GeoGebra/Geometry/6.0.886/GeoGebra.Geometry.installer.yaml deleted file mode 100644 index d60697c5f006b..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.886/GeoGebra.Geometry.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.886 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_Geometry -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/geometry/GeoGebraGeometry-Windows-Installer-6-0-886-0.exe - InstallerSha256: EBC862C832A7FF0E4B4D5EF252F4C3A5B26C7CBAA949234F3F2AAB8A700D45FF -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.886/GeoGebra.Geometry.locale.en-US.yaml b/manifests/g/GeoGebra/Geometry/6.0.886/GeoGebra.Geometry.locale.en-US.yaml deleted file mode 100644 index d781004209e85..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.886/GeoGebra.Geometry.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.886 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Geometry -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Construct circles, angles, transformations and more with the free geometry tool -Moniker: geogebrageometry -Tags: -- education -- geometry -- graph -- graphing -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.886/GeoGebra.Geometry.locale.zh-CN.yaml b/manifests/g/GeoGebra/Geometry/6.0.886/GeoGebra.Geometry.locale.zh-CN.yaml deleted file mode 100644 index 6829b79fc65e8..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.886/GeoGebra.Geometry.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.886 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Geometry -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 使用免费几何工具构建圆、角度、变换等图形 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 绘图 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.886/GeoGebra.Geometry.yaml b/manifests/g/GeoGebra/Geometry/6.0.886/GeoGebra.Geometry.yaml deleted file mode 100644 index 0af4f27b91097..0000000000000 --- a/manifests/g/GeoGebra/Geometry/6.0.886/GeoGebra.Geometry.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.Geometry -PackageVersion: 6.0.886 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.892/GeoGebra.Geometry.installer.yaml b/manifests/g/GeoGebra/Geometry/6.0.892/GeoGebra.Geometry.installer.yaml new file mode 100644 index 0000000000000..200d030f1a85c --- /dev/null +++ b/manifests/g/GeoGebra/Geometry/6.0.892/GeoGebra.Geometry.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: GeoGebra.Geometry +PackageVersion: 6.0.892 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +FileExtensions: +- ggb +ProductCode: GeoGebra_Geometry +Installers: +- Architecture: x86 + InstallerUrl: https://download.geogebra.org/installers/6.0/geometry/GeoGebraGeometry-Windows-Installer-6-0-892-0.exe + InstallerSha256: BB35B8267EFBF0528EE98A27B7304B7F9C5623AE3C8F9A410449E2029EC3C7F7 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.892/GeoGebra.Geometry.locale.en-US.yaml b/manifests/g/GeoGebra/Geometry/6.0.892/GeoGebra.Geometry.locale.en-US.yaml new file mode 100644 index 0000000000000..18319e74d6b5b --- /dev/null +++ b/manifests/g/GeoGebra/Geometry/6.0.892/GeoGebra.Geometry.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: GeoGebra.Geometry +PackageVersion: 6.0.892 +PackageLocale: en-US +Publisher: International GeoGebra Institute +PublisherUrl: https://www.geogebra.org/ +PublisherSupportUrl: https://help.geogebra.org/ +PrivacyUrl: https://www.geogebra.org/privacy +Author: GeoGebra GmbH +PackageName: GeoGebra Geometry +PackageUrl: https://www.geogebra.org/download +License: Proprietary +LicenseUrl: https://www.geogebra.org/license +Copyright: © 2024 GeoGebra® +ShortDescription: Construct circles, angles, transformations and more with the free geometry tool +Moniker: geogebrageometry +Tags: +- education +- geometry +- graph +- graphing +- math +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.892/GeoGebra.Geometry.locale.zh-CN.yaml b/manifests/g/GeoGebra/Geometry/6.0.892/GeoGebra.Geometry.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7f27dbc3387c1 --- /dev/null +++ b/manifests/g/GeoGebra/Geometry/6.0.892/GeoGebra.Geometry.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: GeoGebra.Geometry +PackageVersion: 6.0.892 +PackageLocale: zh-CN +Publisher: International GeoGebra Institute +PublisherUrl: https://www.geogebra.org/ +PublisherSupportUrl: https://help.geogebra.org/ +PrivacyUrl: https://www.geogebra.org/privacy +Author: GeoGebra GmbH +PackageName: GeoGebra Geometry +PackageUrl: https://www.geogebra.org/download +License: 专有软件 +LicenseUrl: https://www.geogebra.org/license +Copyright: © 2024 GeoGebra® +ShortDescription: 使用免费几何工具构建圆、角度、变换等图形 +Tags: +- 几何 +- 图形 +- 教育 +- 数学 +- 绘图 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/Geometry/6.0.892/GeoGebra.Geometry.yaml b/manifests/g/GeoGebra/Geometry/6.0.892/GeoGebra.Geometry.yaml new file mode 100644 index 0000000000000..555a153519320 --- /dev/null +++ b/manifests/g/GeoGebra/Geometry/6.0.892/GeoGebra.Geometry.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: GeoGebra.Geometry +PackageVersion: 6.0.892 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.879/GeoGebra.GraphingCalculator.installer.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.879/GeoGebra.GraphingCalculator.installer.yaml deleted file mode 100644 index d8e8b3dcbaa1e..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.879/GeoGebra.GraphingCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.879 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_Graphing -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/graphing/GeoGebraGraphing-Windows-Installer-6-0-879-0.exe - InstallerSha256: 4D4284754BD43DD8F35D8257230EF9F8C3734C543758051E16D194FA4C304F8C -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.879/GeoGebra.GraphingCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.879/GeoGebra.GraphingCalculator.locale.en-US.yaml deleted file mode 100644 index b5d21ac987d1c..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.879/GeoGebra.GraphingCalculator.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.879 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Graphing Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Graph functions, investigate equations, and plot data with our free graphing app -Moniker: graphingcalculator -Tags: -- education -- geometry -- graph -- graphing -- math -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.879/GeoGebra.GraphingCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.879/GeoGebra.GraphingCalculator.locale.zh-CN.yaml deleted file mode 100644 index b9cb67cf718a1..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.879/GeoGebra.GraphingCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.879 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Graphing Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 使用我们的免费图形应用程序绘制函数图、研究方程和绘制数据图 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 绘图 -ManifestType: locale -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.879/GeoGebra.GraphingCalculator.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.879/GeoGebra.GraphingCalculator.yaml deleted file mode 100644 index b4c9cc45f1c9e..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.879/GeoGebra.GraphingCalculator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.879 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.881/GeoGebra.GraphingCalculator.installer.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.881/GeoGebra.GraphingCalculator.installer.yaml deleted file mode 100644 index fa14bb1fbed8b..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.881/GeoGebra.GraphingCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.881 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_Graphing -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/graphing/GeoGebraGraphing-Windows-Installer-6-0-881-2.exe - InstallerSha256: 3D028F7A36A9D38EF7159FBF2762A6D46F378BA2CE2CE6F0890351F5A8F89552 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.881/GeoGebra.GraphingCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.881/GeoGebra.GraphingCalculator.locale.en-US.yaml deleted file mode 100644 index a4315a5194e9a..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.881/GeoGebra.GraphingCalculator.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.881 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Graphing Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Graph functions, investigate equations, and plot data with our free graphing app -Moniker: graphingcalculator -Tags: -- education -- geometry -- graph -- graphing -- math -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.881/GeoGebra.GraphingCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.881/GeoGebra.GraphingCalculator.locale.zh-CN.yaml deleted file mode 100644 index 02f7f07421533..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.881/GeoGebra.GraphingCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.881 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Graphing Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 使用我们的免费图形应用程序绘制函数图、研究方程和绘制数据图 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 绘图 -ManifestType: locale -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.881/GeoGebra.GraphingCalculator.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.881/GeoGebra.GraphingCalculator.yaml deleted file mode 100644 index 95d56c03e4f04..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.881/GeoGebra.GraphingCalculator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.881 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.882/GeoGebra.GraphingCalculator.installer.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.882/GeoGebra.GraphingCalculator.installer.yaml deleted file mode 100644 index c534d92d319c7..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.882/GeoGebra.GraphingCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.882 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_Graphing -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/graphing/GeoGebraGraphing-Windows-Installer-6-0-882-0.exe - InstallerSha256: FE69FC7941E12B9773372782B36017C4C6581DB8598150A94ACE2DFD0F62B8F6 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.882/GeoGebra.GraphingCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.882/GeoGebra.GraphingCalculator.locale.en-US.yaml deleted file mode 100644 index 4403f7cb4f380..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.882/GeoGebra.GraphingCalculator.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.882 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Graphing Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Graph functions, investigate equations, and plot data with our free graphing app -Moniker: graphingcalculator -Tags: -- education -- geometry -- graph -- graphing -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.882/GeoGebra.GraphingCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.882/GeoGebra.GraphingCalculator.locale.zh-CN.yaml deleted file mode 100644 index 836979e5ac162..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.882/GeoGebra.GraphingCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.882 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Graphing Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 使用我们的免费图形应用程序绘制函数图、研究方程和绘制数据图 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 绘图 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.882/GeoGebra.GraphingCalculator.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.882/GeoGebra.GraphingCalculator.yaml deleted file mode 100644 index e4e5ba5604eff..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.882/GeoGebra.GraphingCalculator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.882 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.883/GeoGebra.GraphingCalculator.installer.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.883/GeoGebra.GraphingCalculator.installer.yaml deleted file mode 100644 index 08bdcd126879d..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.883/GeoGebra.GraphingCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.883 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_Graphing -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/graphing/GeoGebraGraphing-Windows-Installer-6-0-883-0.exe - InstallerSha256: 5FF7C1B0D29B4934D6F858074C7BAC4C7AD341E24DB25F707ED3977F004127AA -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.883/GeoGebra.GraphingCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.883/GeoGebra.GraphingCalculator.locale.en-US.yaml deleted file mode 100644 index d6c9dad669453..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.883/GeoGebra.GraphingCalculator.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.883 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Graphing Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Graph functions, investigate equations, and plot data with our free graphing app -Moniker: graphingcalculator -Tags: -- education -- geometry -- graph -- graphing -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.883/GeoGebra.GraphingCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.883/GeoGebra.GraphingCalculator.locale.zh-CN.yaml deleted file mode 100644 index 0d594263ff58b..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.883/GeoGebra.GraphingCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.883 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Graphing Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 使用我们的免费图形应用程序绘制函数图、研究方程和绘制数据图 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 绘图 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.883/GeoGebra.GraphingCalculator.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.883/GeoGebra.GraphingCalculator.yaml deleted file mode 100644 index 77dee73bd2fad..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.883/GeoGebra.GraphingCalculator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.883 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.884/GeoGebra.GraphingCalculator.installer.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.884/GeoGebra.GraphingCalculator.installer.yaml deleted file mode 100644 index 7a04eb0e967f5..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.884/GeoGebra.GraphingCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.884 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_Graphing -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/graphing/GeoGebraGraphing-Windows-Installer-6-0-884-1.exe - InstallerSha256: 6942082EE89C1ADDD4C63699C3A1BC55291191B50BE7A6A42242E6D0E48BF478 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.884/GeoGebra.GraphingCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.884/GeoGebra.GraphingCalculator.locale.en-US.yaml deleted file mode 100644 index 6a288264d4976..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.884/GeoGebra.GraphingCalculator.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.884 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Graphing Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Graph functions, investigate equations, and plot data with our free graphing app -Moniker: graphingcalculator -Tags: -- education -- geometry -- graph -- graphing -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.884/GeoGebra.GraphingCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.884/GeoGebra.GraphingCalculator.locale.zh-CN.yaml deleted file mode 100644 index 9e885bb88141e..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.884/GeoGebra.GraphingCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.884 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Graphing Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 使用我们的免费图形应用程序绘制函数图、研究方程和绘制数据图 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 绘图 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.884/GeoGebra.GraphingCalculator.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.884/GeoGebra.GraphingCalculator.yaml deleted file mode 100644 index d01627ad86278..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.884/GeoGebra.GraphingCalculator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.884 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.885/GeoGebra.GraphingCalculator.installer.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.885/GeoGebra.GraphingCalculator.installer.yaml deleted file mode 100644 index c7ff680ac9c51..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.885/GeoGebra.GraphingCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.885 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_Graphing -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/graphing/GeoGebraGraphing-Windows-Installer-6-0-885-1.exe - InstallerSha256: C9FB049915908B0CDB8A6F504A2245574F7FBC25073895426DCDAA8343D89C44 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.885/GeoGebra.GraphingCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.885/GeoGebra.GraphingCalculator.locale.en-US.yaml deleted file mode 100644 index 04791dc701608..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.885/GeoGebra.GraphingCalculator.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.885 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Graphing Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Graph functions, investigate equations, and plot data with our free graphing app -Moniker: graphingcalculator -Tags: -- education -- geometry -- graph -- graphing -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.885/GeoGebra.GraphingCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.885/GeoGebra.GraphingCalculator.locale.zh-CN.yaml deleted file mode 100644 index 8cf22f7642c4c..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.885/GeoGebra.GraphingCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.885 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Graphing Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 使用我们的免费图形应用程序绘制函数图、研究方程和绘制数据图 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 绘图 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.885/GeoGebra.GraphingCalculator.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.885/GeoGebra.GraphingCalculator.yaml deleted file mode 100644 index ea8d4cc55c3a7..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.885/GeoGebra.GraphingCalculator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.885 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.886/GeoGebra.GraphingCalculator.installer.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.886/GeoGebra.GraphingCalculator.installer.yaml deleted file mode 100644 index f5fce863399f5..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.886/GeoGebra.GraphingCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.886 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_Graphing -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/graphing/GeoGebraGraphing-Windows-Installer-6-0-886-0.exe - InstallerSha256: E83DE39ADAF74237ADBB5236BD564CD1A2A1AD1966585A8EAAFB454BD4B86850 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.886/GeoGebra.GraphingCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.886/GeoGebra.GraphingCalculator.locale.en-US.yaml deleted file mode 100644 index 10068f8339625..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.886/GeoGebra.GraphingCalculator.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.886 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Graphing Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Graph functions, investigate equations, and plot data with our free graphing app -Moniker: graphingcalculator -Tags: -- education -- geometry -- graph -- graphing -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.886/GeoGebra.GraphingCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.886/GeoGebra.GraphingCalculator.locale.zh-CN.yaml deleted file mode 100644 index 8b96fda489075..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.886/GeoGebra.GraphingCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.886 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra Graphing Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 使用我们的免费图形应用程序绘制函数图、研究方程和绘制数据图 -Tags: -- 几何 -- 图形 -- 教育 -- 数学 -- 绘图 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.886/GeoGebra.GraphingCalculator.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.886/GeoGebra.GraphingCalculator.yaml deleted file mode 100644 index 9c0ee4480f050..0000000000000 --- a/manifests/g/GeoGebra/GraphingCalculator/6.0.886/GeoGebra.GraphingCalculator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.GraphingCalculator -PackageVersion: 6.0.886 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.892/GeoGebra.GraphingCalculator.installer.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.892/GeoGebra.GraphingCalculator.installer.yaml new file mode 100644 index 0000000000000..df575fb862b60 --- /dev/null +++ b/manifests/g/GeoGebra/GraphingCalculator/6.0.892/GeoGebra.GraphingCalculator.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: GeoGebra.GraphingCalculator +PackageVersion: 6.0.892 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +FileExtensions: +- ggb +ProductCode: GeoGebra_Graphing +Installers: +- Architecture: x86 + InstallerUrl: https://download.geogebra.org/installers/6.0/graphing/GeoGebraGraphing-Windows-Installer-6-0-892-0.exe + InstallerSha256: 915C0FA5862A38ABECF4FF02B90009FE6DC5BCD534D16FCD302064B7B9C76C8D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.892/GeoGebra.GraphingCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.892/GeoGebra.GraphingCalculator.locale.en-US.yaml new file mode 100644 index 0000000000000..2a610885107cc --- /dev/null +++ b/manifests/g/GeoGebra/GraphingCalculator/6.0.892/GeoGebra.GraphingCalculator.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: GeoGebra.GraphingCalculator +PackageVersion: 6.0.892 +PackageLocale: en-US +Publisher: International GeoGebra Institute +PublisherUrl: https://www.geogebra.org/ +PublisherSupportUrl: https://help.geogebra.org/ +PrivacyUrl: https://www.geogebra.org/privacy +Author: GeoGebra GmbH +PackageName: GeoGebra Graphing Calculator +PackageUrl: https://www.geogebra.org/download +License: Proprietary +LicenseUrl: https://www.geogebra.org/license +Copyright: © 2024 GeoGebra® +ShortDescription: Graph functions, investigate equations, and plot data with our free graphing app +Moniker: graphingcalculator +Tags: +- education +- geometry +- graph +- graphing +- math +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.892/GeoGebra.GraphingCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.892/GeoGebra.GraphingCalculator.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1be073d1d9944 --- /dev/null +++ b/manifests/g/GeoGebra/GraphingCalculator/6.0.892/GeoGebra.GraphingCalculator.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: GeoGebra.GraphingCalculator +PackageVersion: 6.0.892 +PackageLocale: zh-CN +Publisher: International GeoGebra Institute +PublisherUrl: https://www.geogebra.org/ +PublisherSupportUrl: https://help.geogebra.org/ +PrivacyUrl: https://www.geogebra.org/privacy +Author: GeoGebra GmbH +PackageName: GeoGebra Graphing Calculator +PackageUrl: https://www.geogebra.org/download +License: 专有软件 +LicenseUrl: https://www.geogebra.org/license +Copyright: © 2024 GeoGebra® +ShortDescription: 使用我们的免费图形应用程序绘制函数图、研究方程和绘制数据图 +Tags: +- 几何 +- 图形 +- 教育 +- 数学 +- 绘图 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/GraphingCalculator/6.0.892/GeoGebra.GraphingCalculator.yaml b/manifests/g/GeoGebra/GraphingCalculator/6.0.892/GeoGebra.GraphingCalculator.yaml new file mode 100644 index 0000000000000..67d630af1ea60 --- /dev/null +++ b/manifests/g/GeoGebra/GraphingCalculator/6.0.892/GeoGebra.GraphingCalculator.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: GeoGebra.GraphingCalculator +PackageVersion: 6.0.892 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Ghisler/TotalCommander/11.55/Ghisler.TotalCommander.installer.yaml b/manifests/g/Ghisler/TotalCommander/11.55/Ghisler.TotalCommander.installer.yaml new file mode 100644 index 0000000000000..4e59ef8a5b2c0 --- /dev/null +++ b/manifests/g/Ghisler/TotalCommander/11.55/Ghisler.TotalCommander.installer.yaml @@ -0,0 +1,39 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Ghisler.TotalCommander +PackageVersion: '11.55' +InstallerType: exe +UpgradeBehavior: install +ReleaseDate: 2025-06-25 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://totalcommander.ch/1155/tcmd1155x32.exe + InstallerSha256: 7F412BC20E72714B700B267D9499795344F815ED683CD956FD71DCB8BCD1C907 + InstallerSwitches: + Silent: /AH + SilentWithProgress: /AH +- Architecture: x86 + Scope: machine + InstallerUrl: https://totalcommander.ch/1155/tcmd1155x32.exe + InstallerSha256: 7F412BC20E72714B700B267D9499795344F815ED683CD956FD71DCB8BCD1C907 + InstallerSwitches: + Silent: /AHN* + SilentWithProgress: /AHN* +- Architecture: x64 + Scope: user + InstallerUrl: https://totalcommander.ch/1155/tcmd1155x64.exe + InstallerSha256: 9D6764EE7D87D0EA5B11DC502BCBE94AD233181E405CE2DAB01EA980D3A75187 + InstallerSwitches: + Silent: /AH + SilentWithProgress: /AH +- Architecture: x64 + Scope: machine + InstallerUrl: https://totalcommander.ch/1155/tcmd1155x64.exe + InstallerSha256: 9D6764EE7D87D0EA5B11DC502BCBE94AD233181E405CE2DAB01EA980D3A75187 + InstallerSwitches: + Silent: /AHN* + SilentWithProgress: /AHN* +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Ghisler/TotalCommander/11.55/Ghisler.TotalCommander.locale.de-DE.yaml b/manifests/g/Ghisler/TotalCommander/11.55/Ghisler.TotalCommander.locale.de-DE.yaml new file mode 100644 index 0000000000000..f29f499ca74e2 --- /dev/null +++ b/manifests/g/Ghisler/TotalCommander/11.55/Ghisler.TotalCommander.locale.de-DE.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Ghisler.TotalCommander +PackageVersion: '11.55' +PackageLocale: de-DE +Publisher: Ghisler Software GmbH +PublisherUrl: https://www.ghisler.com/deutsch.htm +PublisherSupportUrl: https://www.ghisler.com/dfaq.htm +PrivacyUrl: https://www.ghisler.com/datenschutzerklaerung.htm +Author: Christian Ghisler +PackageName: Total Commander +PackageUrl: https://www.ghisler.com/deutsch.htm +License: Shareware +LicenseUrl: https://www.ghisler.com/dorder.htm +Copyright: Copyright (c) Christian Ghisler +ShortDescription: Total Commander ist ein moderner Filemanager mit Plugin-Unterstützung im klassischen 2-Fenster-Stil der DOS-Ära. +Tags: +- file-manager +- filemanager +PurchaseUrl: https://www.ghisler.com/dorder.htm +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Ghisler/TotalCommander/11.55/Ghisler.TotalCommander.locale.en-US.yaml b/manifests/g/Ghisler/TotalCommander/11.55/Ghisler.TotalCommander.locale.en-US.yaml new file mode 100644 index 0000000000000..d0f6aefb291fa --- /dev/null +++ b/manifests/g/Ghisler/TotalCommander/11.55/Ghisler.TotalCommander.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Ghisler.TotalCommander +PackageVersion: '11.55' +PackageLocale: en-US +Publisher: Ghisler Software GmbH +PublisherUrl: https://www.ghisler.com/ +PublisherSupportUrl: https://www.ghisler.com/faq.htm +PrivacyUrl: https://www.ghisler.com/privacypolicy.htm +Author: Christian Ghisler +PackageName: Total Commander +PackageUrl: https://www.ghisler.com/ +License: Shareware +LicenseUrl: https://www.ghisler.com/order.htm +Copyright: Copyright (c) Christian Ghisler +ShortDescription: Total Commander is a modern file manager with plugin support in the classic 2-window style of the DOS era. +Moniker: tcmd +Tags: +- file-manager +- filemanager +PurchaseUrl: https://www.ghisler.com/order.htm +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Ghisler/TotalCommander/11.55/Ghisler.TotalCommander.yaml b/manifests/g/Ghisler/TotalCommander/11.55/Ghisler.TotalCommander.yaml new file mode 100644 index 0000000000000..f6c68c326a6ff --- /dev/null +++ b/manifests/g/Ghisler/TotalCommander/11.55/Ghisler.TotalCommander.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: Ghisler.TotalCommander +PackageVersion: '11.55' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Git/Git/2.50.0.2/Git.Git.installer.yaml b/manifests/g/Git/Git/2.50.0.2/Git.Git.installer.yaml new file mode 100644 index 0000000000000..1a580c3f9c857 --- /dev/null +++ b/manifests/g/Git/Git/2.50.0.2/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.0.2 +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-01 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/git-for-windows/git/releases/download/v2.50.0.windows.2/Git-2.50.0.2-64-bit.exe + InstallerSha256: A22B0DDAAA6C698BE63F8396B5E595C72A4AB2237BB8863C935752C02C1824B3 +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/git-for-windows/git/releases/download/v2.50.0.windows.2/Git-2.50.0.2-64-bit.exe + InstallerSha256: A22B0DDAAA6C698BE63F8396B5E595C72A4AB2237BB8863C935752C02C1824B3 +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/git-for-windows/git/releases/download/v2.50.0.windows.2/Git-2.50.0.2-arm64.exe + InstallerSha256: 4D6306FA8F346615271ACEF9A6BBD9072485111E7C9717EE993BF72A29AB7CD1 +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/git-for-windows/git/releases/download/v2.50.0.windows.2/Git-2.50.0.2-arm64.exe + InstallerSha256: 4D6306FA8F346615271ACEF9A6BBD9072485111E7C9717EE993BF72A29AB7CD1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Git/Git/2.50.0.2/Git.Git.locale.en-US.yaml b/manifests/g/Git/Git/2.50.0.2/Git.Git.locale.en-US.yaml new file mode 100644 index 0000000000000..67fa009c033b5 --- /dev/null +++ b/manifests/g/Git/Git/2.50.0.2/Git.Git.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: Git.Git +PackageVersion: 2.50.0.2 +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 (June 16th 2025) + New Features + - Comes with Git LFS v3.7.0. + Bug Fixes + - Cloning large repositories via SSH frequently hung with Git for Windows v2.50.0, which was fixed. + - In Git for Windows v2.50.0, operations using the POSIX emulation layer (cloning via SSH, generating the Bash prompt) cannot be interrupted by Ctrl+C, which has been fixed. + - Git for Windows v2.50.0 is unable to initialize Git repositories on Windows Server 2016, which has been fixed. +ReleaseNotesUrl: https://github.com/git-for-windows/git/releases/tag/v2.50.0.windows.2 +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.0.2/Git.Git.locale.zh-CN.yaml b/manifests/g/Git/Git/2.50.0.2/Git.Git.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f5ee106889afe --- /dev/null +++ b/manifests/g/Git/Git/2.50.0.2/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.0.2 +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.0.windows.2 +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.0.2/Git.Git.yaml b/manifests/g/Git/Git/2.50.0.2/Git.Git.yaml new file mode 100644 index 0000000000000..f59a06f717d8f --- /dev/null +++ b/manifests/g/Git/Git/2.50.0.2/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.0.2 +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/GitButler/GitButler/0.15.1/GitButler.GitButler.installer.yaml b/manifests/g/GitButler/GitButler/0.15.1/GitButler.GitButler.installer.yaml new file mode 100644 index 0000000000000..3f3c826326f10 --- /dev/null +++ b/manifests/g/GitButler/GitButler/0.15.1/GitButler.GitButler.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: GitButler.GitButler +PackageVersion: 0.15.1 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{3E7D67C9-FA39-47CD-80A3-5005A24E992C}' +AppsAndFeaturesEntries: +- Publisher: gitbutler + ProductCode: '{3E7D67C9-FA39-47CD-80A3-5005A24E992C}' + UpgradeCode: '{6BA03334-13E8-5712-80AD-F373B5415A08}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\GitButler' +Installers: +- Architecture: x64 + InstallerUrl: https://releases.gitbutler.com/releases/release/0.15.1-2163/windows/x86_64/GitButler_0.15.1_x64_en-US.msi + InstallerSha256: FB87976FA97F367F152530AEBB02383EC9FAA4E4C94064D3EB5D1F55A119B6AC +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-07-01 diff --git a/manifests/g/GitButler/GitButler/0.15.1/GitButler.GitButler.locale.en-US.yaml b/manifests/g/GitButler/GitButler/0.15.1/GitButler.GitButler.locale.en-US.yaml new file mode 100644 index 0000000000000..b003993f7ad92 --- /dev/null +++ b/manifests/g/GitButler/GitButler/0.15.1/GitButler.GitButler.locale.en-US.yaml @@ -0,0 +1,53 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: GitButler.GitButler +PackageVersion: 0.15.1 +PackageLocale: en-US +Publisher: GitButler +PublisherUrl: https://gitbutler.com/ +PrivacyUrl: https://app.termly.io/policy-viewer/policy.html?policyUUID=a001c8b7-505b-4eab-81e3-fcd1c72bdd79 +PackageName: GitButler +PackageUrl: https://gitbutler.com/ +License: Functional Source License, Version 1.1, MIT Future License +LicenseUrl: https://github.com/gitbutlerapp/gitbutler/blob/master/LICENSE.md +Copyright: Copyright 2023-2024 GitButler Inc +CopyrightUrl: https://github.com/gitbutlerapp/gitbutler/blob/master/LICENSE.md +ShortDescription: A Git client for simultaneous branches on top of your existing workflow. +Tags: +- git +ReleaseNotes: |- + # 0.15.1 + - On commit creation the "commit goes here" indicator now always defaults to the top of the branch + - Fixes a bug where it was not possible to move file assignments from one lane to another + - Fixes a bug where it was not possible to scroll the changes preview of a lane + - Fixes a bug with lane reordering + + # 0.15.0 + ## New default GitButler UI + - The v3 interface is now the default and it supports nearly all functionality that the old one did and much more. + - You can temporarily switch back to the old UI under Experimental in Global Settings, but heads up — this option will be removed in a future release. + + Let us know if anything feels off or gets in your way! + + ## Changes + - Pan-to-scroll: It is now possible to click to pan left and right in the workspace instead of horizontal scrolling + - Pop-out commit input: It is now possible to make the commit input box floating if you wish to write a more detailed message + - Scroll into view when previewing: When a file is being previewed, if the preview happens to be off-screen, it will be scrolled into view + - When a branch lane is being drag-reordered the new position is dynamically visualized + - When a branch lane is being reordered, the details panel is automatically collapsed + - There is now an indication next to uncommitted files if they depend on commit from a particular branch + - Adds an option to configure a custom OpenAI API endpoint + + ## Fixes + - Fixed a bug where when committing sometimes the message title is not being focused + - Fixes a bug where the "squash all" option was not being shown + - Fixes a bug where in some rare conditions the app gets stuck in "committing" mode after all changes have been discarded + - Fixes a bug where in some cases unapplied pull requests had a double "Apply" button + - Fixes a bug where selecting files for previewing did not work if the name contained ':' +ReleaseNotesUrl: https://github.com/gitbutlerapp/gitbutler/releases +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.gitbutler.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GitButler/GitButler/0.15.1/GitButler.GitButler.yaml b/manifests/g/GitButler/GitButler/0.15.1/GitButler.GitButler.yaml new file mode 100644 index 0000000000000..a2dd4e5e5bed8 --- /dev/null +++ b/manifests/g/GitButler/GitButler/0.15.1/GitButler.GitButler.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: GitButler.GitButler +PackageVersion: 0.15.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GitHub/GitHubDesktop/3.5.0/GitHub.GitHubDesktop.installer.yaml b/manifests/g/GitHub/GitHubDesktop/3.5.0/GitHub.GitHubDesktop.installer.yaml index 339e2d3428a7c..fdecebfc6170e 100644 --- a/manifests/g/GitHub/GitHubDesktop/3.5.0/GitHub.GitHubDesktop.installer.yaml +++ b/manifests/g/GitHub/GitHubDesktop/3.5.0/GitHub.GitHubDesktop.installer.yaml @@ -32,5 +32,27 @@ Installers: - DisplayName: GitHub Desktop Deployment Tool ProductCode: '{7EE5DC32-6BD0-4E98-AF4E-9AE82DC5871B}' UpgradeCode: '{00D8E2EE-13EA-5BEB-87F0-70EFC46A7D4A}' +- Architecture: arm64 + InstallerType: exe + Scope: user + InstallerUrl: https://desktop.githubusercontent.com/releases/3.5.0-3d21337d/GitHubDesktopSetup-arm64.exe + InstallerSha256: A8B0626F21C675BAFA8D364154178BDFE8BFA0027911BC22D98C2FA0606C49D8 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + ProductCode: GitHubDesktop +- Architecture: arm64 + InstallerType: wix + Scope: machine + InstallerUrl: https://desktop.githubusercontent.com/releases/3.5.0-3d21337d/GitHubDesktopSetup-arm64.msi + InstallerSha256: A821AAC60DC48831872602F64D31DD51E23C9BD6ECED28597E1DDDE0DDD2A3FE + ProductCode: '{FF003A97-6D53-4DFD-B379-FEFE05BF7A9C}' + AppsAndFeaturesEntries: + - DisplayName: GitHub Desktop Deployment Tool + ProductCode: '{FF003A97-6D53-4DFD-B379-FEFE05BF7A9C}' + UpgradeCode: '{00D8E2EE-13EA-5BEB-87F0-70EFC46A7D4A}' ManifestType: installer 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/GitHub/GitLFS/3.7.0/GitHub.GitLFS.installer.yaml b/manifests/g/GitHub/GitLFS/3.7.0/GitHub.GitLFS.installer.yaml new file mode 100644 index 0000000000000..554d177b8ad83 --- /dev/null +++ b/manifests/g/GitHub/GitLFS/3.7.0/GitHub.GitLFS.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: GitHub.GitLFS +PackageVersion: 3.7.0 +Platform: +- Windows.Desktop +InstallerType: inno +Scope: machine +Dependencies: + PackageDependencies: + - PackageIdentifier: Git.Git +ProductCode: '{286391DE-F778-44EA-9375-1B21AAA04FF0}_is1' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/git-lfs/git-lfs/releases/download/v3.7.0/git-lfs-windows-v3.7.0.exe + InstallerSha256: 70A30E7218FA945EFBFFC8305BCF7308551312B34E193BDB3509DEE20367A10E +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-27 diff --git a/manifests/g/GitHub/GitLFS/3.7.0/GitHub.GitLFS.locale.en-US.yaml b/manifests/g/GitHub/GitLFS/3.7.0/GitHub.GitLFS.locale.en-US.yaml new file mode 100644 index 0000000000000..d0295f1a56cc5 --- /dev/null +++ b/manifests/g/GitHub/GitLFS/3.7.0/GitHub.GitLFS.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: GitHub.GitLFS +PackageVersion: 3.7.0 +PackageLocale: en-US +Publisher: GitHub, Inc. +PublisherUrl: https://github.com/git-lfs/git-lfs +PublisherSupportUrl: https://github.com/git-lfs/git-lfs/issues +Author: Github, Inc. +PackageName: Git LFS +PackageUrl: https://github.com/git-lfs +License: MIT License +LicenseUrl: https://github.com/git-lfs/git-lfs/blob/HEAD/LICENSE.md +Copyright: Copyright (c) 2014-2021 GitHub, Inc. and Git LFS contributors +CopyrightUrl: https://github.com/git-lfs/git-lfs/raw/main/LICENSE.md +ShortDescription: Git Large File Storage is a command line extension and specification for managing large files with Git. +Moniker: gitlfs +Tags: +- command-line +- file-storage +- git +- github +- go +- golang +ReleaseNotesUrl: https://github.com/git-lfs/git-lfs/releases/tag/v3.7.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/git-lfs/git-lfs/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/GitHub/GitLFS/3.7.0/GitHub.GitLFS.yaml b/manifests/g/GitHub/GitLFS/3.7.0/GitHub.GitLFS.yaml new file mode 100644 index 0000000000000..667f48013f2ad --- /dev/null +++ b/manifests/g/GitHub/GitLFS/3.7.0/GitHub.GitLFS.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: GitHub.GitLFS +PackageVersion: 3.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/GitKraken/cli/3.1.1/GitKraken.cli.installer.yaml b/manifests/g/GitKraken/cli/3.1.1/GitKraken.cli.installer.yaml new file mode 100644 index 0000000000000..a3e5080ce7d24 --- /dev/null +++ b/manifests/g/GitKraken/cli/3.1.1/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.1 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-06-30" +Installers: + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: gk_3.1.1_windows_386\gk.exe + PortableCommandAlias: gk + InstallerUrl: https://github.com/gitkraken/gk-cli/releases/download/v3.1.1/gk_3.1.1_windows_386.zip + InstallerSha256: 23dc38326278ff7ac81bd155187fcdf1b86e955a6d05e285f64d8232ebbf525e + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: gk_3.1.1_windows_arm64\gk.exe + PortableCommandAlias: gk + InstallerUrl: https://github.com/gitkraken/gk-cli/releases/download/v3.1.1/gk_3.1.1_windows_arm64.zip + InstallerSha256: 4c73eccd5f89f982727f9798ac6d310d8de9d0bef84f0acf35c0743260849cdf + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: gk_3.1.1_windows_amd64\gk.exe + PortableCommandAlias: gk + InstallerUrl: https://github.com/gitkraken/gk-cli/releases/download/v3.1.1/gk_3.1.1_windows_amd64.zip + InstallerSha256: 7ae1a1bd3da8c404761dfaa7b7540bef4b1c4043bd93dc481d8e085907b4e478 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GitKraken/cli/3.1.1/GitKraken.cli.locale.en-US.yaml b/manifests/g/GitKraken/cli/3.1.1/GitKraken.cli.locale.en-US.yaml new file mode 100644 index 0000000000000..5a10403ab9bb6 --- /dev/null +++ b/manifests/g/GitKraken/cli/3.1.1/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.1 +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### \U0001F539 Others\n* Fixes MCP install command overwriting settings (#280)\n" +ReleaseNotesUrl: https://github.com/gitkraken/gk-cli/releases/tag/v3.1.1 +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.1/GitKraken.cli.yaml b/manifests/g/GitKraken/cli/3.1.1/GitKraken.cli.yaml new file mode 100644 index 0000000000000..e37a0e8a74ec6 --- /dev/null +++ b/manifests/g/GitKraken/cli/3.1.1/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.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GitKraken/cli/3.1.3/GitKraken.cli.installer.yaml b/manifests/g/GitKraken/cli/3.1.3/GitKraken.cli.installer.yaml new file mode 100644 index 0000000000000..da393bafdc115 --- /dev/null +++ b/manifests/g/GitKraken/cli/3.1.3/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.3 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-02" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: gk_3.1.3_windows_amd64\gk.exe + PortableCommandAlias: gk + InstallerUrl: https://github.com/gitkraken/gk-cli/releases/download/v3.1.3/gk_3.1.3_windows_amd64.zip + InstallerSha256: 534406668c316e64da4d6417cdc9716864a2c2283093b9a861064f95cc6794ac + UpgradeBehavior: uninstallPrevious + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: gk_3.1.3_windows_386\gk.exe + PortableCommandAlias: gk + InstallerUrl: https://github.com/gitkraken/gk-cli/releases/download/v3.1.3/gk_3.1.3_windows_386.zip + InstallerSha256: cb894aac93a905e5f73e879222c1adf076fb3a073ae7162fd4d3642e2f550a59 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: gk_3.1.3_windows_arm64\gk.exe + PortableCommandAlias: gk + InstallerUrl: https://github.com/gitkraken/gk-cli/releases/download/v3.1.3/gk_3.1.3_windows_arm64.zip + InstallerSha256: 12813bdc96d554d3b211bb4d9c2cd369450610dc36d697d44cda9d3929ba083f + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GitKraken/cli/3.1.3/GitKraken.cli.locale.en-US.yaml b/manifests/g/GitKraken/cli/3.1.3/GitKraken.cli.locale.en-US.yaml new file mode 100644 index 0000000000000..8c30f0f4ca60d --- /dev/null +++ b/manifests/g/GitKraken/cli/3.1.3/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.3 +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### \U0001F539 Others\n* Fixes version comparison\n" +ReleaseNotesUrl: https://github.com/gitkraken/gk-cli/releases/tag/v3.1.3 +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.3/GitKraken.cli.yaml b/manifests/g/GitKraken/cli/3.1.3/GitKraken.cli.yaml new file mode 100644 index 0000000000000..4c26ee9963d1b --- /dev/null +++ b/manifests/g/GitKraken/cli/3.1.3/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.3 +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/Gitlab/Runner/17.9.0/Gitlab.Runner.installer.yaml b/manifests/g/Gitlab/Runner/17.9.0/Gitlab.Runner.installer.yaml index ac6c25e516381..e5d9689e49122 100644 --- a/manifests/g/Gitlab/Runner/17.9.0/Gitlab.Runner.installer.yaml +++ b/manifests/g/Gitlab/Runner/17.9.0/Gitlab.Runner.installer.yaml @@ -8,7 +8,7 @@ Commands: - gitlab-runner ReleaseDate: 2025-02-20 AppsAndFeaturesEntries: -- DisplayVersion: 17.5.0 (66a723c3) +- DisplayVersion: 17.9.0 (c4cbe9dd) Installers: - Architecture: x86 InstallerUrl: https://gitlab-runner-downloads.s3.amazonaws.com/v17.9.0/binaries/gitlab-runner-windows-386.exe diff --git a/manifests/g/Gitlab/Runner/18.1.1/Gitlab.Runner.installer.yaml b/manifests/g/Gitlab/Runner/18.1.1/Gitlab.Runner.installer.yaml new file mode 100644 index 0000000000000..278391cf4c470 --- /dev/null +++ b/manifests/g/Gitlab/Runner/18.1.1/Gitlab.Runner.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: Gitlab.Runner +PackageVersion: 18.1.1 +InstallerType: portable +Commands: +- gitlab-runner +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x86 + InstallerUrl: https://gitlab-runner-downloads.s3.amazonaws.com/v18.1.1/binaries/gitlab-runner-windows-386.exe + InstallerSha256: 8569833CE5DB02452297CD5C80F0DA4ED6E4DEEBAC76517D2D9511D262D6BB4D +- Architecture: x64 + InstallerUrl: https://gitlab-runner-downloads.s3.amazonaws.com/v18.1.1/binaries/gitlab-runner-windows-amd64.exe + InstallerSha256: 2E61B516B5C4CF043649661EAF9CB0BBEA74FC3462C75388B4BA6568FC9862B2 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gitlab/Runner/18.1.1/Gitlab.Runner.locale.en-US.yaml b/manifests/g/Gitlab/Runner/18.1.1/Gitlab.Runner.locale.en-US.yaml new file mode 100644 index 0000000000000..94ccd4d9a81f2 --- /dev/null +++ b/manifests/g/Gitlab/Runner/18.1.1/Gitlab.Runner.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: Gitlab.Runner +PackageVersion: 18.1.1 +PackageLocale: en-US +Publisher: GitLab Inc. +PublisherUrl: https://gitlab.com/ +PublisherSupportUrl: https://about.gitlab.com/support/ +PrivacyUrl: https://about.gitlab.com/privacy/ +Author: GitLab Inc. +PackageName: GitLab Runner +PackageUrl: https://gitlab.com/gitlab-org/gitlab-runner +License: MIT +LicenseUrl: https://gitlab.com/gitlab-org/gitlab-runner/-/blob/main/LICENSE +Copyright: Copyright (c) 2015-2019 GitLab B.V. +CopyrightUrl: https://gitlab.com/gitlab-org/gitlab-runner/-/blob/main/LICENSE +ShortDescription: GitLab Runner is the open source project that is used to run your CI/CD jobs and send the results back to GitLab. +Moniker: gitlab-runner +Tags: +- cd +- ci +- pipeline +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gitlab/Runner/18.1.1/Gitlab.Runner.yaml b/manifests/g/Gitlab/Runner/18.1.1/Gitlab.Runner.yaml new file mode 100644 index 0000000000000..6eeb84641f549 --- /dev/null +++ b/manifests/g/Gitlab/Runner/18.1.1/Gitlab.Runner.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: Gitlab.Runner +PackageVersion: 18.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GiulioSorrentino/WinDateFrom/5.0.0.2/GiulioSorrentino.WinDateFrom.installer.yaml b/manifests/g/GiulioSorrentino/WinDateFrom/5.0.0.2/GiulioSorrentino.WinDateFrom.installer.yaml new file mode 100644 index 0000000000000..bde2e9a594d2b --- /dev/null +++ b/manifests/g/GiulioSorrentino/WinDateFrom/5.0.0.2/GiulioSorrentino.WinDateFrom.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: GiulioSorrentino.WinDateFrom +PackageVersion: 5.0.0.2 +InstallerType: wix +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.9 +ProductCode: '{A2941143-09E9-45AD-8017-0DB4198D80D5}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GiulianoSpaghetti/WinDateFrom.avalonia/releases/download/5.0/WinDateFrom.Avalonia-5.0.0.2-amd64.msi + InstallerSha256: 72D785D61480EC6C41A90AE121CDB36D46D21AC8A8E2BC7A47CE0E3169A775EB +- Architecture: arm64 + InstallerUrl: https://github.com/GiulianoSpaghetti/WinDateFrom.avalonia/releases/download/5.0/WinDateFrom.Avalonia-5.0.0.2-arm64.msi + InstallerSha256: CBFCF1FAD46CDBAD725F13C40CBC0029EA1A2CBC916EAF519580849A6AEE2D63 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-04-21 diff --git a/manifests/g/GiulioSorrentino/WinDateFrom/5.0.0.2/GiulioSorrentino.WinDateFrom.locale.en-US.yaml b/manifests/g/GiulioSorrentino/WinDateFrom/5.0.0.2/GiulioSorrentino.WinDateFrom.locale.en-US.yaml new file mode 100644 index 0000000000000..6606f8d88ef93 --- /dev/null +++ b/manifests/g/GiulioSorrentino/WinDateFrom/5.0.0.2/GiulioSorrentino.WinDateFrom.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: GiulioSorrentino.WinDateFrom +PackageVersion: 5.0.0.2 +PackageLocale: en-US +Publisher: Giulio Sorrentino +PublisherUrl: https://numerone.altervista.org +PublisherSupportUrl: https://github.com/numerunix/WinDateFrom.avalonia/issues +Author: Giulio Sorrentino +PackageName: WinDateFrom +PackageUrl: https://github.com/numerunix/WinDateFrom.avalonia/releases/download/4.6/WinDateFrom.Avalonia-4.6-amd64.msi +License: GPLv3+ +LicenseUrl: https://github.com/numerunix/WinDateFrom.avalonia/blob/master/LICENSE.txt +Copyright: 2023 Giulio Sorrentino +ShortDescription: An app for calculating how mutch time passed from an event +Description: Questa app mostra quanto tempo è passato da una data ben definita che dovrebbe rappresentare un evento, tipo l'incontro con una persona amata, e mostra quanto tempo è passato da quella data. Lo use case è la canzone Vita, morte e miracoli di Angelina Mango, e come c'è modo di vedere spiega con facilità nelle sue canzoni la vita di tutti i giorni, a partire dalla canzone 9 maggio che spiega perché doveva vincere amici. In pratica una donna vede un bell'uomo e comincia non a farsi castelli per aria, quelli vengono dopo, ma pippe mentali. La canzone fa "mi vedo già in posa, già vestita da sposa" e poi continua "dopo giorni, dopo giorni non mi ricordo neanche come ti chiami". Una donna ci tiene non alle scadenze, ma agli anniversari, questo significa che la data di incontro è importante, non la data della prima volta che si fa... l'amore, ma la data del primo incontro. In seguito viene il nome ed il cognome ed è la stessa bellissima madama (si legge porca) per eccellenza che dice "dopo giorni con te non mi ricordo neanche come ti chiami". Quindi perché non fare un software per appuntare la data di incontro ed il nome, ma non per due o tre volte, se no è da porci, ma per una sola persona per volta, magari accompagnato da un pulsante per cancellare nome e data se le cose non dovessero andare bene. Questa è la normalità femminile, le donne vedono begli uomini per la via, si immaginano col vestito da sposa ma spesso non si ricordano neanche il nome, e ci tengono agli anniversari. Questa non è matematica ma è psicologia spicciola, significa capire la ... bellissima artista, e capire la... bel panorama, non cod o pes, ma la fifa! +ReleaseNotesUrl: https://github.com/GiulianoSpaghetti/WinDateFrom.avalonia/releases/tag/5.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/GiulianoSpaghetti/WinDateFrom.avalonia/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/GiulioSorrentino/WinDateFrom/5.0.0.2/GiulioSorrentino.WinDateFrom.yaml b/manifests/g/GiulioSorrentino/WinDateFrom/5.0.0.2/GiulioSorrentino.WinDateFrom.yaml new file mode 100644 index 0000000000000..986918a1697ba --- /dev/null +++ b/manifests/g/GiulioSorrentino/WinDateFrom/5.0.0.2/GiulioSorrentino.WinDateFrom.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: GiulioSorrentino.WinDateFrom +PackageVersion: 5.0.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/Glarysoft/GlaryUtilities/6.27.0.31/Glarysoft.GlaryUtilities.installer.yaml b/manifests/g/Glarysoft/GlaryUtilities/6.27.0.31/Glarysoft.GlaryUtilities.installer.yaml deleted file mode 100644 index 8a97cdbff8161..0000000000000 --- a/manifests/g/Glarysoft/GlaryUtilities/6.27.0.31/Glarysoft.GlaryUtilities.installer.yaml +++ /dev/null @@ -1,19 +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: Glarysoft.GlaryUtilities -PackageVersion: 6.27.0.31 -InstallerLocale: en-US -MinimumOSVersion: 10.0.0.0 -InstallerType: exe -Scope: machine -InstallerSwitches: - Silent: /S - SilentWithProgress: /S -UpgradeBehavior: install -Installers: -- Architecture: x86 - InstallerUrl: https://download.glarysoft.com/gusetup.exe - InstallerSha256: A967A51F66157F67A0353018855215EB564BCD833474EDD43FEA7D204780B2F6 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/g/Glarysoft/GlaryUtilities/6.27.0.31/Glarysoft.GlaryUtilities.yaml b/manifests/g/Glarysoft/GlaryUtilities/6.27.0.31/Glarysoft.GlaryUtilities.yaml deleted file mode 100644 index 5860ffb492531..0000000000000 --- a/manifests/g/Glarysoft/GlaryUtilities/6.27.0.31/Glarysoft.GlaryUtilities.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: Glarysoft.GlaryUtilities -PackageVersion: 6.27.0.31 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/g/Glarysoft/GlaryUtilities/6.28.0.32/Glarysoft.GlaryUtilities.installer.yaml b/manifests/g/Glarysoft/GlaryUtilities/6.28.0.32/Glarysoft.GlaryUtilities.installer.yaml new file mode 100644 index 0000000000000..b991ea416e343 --- /dev/null +++ b/manifests/g/Glarysoft/GlaryUtilities/6.28.0.32/Glarysoft.GlaryUtilities.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: Glarysoft.GlaryUtilities +PackageVersion: 6.28.0.32 +InstallerLocale: en-US +MinimumOSVersion: 10.0.0.0 +InstallerType: exe +Scope: machine +InstallerSwitches: + Silent: /S + SilentWithProgress: /S +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://download.glarysoft.com/gusetup.exe + InstallerSha256: 3977867647A7686D56E8AB1BDAA267D0BC4F25B6623D73D4CCC4AF9287EA0972 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/Glarysoft/GlaryUtilities/6.27.0.31/Glarysoft.GlaryUtilities.locale.en-US.yaml b/manifests/g/Glarysoft/GlaryUtilities/6.28.0.32/Glarysoft.GlaryUtilities.locale.en-US.yaml similarity index 89% rename from manifests/g/Glarysoft/GlaryUtilities/6.27.0.31/Glarysoft.GlaryUtilities.locale.en-US.yaml rename to manifests/g/Glarysoft/GlaryUtilities/6.28.0.32/Glarysoft.GlaryUtilities.locale.en-US.yaml index 569d7f7cf0444..5742cc3da19b0 100644 --- a/manifests/g/Glarysoft/GlaryUtilities/6.27.0.31/Glarysoft.GlaryUtilities.locale.en-US.yaml +++ b/manifests/g/Glarysoft/GlaryUtilities/6.28.0.32/Glarysoft.GlaryUtilities.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.9.4.0 +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json PackageIdentifier: Glarysoft.GlaryUtilities -PackageVersion: 6.27.0.31 +PackageVersion: 6.28.0.32 PackageLocale: en-US Publisher: Glarysoft Ltd PublisherUrl: https://glarysoft.com/ diff --git a/manifests/g/Glarysoft/GlaryUtilities/6.28.0.32/Glarysoft.GlaryUtilities.yaml b/manifests/g/Glarysoft/GlaryUtilities/6.28.0.32/Glarysoft.GlaryUtilities.yaml new file mode 100644 index 0000000000000..0244b2b9d0a15 --- /dev/null +++ b/manifests/g/Glarysoft/GlaryUtilities/6.28.0.32/Glarysoft.GlaryUtilities.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: Glarysoft.GlaryUtilities +PackageVersion: 6.28.0.32 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/GlassDevtools/Void/1.99.30027/GlassDevtools.Void.installer.yaml b/manifests/g/GlassDevtools/Void/1.99.30027/GlassDevtools.Void.installer.yaml index cd3df97932385..751e89b440a6c 100644 --- a/manifests/g/GlassDevtools/Void/1.99.30027/GlassDevtools.Void.installer.yaml +++ b/manifests/g/GlassDevtools/Void/1.99.30027/GlassDevtools.Void.installer.yaml @@ -142,7 +142,7 @@ Installers: InstallerType: inno Scope: user InstallerUrl: https://github.com/voideditor/binaries/releases/download/1.99.30027/VoidUserSetup-x64-1.99.30027.exe - InstallerSha256: BC51BFB6A002AD8F8A933A6A02986CACB4F1F67386333800685198CB9B09A359 + InstallerSha256: 0bfd24b558fa583b1e1166fff59804ca3bfe109979ec87382b508a277153578d InstallerSwitches: Custom: /mergetasks=!runcode ProductCode: '{8BED5DC1-6C55-46E6-9FE6-18F7E6F7C7F1}_is1' @@ -150,7 +150,7 @@ Installers: InstallerType: inno Scope: user InstallerUrl: https://github.com/voideditor/binaries/releases/download/1.99.30027/VoidUserSetup-arm64-1.99.30027.exe - InstallerSha256: 9BA0310DEC4F61BB34A78754FF17FDE7C75B6C8A8794C3DE20110715F02F6AE7 + InstallerSha256: f546510afc867665f5bb65ef4686ab0dfb94c941243a94354cb18ff1b3717934 InstallerSwitches: Custom: /mergetasks=!runcode ProductCode: '{F6C87466-BC82-4A8F-B0FF-18CA366BA4D8}_is1' @@ -158,7 +158,7 @@ Installers: InstallerType: inno Scope: machine InstallerUrl: https://github.com/voideditor/binaries/releases/download/1.99.30027/VoidSetup-x64-1.99.30027.exe - InstallerSha256: 16E436D91CB6D83771377BDADB0EB1BAAECC8158DD5826CF85F77FB3B8DC35B7 + InstallerSha256: 13af647221bd5778df56d9115bc0370e18cd2479b094a43036ef338162b8f5e0 InstallerSwitches: Custom: /mergetasks=!runcode ProductCode: '{9D394D01-1728-45A7-B997-A6C82C5452C3}_is1' @@ -167,7 +167,7 @@ Installers: InstallerType: inno Scope: machine InstallerUrl: https://github.com/voideditor/binaries/releases/download/1.99.30027/VoidSetup-arm64-1.99.30027.exe - InstallerSha256: 645CC573C4F140D7228A367C10D3D4C91E04B2F0FA36F7AB209583A67389B216 + InstallerSha256: a42e32ea36b8c98c17ea260ccf37df01ebc2c0762a24bb175c08b33992933547 InstallerSwitches: Custom: /mergetasks=!runcode ProductCode: '{0668DD58-2BDE-4101-8CDA-40252DF8875D}_is1' @@ -176,10 +176,10 @@ Installers: InstallerType: wix Scope: machine InstallerUrl: https://github.com/voideditor/binaries/releases/download/1.99.30027/Void-x64-1.99.30027.msi - InstallerSha256: 6478B79ECA610390017839014FEB9B1529E3F2035B426CD86309002781772D45 + InstallerSha256: 4e6eb9eaf8fccd4a865813ae7cd2e049e61417ff88997286cbbfff471db5e78c InstallerSwitches: InstallLocation: APPLICATIONFOLDER="" - ProductCode: '{21B39FCF-34D9-443C-A441-ABA48CADB62A}' + ProductCode: '{E1523EC9-4098-41ED-A19F-33C25267B942}' AppsAndFeaturesEntries: - UpgradeCode: '{965370CD-253C-4720-82FC-2E6B02A53808}' ManifestType: installer diff --git a/manifests/g/Glodon/CADReader/3.7.4.21/Glodon.CADReader.installer.yaml b/manifests/g/Glodon/CADReader/3.7.4.21/Glodon.CADReader.installer.yaml new file mode 100644 index 0000000000000..25df6c09dd67d --- /dev/null +++ b/manifests/g/Glodon/CADReader/3.7.4.21/Glodon.CADReader.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: Glodon.CADReader +PackageVersion: 3.7.4.21 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- dwg +- dxf +ProductCode: '{F820B3E7-90F4-4420-8C49-3B0107740927}_is1' +AppsAndFeaturesEntries: +- DisplayName: CADReader v3.7.4.21 + ProductCode: '{F820B3E7-90F4-4420-8C49-3B0107740927}_is1' +Installers: +- Architecture: x86 + InstallerUrl: https://yuntu-f.fastcadreader.com/cad/app/CADReaderIntl_3.7.4.21.exe + InstallerSha256: A95A5F2E9B8F877ACADE6AA2A55530B533319B5624EAC3EAE2C4D1D7F15906EE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Glodon/CADReader/3.7.4.21/Glodon.CADReader.locale.en-US.yaml b/manifests/g/Glodon/CADReader/3.7.4.21/Glodon.CADReader.locale.en-US.yaml new file mode 100644 index 0000000000000..1dfd687e5552b --- /dev/null +++ b/manifests/g/Glodon/CADReader/3.7.4.21/Glodon.CADReader.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: Glodon.CADReader +PackageVersion: 3.7.4.21 +PackageLocale: en-US +Publisher: Glodon Co. Ltd +PublisherUrl: https://www.glodon.com/en +PublisherSupportUrl: https://cadreader.glodon.com/question/list +PrivacyUrl: https://account.global.glodon.com/privacy +Author: Beijing Glodon Yuntu Dream Technology Co., Ltd. +PackageName: CADReader +PackageUrl: https://cadreader.glodon.com +License: Proprietary +LicenseUrl: https://account.global.glodon.com/agreement +Copyright: Copyright (C) 1998-2024 Glodon Company Limited +ShortDescription: A fast DWG/DXF viewer and measurement tool +Description: CAD Reader is a fast and easy-to-use DXF & DWG drawing viewer, which can open, view, mark, measure, and share your AutoCAD files easily. +Tags: +- blueprint +- cad +- drawing +- reader +- tangent +- viewer +ReleaseNotes: |- + New Updates + 1. Traditional Chinese added to the interface languages. + 2. Add a hatch area measurement feature. + 3. Optimize the display of drawings. +ReleaseNotesUrl: https://yuntu-f.fastcadreader.com/cad/app/changelog/3.7.4.21.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Glodon/CADReader/3.7.4.21/Glodon.CADReader.locale.zh-CN.yaml b/manifests/g/Glodon/CADReader/3.7.4.21/Glodon.CADReader.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f1d9a00c034f7 --- /dev/null +++ b/manifests/g/Glodon/CADReader/3.7.4.21/Glodon.CADReader.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: Glodon.CADReader +PackageVersion: 3.7.4.21 +PackageLocale: zh-CN +Publisher: Glodon Co. Ltd +PublisherUrl: https://www.glodon.com/en +PublisherSupportUrl: https://cadreader.glodon.com/question/list +PrivacyUrl: https://account.global.glodon.com/privacy +Author: 北京广联达云图梦想科技有限公司 +PackageName: CADReader +PackageUrl: https://cadreader.glodon.com +License: 专有软件 +LicenseUrl: https://account.global.glodon.com/agreement +Copyright: Copyright (C) 1998-2024 Glodon Company Limited +ShortDescription: 一款快速的 DWG/DXF 查看器和测量工具 +Description: CAD Reader 是一款快速、易用的 DXF 和 DWG 图纸查看器,可以轻松打开、查看、标记、测量、分享您的 AutoCAD 文件。 +Tags: +- cad +- 图纸 +- 天正 +- 查看器 +- 看图 +- 蓝图 +- 阅读器 +ReleaseNotesUrl: https://yuntu-f.fastcadreader.com/cad/app/changelog/3.7.4.21.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Glodon/CADReader/3.7.4.21/Glodon.CADReader.yaml b/manifests/g/Glodon/CADReader/3.7.4.21/Glodon.CADReader.yaml new file mode 100644 index 0000000000000..93fcbf9fcfecb --- /dev/null +++ b/manifests/g/Glodon/CADReader/3.7.4.21/Glodon.CADReader.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: Glodon.CADReader +PackageVersion: 3.7.4.21 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gluon/SceneBuilder/24.0.1/Gluon.SceneBuilder.installer.yaml b/manifests/g/Gluon/SceneBuilder/24.0.1/Gluon.SceneBuilder.installer.yaml new file mode 100644 index 0000000000000..68e6f575016fd --- /dev/null +++ b/manifests/g/Gluon/SceneBuilder/24.0.1/Gluon.SceneBuilder.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Gluon.SceneBuilder +PackageVersion: 24.0.1 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: user +ProductCode: '{6FD1F755-C2E7-3A32-97BD-14C2948D5347}' +ReleaseDate: 2025-06-30 +AppsAndFeaturesEntries: +- ProductCode: '{6FD1F755-C2E7-3A32-97BD-14C2948D5347}' + UpgradeCode: '{90984E4D-1BD7-300B-9E68-9106C62D0D3B}' +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\SceneBuilder' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/gluonhq/scenebuilder/releases/download/24.0.1-RC/SceneBuilder-24.0.1-RC.msi + InstallerSha256: FC4A73F1CE3797C6A96ED21765FE3D2F93DCEF695BEDEF6D09CB17EACE999ACE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gluon/SceneBuilder/24.0.1/Gluon.SceneBuilder.locale.en-US.yaml b/manifests/g/Gluon/SceneBuilder/24.0.1/Gluon.SceneBuilder.locale.en-US.yaml new file mode 100644 index 0000000000000..f3630e53b6ee4 --- /dev/null +++ b/manifests/g/Gluon/SceneBuilder/24.0.1/Gluon.SceneBuilder.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Gluon.SceneBuilder +PackageVersion: 24.0.1 +PackageLocale: en-US +Publisher: Gluon +PublisherUrl: https://github.com/gluonhq +PublisherSupportUrl: https://gluonhq.com/services/javafx-support +Author: Gluon +PackageName: SceneBuilder +PackageUrl: https://gluonhq.com/products/scene-builder +License: BSD License +LicenseUrl: https://github.com/gluonhq/scenebuilder/blob/HEAD/LICENSE.txt +ShortDescription: Scene Builder is free and open source, but is backed by Gluon. Drag & Drop user interface design allows for rapid iteration. +Moniker: scenebuilder +Tags: +- builder +- gluon +- gluonhq +- java +- javafx +- scene +ReleaseNotes: |- + Changelog + 🛠 Build + - b74f652 build: Add Java options to prevent warnings running JDK24+, remove deprecated options (#820) + - 4d84deb build: Bump JavaFX version to 24.0.1 (#818) + - 63fa4c3 Add url for snapshot deployment + - 4929aef enable snapshot deployments (#817) + - 70c75ab Update jreleaser maven plugin version to 1.18.0 + - 345ccf7 Publish to central portal (#816) + - 8959ee5 add service providers (#813) + Contributors + We'd like to thank the following people for their contributions: + - Joeri Sykora (@tiainen) + - José Pereda +ReleaseNotesUrl: https://github.com/gluonhq/scenebuilder/releases/tag/24.0.1-RC +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gluon/SceneBuilder/24.0.1/Gluon.SceneBuilder.yaml b/manifests/g/Gluon/SceneBuilder/24.0.1/Gluon.SceneBuilder.yaml new file mode 100644 index 0000000000000..7e4bd5957e5a7 --- /dev/null +++ b/manifests/g/Gluon/SceneBuilder/24.0.1/Gluon.SceneBuilder.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: Gluon.SceneBuilder +PackageVersion: 24.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GnuCash/GnuCash/5.12/GnuCash.GnuCash.installer.yaml b/manifests/g/GnuCash/GnuCash/5.12/GnuCash.GnuCash.installer.yaml new file mode 100644 index 0000000000000..d1c5a2c3c73e0 --- /dev/null +++ b/manifests/g/GnuCash/GnuCash/5.12/GnuCash.GnuCash.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: GnuCash.GnuCash +PackageVersion: "5.12" +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- gnucash +ProductCode: GnuCash_is1 +ReleaseDate: 2025-06-30 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Gnucash/gnucash/releases/download/5.12/gnucash-5.12.setup.exe + InstallerSha256: 9CA8DBD0749212BCAB3D986B8C5E39D11FD2A3F734430C1A06D931968175364E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GnuCash/GnuCash/5.12/GnuCash.GnuCash.locale.en-US.yaml b/manifests/g/GnuCash/GnuCash/5.12/GnuCash.GnuCash.locale.en-US.yaml new file mode 100644 index 0000000000000..c20963fc3017d --- /dev/null +++ b/manifests/g/GnuCash/GnuCash/5.12/GnuCash.GnuCash.locale.en-US.yaml @@ -0,0 +1,82 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: GnuCash.GnuCash +PackageVersion: "5.12" +PackageLocale: en-US +Publisher: GnuCash Development Team +PublisherUrl: https://www.gnucash.org/ +PublisherSupportUrl: https://wiki.gnucash.org/wiki/Getting_Help +PackageName: GnuCash +PackageUrl: https://www.gnucash.org/ +License: GPL-2.0-or-later +LicenseUrl: https://github.com/Gnucash/gnucash/blob/HEAD/LICENSE +Copyright: Copyright © 1997-2024 The GnuCash contributors. +ShortDescription: Personal and small-business financial-accounting software +Description: |- + GnuCash is personal and small-business financial-accounting software, freely licensed under the GNU GPL and available for GNU/Linux, BSD, Solaris, Mac OS X and Microsoft Windows. + Designed to be easy to use, yet powerful and flexible, GnuCash allows you to track bank accounts, stocks, income and expenses. As quick and intuitive to use as a checkbook register, it is based on professional accounting principles to ensure balanced books and accurate reports. +Moniker: gnucash +Tags: +- accounting +- finance +ReleaseNotes: |- + GnuCash 5.12 Released + The GnuCash development team announces GnuCash 5.12, the thirteenth release in the stable 5.x series. + Between 5.11 and 5.12, the following bugfixes were accomplished: + - Bug 648768 - Warning "Change Reconciled Split" has wrong cursor focus + - Bug 797766 - Automatic decimal point doesn't work properly with zeros when entering stocks. + Preserve the decimal point when printing numbers with no decimal places to stop the auto-decimal code from triggering when exiting the field. + - Bug 799490 - Error on start or opening a gnucash file: Can't parse the URL + - Bug 799506 - reconcile bad date pops to 1969 + - Bug 799521 - Segmentation fault on Autocomplete of Description with ß + - Bug 799572 - Return proper status code when Finance::Quote errors during price quote retrieval via CLI. + - Bug 799580 - Swiss currency symbol is displayed as SFr. instead of CHF + Replace SFr. with Fr. as SFr. is obsolete but Fr. is still widely used. This is the local symbol so users who want CHF can set it in the security editor. + - Bug 799582 - Mortgage and Loan Assistant - Compounding Formula + Adds a semi-annual compounding period for Canadians and implements the more correct simple-rate formula provided by a Canadian licensed accountant. Also adds support for day-interval loan payments, ensures that the formula on the repayment page reflects changes on that page, ensures that the number and amounts of payments are correct when payments are more frequent than monthly, use the correct intest rate for compunding calculations, and fixes some memory issues. + - Bug 799590 - Pressing enter after changing date on initial reconcile information window does not change ending balance. + - Bug 799592 - "No transactions found" when importing CSV transactions + - Bug 799593 - macOS: mariadb hardcodes plugin paths to original install directory. + - Bug 799594 - GnuCash 5.11 fails to build with boost 1.88 + - Bug 799597 - Crash when deleting all splits in General Journal + - Bug 799602 - Unit Price on Invoice will NOT display as decimals + - Bug 799603 - Does not save to mysql on localhost. + - Bug 799623 - test-backend-dbi fails after 2038 + The following fixes and improvements were not associated with bug reports: + - [reports]Lazily generate sub-reports. Reports with links to detail sub-reports like the budget reports would take a long time to generate because they built both the main report and all of the sub-reports. Now the sub-reports generate when the user clicks the link in the main report. + - Security editor quote sources: Add new source, China Merchants Bank. Remove no longer supported F::Q Modules Bloomberg.pm, DWSFunds, Investor's Exchange (U.S.), Morningstar Australia, Skanddinaviska Enskilda Banken, Tiaacref.pm, Troweprice.pm and many of the multi-source sources from the Security Editor. + - [import-main-matcher.cpp] Add tooltips to transaction A, U+C, and C action columns in the generic transaction import matcher. + - [reports] Use ICU for Unicode string comparison and substring search because it knows how to correctly localize comparisons of accented and unaccented characters. + - [reports] more robust error handling if target report doesn't exist. + - Register: Ensure splits belong to transaction when doing bulk operations on a transaction's splits. + - Drop the definition of __EXTENSIONS__ from three files and instead move it to compiler options if on a platform that needs it. + - Avoid non-POSIX "echo -n" behavior in util/gnc-vcs-info. + - Add testbuild target which builds tests without running them to accommodate packaging processes that run ctest separately. + - [engine.i] convert gnc_account_accumulate_at_dates to c++. + - [gnc-engine-guile.cpp] helper gnc_split_to_scm function. + - [gnc-engine-guile] reduce overhead of gnc_foo_to_scm by caching the result of SWIG_TypeQuery(typestr) + - [balance-forecast] optimise some loops: fewer temporary lists and gc + - Let cmake probe for the existence of HAVE_STRUCT_TM_GMTOFF, fix build of test-gnc-date on systems without HAVE_STRUCT_TM_GMTOFF, and avoid unused variable warnings on systems without HAVE_STRUCT_TM_GMTOFF + - Wrap include of gtest.h and gmock.h with a warning-silencing pragma. See https://github.com/google/googletest/issues/4701 The warnings cause the Arch Linux CI to fail because of -Werror. + - Fixed GetInvoiceFromTxn to convert to the right type of Python object for a GncInvoice. + - [test-report-utilities] more tests for gnc:account-accumulate-at-dates testing balances at date boundaries + New and Updated Translations: Arabic, Bulgarian, Chinese (Simplified Han script), Danish, Dutch, Finnish, French, German, Hungarian, Portuguese, Romanian, Russian, Spanish, Swedish, Turkish + Help translate GnuCash on Weblate + Known Problems + Complete list of all open bugs. + Documentation + The following fixes and improvements were not associated with bug reports: + - German translation: Fix some typos + - German translation: Remove the Finance::Quote appendix. The content has been moved to the wiki. + Updated` Translations: German. +ReleaseNotesUrl: https://github.com/Gnucash/gnucash/releases/tag/5.12 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://www.gnucash.org/docs.phtml +- DocumentLabel: Wiki + DocumentUrl: https://wiki.gnucash.org/wiki/GnuCash +- DocumentLabel: FAQ + DocumentUrl: https://wiki.gnucash.org/wiki/FAQ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GnuCash/GnuCash/5.12/GnuCash.GnuCash.locale.zh-CN.yaml b/manifests/g/GnuCash/GnuCash/5.12/GnuCash.GnuCash.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f70248a78ce7a --- /dev/null +++ b/manifests/g/GnuCash/GnuCash/5.12/GnuCash.GnuCash.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: GnuCash.GnuCash +PackageVersion: "5.12" +PackageLocale: zh-CN +Copyright: 版权 © 1997-2024 GnuCash 贡献者。 +ShortDescription: 个人和小规模企业财务软件 +Description: |- + GnuCash 个人和小规模企业财务软件,遵循 GNU GPL 协议,支持 Linux、BSD、Solaris、Mac OS X 和 Microsoft Windows。 + 简洁强大,可以跟踪银行、股票、收入和支出;高效,像纸质账簿一样快速、直观;专业,严格遵循会计准则,保证科目平衡、报表准确。 +Tags: +- 会计 +- 经济 +- 财务 +- 金融 +ReleaseNotesUrl: https://github.com/Gnucash/gnucash/releases/tag/5.12 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.gnucash.org/docs.phtml +- DocumentLabel: Wiki + DocumentUrl: https://wiki.gnucash.org/wiki/GnuCash +- DocumentLabel: 常见问题 + DocumentUrl: https://wiki.gnucash.org/wiki/FAQ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GnuCash/GnuCash/5.12/GnuCash.GnuCash.yaml b/manifests/g/GnuCash/GnuCash/5.12/GnuCash.GnuCash.yaml new file mode 100644 index 0000000000000..9ce1aae3e3fed --- /dev/null +++ b/manifests/g/GnuCash/GnuCash/5.12/GnuCash.GnuCash.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: GnuCash.GnuCash +PackageVersion: "5.12" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GoACME/lego/4.24.0/GoACME.lego.installer.yaml b/manifests/g/GoACME/lego/4.24.0/GoACME.lego.installer.yaml new file mode 100644 index 0000000000000..fb67f41117135 --- /dev/null +++ b/manifests/g/GoACME/lego/4.24.0/GoACME.lego.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: GoACME.lego +PackageVersion: 4.24.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: lego.exe +UpgradeBehavior: install +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/go-acme/lego/releases/download/v4.24.0/lego_v4.24.0_windows_386.zip + InstallerSha256: 6929EC1D230268B27B5071BAEAD1A781892F1AACCEC72B2225C8078B01B263A1 +- Architecture: x64 + InstallerUrl: https://github.com/go-acme/lego/releases/download/v4.24.0/lego_v4.24.0_windows_amd64.zip + InstallerSha256: E5AF8CDBE09B555CEDAAD4038C2029496929743907866C94B77CF53F44799F8A +- Architecture: arm + InstallerUrl: https://github.com/go-acme/lego/releases/download/v4.24.0/lego_v4.24.0_windows_armv7.zip + InstallerSha256: 2ED0484ACD6C0714B72BF2D517B516B28CDB96BAE5F3A4A8286240D510709E4F +- Architecture: arm64 + InstallerUrl: https://github.com/go-acme/lego/releases/download/v4.24.0/lego_v4.24.0_windows_arm64.zip + InstallerSha256: 3E9264F50E305DE9461F58E881C0EC23DDF45C71F0E7E5BD55FA87C42416CB4C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GoACME/lego/4.24.0/GoACME.lego.locale.en-US.yaml b/manifests/g/GoACME/lego/4.24.0/GoACME.lego.locale.en-US.yaml new file mode 100644 index 0000000000000..04429895fdda3 --- /dev/null +++ b/manifests/g/GoACME/lego/4.24.0/GoACME.lego.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: GoACME.lego +PackageVersion: 4.24.0 +PackageLocale: en-US +Publisher: Sebastian Erhart +PublisherUrl: https://go-acme.github.io/lego +PublisherSupportUrl: https://github.com/go-acme/lego/issues +Author: Sebastian Erhart +PackageName: lego +PackageUrl: https://github.com/go-acme/lego +License: MIT +LicenseUrl: https://github.com/go-acme/lego/blob/HEAD/LICENSE +Copyright: Copyright (c) Sebastian Erhart +CopyrightUrl: https://github.com/go-acme/lego/blob/master/LICENSE +ShortDescription: Let's Encrypt/ACME client and library written in Go +Moniker: lego +Tags: +- acme +- acme-client +- certificate +- dns +- letsencrypt +- rfc8555 +- rfc8737 +- rfc8738 +- security +- tls +ReleaseNotes: |- + Changelog + - 6ecdde7 Add DNS provider for Azion (#2550) + - b82e6d8 Add DNS provider for ConoHa v3 (#2516) + - 7571c0b Add DNS provider for DynDnsFree.de (#2540) + - 65608d8 Add DNS provider for RU Center (#1892) + - 1fecd31 alidns: migrate to SDK v2 (#2558) + - b28d1ac azion: add pagination support (#2555) + - 17c65de azion: improve zone lookup (#2564) + - d6df946 cloudflare: add quotation marks to TXT record (#2521) + - 476f9ed docs(cPanel): fix examples (#2529) + - a528e28 docs: update reference ACME ARI RFC 9773 in place of the draft (#2541) + - 375300f exoscale: fix find record (#2535) + - 1cee2ef fix: check order identifiers difference between client and server (#2520) + - 8d7ed79 gcloud: add service account impersonation (#2544) + - 08316e4 googledomains: provider deprecation (#2554) + - 990f9ac mijnhost: improve record filter (#2562) + - f053625 nicmanager: fix mode env var name and value (#2534) + - 94d8712 oraclecloud: replace oci-go-sdk by a modular fork (#2556) + - e9a255d pdns: improve error messages (#2526) +ReleaseNotesUrl: https://github.com/go-acme/lego/releases/tag/v4.24.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GoACME/lego/4.24.0/GoACME.lego.yaml b/manifests/g/GoACME/lego/4.24.0/GoACME.lego.yaml new file mode 100644 index 0000000000000..a521e643b8d2d --- /dev/null +++ b/manifests/g/GoACME/lego/4.24.0/GoACME.lego.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: GoACME.lego +PackageVersion: 4.24.0 +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/GolangCI/golangci-lint/2.2.0/GolangCI.golangci-lint.installer.yaml b/manifests/g/GolangCI/golangci-lint/2.2.0/GolangCI.golangci-lint.installer.yaml new file mode 100644 index 0000000000000..0e2924914f6ce --- /dev/null +++ b/manifests/g/GolangCI/golangci-lint/2.2.0/GolangCI.golangci-lint.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: GolangCI.golangci-lint +PackageVersion: 2.2.0 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2025-06-28 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: golangci-lint-2.2.0-windows-386/golangci-lint.exe + InstallerUrl: https://github.com/golangci/golangci-lint/releases/download/v2.2.0/golangci-lint-2.2.0-windows-386.zip + InstallerSha256: F9AB40B9DBF86D9986A2521F03555465AF80C09A0D89F14A0342938D4F090943 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: golangci-lint-2.2.0-windows-amd64/golangci-lint.exe + InstallerUrl: https://github.com/golangci/golangci-lint/releases/download/v2.2.0/golangci-lint-2.2.0-windows-amd64.zip + InstallerSha256: CB2809936F50EBF9B7ABF165D6081C4D15E1E98DA607820DC5529429DCC1E0EA +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: golangci-lint-2.2.0-windows-arm64/golangci-lint.exe + InstallerUrl: https://github.com/golangci/golangci-lint/releases/download/v2.2.0/golangci-lint-2.2.0-windows-arm64.zip + InstallerSha256: FA0C2C1CBD58A949E677A46AD2068386B0AD0B089ABCEFE52AC5C6E81C95E886 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GolangCI/golangci-lint/2.2.0/GolangCI.golangci-lint.locale.en-US.yaml b/manifests/g/GolangCI/golangci-lint/2.2.0/GolangCI.golangci-lint.locale.en-US.yaml new file mode 100644 index 0000000000000..b24432230513f --- /dev/null +++ b/manifests/g/GolangCI/golangci-lint/2.2.0/GolangCI.golangci-lint.locale.en-US.yaml @@ -0,0 +1,81 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: GolangCI.golangci-lint +PackageVersion: 2.2.0 +PackageLocale: en-US +Publisher: GolangCI +PublisherUrl: https://golangci-lint.run/ +PublisherSupportUrl: https://github.com/golangci/golangci-lint/issues +PackageName: golangci-lint +PackageUrl: https://github.com/golangci/golangci-lint +License: GPL-3.0 +LicenseUrl: https://github.com/golangci/golangci-lint/blob/HEAD/LICENSE +ShortDescription: Fast linters Runner for Go +Description: golangci-lint is a fast Go linters runner. It runs linters in parallel, uses caching, supports YAML configuration, integrates with all major IDEs, and includes over a hundred linters. +Tags: +- ci +- go +- golang +- golangci-lint +- linter +ReleaseNotes: |- + golangci-lint is a free and open-source project built by volunteers. + If you value it, consider supporting us, the maintainers and linter authors. + We appreciate it! ❤️ + For key updates, see the changelog. + Changelog + - f54365b Add noinlineerr linter (#5826) + - 3e52be7 Add swaggo/swag formatter (#5749) + - f5f2c16 build(deps): bump github.com/Abirdcfly/dupword from 0.1.3 to 0.1.4 (#5809) + - 2a63ebc build(deps): bump github.com/Abirdcfly/dupword from 0.1.4 to 0.1.5 (#5839) + - 0bcafa0 build(deps): bump github.com/Abirdcfly/dupword from 0.1.5 to 0.1.6 (#5841) + - 58036dd build(deps): bump github.com/alecthomas/chroma/v2 from 2.17.2 to 2.18.0 (#5812) + - acbcbdb build(deps): bump github.com/ashanbrown/forbidigo from 1.6.0 to 2.1.0 (#5783) + - e905d80 build(deps): bump github.com/ashanbrown/makezero from 1.2.0 to 2.0.1 (#5782) + - 82147d5 build(deps): bump github.com/bombsimon/wsl/v5 from 4.7.0 to 5.0.0 (#5900) + - ba13580 build(deps): bump github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.3.0 (#5888) + - f40f9d7 build(deps): bump github.com/golangci/misspell from 0.6.0 to 0.7.0 (#5813) + - b9510d7 build(deps): bump github.com/golangci/plugin-module-register from 0.1.1 to 0.1.2 (#5838) + - 8eab120 build(deps): bump github.com/jgautheron/goconst from 1.8.1 to 1.8.2 (#5825) + - ed782d7 build(deps): bump github.com/jjti/go-spancheck from 0.6.4 to 0.6.5 (#5784) + - 6ed4f04 build(deps): bump github.com/ldez/exptostd from 0.4.3 to 0.4.4 (#5876) + - cc3f6de build(deps): bump github.com/ldez/gomoddirectives from 0.6.1 to 0.7.0 (#5869) + - 6b65696 build(deps): bump github.com/ldez/usetesting from 0.4.3 to 0.5.0 (#5877) + - 8e38a6e build(deps): bump github.com/manuelarte/embeddedstructfieldcheck from 0.2.1 to 0.3.0 (#5811) + - fd9a0f2 build(deps): bump github.com/manuelarte/funcorder from 0.2.1 to 0.3.0 (#5743) + - 5a945fd build(deps): bump github.com/manuelarte/funcorder from 0.3.0 to 0.5.0 (#5792) + - 1052555 build(deps): bump github.com/mgechev/revive from 1.9.0 to 1.10.0 (#5837) + - ee5054a build(deps): bump github.com/santhosh-tekuri/jsonschema/v6 from 6.0.1 to 6.0.2 (#5829) + - e7c4589 build(deps): bump github.com/sashamelentyev/usestdlibvars from 1.28.0 to 1.29.0 (#5828) + - fd792ae build(deps): bump github.com/securego/gosec/v2 from 2.22.3 to 2.22.4 (#5788) + - 9f19dcb build(deps): bump github.com/securego/gosec/v2 from 2.22.4 to 2.22.5 (#5880) + - a02b91e build(deps): bump github.com/shirou/gopsutil/v4 from 4.25.4 to 4.25.5 (#5849) + - af60e9f build(deps): bump github.com/sonatard/noctx from 0.1.0 to 0.3.3 (#5771) + - 8496d6d build(deps): bump github.com/sonatard/noctx from 0.3.3 to 0.3.4 (#5895) + - 66fc278 build(deps): bump github.com/uudashr/iface from 1.3.1 to 1.3.2 (#5810) + - 36ddc0e build(deps): bump github.com/uudashr/iface from 1.3.2 to 1.4.0 (#5820) + - c2db6c4 build(deps): bump golang.org/x/mod from 0.24.0 to 0.25.0 (#5868) + - 9e01be5 build(deps): bump golang.org/x/oauth2 from 0.29.0 to 0.30.0 in /scripts/gen_github_action_config in the scripts group (#5781) + - f0c8514 build(deps): bump golang.org/x/sys from 0.32.0 to 0.33.0 (#5785) + - 4af8bfc build(deps): bump golang.org/x/tools from 0.32.0 to 0.33.0 (#5786) + - 09ca65a build(deps): bump golang.org/x/tools from 0.33.0 to 0.34.0 (#5867) + - 5546285 build(deps): bump golangci/golangci-lint-action from 7.0.0 to 8.0.0 in the github-actions group (#5780) + - 48d1da4 build(deps): bump the linter-testdata group across 2 directories with 2 updates (#5814) + - 69479c6 build(deps): bump the linter-testdata group across 4 directories with 4 updates (#5850) + - deee4e7 errcheck: add verbose option (#5802) + - b24761d feat: add arangolint linter (#5718) + - c61f43f feat: add embeddedstructfieldcheck linter (#5761) + - 75b18f9 feat: deprecate print-resources-usage flag (#5860) + - 65c85df fix: deduplicate typecheck errors (#5864) + - 156db1d fix: error message when trying to migrate a migrated config (#5836) + - 8c225c3 fix: exclusions path-expect (#5798) + - db7f62b fix: formats consistently the code with gci (#5893) + - d4bc40e fix: formatters CLI flags help message (#5835) + - 3217de6 fix: stop the analysis after the first package analysis error (#5885) + - f946bcd fix: typecheck memory leak (#5884) + - 6d9ab42 fix: unique version per custom build (#5896) + - cd315cd fix: write the input to stdout when using stdin and there are no changes (#5827) +ReleaseNotesUrl: https://github.com/golangci/golangci-lint/releases/tag/v2.2.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GolangCI/golangci-lint/2.2.0/GolangCI.golangci-lint.yaml b/manifests/g/GolangCI/golangci-lint/2.2.0/GolangCI.golangci-lint.yaml new file mode 100644 index 0000000000000..f9c738cc43b0f --- /dev/null +++ b/manifests/g/GolangCI/golangci-lint/2.2.0/GolangCI.golangci-lint.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: GolangCI.golangci-lint +PackageVersion: 2.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GolangCI/golangci-lint/2.2.1/GolangCI.golangci-lint.installer.yaml b/manifests/g/GolangCI/golangci-lint/2.2.1/GolangCI.golangci-lint.installer.yaml new file mode 100644 index 0000000000000..ee3d6dffaafff --- /dev/null +++ b/manifests/g/GolangCI/golangci-lint/2.2.1/GolangCI.golangci-lint.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: GolangCI.golangci-lint +PackageVersion: 2.2.1 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2025-06-29 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: golangci-lint-2.2.1-windows-386/golangci-lint.exe + InstallerUrl: https://github.com/golangci/golangci-lint/releases/download/v2.2.1/golangci-lint-2.2.1-windows-386.zip + InstallerSha256: A82C040835C06C174FF27D78A1817A049F209006ADCCC12FC10CE8E6858ED0C0 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: golangci-lint-2.2.1-windows-amd64/golangci-lint.exe + InstallerUrl: https://github.com/golangci/golangci-lint/releases/download/v2.2.1/golangci-lint-2.2.1-windows-amd64.zip + InstallerSha256: 103F4D77E0FF66692A4E94910CABA80AB3A06D74988BDC0D58B5E5051710B253 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: golangci-lint-2.2.1-windows-arm64/golangci-lint.exe + InstallerUrl: https://github.com/golangci/golangci-lint/releases/download/v2.2.1/golangci-lint-2.2.1-windows-arm64.zip + InstallerSha256: 3BA5757FFE0BDF1156364AF421219E81C03D6B12420751047CD49E95C311E0EF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GolangCI/golangci-lint/2.2.1/GolangCI.golangci-lint.locale.en-US.yaml b/manifests/g/GolangCI/golangci-lint/2.2.1/GolangCI.golangci-lint.locale.en-US.yaml new file mode 100644 index 0000000000000..5b43e3d188eb7 --- /dev/null +++ b/manifests/g/GolangCI/golangci-lint/2.2.1/GolangCI.golangci-lint.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: GolangCI.golangci-lint +PackageVersion: 2.2.1 +PackageLocale: en-US +Publisher: GolangCI +PublisherUrl: https://golangci-lint.run/ +PublisherSupportUrl: https://github.com/golangci/golangci-lint/issues +PackageName: golangci-lint +PackageUrl: https://github.com/golangci/golangci-lint +License: GPL-3.0 +LicenseUrl: https://github.com/golangci/golangci-lint/blob/HEAD/LICENSE +ShortDescription: Fast linters Runner for Go +Description: golangci-lint is a fast Go linters runner. It runs linters in parallel, uses caching, supports YAML configuration, integrates with all major IDEs, and includes over a hundred linters. +Tags: +- ci +- go +- golang +- golangci-lint +- linter +ReleaseNotes: |- + golangci-lint is a free and open-source project built by volunteers. + If you value it, consider supporting us, the maintainers and linter authors. + We appreciate it! ❤️ + For key updates, see the changelog. + Changelog + - f2782fa varnamelen: fix configuration (#5904) +ReleaseNotesUrl: https://github.com/golangci/golangci-lint/releases/tag/v2.2.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GolangCI/golangci-lint/2.2.1/GolangCI.golangci-lint.yaml b/manifests/g/GolangCI/golangci-lint/2.2.1/GolangCI.golangci-lint.yaml new file mode 100644 index 0000000000000..9cf35082c2ae8 --- /dev/null +++ b/manifests/g/GolangCI/golangci-lint/2.2.1/GolangCI.golangci-lint.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: GolangCI.golangci-lint +PackageVersion: 2.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/AndroidStudio/2025.1.1.13/Google.AndroidStudio.installer.yaml b/manifests/g/Google/AndroidStudio/2025.1.1.13/Google.AndroidStudio.installer.yaml new file mode 100644 index 0000000000000..e2e685928da55 --- /dev/null +++ b/manifests/g/Google/AndroidStudio/2025.1.1.13/Google.AndroidStudio.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Google.AndroidStudio +PackageVersion: 2025.1.1.13 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSuccessCodes: +- 1223 +UpgradeBehavior: install +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- DisplayVersion: '2025.1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://redirector.gvt1.com/edgedl/android/studio/install/2025.1.1.13/android-studio-2025.1.1.13-windows.exe + InstallerSha256: 778268FAF4810F467A6255EB562A50C4498404E4B408C0686D7CDDAF0E031917 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/AndroidStudio/2025.1.1.13/Google.AndroidStudio.locale.en-US.yaml b/manifests/g/Google/AndroidStudio/2025.1.1.13/Google.AndroidStudio.locale.en-US.yaml new file mode 100644 index 0000000000000..240ee34c23ef5 --- /dev/null +++ b/manifests/g/Google/AndroidStudio/2025.1.1.13/Google.AndroidStudio.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.AndroidStudio +PackageVersion: 2025.1.1.13 +PackageLocale: en-US +Publisher: Google LLC +PublisherUrl: https://developer.android.com/ +PublisherSupportUrl: https://developer.android.com/studio/intro +PrivacyUrl: https://policies.google.com/privacy +PackageName: Android Studio +PackageUrl: https://developer.android.com/studio +License: Android Software Development Kit License Agreement +LicenseUrl: https://developer.android.com/studio/terms +Copyright: Copyright © 2000–2024 Google +CopyrightUrl: https://developer.android.com/studio/terms +ShortDescription: The official Integrated Development Environment (IDE) for Android app development. +Description: |- + Android Studio is the official Integrated Development Environment (IDE) for Android app development. + Based on the powerful code editor and developer tools from IntelliJ IDEA, + Android Studio offers even more features that enhance your productivity when building Android apps. +Moniker: android-studio +Tags: +- aab +- adb +- android +- androidstudio +- apk +- app +- debug +- development +- emulator +- fastboot +- ide +- intellij +- studio +ReleaseNotesUrl: https://androidstudio.googleblog.com/ +Documentations: +- DocumentLabel: Known Issues + DocumentUrl: https://developer.android.com/studio/known-issues +- DocumentLabel: Troubleshoot + DocumentUrl: https://developer.android.com/studio/troubleshoot +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/AndroidStudio/2025.1.1.13/Google.AndroidStudio.yaml b/manifests/g/Google/AndroidStudio/2025.1.1.13/Google.AndroidStudio.yaml new file mode 100644 index 0000000000000..358e6ff05b97f --- /dev/null +++ b/manifests/g/Google/AndroidStudio/2025.1.1.13/Google.AndroidStudio.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: Google.AndroidStudio +PackageVersion: 2025.1.1.13 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/AndroidStudio/Canary/2025.1.1.2/Google.AndroidStudio.Canary.installer.yaml b/manifests/g/Google/AndroidStudio/Canary/2025.1.1.2/Google.AndroidStudio.Canary.installer.yaml index 18b591b9f424d..22ae4443f303e 100644 --- a/manifests/g/Google/AndroidStudio/Canary/2025.1.1.2/Google.AndroidStudio.Canary.installer.yaml +++ b/manifests/g/Google/AndroidStudio/Canary/2025.1.1.2/Google.AndroidStudio.Canary.installer.yaml @@ -13,9 +13,6 @@ InstallerSuccessCodes: - 1223 UpgradeBehavior: install ReleaseDate: 2025-03-20 -AppsAndFeaturesEntries: -- DisplayName: Android Studio - DisplayVersion: '2025.1' ElevationRequirement: elevatesSelf Installers: - Architecture: x64 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/AndroidStudio/Canary/2025.1.2.7/Google.AndroidStudio.Canary.installer.yaml b/manifests/g/Google/AndroidStudio/Canary/2025.1.2.7/Google.AndroidStudio.Canary.installer.yaml new file mode 100644 index 0000000000000..3bca293b79ba3 --- /dev/null +++ b/manifests/g/Google/AndroidStudio/Canary/2025.1.2.7/Google.AndroidStudio.Canary.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Google.AndroidStudio.Canary +PackageVersion: 2025.1.2.7 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSuccessCodes: +- 1223 +UpgradeBehavior: install +ReleaseDate: 2025-06-26 +AppsAndFeaturesEntries: +- DisplayName: Android Studio +ElevationRequirement: elevationRequired +Installers: +- Architecture: x86 + InstallerUrl: https://redirector.gvt1.com/edgedl/android/studio/install/2025.1.2.7/android-studio-2025.1.2.7-windows.exe + InstallerSha256: 704469572922448284EA1D577DF4008A2D213609D8F7193EA994F3C5703BD338 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/AndroidStudio/Canary/2025.1.2.7/Google.AndroidStudio.Canary.locale.en-US.yaml b/manifests/g/Google/AndroidStudio/Canary/2025.1.2.7/Google.AndroidStudio.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..13650e639023b --- /dev/null +++ b/manifests/g/Google/AndroidStudio/Canary/2025.1.2.7/Google.AndroidStudio.Canary.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.AndroidStudio.Canary +PackageVersion: 2025.1.2.7 +PackageLocale: en-US +Publisher: Google LLC +PublisherUrl: https://developer.android.com/ +PublisherSupportUrl: https://developer.android.com/studio/intro +PrivacyUrl: https://policies.google.com/privacy +PackageName: Android Studio Canary +PackageUrl: https://developer.android.com/studio/preview +License: Android Software Development Kit License Agreement +LicenseUrl: https://developer.android.com/studio/terms +Copyright: Copyright © 2000–2024 Google +CopyrightUrl: https://developer.android.com/studio/terms +ShortDescription: The official Integrated Development Environment (IDE) for Android app development. +Description: |- + Get early access to the latest features and improvements in Android Studio. + Android Studio is the official Integrated Development Environment (IDE) for Android app development. + Based on the powerful code editor and developer tools from IntelliJ IDEA, + Android Studio offers even more features that enhance your productivity when building Android apps. +Moniker: android-studio-canary +Tags: +- aab +- adb +- android +- android-studio +- androidstudiocanary +- apk +- app +- canary +- debug +- development +- emulator +- fastboot +- ide +- intellij +- studio +ReleaseNotesUrl: https://androidstudio.googleblog.com/ +Documentations: +- DocumentLabel: Install Alongside Stable + DocumentUrl: https://developer.android.com/studio/preview/install-preview +- DocumentLabel: Report A Bug + DocumentUrl: https://developer.android.com/studio/report-bugs +- DocumentLabel: Troubleshoot + DocumentUrl: https://developer.android.com/studio/troubleshoot +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/AndroidStudio/Canary/2025.1.2.7/Google.AndroidStudio.Canary.yaml b/manifests/g/Google/AndroidStudio/Canary/2025.1.2.7/Google.AndroidStudio.Canary.yaml new file mode 100644 index 0000000000000..d603518b6676a --- /dev/null +++ b/manifests/g/Google/AndroidStudio/Canary/2025.1.2.7/Google.AndroidStudio.Canary.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: Google.AndroidStudio.Canary +PackageVersion: 2025.1.2.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/AndroidStudio/Canary/2025.1.2.8/Google.AndroidStudio.Canary.installer.yaml b/manifests/g/Google/AndroidStudio/Canary/2025.1.2.8/Google.AndroidStudio.Canary.installer.yaml new file mode 100644 index 0000000000000..d4e8b32bb7b69 --- /dev/null +++ b/manifests/g/Google/AndroidStudio/Canary/2025.1.2.8/Google.AndroidStudio.Canary.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Google.AndroidStudio.Canary +PackageVersion: 2025.1.2.8 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSuccessCodes: +- 1223 +UpgradeBehavior: install +ReleaseDate: 2025-07-02 +AppsAndFeaturesEntries: +- DisplayName: Android Studio +ElevationRequirement: elevationRequired +Installers: +- Architecture: x64 + InstallerUrl: https://redirector.gvt1.com/edgedl/android/studio/install/2025.1.2.8/android-studio-2025.1.2.8-windows.exe + InstallerSha256: FACCAD602BE535150B8878F044C2DA7EC7CDC0B7522AAA25CA2C423311E43937 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/AndroidStudio/Canary/2025.1.2.8/Google.AndroidStudio.Canary.locale.en-US.yaml b/manifests/g/Google/AndroidStudio/Canary/2025.1.2.8/Google.AndroidStudio.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..10c85d1e4fccd --- /dev/null +++ b/manifests/g/Google/AndroidStudio/Canary/2025.1.2.8/Google.AndroidStudio.Canary.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.AndroidStudio.Canary +PackageVersion: 2025.1.2.8 +PackageLocale: en-US +Publisher: Google LLC +PublisherUrl: https://developer.android.com/ +PublisherSupportUrl: https://developer.android.com/studio/intro +PrivacyUrl: https://policies.google.com/privacy +PackageName: Android Studio Canary +PackageUrl: https://developer.android.com/studio/preview +License: Android Software Development Kit License Agreement +LicenseUrl: https://developer.android.com/studio/terms +Copyright: Copyright © 2000–2024 Google +CopyrightUrl: https://developer.android.com/studio/terms +ShortDescription: The official Integrated Development Environment (IDE) for Android app development. +Description: |- + Get early access to the latest features and improvements in Android Studio. + Android Studio is the official Integrated Development Environment (IDE) for Android app development. + Based on the powerful code editor and developer tools from IntelliJ IDEA, + Android Studio offers even more features that enhance your productivity when building Android apps. +Moniker: android-studio-canary +Tags: +- aab +- adb +- android +- android-studio +- androidstudiocanary +- apk +- app +- canary +- debug +- development +- emulator +- fastboot +- ide +- intellij +- studio +ReleaseNotesUrl: https://androidstudio.googleblog.com/ +Documentations: +- DocumentLabel: Install Alongside Stable + DocumentUrl: https://developer.android.com/studio/preview/install-preview +- DocumentLabel: Report A Bug + DocumentUrl: https://developer.android.com/studio/report-bugs +- DocumentLabel: Troubleshoot + DocumentUrl: https://developer.android.com/studio/troubleshoot +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/AndroidStudio/Canary/2025.1.2.8/Google.AndroidStudio.Canary.yaml b/manifests/g/Google/AndroidStudio/Canary/2025.1.2.8/Google.AndroidStudio.Canary.yaml new file mode 100644 index 0000000000000..67af678a4ec96 --- /dev/null +++ b/manifests/g/Google/AndroidStudio/Canary/2025.1.2.8/Google.AndroidStudio.Canary.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: Google.AndroidStudio.Canary +PackageVersion: 2025.1.2.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/137.0.7151.120/Google.Chrome.installer.yaml b/manifests/g/Google/Chrome/137.0.7151.120/Google.Chrome.installer.yaml deleted file mode 100644 index e086e08347ecd..0000000000000 --- a/manifests/g/Google/Chrome/137.0.7151.120/Google.Chrome.installer.yaml +++ /dev/null @@ -1,49 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Google.Chrome -PackageVersion: 137.0.7151.120 -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: 52747F182B64DE04240615650233A1801F263B23CB1CD045B7F33FA4182C9628 - ProductCode: '{4122160E-40DC-391A-B1BA-F2360D22E82C}' - AppsAndFeaturesEntries: - - ProductCode: '{4122160E-40DC-391A-B1BA-F2360D22E82C}' - UpgradeCode: '{C1DFDF69-5945-32F2-A35E-EE94C99C7CF4}' -- Architecture: arm64 - InstallerUrl: https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise_arm64.msi - InstallerSha256: BBCA0F352BCE63AF67FFFBBA755E7C967CB28FFA14C2A22F708B3C8BBC9AB8E8 - ProductCode: '{2F667676-11DC-3F7F-B705-1E4DB2B559FA}' - AppsAndFeaturesEntries: - - ProductCode: '{2F667676-11DC-3F7F-B705-1E4DB2B559FA}' - UpgradeCode: '{C1DFDF69-5945-32F2-A35E-EE94C99C7CF4}' -- Architecture: x86 - InstallerUrl: https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise.msi - InstallerSha256: FAD6C128F2CC6459D480A1230EA62B9E3A44F55322AAA37E86C8D2B3E413B150 - ProductCode: '{899FDE6C-78ED-33E3-85B7-D90C1D14125F}' - AppsAndFeaturesEntries: - - ProductCode: '{899FDE6C-78ED-33E3-85B7-D90C1D14125F}' - UpgradeCode: '{C1DFDF69-5945-32F2-A35E-EE94C99C7CF4}' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/137.0.7151.120/Google.Chrome.locale.en-US.yaml b/manifests/g/Google/Chrome/137.0.7151.120/Google.Chrome.locale.en-US.yaml deleted file mode 100644 index 1b2f7eb21acde..0000000000000 --- a/manifests/g/Google/Chrome/137.0.7151.120/Google.Chrome.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome -PackageVersion: 137.0.7151.120 -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/137.0.7151.120/Google.Chrome.locale.nb-NO.yaml b/manifests/g/Google/Chrome/137.0.7151.120/Google.Chrome.locale.nb-NO.yaml deleted file mode 100644 index 6da1393afe5de..0000000000000 --- a/manifests/g/Google/Chrome/137.0.7151.120/Google.Chrome.locale.nb-NO.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome -PackageVersion: 137.0.7151.120 -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/137.0.7151.120/Google.Chrome.locale.zh-CN.yaml b/manifests/g/Google/Chrome/137.0.7151.120/Google.Chrome.locale.zh-CN.yaml deleted file mode 100644 index 2808058196172..0000000000000 --- a/manifests/g/Google/Chrome/137.0.7151.120/Google.Chrome.locale.zh-CN.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome -PackageVersion: 137.0.7151.120 -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/137.0.7151.120/Google.Chrome.yaml b/manifests/g/Google/Chrome/137.0.7151.120/Google.Chrome.yaml deleted file mode 100644 index 7d8cda2d981f8..0000000000000 --- a/manifests/g/Google/Chrome/137.0.7151.120/Google.Chrome.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Google.Chrome -PackageVersion: 137.0.7151.120 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 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/138.0.7204.97/Google.Chrome.installer.yaml b/manifests/g/Google/Chrome/138.0.7204.97/Google.Chrome.installer.yaml new file mode 100644 index 0000000000000..2881271247202 --- /dev/null +++ b/manifests/g/Google/Chrome/138.0.7204.97/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.97 +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: 88DFD8ED08DAECAD669118AA12401D9CDCC0EA75B177D44109FE694B09EF1CF9 + ProductCode: '{01E5F517-A390-379A-869D-FCDD8884EFF0}' + AppsAndFeaturesEntries: + - ProductCode: '{01E5F517-A390-379A-869D-FCDD8884EFF0}' + UpgradeCode: '{C1DFDF69-5945-32F2-A35E-EE94C99C7CF4}' +- Architecture: arm64 + InstallerUrl: https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise_arm64.msi + InstallerSha256: 7B92CFBCBD697F04664CE8E436615F86DA852A3DE32EF7C796CE1F1559780D27 + ProductCode: '{1C6B0F0F-BF17-3D23-B520-6F13D6A0D16D}' + AppsAndFeaturesEntries: + - ProductCode: '{1C6B0F0F-BF17-3D23-B520-6F13D6A0D16D}' + UpgradeCode: '{C1DFDF69-5945-32F2-A35E-EE94C99C7CF4}' +- Architecture: x86 + InstallerUrl: https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise.msi + InstallerSha256: 6B6C5854B6D1E58B8C0910F4C61EA531E1D7500FBD322728673B7325CFC090BF + ProductCode: '{2EAB5218-10B0-3360-8FB3-D00CAA1CFB26}' + AppsAndFeaturesEntries: + - ProductCode: '{2EAB5218-10B0-3360-8FB3-D00CAA1CFB26}' + UpgradeCode: '{C1DFDF69-5945-32F2-A35E-EE94C99C7CF4}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/138.0.7204.97/Google.Chrome.locale.en-US.yaml b/manifests/g/Google/Chrome/138.0.7204.97/Google.Chrome.locale.en-US.yaml new file mode 100644 index 0000000000000..8b7e8571977e7 --- /dev/null +++ b/manifests/g/Google/Chrome/138.0.7204.97/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.97 +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.97/Google.Chrome.locale.nb-NO.yaml b/manifests/g/Google/Chrome/138.0.7204.97/Google.Chrome.locale.nb-NO.yaml new file mode 100644 index 0000000000000..1e8d310c970d0 --- /dev/null +++ b/manifests/g/Google/Chrome/138.0.7204.97/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.97 +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.97/Google.Chrome.locale.zh-CN.yaml b/manifests/g/Google/Chrome/138.0.7204.97/Google.Chrome.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fe678ac7f7926 --- /dev/null +++ b/manifests/g/Google/Chrome/138.0.7204.97/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.97 +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.97/Google.Chrome.yaml b/manifests/g/Google/Chrome/138.0.7204.97/Google.Chrome.yaml new file mode 100644 index 0000000000000..f2de0657c2eb3 --- /dev/null +++ b/manifests/g/Google/Chrome/138.0.7204.97/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.97 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Beta/138.0.7204.35/Google.Chrome.Beta.installer.yaml b/manifests/g/Google/Chrome/Beta/138.0.7204.35/Google.Chrome.Beta.installer.yaml deleted file mode 100644 index 757d451552381..0000000000000 --- a/manifests/g/Google/Chrome/Beta/138.0.7204.35/Google.Chrome.Beta.installer.yaml +++ /dev/null @@ -1,49 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Beta -PackageVersion: 138.0.7204.35 -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: x86 - InstallerUrl: https://dl.google.com/dl/chrome/install/beta/googlechromebetastandaloneenterprise.msi - InstallerSha256: 8BFCEFBB98B7BD51D7C37F2A938BADB0842593ED63808203A27200BD956305C4 - ProductCode: '{0BE22F8C-D3C1-3AE1-97B3-A6F31250547F}' - AppsAndFeaturesEntries: - - ProductCode: '{0BE22F8C-D3C1-3AE1-97B3-A6F31250547F}' - UpgradeCode: '{4E5BAC76-2D99-356C-AE5B-B15DA0315002}' -- Architecture: x64 - InstallerUrl: https://dl.google.com/dl/chrome/install/beta/googlechromebetastandaloneenterprise64.msi - InstallerSha256: E6E21422A887D13A8E9568579C54C0DA428996BF5DA1D3B37BBB2899CAD583EA - ProductCode: '{4BC862EC-DF71-39FB-89CF-F92D00FDA2DE}' - AppsAndFeaturesEntries: - - ProductCode: '{4BC862EC-DF71-39FB-89CF-F92D00FDA2DE}' - UpgradeCode: '{4E5BAC76-2D99-356C-AE5B-B15DA0315002}' -- Architecture: arm64 - InstallerUrl: https://dl.google.com/dl/chrome/install/beta/googlechromebetastandaloneenterprise_arm64.msi - InstallerSha256: F26411B3FA69109917267ACCA7D753EA5B556044D35ACD9944C761CF09272005 - ProductCode: '{207ABD01-19BF-3225-BE1B-8EF1C3F29C97}' - AppsAndFeaturesEntries: - - ProductCode: '{207ABD01-19BF-3225-BE1B-8EF1C3F29C97}' - UpgradeCode: '{4E5BAC76-2D99-356C-AE5B-B15DA0315002}' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Beta/139.0.7258.5/Google.Chrome.Beta.installer.yaml b/manifests/g/Google/Chrome/Beta/139.0.7258.5/Google.Chrome.Beta.installer.yaml new file mode 100644 index 0000000000000..636c805981845 --- /dev/null +++ b/manifests/g/Google/Chrome/Beta/139.0.7258.5/Google.Chrome.Beta.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.Beta +PackageVersion: 139.0.7258.5 +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: x86 + InstallerUrl: https://dl.google.com/dl/chrome/install/beta/googlechromebetastandaloneenterprise.msi + InstallerSha256: 282635D74759B7D9EA1E03354BB01E4304B4912E8AA66401C6F667C60CD6B865 + ProductCode: '{24D94DC4-DC3C-3C20-B26F-BBC3852A91AF}' + AppsAndFeaturesEntries: + - ProductCode: '{24D94DC4-DC3C-3C20-B26F-BBC3852A91AF}' + UpgradeCode: '{4E5BAC76-2D99-356C-AE5B-B15DA0315002}' +- Architecture: x64 + InstallerUrl: https://dl.google.com/dl/chrome/install/beta/googlechromebetastandaloneenterprise64.msi + InstallerSha256: 1DEE4EF33DA2CC9ABCF4689AE422DA206B23914AFD8BADF68F51BD7F6EFD9E5B + ProductCode: '{1DF3F488-B2E0-3293-82CF-8585216A28DD}' + AppsAndFeaturesEntries: + - ProductCode: '{1DF3F488-B2E0-3293-82CF-8585216A28DD}' + UpgradeCode: '{4E5BAC76-2D99-356C-AE5B-B15DA0315002}' +- Architecture: arm64 + InstallerUrl: https://dl.google.com/dl/chrome/install/beta/googlechromebetastandaloneenterprise_arm64.msi + InstallerSha256: 8CE2951B520BC25115B9063342EA6CBD44038F4A7428FDDC7BF3040E69498CC0 + ProductCode: '{0B8E0B01-8FF3-37B3-BDFC-87D0A5E2375E}' + AppsAndFeaturesEntries: + - ProductCode: '{0B8E0B01-8FF3-37B3-BDFC-87D0A5E2375E}' + UpgradeCode: '{4E5BAC76-2D99-356C-AE5B-B15DA0315002}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Beta/138.0.7204.35/Google.Chrome.Beta.locale.en-US.yaml b/manifests/g/Google/Chrome/Beta/139.0.7258.5/Google.Chrome.Beta.locale.en-US.yaml similarity index 94% rename from manifests/g/Google/Chrome/Beta/138.0.7204.35/Google.Chrome.Beta.locale.en-US.yaml rename to manifests/g/Google/Chrome/Beta/139.0.7258.5/Google.Chrome.Beta.locale.en-US.yaml index 1fed82d1bc09a..b900e87e0bc9b 100644 --- a/manifests/g/Google/Chrome/Beta/138.0.7204.35/Google.Chrome.Beta.locale.en-US.yaml +++ b/manifests/g/Google/Chrome/Beta/139.0.7258.5/Google.Chrome.Beta.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Google.Chrome.Beta -PackageVersion: 138.0.7204.35 +PackageVersion: 139.0.7258.5 PackageLocale: en-US Publisher: Google LLC PublisherUrl: https://www.google.com/ diff --git a/manifests/g/Google/Chrome/Beta/138.0.7204.35/Google.Chrome.Beta.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Beta/139.0.7258.5/Google.Chrome.Beta.locale.nb-NO.yaml similarity index 95% rename from manifests/g/Google/Chrome/Beta/138.0.7204.35/Google.Chrome.Beta.locale.nb-NO.yaml rename to manifests/g/Google/Chrome/Beta/139.0.7258.5/Google.Chrome.Beta.locale.nb-NO.yaml index d640e3a6e8807..63bf9fdf80e19 100644 --- a/manifests/g/Google/Chrome/Beta/138.0.7204.35/Google.Chrome.Beta.locale.nb-NO.yaml +++ b/manifests/g/Google/Chrome/Beta/139.0.7258.5/Google.Chrome.Beta.locale.nb-NO.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Google.Chrome.Beta -PackageVersion: 138.0.7204.35 +PackageVersion: 139.0.7258.5 PackageLocale: nb-NO Publisher: Google LLC PublisherUrl: https://www.google.com/ diff --git a/manifests/g/Google/Chrome/Beta/138.0.7204.35/Google.Chrome.Beta.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Beta/139.0.7258.5/Google.Chrome.Beta.locale.zh-CN.yaml similarity index 95% rename from manifests/g/Google/Chrome/Beta/138.0.7204.35/Google.Chrome.Beta.locale.zh-CN.yaml rename to manifests/g/Google/Chrome/Beta/139.0.7258.5/Google.Chrome.Beta.locale.zh-CN.yaml index 7b13b2d3f747f..d26c152159223 100644 --- a/manifests/g/Google/Chrome/Beta/138.0.7204.35/Google.Chrome.Beta.locale.zh-CN.yaml +++ b/manifests/g/Google/Chrome/Beta/139.0.7258.5/Google.Chrome.Beta.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Google.Chrome.Beta -PackageVersion: 138.0.7204.35 +PackageVersion: 139.0.7258.5 PackageLocale: zh-CN Publisher: Google LLC PublisherUrl: https://www.google.com/ diff --git a/manifests/g/Google/Chrome/Beta/138.0.7204.35/Google.Chrome.Beta.yaml b/manifests/g/Google/Chrome/Beta/139.0.7258.5/Google.Chrome.Beta.yaml similarity index 86% rename from manifests/g/Google/Chrome/Beta/138.0.7204.35/Google.Chrome.Beta.yaml rename to manifests/g/Google/Chrome/Beta/139.0.7258.5/Google.Chrome.Beta.yaml index 892fecfc19773..62a11e2e401d3 100644 --- a/manifests/g/Google/Chrome/Beta/138.0.7204.35/Google.Chrome.Beta.yaml +++ b/manifests/g/Google/Chrome/Beta/139.0.7258.5/Google.Chrome.Beta.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Google.Chrome.Beta -PackageVersion: 138.0.7204.35 +PackageVersion: 139.0.7258.5 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Beta/EXE/139.0.7258.5/Google.Chrome.Beta.EXE.installer.yaml b/manifests/g/Google/Chrome/Beta/EXE/139.0.7258.5/Google.Chrome.Beta.EXE.installer.yaml new file mode 100644 index 0000000000000..fe6a11ff0887e --- /dev/null +++ b/manifests/g/Google/Chrome/Beta/EXE/139.0.7258.5/Google.Chrome.Beta.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.Beta.EXE +PackageVersion: 139.0.7258.5 +InstallerType: exe +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" +ExpectedReturnCodes: +- InstallerReturnCode: 3 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 4 + ReturnResponse: downgrade +- InstallerReturnCode: 22 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 60 + ReturnResponse: installInProgress +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Google Chrome Beta +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://dl.google.com/release2/chrome/apu57g5ifjurtm5vo7qhiqtgke_139.0.7258.5/139.0.7258.5_chrome_installer_uncompressed.exe + InstallerSha256: C48C98F2659BC3C850F4BDD72BDF3C5F92E6727C916470D7CB2F0F3619563C26 + InstallerSwitches: + Custom: --do-not-launch-chrome --chrome-beta +- Architecture: x86 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/apu57g5ifjurtm5vo7qhiqtgke_139.0.7258.5/139.0.7258.5_chrome_installer_uncompressed.exe + InstallerSha256: C48C98F2659BC3C850F4BDD72BDF3C5F92E6727C916470D7CB2F0F3619563C26 + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level --chrome-beta +- Architecture: x64 + Scope: user + InstallerUrl: https://dl.google.com/release2/chrome/acwjnpjv5t3qzbagagbnclbsmgoa_139.0.7258.5/139.0.7258.5_chrome_installer_uncompressed.exe + InstallerSha256: C69354B786678E62672714144F25C03BB5CE57F749E33A898BAF8A2D1AB031D1 + InstallerSwitches: + Custom: --do-not-launch-chrome --chrome-beta +- Architecture: x64 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/acwjnpjv5t3qzbagagbnclbsmgoa_139.0.7258.5/139.0.7258.5_chrome_installer_uncompressed.exe + InstallerSha256: C69354B786678E62672714144F25C03BB5CE57F749E33A898BAF8A2D1AB031D1 + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level --chrome-beta +- Architecture: arm64 + Scope: user + InstallerUrl: https://dl.google.com/release2/chrome/advkd7jasc3oya4klqbrgofxsbha_139.0.7258.5/139.0.7258.5_chrome_installer_uncompressed.exe + InstallerSha256: 9CF36A90CCC142632E84F246892990D01D776961B40A098405BC11512698FF0E + InstallerSwitches: + Custom: --do-not-launch-chrome --chrome-beta +- Architecture: arm64 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/advkd7jasc3oya4klqbrgofxsbha_139.0.7258.5/139.0.7258.5_chrome_installer_uncompressed.exe + InstallerSha256: 9CF36A90CCC142632E84F246892990D01D776961B40A098405BC11512698FF0E + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level --chrome-beta +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Beta/EXE/139.0.7258.5/Google.Chrome.Beta.EXE.locale.en-US.yaml b/manifests/g/Google/Chrome/Beta/EXE/139.0.7258.5/Google.Chrome.Beta.EXE.locale.en-US.yaml new file mode 100644 index 0000000000000..b72a8825e7647 --- /dev/null +++ b/manifests/g/Google/Chrome/Beta/EXE/139.0.7258.5/Google.Chrome.Beta.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.Beta.EXE +PackageVersion: 139.0.7258.5 +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 Beta (EXE) +PackageUrl: https://www.google.com/chrome/beta +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Try new features with Chrome Beta +Description: Feeling adventurous? Preview upcoming Google Chrome features before they’re released and give us feedback to make Chrome a better browser. +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Beta/EXE/139.0.7258.5/Google.Chrome.Beta.EXE.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Beta/EXE/139.0.7258.5/Google.Chrome.Beta.EXE.locale.nb-NO.yaml new file mode 100644 index 0000000000000..dc493b35fc41e --- /dev/null +++ b/manifests/g/Google/Chrome/Beta/EXE/139.0.7258.5/Google.Chrome.Beta.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.Beta.EXE +PackageVersion: 139.0.7258.5 +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 Beta (EXE) +PackageUrl: https://www.google.com/intl/no/chrome/beta +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Prøv nye funksjoner med Chrome Beta +Description: Er du eventyrlysten? Ta en forhåndstitt på nye funksjoner i Google Chrome før de kommer ut, og gi oss tilbakemeldinger, så vi kan gjøre Chrome til en bedre nettleser. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Beta/EXE/139.0.7258.5/Google.Chrome.Beta.EXE.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Beta/EXE/139.0.7258.5/Google.Chrome.Beta.EXE.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8ed4a83f595d8 --- /dev/null +++ b/manifests/g/Google/Chrome/Beta/EXE/139.0.7258.5/Google.Chrome.Beta.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.Beta.EXE +PackageVersion: 139.0.7258.5 +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/beta +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 试用 Chrome 测试版的新功能 +Description: 喜欢尝鲜?欢迎赶在 Google Chrome 新功能正式发布前抢先试用,并提供反馈以帮助我们完善 Chrome 浏览器。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Beta/EXE/139.0.7258.5/Google.Chrome.Beta.EXE.yaml b/manifests/g/Google/Chrome/Beta/EXE/139.0.7258.5/Google.Chrome.Beta.EXE.yaml new file mode 100644 index 0000000000000..0a31d3d2a03e7 --- /dev/null +++ b/manifests/g/Google/Chrome/Beta/EXE/139.0.7258.5/Google.Chrome.Beta.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.Beta.EXE +PackageVersion: 139.0.7258.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..f3d03f3d1542f --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.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.Canary +PackageVersion: 139.0.7250.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/ad5x2yut3rfj2huiki3loxxxy4dq_139.0.7250.0/139.0.7250.0_chrome_installer_uncompressed.exe + InstallerSha256: 8E50C3CEF0B4D49C94C2B6FD667F05D34D5177E9DC7C5FD77ED270A8FED3CAF9 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/adhofmpdz5xgizo5vbylpxizlicq_139.0.7250.0/139.0.7250.0_chrome_installer_uncompressed.exe + InstallerSha256: 9942C05EEF3A9F8CBB27EC8BA62225912F02F3ABF1E4DFA69CBA93FF8EC944B5 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/aczzdaxrdxxrzyg4bmtfh6boqcra_139.0.7250.0/139.0.7250.0_chrome_installer_uncompressed.exe + InstallerSha256: ED2163F26CA77118AEBD3E83299C12257F9D422B0169315CA2A0F37D1CE7A4D5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..547ea95939ad8 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 139.0.7250.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..1e6adba864c6a --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.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.Canary +PackageVersion: 139.0.7250.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..da0ef8f7de8b3 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.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.Canary +PackageVersion: 139.0.7250.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..8cf1d0d144b78 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 139.0.7250.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..da829ecc037ac --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.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.Canary +PackageVersion: 139.0.7258.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/g7y3sy4t66k77ochbhkjyfezjy_139.0.7258.0/139.0.7258.0_chrome_installer_uncompressed.exe + InstallerSha256: B05B57D08E9596FBCE3FB863B848663DA83DDE1D1D2747C4851DF1E550298C77 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/ady2aknu7qcd7o5vobcvszcsor3q_139.0.7258.0/139.0.7258.0_chrome_installer_uncompressed.exe + InstallerSha256: 44C6EE87703C4E12303D69B32FEF627242C9BCF32F0307531F0EE77071387D00 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/acg52mb7hu5vaihmzx5hzmn4k6sq_139.0.7258.0/139.0.7258.0_chrome_installer_uncompressed.exe + InstallerSha256: 2F85E7ACFCC27C2D220609756962295DFF61D1BCB5C2985AFFF393A70AB52BE5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..a2d87c14e9cfb --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 139.0.7258.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..2289e76494ad4 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.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.Canary +PackageVersion: 139.0.7258.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ad2ffebb94247 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.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.Canary +PackageVersion: 139.0.7258.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..d9463e7af4380 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 139.0.7258.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..05b4e26bdf285 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.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.Canary +PackageVersion: 139.0.7258.2 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/ad5behze37dns6nwl7iutpud3nxq_139.0.7258.2/139.0.7258.2_chrome_installer_uncompressed.exe + InstallerSha256: EC1D4773302366AA5B45D0EE1C830A1D7B79D5E220A739A7FD0B064CFA3D58CA +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/adjtivghmfmx6isn3fickocbyuqa_139.0.7258.2/139.0.7258.2_chrome_installer_uncompressed.exe + InstallerSha256: A5BD3079F6709D8C5673AB56C6AE6356A5F42D4275D56D9D740604387014A9D3 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/bgtn6nxjzr6utap3tqoeryp7ia_139.0.7258.2/139.0.7258.2_chrome_installer_uncompressed.exe + InstallerSha256: AAC7314783671DBFFC07EB4D109AC06E01AA19CB039DCE39AF61ABFD07E0B544 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..2192cfacba9b2 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 139.0.7258.2 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..256c7c34620bc --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.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.Canary +PackageVersion: 139.0.7258.2 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..713154e24a828 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.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.Canary +PackageVersion: 139.0.7258.2 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..936df1804043f --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 139.0.7258.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..afb8ce46e44b5 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.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.Canary +PackageVersion: 139.0.7258.5 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/adtxtyhk6ngxq5y6ma5i2cu7ogwa_139.0.7258.5/139.0.7258.5_chrome_installer_uncompressed.exe + InstallerSha256: C48C98F2659BC3C850F4BDD72BDF3C5F92E6727C916470D7CB2F0F3619563C26 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/hvdhjl3xhaqsehsckhjiavaagm_139.0.7258.5/139.0.7258.5_chrome_installer_uncompressed.exe + InstallerSha256: C69354B786678E62672714144F25C03BB5CE57F749E33A898BAF8A2D1AB031D1 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/gj66ueqyhdfuaytii4kfksmuki_139.0.7258.5/139.0.7258.5_chrome_installer_uncompressed.exe + InstallerSha256: 9CF36A90CCC142632E84F246892990D01D776961B40A098405BC11512698FF0E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..d0611cf32ebb7 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 139.0.7258.5 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..23487ea9480bc --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.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.Canary +PackageVersion: 139.0.7258.5 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..39c0bdd47172c --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.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.Canary +PackageVersion: 139.0.7258.5 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..d960a5c35e8e6 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 139.0.7258.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..1c9b302bcda0c --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.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.Canary +PackageVersion: 139.0.7258.6 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/dg7n522x6yxslpg7luxwcdancy_139.0.7258.6/139.0.7258.6_chrome_installer_uncompressed.exe + InstallerSha256: 7E416862667D64AFF98E9A130A72626947CF77125CB4C26B505F9014CB7F3720 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/klv3z76sgchujlovl7oreylsuq_139.0.7258.6/139.0.7258.6_chrome_installer_uncompressed.exe + InstallerSha256: 9AC87866E7F12A1B87A56E40B89A3179925147FAF4F883B3E97A08B2CC5528FD +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/innaaufkpcyc7vip6m6cqj7hbu_139.0.7258.6/139.0.7258.6_chrome_installer_uncompressed.exe + InstallerSha256: FE872CEA46A03B41CFCE19222F27D5728018C0AB4071D8B66F9C8C0559204551 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..3be4b77efcffa --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 139.0.7258.6 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..39936fd165def --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.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.Canary +PackageVersion: 139.0.7258.6 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e00a8007aaad3 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.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.Canary +PackageVersion: 139.0.7258.6 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..3e52f1343e4f6 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 139.0.7258.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..d326ab492c23b --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7259.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/e7ksvo7cw2vsrjvd3zimpslama_140.0.7259.0/140.0.7259.0_chrome_installer_uncompressed.exe + InstallerSha256: F5252C0E028783DB18ED54B52A805732E96B925A7164B373A4EBCEBFDF3A722D +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/acih3xlilxicslnpspulnhtdtf2q_140.0.7259.0/140.0.7259.0_chrome_installer_uncompressed.exe + InstallerSha256: 20ADCB74B4BAF534DEF0417CBFD4BBE3A4E3192B5EC67A9291ECE31918A5E7D6 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/ad6syimrfkxnnzfs6f26oy3fzczq_140.0.7259.0/140.0.7259.0_chrome_installer_uncompressed.exe + InstallerSha256: BA478B8A45FA67D3324F55717253A616E17305807151105C1228D0AE4C51C9D0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..8b2ed16041733 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7259.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..85fb9ca487892 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7259.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..14c793083cd35 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7259.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..c5ab5989902c6 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7259.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..a90c03b289a50 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7260.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/ovhtrc7acfh2rah5raji5rbyvu_140.0.7260.0/140.0.7260.0_chrome_installer_uncompressed.exe + InstallerSha256: 1BD4F8ED2FBB1B06979C69AD4168511C9F537C3638741B3245EACEACA56F5635 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/dehkpnp756rrori52ambnjedji_140.0.7260.0/140.0.7260.0_chrome_installer_uncompressed.exe + InstallerSha256: 25DAAA2B2EFEDAA7C09C04FEE6DF7BF2F256A9BEE8C43E4834B9524938334C1F +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/acfoqtef26tmx2aegraow5kafeoa_140.0.7260.0/140.0.7260.0_chrome_installer_uncompressed.exe + InstallerSha256: F30B84007865F4213E3C79DC6DB2858FB2DCB9B66EEB60362E87A3AD7122A007 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..0a0893089ce4d --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7260.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..fd32f28e01e77 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7260.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..02efec9937c8d --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7260.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..dc1d29222bd7b --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7260.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..f226de2883e47 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7261.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/ad5s3g6b7qyk2wiivhoodajva2ma_140.0.7261.0/140.0.7261.0_chrome_installer_uncompressed.exe + InstallerSha256: D8BE3E846284D52461C1358C673DA3506C084E006F24BC0D61BCED9D146A80DD +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/ack5jw4sqlq46i36kxj3b5tmx3na_140.0.7261.0/140.0.7261.0_chrome_installer_uncompressed.exe + InstallerSha256: 0AA30D406460E5C7332507122875D2CE7FB3E7E9FE4370FCB584C1B1FB4FC447 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/ft2mih3l4b5wlcfw53ix7z2smy_140.0.7261.0/140.0.7261.0_chrome_installer_uncompressed.exe + InstallerSha256: 1CEBAB42A3D31981522A6210F32850CAD61425D72B75A6788493C23330EF0A4C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..951eba70ddf96 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7261.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..9c51391328fb6 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7261.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4e437f1ebd70c --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7261.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..a61c8af2366e6 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7261.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..a04ac04814289 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7262.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/lkupczbkwbebsj2jywefnqmonq_140.0.7262.0/140.0.7262.0_chrome_installer_uncompressed.exe + InstallerSha256: 2CF97AABD0149646A1FE6AB0181CBA376FA76B857913A6C2141A7A54754509FB +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/ad73xbbunxbyoqxhwsq6dgsimukq_140.0.7262.0/140.0.7262.0_chrome_installer_uncompressed.exe + InstallerSha256: E2B737C8866CE6831D949C5EDA9F268DD6EE5CF25E705AB09B98E7E7A39AB095 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/adkfoa53xdkszowp62xt75qj23hq_140.0.7262.0/140.0.7262.0_chrome_installer_uncompressed.exe + InstallerSha256: 94A7444FBD52AFD68E64E5FAB0F10063CA16BB18BAE249B1E0603062CD596DAF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..b52ff929e57f6 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7262.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..01bc605b1d733 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7262.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8556a37a51df0 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7262.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..df9cc3fa419c6 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7262.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..85ec623589796 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7263.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/oqvjnjhweyibeszcipfmmeypc4_140.0.7263.0/140.0.7263.0_chrome_installer_uncompressed.exe + InstallerSha256: 4CB928338977DD777F34B2A5E0BAEC9590ADF1C9C36801DB24376C8ED6F9FB9D +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/jm3olnxzzprmue6hptfc3gzxjy_140.0.7263.0/140.0.7263.0_chrome_installer_uncompressed.exe + InstallerSha256: FCAFB15E4FC23DCB402B8BB455F7FC2CE97A71AF8D98C25E454A5CFA2743DF1A +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/adrsherbttrkojjc7ifcotxnac3q_140.0.7263.0/140.0.7263.0_chrome_installer_uncompressed.exe + InstallerSha256: A0AB4DB41BE23C2C044018EC312F1BE7BAF0A44C9ABCE1077C13B43F2843CFE7 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..de6cb83995afa --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7263.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..d074ef5ba11ed --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7263.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d25a839a5ef42 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7263.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..2b195177971f1 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7263.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..3825552974406 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7264.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/acbia4cq6tcdsxzquprrijnovaia_140.0.7264.0/140.0.7264.0_chrome_installer_uncompressed.exe + InstallerSha256: 299CFD1423E032193527796C12741318463050D53DD8033F92F9E11353D115B0 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/acdbsjk7ivdgtc2ta6ct256cywaq_140.0.7264.0/140.0.7264.0_chrome_installer_uncompressed.exe + InstallerSha256: 229DECF72E07BC2F45376D281A5A371EB46D9B7D708E0E388B4366DAD0D5921A +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/acd3pk3a52x45rpb2smgx4d7do5q_140.0.7264.0/140.0.7264.0_chrome_installer_uncompressed.exe + InstallerSha256: 4F2442AD4FC0934A689FECE4402ABEE35F6EF7C4CCE72D29FFE5BA9ACAE5AE8A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..10c08b45706f8 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7264.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..92fd9c6bd43a3 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7264.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5e5013ba40598 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7264.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..f4ce8b445a1e5 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7264.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..a1f277fe17028 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7264.3 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/ac77gzxveotmjlpfkhsztkltzwla_140.0.7264.3/140.0.7264.3_chrome_installer_uncompressed.exe + InstallerSha256: FA95C9EB1BB7D82D6374F1279364F8E9C89F9127830BB99F72CBCC57FEB8F498 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/m374pkyv5jjf5oicgi4svffwq4_140.0.7264.3/140.0.7264.3_chrome_installer_uncompressed.exe + InstallerSha256: 1732D7C72D379006C8ABE12295D77AC42FD5FE4B455E016F07917E9995E820A4 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/acs4phi5b3biwlhzqd3iwnl5ad2a_140.0.7264.3/140.0.7264.3_chrome_installer_uncompressed.exe + InstallerSha256: 98CC24D15DA3441F9D423928CABED4E391EC87B5977416CC8956DD5C109E217D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..8ca7cc5b0bb60 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7264.3 +PackageLocale: en-US +Publisher: Google LLC +PublisherUrl: https://www.google.com/ +PublisherSupportUrl: https://support.google.com/ +PrivacyUrl: https://policies.google.com/privacy +Author: Google LLC +PackageName: Google Chrome Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..220255370beaf --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7264.3 +PackageLocale: nb-NO +Publisher: Google LLC +PublisherUrl: https://www.google.com/ +PublisherSupportUrl: https://support.google.com/?hl=no +PrivacyUrl: https://policies.google.com/privacy?hl=no +Author: Google LLC +PackageName: Google Chrome Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c6d58be539eb4 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7264.3 +PackageLocale: zh-CN +Publisher: Google LLC +PublisherUrl: https://www.google.com/ +PublisherSupportUrl: https://support.google.com/?hl=zh-Hans +PrivacyUrl: https://policies.google.com/privacy?hl=zh-CN +Author: Google LLC +PackageName: Google Chrome Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..018272bca04c3 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7264.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..5f7e83c596368 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7265.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/adzvx72jf5othpwko6tx2ppgppba_140.0.7265.0/140.0.7265.0_chrome_installer_uncompressed.exe + InstallerSha256: FACFAA697CA2F35EEABF80B0DD04444BC543D6AC6181C6BFE43EBC8670FEC9FA +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/j6xyavg4b6zxqtae3ujdt6zdlq_140.0.7265.0/140.0.7265.0_chrome_installer_uncompressed.exe + InstallerSha256: 5A0A3D1D8C6C375962DB4CF56A383704EA17CB3BD60F04E570F0F180F985D941 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/msdqbudns4tnuy2hgx3pafy4wu_140.0.7265.0/140.0.7265.0_chrome_installer_uncompressed.exe + InstallerSha256: FF5391F1C815F96E8DDAC2FF1B9D259A23D6C749518F7162748168A05E352B62 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..263cb3217856d --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7265.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..aceb427119871 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7265.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..0ef8f4c0d6849 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7265.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..0a82c580bf9a5 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7265.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..c53d1a07003f1 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7266.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/acxvjda53phjv4recmknegmzkiia_140.0.7266.0/140.0.7266.0_chrome_installer_uncompressed.exe + InstallerSha256: 42DC4C5FE0E9F6DA3F9F78F798A786C2C34B190C3A283FFC8E171C4F9BCD7B27 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/adtwmfpdpxlxi7njdgpccefagfwa_140.0.7266.0/140.0.7266.0_chrome_installer_uncompressed.exe + InstallerSha256: 146C8E6E0F3713DF403D395DC5275B35ADBC83F19D044DC779CF2349ABDFF3BA +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/adb3jd4vvcccokzv5f6zj2jqh77a_140.0.7266.0/140.0.7266.0_chrome_installer_uncompressed.exe + InstallerSha256: E65DAE6DCFB2F6C659B0B873616C4B6B37FBB6E37752734F081427E33934B3E0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..7f0b62b8bd7aa --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7266.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..89debb596a9b5 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7266.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e784ed55b63d1 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7266.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..70fe9f658f4d7 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7266.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..ac85981fa04ad --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7267.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/j2c4pqvi4m5lbqwd4ldj4s5sxq_140.0.7267.0/140.0.7267.0_chrome_installer_uncompressed.exe + InstallerSha256: 80F31CC1D210EE1A14D0E75F2329AE0CDC08851855EC20B886A8A55B56CE7FD1 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/hcca7vakipakepf2uehyij2p2i_140.0.7267.0/140.0.7267.0_chrome_installer_uncompressed.exe + InstallerSha256: 4DE0C85F946582BC116261842ACFE2577A850819697E4F01BF2FC749669F8F03 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/pmviiu7ywubeee5zp63wci5q5m_140.0.7267.0/140.0.7267.0_chrome_installer_uncompressed.exe + InstallerSha256: 095071F692D9ABE8DF5DB922F64939894E6CBAA6DE471C29252FF66C82D2C095 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..a656e612986fd --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7267.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..8171980dd83c4 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7267.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e4298dc4c5eb0 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7267.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..c4df58f5b1c7f --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7267.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..c6d814a362000 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7268.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/gzpx2zqmgrtlfeztaivd3x3eqq_140.0.7268.0/140.0.7268.0_chrome_installer_uncompressed.exe + InstallerSha256: 83F43848FF2C0BF77A99632F31035FE6F0F6E26C322689E3B41591A1981DE053 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/nozz3kxcossr276oqo27v337yi_140.0.7268.0/140.0.7268.0_chrome_installer_uncompressed.exe + InstallerSha256: DAF1E45C1BE9E3EDEE9AEA749BF031E05DA73FF494D6CC64F17E08E6D807C1F5 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/f6fzzptfgcvuehksadciwvqkui_140.0.7268.0/140.0.7268.0_chrome_installer_uncompressed.exe + InstallerSha256: E81CF64E48A991DCD4DCAEB2C548DAFFE0D2CCF54CF8486ADBBC2A85AA21C1EA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..db482ecd93706 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7268.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..30faa7546b70a --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7268.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f8582b0db9737 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7268.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..957568ec8ed9a --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7268.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..d5f96b18b9ae1 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7269.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/acne2e4g3a526odkxvi3u5qswpzq_140.0.7269.0/140.0.7269.0_chrome_installer_uncompressed.exe + InstallerSha256: 9DB447B6AFE2DA4F2AA424DE86DC11CCE499F87A63C649153ACECBAE6F5232A7 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/ad46fvh6nuce6oli2p6xhxvcb44q_140.0.7269.0/140.0.7269.0_chrome_installer_uncompressed.exe + InstallerSha256: 9D7CE78DA19F57BA26CF46F1C2037AF4EA1A62F38E604C3009A013BAD79C25E1 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/acvpa3idec7vmgwcaap7pekt2s6a_140.0.7269.0/140.0.7269.0_chrome_installer_uncompressed.exe + InstallerSha256: 4A86DFEA3B94D0BA4BB978929B57B1CCF29738F25A4DC5E39D5D124B590E383F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..ec0bb40fd0bf6 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7269.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..954308aad0d10 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7269.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1cd31d793fb8c --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7269.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..62b1e09a88370 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7269.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..ccb4810874640 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7269.2 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/hpzll3acsqsozgdefiy34vbpcu_140.0.7269.2/140.0.7269.2_chrome_installer_uncompressed.exe + InstallerSha256: 4D64D1925CCC0D90702E5A85210ABFAEC65AD64C54A61F819D18993DB6A23117 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/adqez3u46y5byje3wjot4knarb4a_140.0.7269.2/140.0.7269.2_chrome_installer_uncompressed.exe + InstallerSha256: E894CF18B3E379E0464544AFC0583EF73B79E7B746B6A959A38902BFD2635B13 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/adsmsevipobjkzyciykuy6mth5fq_140.0.7269.2/140.0.7269.2_chrome_installer_uncompressed.exe + InstallerSha256: 577DA614202156833BF642F4D5C92DDC90CCA67BD9E0452F4CB2B2E973BC58F1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..b7b720f6e89db --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7269.2 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..037e55ab8699c --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7269.2 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1b85a2ecafda5 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7269.2 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..55c9f3eb7671b --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7269.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..0842eb86237ae --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7270.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/adp7qycgctah5nirea36zbymbsrq_140.0.7270.0/140.0.7270.0_chrome_installer_uncompressed.exe + InstallerSha256: 0C5756F99C69BF5F8486879F9999DBE8F65A02BEA76CE4935D5B2EB2B8131E0B +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/ad2nwmqxsy3rkcwxoidqtltbbheq_140.0.7270.0/140.0.7270.0_chrome_installer_uncompressed.exe + InstallerSha256: 665223EAE377CB8345012B2E326CB313E222BAC0C88721458359B12D59170966 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/mbbpsxc3vxtkjjin43dwmcziee_140.0.7270.0/140.0.7270.0_chrome_installer_uncompressed.exe + InstallerSha256: 6EEA905B17335186702BB0C0B93166A9FF211270587CE524A14796FA0BC02FB0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..7011260788673 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7270.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..4652ae076d3ce --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7270.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5c4c6d02e33b9 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7270.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..332cea7ebc81c --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7270.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7271.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7271.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..b1b3144e2a201 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7271.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7271.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/adzey7vy6xw3cypaswnd3kpkq2oq_140.0.7271.0/140.0.7271.0_chrome_installer_uncompressed.exe + InstallerSha256: 2B09D1C760ACB5987CE3A34DD59B31E1060CE3F76BA3708A1F8A150103C2D634 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/acdnnxnavfshfvxpeljo7l7tusqa_140.0.7271.0/140.0.7271.0_chrome_installer_uncompressed.exe + InstallerSha256: 2F307D98A1A8CC4BF9A6F859F23745990155E91C093A1936AE164DA7E3D57DDB +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/n5lhvmip2y3pyfvy7fjqedgeo4_140.0.7271.0/140.0.7271.0_chrome_installer_uncompressed.exe + InstallerSha256: A612D98DA9D47A97A7F8428A17BF1C9391C471B47DC18596808BD1086C19D469 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7271.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7271.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..63db08fac0355 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7271.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7271.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7271.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7271.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..35e69d85cfb67 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7271.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7271.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7271.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7271.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..61a378272b06c --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7271.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7271.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7271.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7271.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..8e2cbdc40b13f --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7271.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7271.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7272.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7272.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..e33acbcaea3e3 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7272.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7272.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/kgreaocespjtljsslki2hm6gru_140.0.7272.0/140.0.7272.0_chrome_installer_uncompressed.exe + InstallerSha256: 96B97620545904CCB5DC07465E46EE719C4200FF2198B20B3EF4A1DCB57C8D01 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/adg2ot7ahofkqgxbicqa4bluejqa_140.0.7272.0/140.0.7272.0_chrome_installer_uncompressed.exe + InstallerSha256: 0F29DA5BE5549B1675C7A7E8A3F23345FE2A44393EE9E3ECA25C00C8DC9CB974 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/p36s5ni2pqe2dd5hesm6y26bba_140.0.7272.0/140.0.7272.0_chrome_installer_uncompressed.exe + InstallerSha256: E15500D62874BD44BB9C21449D70BD9A26CD3E207A65160F7989C13E6A54D4DF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7272.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7272.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..9072520667111 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7272.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7272.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7272.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7272.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..b988c753c8636 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7272.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7272.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7272.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7272.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..49e68ff384ffa --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7272.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7272.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7272.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7272.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..eb6adf1313daa --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7272.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7272.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7273.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7273.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..065fd156e523b --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7273.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7273.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/atuzuo4zho2qtm4asliyzgtc4u_140.0.7273.0/140.0.7273.0_chrome_installer_uncompressed.exe + InstallerSha256: 1B32BEF048A272D31AB2C931F727D49A745BAEB22DB2939E4871887DB3DB5C5F +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/adwhnin34a3cyga22wubhxwwoi4q_140.0.7273.0/140.0.7273.0_chrome_installer_uncompressed.exe + InstallerSha256: 02CC5CCB30EEE809AB6CC2F501C3E43308AA892C7F10BC71F7747DBBE0E4A1E6 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/addvpzud3k4gcy76ci46hieddvua_140.0.7273.0/140.0.7273.0_chrome_installer_uncompressed.exe + InstallerSha256: 37EEFA197D59D073C942D8C65332F092A4C7FAF28BDBCFFA779019DE98CA0D50 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7273.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7273.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..84f9577fb09ec --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7273.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7273.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7273.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7273.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..e4f48ea4c9709 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7273.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7273.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7273.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7273.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b61c865c6c40c --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7273.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7273.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7273.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7273.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..13937f20b2bb2 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7273.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7273.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7274.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7274.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..2f08849998b93 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7274.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7274.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/acxcy2qrov2au2hyy5fmntx3lz2q_140.0.7274.0/140.0.7274.0_chrome_installer_uncompressed.exe + InstallerSha256: B58AF917A309716C47721874D15CB275E6E85B6926D7DFFFF672ED22E6E05356 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/gkb4qb3qk4qeudxu7a432q2jdm_140.0.7274.0/140.0.7274.0_chrome_installer_uncompressed.exe + InstallerSha256: E816D816F7111BF1BD51EBB9E0565853F6C68FDEF1EFB75EB5D664746EE178D5 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/iohfhqb7iurdqibmdqb5gauhdi_140.0.7274.0/140.0.7274.0_chrome_installer_uncompressed.exe + InstallerSha256: 9C3B27461D5CA30E9AB71399EA513792524630A9B61CC2A21670836D3DC3FECD +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7274.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7274.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..8f901fda1e80e --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7274.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7274.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7274.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7274.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..49b96a5c33ed0 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7274.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7274.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7274.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7274.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e099a913b1a78 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7274.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7274.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7274.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7274.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..6ce497c265492 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7274.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7274.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7275.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7275.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..516b4f893cfbc --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7275.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7275.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/je7tq6t2kulsaic6tstp6weeey_140.0.7275.0/140.0.7275.0_chrome_installer_uncompressed.exe + InstallerSha256: AA7A03E1AC5EAAF3D621CEF80B4C7F5ADE828E5B1AF20C34A2D2EFEAB6CC993C +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/e42gw7wsuaw4d3tcj5lnsvimja_140.0.7275.0/140.0.7275.0_chrome_installer_uncompressed.exe + InstallerSha256: 5C467F045AEA7781CF216568CBFED3888F34E333F0E686E88E9625E3AFB01923 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/aq3hh7ek5f3xvbo65hxbbu3l2y_140.0.7275.0/140.0.7275.0_chrome_installer_uncompressed.exe + InstallerSha256: AD6EA85591A79ECFD7BBC689BACED7892448F85FF278980DDEDE4A7C4D6120CD +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7275.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7275.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..421313b44a4b1 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7275.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7275.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7275.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7275.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..8adb98f06da5e --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7275.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7275.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7275.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7275.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5af43ddb76134 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7275.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7275.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7275.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7275.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..86304888df1ee --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7275.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7275.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7276.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7276.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..efc811ca73167 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7276.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7276.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/cngb35zyi75z6oaev5suei3e24_140.0.7276.0/140.0.7276.0_chrome_installer_uncompressed.exe + InstallerSha256: FD5D271026B68A1530882469001CE9E6C9D3E6E530C5FB4CF07A6CCD02CC884E +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/addy2nh2ouxg62fuumtnmqsbwocq_140.0.7276.0/140.0.7276.0_chrome_installer_uncompressed.exe + InstallerSha256: 8FCB89D919A765013D52E2A0CF96F1DE9563A8FDF4C56EECABD21F15485FCB8D +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/oxqryjmeqwgf4fyftlfbxleo2a_140.0.7276.0/140.0.7276.0_chrome_installer_uncompressed.exe + InstallerSha256: ED8EA8F1FF9A3FB1BC3B2D7F37274C88887CEA222016393626AB2703100FDB12 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7276.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7276.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..908b155b63c1e --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7276.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7276.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7276.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7276.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..d2dd922150cc4 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7276.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7276.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7276.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7276.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cbe4ec0247c3e --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7276.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7276.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7276.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7276.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..d7a54662482d7 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7276.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7276.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7277.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7277.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..59a9ca7dc1181 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7277.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7277.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/mjbgigodqebro66vy7jrgkhiki_140.0.7277.0/140.0.7277.0_chrome_installer_uncompressed.exe + InstallerSha256: 982257C67916B8A8B2769D96680E7FE8DF3441747B8225C31CFFBA1285EFEE4F +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/eox3mvnrtkmcjqy7rffh56lwvi_140.0.7277.0/140.0.7277.0_chrome_installer_uncompressed.exe + InstallerSha256: F068F74C5E8C239B59A4BD7EF0381F207BA6ADF247B55D7AE56951E4083828F2 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/nuhzmgrnrato2qr4jg4ijoki3i_140.0.7277.0/140.0.7277.0_chrome_installer_uncompressed.exe + InstallerSha256: DC2BEC04A087202377A67F4A8E250E9C0B030832EBA25B7E267BAF69CF21EB70 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7277.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7277.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..7dcbbe8ff94f5 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7277.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7277.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7277.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7277.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..dbbcfdbc27335 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7277.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7277.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7277.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7277.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..50847867237fb --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7277.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7277.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7277.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7277.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..19091c6e63e77 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7277.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7277.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7278.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7278.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..ee9cab5597b14 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7278.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7278.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/adwwpidufziywv5pu34ig6qucz4q_140.0.7278.0/140.0.7278.0_chrome_installer_uncompressed.exe + InstallerSha256: 7374A9897EE86EF1ACAE31A529B8C95821AF9784E2AE2F28058A2490C72AEA4D +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/bwk2zlvoe7rigatcaa6l4b3g3m_140.0.7278.0/140.0.7278.0_chrome_installer_uncompressed.exe + InstallerSha256: 4AE5E8EAC554E31509B2F4E48AC0294635C169BE29867A885412430DC288CB04 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/acyucbpqfyadqg7ejqtj4qudvxhq_140.0.7278.0/140.0.7278.0_chrome_installer_uncompressed.exe + InstallerSha256: 310F07B4000BC20E1E4F2473230F4C7F5F0B77153E12573D48B04BAAC87EF1D3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7278.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7278.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..e7fba67ff0880 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7278.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7278.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7278.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7278.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..aaa8cdbc668a2 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7278.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7278.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7278.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7278.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4d688adf08af0 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7278.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7278.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7278.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7278.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..578278afa57dd --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7278.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7278.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7279.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7279.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..a6d8568dd606b --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7279.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7279.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/l4zj7vwu4vqzb3rfhmrhsrezzy_140.0.7279.0/140.0.7279.0_chrome_installer_uncompressed.exe + InstallerSha256: CD3ECAF5A5C4DB7D066F4502BBC0F1C090007CDD72673BDFC545A7250578261D +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/adk5evrzltv5c5re5z64pqv22qpq_140.0.7279.0/140.0.7279.0_chrome_installer_uncompressed.exe + InstallerSha256: 0AD6EFA1E4C25D0CBADD6CADFE4EFBF0F5774C9647D47CC8A82615C214D8B0FE +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/ac2bvvpbtyawqftskf4bibpzlgeq_140.0.7279.0/140.0.7279.0_chrome_installer_uncompressed.exe + InstallerSha256: 9A803E296CE7E63A64C58792D45BDF6FA8CC87EC55DF4D442D932740F72DAD17 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7279.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7279.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..dbe51074d6052 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7279.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7279.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7279.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7279.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..4ebda980efc81 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7279.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7279.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7279.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7279.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9937ed3cfdff1 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7279.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7279.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7279.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7279.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..bbd9ffb990358 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7279.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7279.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7280.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7280.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..459109ecb03ad --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7280.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7280.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/kfm4lotw3ltmsrdkp2wbu4qayy_140.0.7280.0/140.0.7280.0_chrome_installer_uncompressed.exe + InstallerSha256: 188771EE0B54D12B5BEA671A90437165F336A8B0FE910998FE6F7F641BF485D0 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/acxawpwectgei7uwlk6snr67jiza_140.0.7280.0/140.0.7280.0_chrome_installer_uncompressed.exe + InstallerSha256: 5CCBBAA3A3A69294E0F2C4B8C05F4EDC05A0832922E29EF8A2197F5CE0EA97A7 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/adwyisidvfy7eh6iijlbonk2doja_140.0.7280.0/140.0.7280.0_chrome_installer_uncompressed.exe + InstallerSha256: DB57BC74129D89E25DA3505589E97393D502C3EEA9771B11422CF9ACB2F00C8C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7280.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7280.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..1ba396501a51b --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7280.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7280.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7280.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7280.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..eb445ad6d259d --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7280.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7280.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7280.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7280.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..66c44fbfdc14e --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7280.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7280.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7280.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7280.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..3d49169680fee --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7280.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7280.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7281.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7281.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..f1ff4e2a41103 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7281.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7281.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/lufk7jwaiqklvtqmzki7oi3aua_140.0.7281.0/140.0.7281.0_chrome_installer_uncompressed.exe + InstallerSha256: 4A173839384D9406E60C9BA7F523E019564777FF5D423C4AB89486961C2814FA +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/adgz6roab3nqu3czgybya2sebsfa_140.0.7281.0/140.0.7281.0_chrome_installer_uncompressed.exe + InstallerSha256: 9B336DB8C3884A9ABE40216F89AFAA60508B72E00F9A3251589E6D4B4E7D457A +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/adfzph2slgpfcyvdm4ldcrm6droq_140.0.7281.0/140.0.7281.0_chrome_installer_uncompressed.exe + InstallerSha256: 2375A37BBAB966310179B2956F1F871AA122B11543A0EDDC73457962B277E6EE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7281.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7281.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..d6068e071b3fa --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7281.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7281.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7281.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7281.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..3e292408e9412 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7281.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7281.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7281.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7281.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5660ac1c2f660 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7281.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7281.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7281.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7281.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..a011ead8cb540 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7281.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7281.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7282.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7282.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..b0c020b65ae69 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7282.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7282.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/adcixyt5r735rt4etsp5vryvb32a_140.0.7282.0/140.0.7282.0_chrome_installer_uncompressed.exe + InstallerSha256: DBBFC5DF6595F23B51CEE55D456792089ED80BEF6C468B7B4DBB55019F7DA79D +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/achy6i7vc32phpd5rfyb5zcigyxa_140.0.7282.0/140.0.7282.0_chrome_installer_uncompressed.exe + InstallerSha256: 21DB40968E774C40E36C2675BB4E5CC6BB0ECBCD7414C1C747F2E89F9B90804B +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/iwo3cfryveczilml3v7ichevtu_140.0.7282.0/140.0.7282.0_chrome_installer_uncompressed.exe + InstallerSha256: 7CCAD72139E7C610398B980A9D213B481A986713F35EA5562C13D5FE64F99BB0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7282.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7282.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..18896f18c1723 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7282.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7282.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7282.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7282.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..7ad4aaa936146 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7282.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7282.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7282.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7282.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7c1146b313845 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7282.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7282.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7282.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7282.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..8eed7cba6087b --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7282.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7282.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7283.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7283.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..e1886c840c88b --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7283.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7283.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/gdz4gr7vsb67ihpzjsud4xtaim_140.0.7283.0/140.0.7283.0_chrome_installer_uncompressed.exe + InstallerSha256: BE1196F8BD509221728204E0A6CE195E8A8BA1F823D639A40698F292E5E1FBCD +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/a6edar3hlaqzcplokxtosxsh3i_140.0.7283.0/140.0.7283.0_chrome_installer_uncompressed.exe + InstallerSha256: AFE4937033702DAEAD2EB6890453DF10802C6668D6804887C4CC8FD6E5869EBC +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/anival35hukzi64qb5vmuucnre_140.0.7283.0/140.0.7283.0_chrome_installer_uncompressed.exe + InstallerSha256: AD5C5DE75936382C082E30F849B951D65E5B7612D8CD9CED82A059DE0D28887F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7283.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7283.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..50158b8eefdb5 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7283.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7283.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7283.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7283.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..0085ff2401714 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7283.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7283.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7283.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7283.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f7cf5bf3ec490 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7283.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7283.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7283.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7283.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..5e405a18464fd --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7283.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7283.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7284.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7284.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..529c1275f0a1a --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7284.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7284.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/adrpsxb4t65iuyojpabl6hqi776q_140.0.7284.0/140.0.7284.0_chrome_installer_uncompressed.exe + InstallerSha256: D3FCC2C701196E359E0CFAFFFD264B2F43D6AAE90ECEEF997336274AA6335BF1 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/njkp3oveudn7q2573rrv2rrrgu_140.0.7284.0/140.0.7284.0_chrome_installer_uncompressed.exe + InstallerSha256: 8D24D5E343A4B30FBFF4C22626E5D54E16ED2D01481C547A8EFEFE3B4D89E2B2 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/njnrjuim44tuap6ra2yx2fj4hq_140.0.7284.0/140.0.7284.0_chrome_installer_uncompressed.exe + InstallerSha256: AA210F78C1FAEFA822CB34C0C5E6CC40AE2C162DA13A44F89AFED4E2D8279CAB +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7284.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7284.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..ca69ef1ed0056 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7284.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7284.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7284.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7284.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..a5af244c52a9c --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7284.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7284.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7284.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7284.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..80c6b2c71ecee --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7284.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7284.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7284.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7284.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..256ce4a7201cb --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7284.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7284.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7285.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/140.0.7285.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..92a379768ab83 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7285.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7285.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +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 SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/adjrrvbye6t5iephvf4crdlaeofq_140.0.7285.0/140.0.7285.0_chrome_installer_uncompressed.exe + InstallerSha256: 73ACCABEBD73A0D76FF182201C88E74DA3A52C50184A2F361BFCA75C7F3190F7 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/ksxwynihoi42roovw63obiw6vm_140.0.7285.0/140.0.7285.0_chrome_installer_uncompressed.exe + InstallerSha256: AC5816C4DAA253B7A04CCD10B1A05EA8C01C8D58290CA9364106CC3730FF1185 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/h52hiyenst6ttmtn3pixvvvol4_140.0.7285.0/140.0.7285.0_chrome_installer_uncompressed.exe + InstallerSha256: B7DA7C29CDAE10803867CC5FB440D56E16E8DDBBC577722148C61577322955DA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7285.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/140.0.7285.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..6f552366e0c77 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7285.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 140.0.7285.0 +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 Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7285.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/140.0.7285.0/Google.Chrome.Canary.locale.nb-NO.yaml new file mode 100644 index 0000000000000..e45af37a028cd --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7285.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7285.0 +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 Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7285.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/140.0.7285.0/Google.Chrome.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3c65a5e631d42 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7285.0/Google.Chrome.Canary.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.Canary +PackageVersion: 140.0.7285.0 +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 Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/140.0.7285.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/140.0.7285.0/Google.Chrome.Canary.yaml new file mode 100644 index 0000000000000..ada8f19e3dc0f --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/140.0.7285.0/Google.Chrome.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: Google.Chrome.Canary +PackageVersion: 140.0.7285.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/139.0.7246.0/Google.Chrome.Dev.installer.yaml b/manifests/g/Google/Chrome/Dev/139.0.7246.0/Google.Chrome.Dev.installer.yaml deleted file mode 100644 index ae91f9b444b79..0000000000000 --- a/manifests/g/Google/Chrome/Dev/139.0.7246.0/Google.Chrome.Dev.installer.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Dev -PackageVersion: 139.0.7246.0 -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: x86 - InstallerUrl: https://dl.google.com/dl/chrome/install/dev/googlechromedevstandaloneenterprise.msi - InstallerSha256: 5C7CB50638007D5AA43D329E7D1C99B7544B6A274A66D907C58AF073766ECC4F - ProductCode: '{40C96D12-5C80-3783-9196-10A6AD4137BD}' - AppsAndFeaturesEntries: - - ProductCode: '{40C96D12-5C80-3783-9196-10A6AD4137BD}' - UpgradeCode: '{4446A051-2887-39AC-BF8C-BD2ED8B703CA}' -- Architecture: x64 - InstallerUrl: https://dl.google.com/dl/chrome/install/dev/googlechromedevstandaloneenterprise64.msi - InstallerSha256: 874CDAD76858CFB28751F029AB98C5F84D4BEC932DC89614B086F3ED56658E9C - ProductCode: '{8CBD06DE-4BB1-37FE-A272-195B314ABBE2}' - AppsAndFeaturesEntries: - - ProductCode: '{8CBD06DE-4BB1-37FE-A272-195B314ABBE2}' - UpgradeCode: '{4446A051-2887-39AC-BF8C-BD2ED8B703CA}' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/140.0.7259.2/Google.Chrome.Dev.installer.yaml b/manifests/g/Google/Chrome/Dev/140.0.7259.2/Google.Chrome.Dev.installer.yaml new file mode 100644 index 0000000000000..a58cc7565ff9f --- /dev/null +++ b/manifests/g/Google/Chrome/Dev/140.0.7259.2/Google.Chrome.Dev.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: Google.Chrome.Dev +PackageVersion: 140.0.7259.2 +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: x86 + InstallerUrl: https://dl.google.com/dl/chrome/install/dev/googlechromedevstandaloneenterprise.msi + InstallerSha256: 28517424A8A7063CED46C60278CF8632F9F441865994643982973AB1ABB2EC91 + ProductCode: '{56D24ED8-C5D4-3BDF-9488-D726AD1AAC89}' + AppsAndFeaturesEntries: + - ProductCode: '{56D24ED8-C5D4-3BDF-9488-D726AD1AAC89}' + UpgradeCode: '{4446A051-2887-39AC-BF8C-BD2ED8B703CA}' +- Architecture: x64 + InstallerUrl: https://dl.google.com/dl/chrome/install/dev/googlechromedevstandaloneenterprise64.msi + InstallerSha256: A807A97A0262F65D6ACCF14EC24B88229A9978A0D4AC41AA662BB5631154F978 + ProductCode: '{EB9DA345-3CCF-3EFB-B28F-53EA7D5EC7E9}' + AppsAndFeaturesEntries: + - ProductCode: '{EB9DA345-3CCF-3EFB-B28F-53EA7D5EC7E9}' + UpgradeCode: '{4446A051-2887-39AC-BF8C-BD2ED8B703CA}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/139.0.7246.0/Google.Chrome.Dev.locale.en-US.yaml b/manifests/g/Google/Chrome/Dev/140.0.7259.2/Google.Chrome.Dev.locale.en-US.yaml similarity index 94% rename from manifests/g/Google/Chrome/Dev/139.0.7246.0/Google.Chrome.Dev.locale.en-US.yaml rename to manifests/g/Google/Chrome/Dev/140.0.7259.2/Google.Chrome.Dev.locale.en-US.yaml index 3b96e5ef09f4e..00d08452d45db 100644 --- a/manifests/g/Google/Chrome/Dev/139.0.7246.0/Google.Chrome.Dev.locale.en-US.yaml +++ b/manifests/g/Google/Chrome/Dev/140.0.7259.2/Google.Chrome.Dev.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Google.Chrome.Dev -PackageVersion: 139.0.7246.0 +PackageVersion: 140.0.7259.2 PackageLocale: en-US Publisher: Google LLC PublisherUrl: https://www.google.com/ diff --git a/manifests/g/Google/Chrome/Dev/139.0.7246.0/Google.Chrome.Dev.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Dev/140.0.7259.2/Google.Chrome.Dev.locale.nb-NO.yaml similarity index 94% rename from manifests/g/Google/Chrome/Dev/139.0.7246.0/Google.Chrome.Dev.locale.nb-NO.yaml rename to manifests/g/Google/Chrome/Dev/140.0.7259.2/Google.Chrome.Dev.locale.nb-NO.yaml index f8ff83a571831..931629b174b6b 100644 --- a/manifests/g/Google/Chrome/Dev/139.0.7246.0/Google.Chrome.Dev.locale.nb-NO.yaml +++ b/manifests/g/Google/Chrome/Dev/140.0.7259.2/Google.Chrome.Dev.locale.nb-NO.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Google.Chrome.Dev -PackageVersion: 139.0.7246.0 +PackageVersion: 140.0.7259.2 PackageLocale: nb-NO Publisher: Google LLC PublisherUrl: https://www.google.com/ diff --git a/manifests/g/Google/Chrome/Dev/139.0.7246.0/Google.Chrome.Dev.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Dev/140.0.7259.2/Google.Chrome.Dev.locale.zh-CN.yaml similarity index 95% rename from manifests/g/Google/Chrome/Dev/139.0.7246.0/Google.Chrome.Dev.locale.zh-CN.yaml rename to manifests/g/Google/Chrome/Dev/140.0.7259.2/Google.Chrome.Dev.locale.zh-CN.yaml index 87e68e529ea5a..c028eeb747c50 100644 --- a/manifests/g/Google/Chrome/Dev/139.0.7246.0/Google.Chrome.Dev.locale.zh-CN.yaml +++ b/manifests/g/Google/Chrome/Dev/140.0.7259.2/Google.Chrome.Dev.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Google.Chrome.Dev -PackageVersion: 139.0.7246.0 +PackageVersion: 140.0.7259.2 PackageLocale: zh-CN Publisher: Google LLC PublisherUrl: https://www.google.com/ diff --git a/manifests/g/Google/Chrome/Dev/139.0.7246.0/Google.Chrome.Dev.yaml b/manifests/g/Google/Chrome/Dev/140.0.7259.2/Google.Chrome.Dev.yaml similarity index 86% rename from manifests/g/Google/Chrome/Dev/139.0.7246.0/Google.Chrome.Dev.yaml rename to manifests/g/Google/Chrome/Dev/140.0.7259.2/Google.Chrome.Dev.yaml index 7f9af01229776..539f00120f23b 100644 --- a/manifests/g/Google/Chrome/Dev/139.0.7246.0/Google.Chrome.Dev.yaml +++ b/manifests/g/Google/Chrome/Dev/140.0.7259.2/Google.Chrome.Dev.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Google.Chrome.Dev -PackageVersion: 139.0.7246.0 +PackageVersion: 140.0.7259.2 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/140.0.7259.2/Google.Chrome.Dev.EXE.installer.yaml b/manifests/g/Google/Chrome/Dev/EXE/140.0.7259.2/Google.Chrome.Dev.EXE.installer.yaml new file mode 100644 index 0000000000000..83d3e87ba29f9 --- /dev/null +++ b/manifests/g/Google/Chrome/Dev/EXE/140.0.7259.2/Google.Chrome.Dev.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.Dev.EXE +PackageVersion: 140.0.7259.2 +InstallerType: exe +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" +ExpectedReturnCodes: +- InstallerReturnCode: 3 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 4 + ReturnResponse: downgrade +- InstallerReturnCode: 22 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 60 + ReturnResponse: installInProgress +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Google Chrome Dev +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://dl.google.com/release2/chrome/aclrblbhfzw6c3jqewhgbl2e7arq_140.0.7259.2/140.0.7259.2_chrome_installer_uncompressed.exe + InstallerSha256: 57591C23A19FC6FA9917611C48DBD7E2EC323016552E637FAF537CE47B6E0467 + InstallerSwitches: + Custom: --chrome-dev --do-not-launch-chrome +- Architecture: x86 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/aclrblbhfzw6c3jqewhgbl2e7arq_140.0.7259.2/140.0.7259.2_chrome_installer_uncompressed.exe + InstallerSha256: 57591C23A19FC6FA9917611C48DBD7E2EC323016552E637FAF537CE47B6E0467 + InstallerSwitches: + Custom: --chrome-dev --do-not-launch-chrome --system-level +- Architecture: x64 + Scope: user + InstallerUrl: https://dl.google.com/release2/chrome/ac27bzmqackapvk2po6ewxf4wdiq_140.0.7259.2/140.0.7259.2_chrome_installer_uncompressed.exe + InstallerSha256: EB232AE16347FE4385AF43A1C7C8C46829E85AB4B61809A9043052443C9B910D + InstallerSwitches: + Custom: --chrome-dev --do-not-launch-chrome +- Architecture: x64 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/ac27bzmqackapvk2po6ewxf4wdiq_140.0.7259.2/140.0.7259.2_chrome_installer_uncompressed.exe + InstallerSha256: EB232AE16347FE4385AF43A1C7C8C46829E85AB4B61809A9043052443C9B910D + InstallerSwitches: + Custom: --chrome-dev --do-not-launch-chrome --system-level +- Architecture: arm64 + Scope: user + InstallerUrl: https://dl.google.com/release2/chrome/acdde4low67brgf6sa23fyc6ehyq_140.0.7259.2/140.0.7259.2_chrome_installer_uncompressed.exe + InstallerSha256: 3EE381F39F8E0C6F7CA7F04D1AF9DE0D5448B6D0C4BBEDD972F602F538F9C799 + InstallerSwitches: + Custom: --chrome-dev --do-not-launch-chrome +- Architecture: arm64 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/acdde4low67brgf6sa23fyc6ehyq_140.0.7259.2/140.0.7259.2_chrome_installer_uncompressed.exe + InstallerSha256: 3EE381F39F8E0C6F7CA7F04D1AF9DE0D5448B6D0C4BBEDD972F602F538F9C799 + InstallerSwitches: + Custom: --chrome-dev --do-not-launch-chrome --system-level +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/140.0.7259.2/Google.Chrome.Dev.EXE.locale.en-US.yaml b/manifests/g/Google/Chrome/Dev/EXE/140.0.7259.2/Google.Chrome.Dev.EXE.locale.en-US.yaml new file mode 100644 index 0000000000000..fcfe539ade4f0 --- /dev/null +++ b/manifests/g/Google/Chrome/Dev/EXE/140.0.7259.2/Google.Chrome.Dev.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.Dev.EXE +PackageVersion: 140.0.7259.2 +PackageLocale: en-US +Publisher: Google LLC +PublisherUrl: https://www.google.com/ +PublisherSupportUrl: https://support.google.com/ +PrivacyUrl: https://policies.google.com/privacy +Author: Google LLC +PackageName: Google Chrome Dev (EXE) +PackageUrl: https://www.google.com/chrome/dev +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: Google Chrome for developers +Description: Google Chrome for developers was built for the open web. Test cutting-edge web platform APIs and developer tools that are updated weekly. +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/140.0.7259.2/Google.Chrome.Dev.EXE.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Dev/EXE/140.0.7259.2/Google.Chrome.Dev.EXE.locale.nb-NO.yaml new file mode 100644 index 0000000000000..108c58d7506e8 --- /dev/null +++ b/manifests/g/Google/Chrome/Dev/EXE/140.0.7259.2/Google.Chrome.Dev.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.Dev.EXE +PackageVersion: 140.0.7259.2 +PackageLocale: nb-NO +Publisher: Google LLC +PublisherUrl: https://www.google.com/ +PublisherSupportUrl: https://support.google.com/?hl=no +PrivacyUrl: https://policies.google.com/privacy?hl=no +Author: Google LLC +PackageName: Google Chrome Dev (EXE) +PackageUrl: https://www.google.com/intl/no/chrome/dev +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2024 Google LLC. Med enerett. +ShortDescription: Google Chrome for utviklere +Description: Google Chrome for utviklere er laget for det åpne nettet. Test banebrytende nettplattform-API-er og utviklerverktøy som oppdateres ukentlig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/140.0.7259.2/Google.Chrome.Dev.EXE.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Dev/EXE/140.0.7259.2/Google.Chrome.Dev.EXE.locale.zh-CN.yaml new file mode 100644 index 0000000000000..0d6d1c8a57c85 --- /dev/null +++ b/manifests/g/Google/Chrome/Dev/EXE/140.0.7259.2/Google.Chrome.Dev.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.Dev.EXE +PackageVersion: 140.0.7259.2 +PackageLocale: zh-CN +Publisher: Google LLC +PublisherUrl: https://www.google.com/ +PublisherSupportUrl: https://support.google.com/?hl=zh-Hans +PrivacyUrl: https://policies.google.com/privacy?hl=zh-CN +Author: Google LLC +PackageName: Google Chrome 开发者版 (EXE) +PackageUrl: https://www.google.com/intl/zh-CN/chrome/dev +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的 Google Chrome +Description: 开发者专用的 Google Chrome 专为开放式网络打造。测试先进的网络平台 API 和每周都会更新的开发者工具。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/140.0.7259.2/Google.Chrome.Dev.EXE.yaml b/manifests/g/Google/Chrome/Dev/EXE/140.0.7259.2/Google.Chrome.Dev.EXE.yaml new file mode 100644 index 0000000000000..ee3f02551ba1d --- /dev/null +++ b/manifests/g/Google/Chrome/Dev/EXE/140.0.7259.2/Google.Chrome.Dev.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.Dev.EXE +PackageVersion: 140.0.7259.2 +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/Google/Chrome/EXE/138.0.7204.50/Google.Chrome.EXE.installer.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.50/Google.Chrome.EXE.installer.yaml new file mode 100644 index 0000000000000..cdcfd7b81a076 --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.50/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.50 +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/j3u7wrnak5a2hjrnzarf4cas3i_138.0.7204.50/138.0.7204.50_chrome_installer_uncompressed.exe + InstallerSha256: 6D9EBAC78FA97531721765AD395E678FEA57CA8FA5C79AB9176B97D53C33CA7B + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: x86 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/j3u7wrnak5a2hjrnzarf4cas3i_138.0.7204.50/138.0.7204.50_chrome_installer_uncompressed.exe + InstallerSha256: 6D9EBAC78FA97531721765AD395E678FEA57CA8FA5C79AB9176B97D53C33CA7B + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +- Architecture: x64 + Scope: user + InstallerUrl: https://dl.google.com/release2/chrome/o6dbyytvo73aj3atmz5ua7m6ry_138.0.7204.50/138.0.7204.50_chrome_installer_uncompressed.exe + InstallerSha256: 22A8C81EEBEDBFA9CDB61A14A717E693864FE9626FAF4FD1F587EA266CC22616 + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: x64 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/o6dbyytvo73aj3atmz5ua7m6ry_138.0.7204.50/138.0.7204.50_chrome_installer_uncompressed.exe + InstallerSha256: 22A8C81EEBEDBFA9CDB61A14A717E693864FE9626FAF4FD1F587EA266CC22616 + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +- Architecture: arm64 + Scope: user + InstallerUrl: https://dl.google.com/release2/chrome/adtve3x6tqsoe3rytq733divpmlq_138.0.7204.50/138.0.7204.50_chrome_installer_uncompressed.exe + InstallerSha256: 441D68DE52FAE6AB6626DC8DC9BE1468A689B9D756D316125098A6F196AAB856 + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: arm64 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/adtve3x6tqsoe3rytq733divpmlq_138.0.7204.50/138.0.7204.50_chrome_installer_uncompressed.exe + InstallerSha256: 441D68DE52FAE6AB6626DC8DC9BE1468A689B9D756D316125098A6F196AAB856 + 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.50/Google.Chrome.EXE.locale.en-US.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.50/Google.Chrome.EXE.locale.en-US.yaml new file mode 100644 index 0000000000000..1caffc0b0e908 --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.50/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.50 +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.50/Google.Chrome.EXE.locale.nb-NO.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.50/Google.Chrome.EXE.locale.nb-NO.yaml new file mode 100644 index 0000000000000..629d867a6be34 --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.50/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.50 +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.50/Google.Chrome.EXE.locale.zh-CN.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.50/Google.Chrome.EXE.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2829605a3412a --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.50/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.50 +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.50/Google.Chrome.EXE.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.50/Google.Chrome.EXE.yaml new file mode 100644 index 0000000000000..33fa863d7c232 --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.50/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.50 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/138.0.7204.97/Google.Chrome.EXE.installer.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.97/Google.Chrome.EXE.installer.yaml new file mode 100644 index 0000000000000..c4e9c4e20af6d --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.97/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.97 +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/ac4d4vq6w323vk5y57jetvjiqzjq_138.0.7204.97/138.0.7204.97_chrome_installer_uncompressed.exe + InstallerSha256: AA4CA0D032C81DEFFC1561DE768D2E85171BC6132345A85329152F7920D052CC + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: x86 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/ac4d4vq6w323vk5y57jetvjiqzjq_138.0.7204.97/138.0.7204.97_chrome_installer_uncompressed.exe + InstallerSha256: AA4CA0D032C81DEFFC1561DE768D2E85171BC6132345A85329152F7920D052CC + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +- Architecture: x64 + Scope: user + InstallerUrl: https://dl.google.com/release2/chrome/acfputsgwfhpt46zcvjobof6evfq_138.0.7204.97/138.0.7204.97_chrome_installer_uncompressed.exe + InstallerSha256: 271C504759F4935ADC506B95377F4D9C25F9B19BA815FDBF7DE92532889C5137 + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: x64 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/acfputsgwfhpt46zcvjobof6evfq_138.0.7204.97/138.0.7204.97_chrome_installer_uncompressed.exe + InstallerSha256: 271C504759F4935ADC506B95377F4D9C25F9B19BA815FDBF7DE92532889C5137 + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +- Architecture: arm64 + Scope: user + InstallerUrl: https://dl.google.com/release2/chrome/aclti4ao6bjj7bdrj35nez64a7qq_138.0.7204.97/138.0.7204.97_chrome_installer_uncompressed.exe + InstallerSha256: EED972A858D21FF0088433A153D43DBDAD48F0A83D329E29A28E445335BCB490 + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: arm64 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/aclti4ao6bjj7bdrj35nez64a7qq_138.0.7204.97/138.0.7204.97_chrome_installer_uncompressed.exe + InstallerSha256: EED972A858D21FF0088433A153D43DBDAD48F0A83D329E29A28E445335BCB490 + 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.97/Google.Chrome.EXE.locale.en-US.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.97/Google.Chrome.EXE.locale.en-US.yaml new file mode 100644 index 0000000000000..9c76ff29fd364 --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.97/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.97 +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.97/Google.Chrome.EXE.locale.nb-NO.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.97/Google.Chrome.EXE.locale.nb-NO.yaml new file mode 100644 index 0000000000000..06e8097f02ec6 --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.97/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.97 +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.97/Google.Chrome.EXE.locale.zh-CN.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.97/Google.Chrome.EXE.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6c69c2c17a2e8 --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.97/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.97 +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.97/Google.Chrome.EXE.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.97/Google.Chrome.EXE.yaml new file mode 100644 index 0000000000000..ecff97efca148 --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.97/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.97 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/ChromeRemoteDesktopHost/139.0.7258.8/Google.ChromeRemoteDesktopHost.installer.yaml b/manifests/g/Google/ChromeRemoteDesktopHost/139.0.7258.8/Google.ChromeRemoteDesktopHost.installer.yaml new file mode 100644 index 0000000000000..9aeb67ad43927 --- /dev/null +++ b/manifests/g/Google/ChromeRemoteDesktopHost/139.0.7258.8/Google.ChromeRemoteDesktopHost.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: Google.ChromeRemoteDesktopHost +PackageVersion: 139.0.7258.8 +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ProductCode: '{09112FA9-7463-428E-BFD2-FB196BC4828B}' +AppsAndFeaturesEntries: +- ProductCode: '{09112FA9-7463-428E-BFD2-FB196BC4828B}' + UpgradeCode: '{2B21F767-E157-4FA6-963C-55834C1433A6}' +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/misc/euq6iiuq7cp2jliqwmpzq4ml4m_139.0.7258.8/remoting-host.msi + InstallerSha256: 87E524E9E990F515D49C264AB89AC1528A0C7395A81AA261B1FF9FAFCC06B5A2 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/ChromeRemoteDesktopHost/139.0.7258.8/Google.ChromeRemoteDesktopHost.locale.en-US.yaml b/manifests/g/Google/ChromeRemoteDesktopHost/139.0.7258.8/Google.ChromeRemoteDesktopHost.locale.en-US.yaml new file mode 100644 index 0000000000000..5beefa047c8df --- /dev/null +++ b/manifests/g/Google/ChromeRemoteDesktopHost/139.0.7258.8/Google.ChromeRemoteDesktopHost.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.ChromeRemoteDesktopHost +PackageVersion: 139.0.7258.8 +PackageLocale: en-US +Publisher: Google LLC +PublisherUrl: https://www.google.com/ +PublisherSupportUrl: https://support.google.com/chrome/answer/1649523 +PrivacyUrl: https://policies.google.com/privacy +Author: Google LLC +PackageName: Chrome Remote Desktop Host +PackageUrl: https://remotedesktop.google.com/ +License: Freeware +LicenseUrl: https://policies.google.com/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: The easy way to remotely connect with your home or work computer, or share your screen with others. +Description: Whether you need to access your work computer from home, view a file from your home computer while travelling, or share your screen with friends or colleagues, Chrome Remote Desktop connects you to your devices using the latest web technologies. +Moniker: chrome-remote-desktop +Tags: +- chromoting +- remote +- remote-access +- remote-assistance +- remote-control +- remote-desktop +InstallationNotes: This is the hosting component for Chrome Remote Desktop. After installation, follow the instructions at https://remotedesktop.google.com/ to get connected. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/ChromeRemoteDesktopHost/139.0.7258.8/Google.ChromeRemoteDesktopHost.locale.zh-CN.yaml b/manifests/g/Google/ChromeRemoteDesktopHost/139.0.7258.8/Google.ChromeRemoteDesktopHost.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e788632bf23ec --- /dev/null +++ b/manifests/g/Google/ChromeRemoteDesktopHost/139.0.7258.8/Google.ChromeRemoteDesktopHost.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: Google.ChromeRemoteDesktopHost +PackageVersion: 139.0.7258.8 +PackageLocale: zh-CN +Publisher: Google LLC +PublisherUrl: https://www.google.com/ +PublisherSupportUrl: https://support.google.com/chrome/answer/1649523 +PrivacyUrl: https://policies.google.com/privacy +Author: Google LLC +PackageName: Chrome Remote Desktop Host +PackageUrl: https://remotedesktop.google.com/ +License: 免费软件 +LicenseUrl: https://policies.google.com/terms +Copyright: 版权所有 2024 Google LLC。保留所有权利。 +ShortDescription: 轻松地从远程连接您的家用/办公计算机或与他人共享您的屏幕。 +Description: 无论您是需要从家中访问您的办公计算机、需要在旅行期间查看家用计算机上的某个文件,还是需要与好友/同事共享您的屏幕,Chrome 远程桌面 都能使用最新的网络技术将您连接到所需设备。 +Tags: +- chromoting +- 远程 +- 远程协助 +- 远程控制 +- 远程桌面 +- 远程访问 +- 远程连接 +InstallationNotes: 这是 Chrome 远程桌面的主机组件。安装后,请按照 https://remotedesktop.google.com/ 上的说明进行连接。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/ChromeRemoteDesktopHost/139.0.7258.8/Google.ChromeRemoteDesktopHost.yaml b/manifests/g/Google/ChromeRemoteDesktopHost/139.0.7258.8/Google.ChromeRemoteDesktopHost.yaml new file mode 100644 index 0000000000000..a7e871a03f7de --- /dev/null +++ b/manifests/g/Google/ChromeRemoteDesktopHost/139.0.7258.8/Google.ChromeRemoteDesktopHost.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.ChromeRemoteDesktopHost +PackageVersion: 139.0.7258.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/CloudSDK/527.0.0/Google.CloudSDK.installer.yaml b/manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.installer.yaml similarity index 93% rename from manifests/g/Google/CloudSDK/527.0.0/Google.CloudSDK.installer.yaml rename to manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.installer.yaml index 0c5654a7b30e0..18d310fbe07a6 100644 --- a/manifests/g/Google/CloudSDK/527.0.0/Google.CloudSDK.installer.yaml +++ b/manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.installer.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.12.0 +# Created with komac v2.12.1 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Google.CloudSDK -PackageVersion: 527.0.0 +PackageVersion: 529.0.0 InstallerLocale: en-US InstallerType: nullsoft InstallModes: diff --git a/manifests/g/Google/CloudSDK/527.0.0/Google.CloudSDK.locale.en-US.yaml b/manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.locale.en-US.yaml similarity index 93% rename from manifests/g/Google/CloudSDK/527.0.0/Google.CloudSDK.locale.en-US.yaml rename to manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.locale.en-US.yaml index e9b6628644ec2..a8cf446c86c94 100644 --- a/manifests/g/Google/CloudSDK/527.0.0/Google.CloudSDK.locale.en-US.yaml +++ b/manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.12.0 +# Created with komac v2.12.1 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Google.CloudSDK -PackageVersion: 527.0.0 +PackageVersion: 529.0.0 PackageLocale: en-US Publisher: Google LLC PublisherUrl: https://cloud.google.com/ diff --git a/manifests/g/Google/CloudSDK/527.0.0/Google.CloudSDK.yaml b/manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.yaml similarity index 75% rename from manifests/g/Google/CloudSDK/527.0.0/Google.CloudSDK.yaml rename to manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.yaml index 944981b997564..83b6a39418995 100644 --- a/manifests/g/Google/CloudSDK/527.0.0/Google.CloudSDK.yaml +++ b/manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.12.0 +# Created with komac v2.12.1 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Google.CloudSDK -PackageVersion: 527.0.0 +PackageVersion: 529.0.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/CredentialProviderForWindows/138.0.7204.26/Google.CredentialProviderForWindows.installer.yaml b/manifests/g/Google/CredentialProviderForWindows/138.0.7204.26/Google.CredentialProviderForWindows.installer.yaml new file mode 100644 index 0000000000000..6082103891b41 --- /dev/null +++ b/manifests/g/Google/CredentialProviderForWindows/138.0.7204.26/Google.CredentialProviderForWindows.installer.yaml @@ -0,0 +1,25 @@ +# Automatically updated by the winget bot at 2025/Jun/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Google.CredentialProviderForWindows +PackageVersion: 138.0.7204.26 +InstallerLocale: en-US +InstallerType: wix +ElevationRequirement: elevationRequired +UnsupportedOSArchitectures: +- arm +- arm64 +Dependencies: + PackageDependencies: + - PackageIdentifier: Google.Chrome + MinimumVersion: 81.0.0 +ProductCode: '{29716494-E5B9-3E21-9524-3160129C8781}' +Installers: +- Architecture: x64 + InstallerUrl: https://dl.google.com/credentialprovider/gcpwstandaloneenterprise64.msi + InstallerSha256: F2FDE1B2E3BCF88E517A9F59F48887DDB5E2AA4F808B1D5ED9F4BBD11C66288C +- Architecture: x86 + InstallerUrl: https://dl.google.com/credentialprovider/gcpwstandaloneenterprise.msi + InstallerSha256: E98BF6D7EC6AF4078BF912C994CDF7245EAF0B241F71BE1950AC8A9CB82289FC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/CredentialProviderForWindows/138.0.7204.26/Google.CredentialProviderForWindows.locale.en-US.yaml b/manifests/g/Google/CredentialProviderForWindows/138.0.7204.26/Google.CredentialProviderForWindows.locale.en-US.yaml new file mode 100644 index 0000000000000..39b83326ed973 --- /dev/null +++ b/manifests/g/Google/CredentialProviderForWindows/138.0.7204.26/Google.CredentialProviderForWindows.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Automatically updated by the winget bot at 2025/Jun/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.CredentialProviderForWindows +PackageVersion: 138.0.7204.26 +PackageLocale: en-US +Publisher: Google LLC +PackageName: Google Credential Provider for Windows +License: Proprietary +ShortDescription: Google Credential Provider for Windows® (GCPW) lets users sign in to Windows® devices with the Google Account they use for work. +Moniker: gcpw +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/CredentialProviderForWindows/138.0.7204.26/Google.CredentialProviderForWindows.yaml b/manifests/g/Google/CredentialProviderForWindows/138.0.7204.26/Google.CredentialProviderForWindows.yaml new file mode 100644 index 0000000000000..4abc4765c240d --- /dev/null +++ b/manifests/g/Google/CredentialProviderForWindows/138.0.7204.26/Google.CredentialProviderForWindows.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jun/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Google.CredentialProviderForWindows +PackageVersion: 138.0.7204.26 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/CredentialProviderForWindows/70.103.49152/Google.CredentialProviderForWindows.installer.yaml b/manifests/g/Google/CredentialProviderForWindows/70.103.49152/Google.CredentialProviderForWindows.installer.yaml deleted file mode 100644 index c791638148cfd..0000000000000 --- a/manifests/g/Google/CredentialProviderForWindows/70.103.49152/Google.CredentialProviderForWindows.installer.yaml +++ /dev/null @@ -1,25 +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: Google.CredentialProviderForWindows -PackageVersion: 70.103.49152 -InstallerLocale: en-US -InstallerType: wix -ElevationRequirement: elevationRequired -UnsupportedOSArchitectures: - - arm - - arm64 -Dependencies: - PackageDependencies: - - PackageIdentifier: Google.Chrome - MinimumVersion: 81.0.0 -ProductCode: '{29716494-E5B9-3E21-9524-3160129C8781}' -Installers: -- Architecture: x64 - InstallerUrl: https://dl.google.com/credentialprovider/gcpwstandaloneenterprise64.msi - InstallerSha256: 96C2877E316D1D7D1A4F90EBCAA638B6632BD3FE6F63A89E632F2E2798377CDC -- Architecture: x86 - InstallerUrl: https://dl.google.com/credentialprovider/gcpwstandaloneenterprise.msi - InstallerSha256: 2864C81BDD73A4E8EB094133078501F039E5A2F3DAD2BCA19102FE1F8DCB6D22 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/g/Google/CredentialProviderForWindows/70.103.49152/Google.CredentialProviderForWindows.locale.en-US.yaml b/manifests/g/Google/CredentialProviderForWindows/70.103.49152/Google.CredentialProviderForWindows.locale.en-US.yaml deleted file mode 100644 index 4c022b5d0194c..0000000000000 --- a/manifests/g/Google/CredentialProviderForWindows/70.103.49152/Google.CredentialProviderForWindows.locale.en-US.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: Google.CredentialProviderForWindows -PackageVersion: 70.103.49152 -PackageLocale: en-US -Publisher: Google LLC -PackageName: Google Credential Provider for Windows -License: Proprietary -ShortDescription: Google Credential Provider for Windows® (GCPW) lets users sign in to Windows® devices with the Google Account they use for work. -Moniker: gcpw -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/g/Google/CredentialProviderForWindows/70.103.49152/Google.CredentialProviderForWindows.yaml b/manifests/g/Google/CredentialProviderForWindows/70.103.49152/Google.CredentialProviderForWindows.yaml deleted file mode 100644 index 335936dc84738..0000000000000 --- a/manifests/g/Google/CredentialProviderForWindows/70.103.49152/Google.CredentialProviderForWindows.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: Google.CredentialProviderForWindows -PackageVersion: 70.103.49152 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/g/Google/FirebaseCLI/14.9.0/Google.FirebaseCLI.installer.yaml b/manifests/g/Google/FirebaseCLI/14.9.0/Google.FirebaseCLI.installer.yaml new file mode 100644 index 0000000000000..5db44f5e272ac --- /dev/null +++ b/manifests/g/Google/FirebaseCLI/14.9.0/Google.FirebaseCLI.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Google.FirebaseCLI +PackageVersion: 14.9.0 +InstallerType: portable +InstallModes: +- silent +Commands: +- firebase +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/firebase/firebase-tools/releases/download/v14.9.0/firebase-tools-win.exe + InstallerSha256: 5ADB85F10961F4004EC1BFA18B71E8DD59E3622EB7C9C3623A4F54FED0D7C825 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/FirebaseCLI/14.9.0/Google.FirebaseCLI.locale.en-US.yaml b/manifests/g/Google/FirebaseCLI/14.9.0/Google.FirebaseCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..7ff3c294caf4e --- /dev/null +++ b/manifests/g/Google/FirebaseCLI/14.9.0/Google.FirebaseCLI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.FirebaseCLI +PackageVersion: 14.9.0 +PackageLocale: en-US +Publisher: Google +PublisherUrl: https://firebase.google.com/ +PublisherSupportUrl: https://firebase.google.com/support +PrivacyUrl: https://policies.google.com/privacy +Author: Firebase contributors +PackageName: Firebase CLI Tools +PackageUrl: https://github.com/firebase/firebase-tools +License: MIT +LicenseUrl: https://github.com/firebase/firebase-tools/blob/HEAD/LICENSE +Copyright: Copyright (c) Firebase +CopyrightUrl: https://github.com/firebase/firebase-tools/blob/master/LICENSE +ShortDescription: The Firebase CLI Tools can be used to test, manage, and deploy your Firebase project from the command line. +Moniker: firebase-cli +Tags: +- firebase +- firebase-cli +- firebase-tools +ReleaseNotes: |- + - Added validation to check if project ID exists during project creation. (#5233) + - Added generate_dataconnect_schema, dataconnect_generate_operation, firebase_consult_assistant MCP tools. (#8647) + - firebase init dataconnect is now integrated with Gemini in Firebase API to generate Schema based on description. (#8596) + - Added user-friendly warning for runtime errors from the GCF API. (#8713) + - Updated Data Connect emulator to 2.8.0, which adds a README to generated Kotlin packages and drops support for macOS 10.15 (Catalina). +ReleaseNotesUrl: https://github.com/firebase/firebase-tools/releases/tag/v14.9.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/FirebaseCLI/14.9.0/Google.FirebaseCLI.yaml b/manifests/g/Google/FirebaseCLI/14.9.0/Google.FirebaseCLI.yaml new file mode 100644 index 0000000000000..c41468fcaec78 --- /dev/null +++ b/manifests/g/Google/FirebaseCLI/14.9.0/Google.FirebaseCLI.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: Google.FirebaseCLI +PackageVersion: 14.9.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/GoogleDrive/110.0.2.0/Google.GoogleDrive.installer.yaml b/manifests/g/Google/GoogleDrive/110.0.2.0/Google.GoogleDrive.installer.yaml new file mode 100644 index 0000000000000..62ae2eed09823 --- /dev/null +++ b/manifests/g/Google/GoogleDrive/110.0.2.0/Google.GoogleDrive.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: Google.GoogleDrive +PackageVersion: 110.0.2.0 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: --silent --skip_launch_new --gsuite_shortcuts=false + SilentWithProgress: --silent --skip_launch_new --gsuite_shortcuts=false +ExpectedReturnCodes: +- InstallerReturnCode: 1603 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1638 + ReturnResponse: alreadyInstalled +UpgradeBehavior: install +ProductCode: '{6BBAE539-2232-434A-A4E5-9A33560C6283}' +Installers: +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/drive-file-stream/ac23ccege6umdy34bjo454gylfta_110.0.2.0/setup.exe + InstallerSha256: 088F7D055FCEBBAB4CDAD8AF5BD65E3D9FA626C068F000544DAF70C091216F50 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/GoogleDrive/110.0.2.0/Google.GoogleDrive.locale.en-US.yaml b/manifests/g/Google/GoogleDrive/110.0.2.0/Google.GoogleDrive.locale.en-US.yaml new file mode 100644 index 0000000000000..54e6537f4baf0 --- /dev/null +++ b/manifests/g/Google/GoogleDrive/110.0.2.0/Google.GoogleDrive.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: Google.GoogleDrive +PackageVersion: 110.0.2.0 +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 Drive +PackageUrl: https://www.google.com/drive/download/ +License: Proprietary +LicenseUrl: https://www.google.com/drive/terms-of-service/ +Copyright: Copyright(c) 2024 Google LLC. All Rights Reserved. +ShortDescription: Safely store your files and access them from any device +Description: Choose folders on your computer to sync with Google Drive or backup to Google Photos, and access all of your content directly from your PC or Mac +Moniker: google-drive +Tags: +- backup +- cloud +- cloud-drive +- download +- drive +- file +- netdisk +- share +- sync +- upload +ReleaseNotesUrl: https://support.google.com/a/answer/7577057?hl=en +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/GoogleDrive/110.0.2.0/Google.GoogleDrive.locale.zh-CN.yaml b/manifests/g/Google/GoogleDrive/110.0.2.0/Google.GoogleDrive.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a8985a96b0368 --- /dev/null +++ b/manifests/g/Google/GoogleDrive/110.0.2.0/Google.GoogleDrive.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Google.GoogleDrive +PackageVersion: 110.0.2.0 +PackageLocale: zh-CN +Publisher: Google LLC +PublisherUrl: https://www.google.com/ +PublisherSupportUrl: https://support.google.com/ +PrivacyUrl: https://policies.google.com/privacy +Author: Google LLC +PackageName: Google Drive +PackageUrl: https://www.google.com/drive/download/ +License: 专有软件 +LicenseUrl: https://www.google.com/drive/terms-of-service/ +Copyright: Copyright(c) 2024 Google LLC. 保留所有权利。 +ShortDescription: 安全存储文件,且可以通过任意设备访问 +Description: 在计算机上选择要同步到 Google 云端硬盘或备份到 Google 相册的文件夹,然后直接通过 PC 或 Mac 访问您的所有内容 +Tags: +- 上传 +- 下载 +- 云 +- 云盘 +- 共享 +- 分享 +- 同步 +- 备份 +- 文件 +- 网盘 +ReleaseNotesUrl: https://support.google.com/a/answer/7577057?hl=zh-Hans +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/GoogleDrive/110.0.2.0/Google.GoogleDrive.yaml b/manifests/g/Google/GoogleDrive/110.0.2.0/Google.GoogleDrive.yaml new file mode 100644 index 0000000000000..9bfec8be470ae --- /dev/null +++ b/manifests/g/Google/GoogleDrive/110.0.2.0/Google.GoogleDrive.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.GoogleDrive +PackageVersion: 110.0.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/GoogleUpdater/140.0.7272.0/Google.GoogleUpdater.installer.yaml b/manifests/g/Google/GoogleUpdater/140.0.7272.0/Google.GoogleUpdater.installer.yaml new file mode 100644 index 0000000000000..c087caf06340b --- /dev/null +++ b/manifests/g/Google/GoogleUpdater/140.0.7272.0/Google.GoogleUpdater.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: Google.GoogleUpdater +PackageVersion: 140.0.7272.0 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --install --silent + SilentWithProgress: --install --silent + Interactive: --install + Log: --enable-logging + Upgrade: --update +UpgradeBehavior: install +InstallationMetadata: + Files: + - RelativeFilePath: updater.exe + FileSha256: A888D2DEF28A8B88A9064A22E921D41C2854E40E2061BEB1B03953FA8FB4D789 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://dl.google.com/release2/update2/acdyxdbknwrpenqt2wvch5ay45vq_140.0.7272.0/UpdaterSetup.exe + InstallerSha256: A1B66BDC036E7349028BDD5B4A390934C85AEFDE14A81E4FD9CAE18FE9477D9C + InstallerSwitches: + Custom: --enterprise + InstallationMetadata: + DefaultInstallLocation: '%LOCALAPPDATA%\Google\GoogleUpdater\140.0.7272.0' +- Architecture: x86 + Scope: machine + InstallerUrl: https://dl.google.com/release2/update2/acdyxdbknwrpenqt2wvch5ay45vq_140.0.7272.0/UpdaterSetup.exe + InstallerSha256: A1B66BDC036E7349028BDD5B4A390934C85AEFDE14A81E4FD9CAE18FE9477D9C + InstallerSwitches: + Custom: --system --enterprise + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Google\GoogleUpdater\140.0.7272.0' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/GoogleUpdater/140.0.7272.0/Google.GoogleUpdater.locale.en-US.yaml b/manifests/g/Google/GoogleUpdater/140.0.7272.0/Google.GoogleUpdater.locale.en-US.yaml new file mode 100644 index 0000000000000..ab01d288a18b1 --- /dev/null +++ b/manifests/g/Google/GoogleUpdater/140.0.7272.0/Google.GoogleUpdater.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.GoogleUpdater +PackageVersion: 140.0.7272.0 +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 Update +License: Freeware +LicenseUrl: https://policies.google.com/terms +Copyright: Copyright 2024 Google LLC. All rights reserved. +ShortDescription: An updater to keep Chrome (and other software) up to date. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/GoogleUpdater/140.0.7272.0/Google.GoogleUpdater.locale.zh-CN.yaml b/manifests/g/Google/GoogleUpdater/140.0.7272.0/Google.GoogleUpdater.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d133c5ef23c6b --- /dev/null +++ b/manifests/g/Google/GoogleUpdater/140.0.7272.0/Google.GoogleUpdater.locale.zh-CN.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Google.GoogleUpdater +PackageVersion: 140.0.7272.0 +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 Update +License: 免费软件 +LicenseUrl: https://policies.google.com/terms?hl=zh-CN +Copyright: 版权所有 2024 Google LLC. 保留所有权利。 +ShortDescription: 让 Chrome(和其它软件)保持最新的更新程序。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/GoogleUpdater/140.0.7272.0/Google.GoogleUpdater.yaml b/manifests/g/Google/GoogleUpdater/140.0.7272.0/Google.GoogleUpdater.yaml new file mode 100644 index 0000000000000..d1f75d185eaf9 --- /dev/null +++ b/manifests/g/Google/GoogleUpdater/140.0.7272.0/Google.GoogleUpdater.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.GoogleUpdater +PackageVersion: 140.0.7272.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Perfetto/51.1/Google.Perfetto.installer.yaml b/manifests/g/Google/Perfetto/51.1/Google.Perfetto.installer.yaml new file mode 100644 index 0000000000000..9c05835455a6a --- /dev/null +++ b/manifests/g/Google/Perfetto/51.1/Google.Perfetto.installer.yaml @@ -0,0 +1,17 @@ +# 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: Google.Perfetto +PackageVersion: '51.1' +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: windows-amd64/perfetto.exe + PortableCommandAlias: perfetto +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/google/perfetto/releases/download/v51.1/windows-amd64.zip + InstallerSha256: ED3171FFF3D207629DCA3733FF91CC39AAEBAC96B701F4780E053E9508DF5835 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Perfetto/51.1/Google.Perfetto.locale.en-US.yaml b/manifests/g/Google/Perfetto/51.1/Google.Perfetto.locale.en-US.yaml new file mode 100644 index 0000000000000..2cc8533da0000 --- /dev/null +++ b/manifests/g/Google/Perfetto/51.1/Google.Perfetto.locale.en-US.yaml @@ -0,0 +1,70 @@ +# 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: Google.Perfetto +PackageVersion: '51.1' +PackageLocale: en-US +Publisher: Google +PublisherUrl: https://github.com/google +PublisherSupportUrl: https://github.com/google/perfetto/issues +PackageName: Perfetto +PackageUrl: https://github.com/google/perfetto +License: Apache-2.0 +LicenseUrl: https://github.com/google/perfetto/blob/HEAD/LICENSE +ShortDescription: Performance instrumentation and tracing for Android, Linux and Chrome. +ReleaseNotes: |- + v51.1 - 2025-06-26: + Build system: + * Fixed issue with Bazel copts/cxxopts. Embedders are required to add a + default_cxxopts to their perfetto.bzl file in their repository. + v51.0 - 2025-06-24: + Tracing service and probes: + * Added a new data source to poll for CPU time per UID and cluster. + SQL Standard library: + * Added a new standard library table for filtering IRQ slices. + * Added a new standard library module for Android's Low Memory Killer. + Trace Processor: + * Reworked core database engine to be more performant and better architected + for future imporvements. + * Added new "trace summarization" functionality to trace processor as a more + flexible replacement to old metrics system. + * Added support for executing all available metrics when summarizing the + trace with `--summary-metrics-v2 all`. + * Added `trace_summary()` function to the Python API to execute the + trace summaries and, specifically, v2 metrics. + * Added support to adding SQL packages to Python API. This is the + counterpart to the `--add-sql-package` shell option and allow loading SQL + packages and modules from a filesystem path. These are then available to + load using `INCLUDE PERFETTO MODULE` PerfettoSQL statements. + * Improved handling of traces containing overlapping "complete" events + (i.e. events with a duration, AKA 'X' events in the JSON format). + While overlapping events are prohibited by the JSON spec, they do + appear in many synthetically generated JSON traces. Previously, such + events would break the data model of trace processor and cause signifcant + glitches in the UI. These events are now dropped, fixing all the visual + glitches and an error stat is emitted to make the user aware. + * Improved performance of parsing JSON by 7x. JSON traces should now load + much faster in the Perfetto UI and the trace processor. + UI: + * Improved JSON loading performance. See `Trace Processor` section above. + * Improved duration based slice aggregators - slices are now trimmed to the + width of the area selection. + * Added the ability for users to set a custom timezone in the UI. + * Added the ability to add descriptive text to tracks. + * Added touchscreen support. The UI can now be used from tablets and other + touch devices. + * Removed the Viz page; it was an experiment which did not go anywhere. + SDK: + * Changed the implementation of TrackEvent to only have a single data source + for multiple namespace; categories will be exported correctly only on + recent perfetto tracing services that support UpdateDataSource. + * Changed the priority of TrackEvent enabled/disabled category and tags. + The new logic ranks (in this order) + specific > pattern > single char "*" wildcard, + categories (enabled > disabled) > tags (disabled > enabled). + Docs: + * Signifcantly improved the project's documentation with a team-wide + collaboration to make it more user-friendly and up to date. +ReleaseNotesUrl: https://github.com/google/perfetto/releases/tag/v51.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Perfetto/51.1/Google.Perfetto.yaml b/manifests/g/Google/Perfetto/51.1/Google.Perfetto.yaml new file mode 100644 index 0000000000000..3f5db5d47d1fb --- /dev/null +++ b/manifests/g/Google/Perfetto/51.1/Google.Perfetto.yaml @@ -0,0 +1,8 @@ +# 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: Google.Perfetto +PackageVersion: '51.1' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Perfetto/51.2/Google.Perfetto.installer.yaml b/manifests/g/Google/Perfetto/51.2/Google.Perfetto.installer.yaml new file mode 100644 index 0000000000000..5ae403e764391 --- /dev/null +++ b/manifests/g/Google/Perfetto/51.2/Google.Perfetto.installer.yaml @@ -0,0 +1,17 @@ +# 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: Google.Perfetto +PackageVersion: '51.2' +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: windows-amd64/perfetto.exe + PortableCommandAlias: perfetto +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/google/perfetto/releases/download/v51.2/windows-amd64.zip + InstallerSha256: EA54BE4969DA65C2BC46191810416D8CAC11617AD49E84E27C55C20EC3834306 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Perfetto/51.2/Google.Perfetto.locale.en-US.yaml b/manifests/g/Google/Perfetto/51.2/Google.Perfetto.locale.en-US.yaml new file mode 100644 index 0000000000000..07046a290e547 --- /dev/null +++ b/manifests/g/Google/Perfetto/51.2/Google.Perfetto.locale.en-US.yaml @@ -0,0 +1,23 @@ +# 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: Google.Perfetto +PackageVersion: '51.2' +PackageLocale: en-US +Publisher: Google +PublisherUrl: https://github.com/google +PublisherSupportUrl: https://github.com/google/perfetto/issues +PackageName: Perfetto +PackageUrl: https://github.com/google/perfetto +License: Apache-2.0 +LicenseUrl: https://github.com/google/perfetto/blob/HEAD/LICENSE +ShortDescription: Performance instrumentation and tracing for Android, Linux and Chrome. +ReleaseNotes: |- + v51.2 - 2025-07-03: + Trace Processor: + * Fixed issue with trace summarization crashing with released trace + processor prebuilt. Builds from source with GN and default configuration + is unaffected. +ReleaseNotesUrl: https://github.com/google/perfetto/releases/tag/v51.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Perfetto/51.2/Google.Perfetto.yaml b/manifests/g/Google/Perfetto/51.2/Google.Perfetto.yaml new file mode 100644 index 0000000000000..0e72d2ea38bed --- /dev/null +++ b/manifests/g/Google/Perfetto/51.2/Google.Perfetto.yaml @@ -0,0 +1,8 @@ +# 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: Google.Perfetto +PackageVersion: '51.2' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/PlatformTools/36.0.0/Google.PlatformTools.installer.yaml b/manifests/g/Google/PlatformTools/36.0.0/Google.PlatformTools.installer.yaml index 8a968a1cdc579..4844d690c4b48 100644 --- a/manifests/g/Google/PlatformTools/36.0.0/Google.PlatformTools.installer.yaml +++ b/manifests/g/Google/PlatformTools/36.0.0/Google.PlatformTools.installer.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.9.4.0 +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Google.PlatformTools @@ -11,11 +11,11 @@ NestedInstallerFiles: - RelativeFilePath: platform-tools\fastboot.exe PortableCommandAlias: fastboot UpgradeBehavior: uninstallPrevious -ReleaseDate: 2025-04-01 +ReleaseDate: 2025-04-23 ArchiveBinariesDependOnPath: true Installers: - Architecture: x64 InstallerUrl: https://dl.google.com/android/repository/platform-tools_r36.0.0-win.zip - InstallerSha256: 24BD8BEBBBB58B9870DB202B5C6775C4A49992632021C60750D9D8EC8179D5F0 + InstallerSha256: 12C2841F354E92A0EB2FD7BF6F0F9BF8538ABCE7BD6B060AC8349D6F6A61107C ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/PlatformTools/36.0.0/Google.PlatformTools.locale.en-US.yaml b/manifests/g/Google/PlatformTools/36.0.0/Google.PlatformTools.locale.en-US.yaml index f6f9e02f31eac..1a4ac27ca1c29 100644 --- a/manifests/g/Google/PlatformTools/36.0.0/Google.PlatformTools.locale.en-US.yaml +++ b/manifests/g/Google/PlatformTools/36.0.0/Google.PlatformTools.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.9.4.0 +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Google.PlatformTools diff --git a/manifests/g/Google/PlatformTools/36.0.0/Google.PlatformTools.yaml b/manifests/g/Google/PlatformTools/36.0.0/Google.PlatformTools.yaml index 2f620ca8fc9e1..60336ab3bd86a 100644 --- a/manifests/g/Google/PlatformTools/36.0.0/Google.PlatformTools.yaml +++ b/manifests/g/Google/PlatformTools/36.0.0/Google.PlatformTools.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.9.4.0 +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Google.PlatformTools diff --git a/manifests/g/Governikus/AusweisApp/2.3.2/Governikus.AusweisApp.installer.yaml b/manifests/g/Governikus/AusweisApp/2.3.2/Governikus.AusweisApp.installer.yaml new file mode 100644 index 0000000000000..120318e9accf3 --- /dev/null +++ b/manifests/g/Governikus/AusweisApp/2.3.2/Governikus.AusweisApp.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Governikus.AusweisApp +PackageVersion: 2.3.2 +InstallerLocale: de-DE +InstallerType: wix +Scope: machine +InstallerSwitches: + Silent: /qn + SilentWithProgress: /qb + Custom: /norestart +UpgradeBehavior: install +ProductCode: '{E5B4307B-B88A-46E3-84FE-B85E9864162A}' +ReleaseDate: 2025-06-26 +AppsAndFeaturesEntries: +- Publisher: Governikus GmbH & Co. KG + ProductCode: '{E5B4307B-B88A-46E3-84FE-B85E9864162A}' + UpgradeCode: '{4EE0E467-EAB7-483E-AB45-87BD1DB6B037}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\AusweisApp' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Governikus/AusweisApp/releases/download/2.3.2/AusweisApp-2.3.2.msi + InstallerSha256: 1BFF352FBD2503E69EF01FE8C22A4C8BC8677DB30F053C4BA9E1EC9414087834 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Governikus/AusweisApp/2.3.2/Governikus.AusweisApp.locale.de-DE.yaml b/manifests/g/Governikus/AusweisApp/2.3.2/Governikus.AusweisApp.locale.de-DE.yaml new file mode 100644 index 0000000000000..0b1e8556288ea --- /dev/null +++ b/manifests/g/Governikus/AusweisApp/2.3.2/Governikus.AusweisApp.locale.de-DE.yaml @@ -0,0 +1,39 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Governikus.AusweisApp +PackageVersion: 2.3.2 +PackageLocale: de-DE +Publisher: Bundesamtes für Sicherheit in der Informationstechnik +PublisherUrl: https://www.bsi.bund.de/ +PublisherSupportUrl: https://www.ausweisapp.bund.de/hilfe-und-support +PrivacyUrl: https://www.ausweisapp.bund.de/datenschutz +Author: Governikus GmbH & Co. KG +PackageName: AusweisApp +PackageUrl: https://www.ausweisapp.bund.de/home +License: European Union Public Licence (EUPL v1.2) +LicenseUrl: https://github.com/Governikus/AusweisApp/blob/HEAD/LICENSE.txt +ShortDescription: App zur Nutzung der eID-Funktion des Personalausweises der Bundesrepublik Deutschland +Description: |- + Die AusweisApp ist eine Software, die Sie auf Ihrem Smartphone, Computer oder Tablet installieren, um + IhrenPersonalausweis, Ihren elektronischen Aufenthaltstitel oder die eID-Karte auszulesen und sich so + digital auszuweisen. Darüber hinaus ermöglicht die AusweisApp den verschlüsselten Datenaustausch + zwischen Ausweis und Online-Dienst, bei dem Sie sich identifizieren möchten. +Moniker: ausweisapp +Tags: +- ausweis +- eid +- epa +- personalausweis +ReleaseNotes: |- + Anwender + - Verbesserungen im Bereich der Barrierefreiheit. + - Visuelle Anpassungen und Optimierungen der grafischen Oberfläche. + - Das kurzzeitige Entfernen des Ausweises auf einem Android Smartphone als Kartenleser vor der Passworteingabe führt nicht mehr zu einem Fehler. + - Unter Windows werden jetzt auch Smartphones als Kartenleser erkannt, die sich ausschließlich über IPv6 erreichen lassen. + - Unterstützung von Smartphones als Kartenleser unter Windows Server. + Entwickler + - Relative URL-Weiterleitungen bei einer Authentisierung werden korrekt berücksichtigt. +ReleaseNotesUrl: https://github.com/Governikus/AusweisApp/releases/tag/2.3.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Governikus/AusweisApp/2.3.2/Governikus.AusweisApp.yaml b/manifests/g/Governikus/AusweisApp/2.3.2/Governikus.AusweisApp.yaml new file mode 100644 index 0000000000000..d02d6e16f7dbc --- /dev/null +++ b/manifests/g/Governikus/AusweisApp/2.3.2/Governikus.AusweisApp.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: Governikus.AusweisApp +PackageVersion: 2.3.2 +DefaultLocale: de-DE +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Graebert/AresCommander/2026/26.1.2171/Graebert.AresCommander.2026.installer.yaml b/manifests/g/Graebert/AresCommander/2026/26.1.2171/Graebert.AresCommander.2026.installer.yaml new file mode 100644 index 0000000000000..53fc96b7fe140 --- /dev/null +++ b/manifests/g/Graebert/AresCommander/2026/26.1.2171/Graebert.AresCommander.2026.installer.yaml @@ -0,0 +1,15 @@ +# 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.10.0.schema.json + +PackageIdentifier: Graebert.AresCommander.2026 +PackageVersion: 26.1.2171 +InstallerType: nullsoft +InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent +Installers: +- Architecture: x64 + InstallerUrl: https://files.graebert.com/ares/26.1.1.2171/ARES_C_2026_SP1_26.1.1.2171_5466_x64.exe + InstallerSha256: 7B902B2DA3F5994708A0208C231B636737A1F484F19B9BC6ED67BBAD81636D32 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Graebert/AresCommander/2026/26.1.2171/Graebert.AresCommander.2026.locale.en-US.yaml b/manifests/g/Graebert/AresCommander/2026/26.1.2171/Graebert.AresCommander.2026.locale.en-US.yaml new file mode 100644 index 0000000000000..1451f6063c161 --- /dev/null +++ b/manifests/g/Graebert/AresCommander/2026/26.1.2171/Graebert.AresCommander.2026.locale.en-US.yaml @@ -0,0 +1,31 @@ +# 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.10.0.schema.json + +PackageIdentifier: Graebert.AresCommander.2026 +PackageVersion: 26.1.2171 +PackageLocale: en-US +Publisher: Graebert GmbH +PublisherUrl: https://www.graebert.com +PublisherSupportUrl: https://help.graebert.com +PrivacyUrl: https://www.graebert.com/company/privacypolicy/ +Author: Gräbert GmbH +PackageName: ARES Commander 2026 +PackageUrl: https://www.graebert.com/cad-software/ares-commander/ +License: Proprietary +# LicenseUrl: +Copyright: (c) Gräbert GmbH. All rights reserved +# CopyrightUrl: +ShortDescription: ARES Commander. Powerful, DWG-based CAD software +Description: ARES Commander. Powerful, DWG-based CAD software. The n°1 alternative for CAD in DWG, trusted by industry leaders and millions of users. +Moniker: ares-commander-2026 +Tags: +- ares +- cad +- dwg +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Graebert/AresCommander/2026/26.1.2171/Graebert.AresCommander.2026.yaml b/manifests/g/Graebert/AresCommander/2026/26.1.2171/Graebert.AresCommander.2026.yaml new file mode 100644 index 0000000000000..4d5eb91625388 --- /dev/null +++ b/manifests/g/Graebert/AresCommander/2026/26.1.2171/Graebert.AresCommander.2026.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.3 $debug=AUSU.CRLF.7-4-6.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Graebert.AresCommander.2026 +PackageVersion: 26.1.2171 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Graebert/AresMechanical/2026/26.1.2171/Graebert.AresMechanical.2026.installer.yaml b/manifests/g/Graebert/AresMechanical/2026/26.1.2171/Graebert.AresMechanical.2026.installer.yaml new file mode 100644 index 0000000000000..5f08e34d0c56a --- /dev/null +++ b/manifests/g/Graebert/AresMechanical/2026/26.1.2171/Graebert.AresMechanical.2026.installer.yaml @@ -0,0 +1,15 @@ +# 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.10.0.schema.json + +PackageIdentifier: Graebert.AresMechanical.2026 +PackageVersion: 26.1.2171 +InstallerType: nullsoft +InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent +Installers: +- Architecture: x64 + InstallerUrl: https://files.graebert.com/aresmechanical/26.1.1.2171/ARES_M_2026_SP1_26.1.1.2171_5458_x64.exe + InstallerSha256: 59CCD8678A20227B374CFCDF8196ED91D579F7CF2E8C8438C6E9DEA8EDD6C9FC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Graebert/AresMechanical/2026/26.1.2171/Graebert.AresMechanical.2026.locale.en-US.yaml b/manifests/g/Graebert/AresMechanical/2026/26.1.2171/Graebert.AresMechanical.2026.locale.en-US.yaml new file mode 100644 index 0000000000000..aece22e4198d9 --- /dev/null +++ b/manifests/g/Graebert/AresMechanical/2026/26.1.2171/Graebert.AresMechanical.2026.locale.en-US.yaml @@ -0,0 +1,31 @@ +# 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.10.0.schema.json + +PackageIdentifier: Graebert.AresMechanical.2026 +PackageVersion: 26.1.2171 +PackageLocale: en-US +Publisher: Graebert GmbH +PublisherUrl: https://www.graebert.com +PublisherSupportUrl: https://help.graebert.com +PrivacyUrl: https://www.graebert.com/company/privacypolicy/ +Author: Gräbert GmbH +PackageName: ARES Mechanical 2026 +PackageUrl: https://www.graebert.com/cad-software/ares-mechanical/ +License: Proprietary +# LicenseUrl: +Copyright: (c) Gräbert GmbH. All rights reserved +# CopyrightUrl: +ShortDescription: ARES Mechanical. Powerful, DWG-based CAD software +Description: ARES Mechanical is a Mechanical CAD software combining the DWG-editing features of ARES Commander with industry-specific features for 2D Mechanical Design. +Moniker: ares-mechanical-2026 +Tags: +- ares +- cad +- dwg +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Graebert/AresMechanical/2026/26.1.2171/Graebert.AresMechanical.2026.yaml b/manifests/g/Graebert/AresMechanical/2026/26.1.2171/Graebert.AresMechanical.2026.yaml new file mode 100644 index 0000000000000..2f3160c43e8b6 --- /dev/null +++ b/manifests/g/Graebert/AresMechanical/2026/26.1.2171/Graebert.AresMechanical.2026.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.3 $debug=AUSU.CRLF.7-4-6.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Graebert.AresMechanical.2026 +PackageVersion: 26.1.2171 +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.170.1693/Grammarly.Grammarly.installer.yaml b/manifests/g/Grammarly/Grammarly/1.2.170.1693/Grammarly.Grammarly.installer.yaml new file mode 100644 index 0000000000000..fbf07d4740d6f --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.170.1693/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.170.1693 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: /update +UpgradeBehavior: install +ProductCode: Grammarly Desktop Integrations +ReleaseDate: 2025-06-23 +Installers: +- Architecture: x86 + InstallerUrl: https://download-windows.grammarly.com/versions/1.2.170.1693/GrammarlyInstaller.exe + InstallerSha256: 11E7176D2AEADEC7153EEEAB0211BF310D3E108FDB1F1EE025CFDB501E243E76 +- Architecture: x64 + InstallerUrl: https://download-windows.grammarly.com/versions/1.2.170.1693/GrammarlyInstaller.exe + InstallerSha256: 11E7176D2AEADEC7153EEEAB0211BF310D3E108FDB1F1EE025CFDB501E243E76 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.170.1693/Grammarly.Grammarly.locale.en-US.yaml b/manifests/g/Grammarly/Grammarly/1.2.170.1693/Grammarly.Grammarly.locale.en-US.yaml new file mode 100644 index 0000000000000..f1c87acb04874 --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.170.1693/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.170.1693 +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.170.1693/Grammarly.Grammarly.locale.zh-CN.yaml b/manifests/g/Grammarly/Grammarly/1.2.170.1693/Grammarly.Grammarly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fb60101904db9 --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.170.1693/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.170.1693 +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.170.1693/Grammarly.Grammarly.yaml b/manifests/g/Grammarly/Grammarly/1.2.170.1693/Grammarly.Grammarly.yaml new file mode 100644 index 0000000000000..c8abb04d1223b --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.170.1693/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.170.1693 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.171.1696/Grammarly.Grammarly.installer.yaml b/manifests/g/Grammarly/Grammarly/1.2.171.1696/Grammarly.Grammarly.installer.yaml new file mode 100644 index 0000000000000..6e78b1e13a494 --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.171.1696/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.171.1696 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: /update +UpgradeBehavior: install +ProductCode: Grammarly Desktop Integrations +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x86 + InstallerUrl: https://download-windows.grammarly.com/versions/1.2.171.1696/GrammarlyInstaller.exe + InstallerSha256: 69590FFAD1791219F3EFC9F5ADC0A3370B233924E9B0BA6183753D02113B856A +- Architecture: x64 + InstallerUrl: https://download-windows.grammarly.com/versions/1.2.171.1696/GrammarlyInstaller.exe + InstallerSha256: 69590FFAD1791219F3EFC9F5ADC0A3370B233924E9B0BA6183753D02113B856A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.171.1696/Grammarly.Grammarly.locale.en-US.yaml b/manifests/g/Grammarly/Grammarly/1.2.171.1696/Grammarly.Grammarly.locale.en-US.yaml new file mode 100644 index 0000000000000..48b5800f8330f --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.171.1696/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.171.1696 +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.171.1696/Grammarly.Grammarly.locale.zh-CN.yaml b/manifests/g/Grammarly/Grammarly/1.2.171.1696/Grammarly.Grammarly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b6441ba30523a --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.171.1696/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.171.1696 +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.171.1696/Grammarly.Grammarly.yaml b/manifests/g/Grammarly/Grammarly/1.2.171.1696/Grammarly.Grammarly.yaml new file mode 100644 index 0000000000000..2123a5d85e8a7 --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.171.1696/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.171.1696 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.172.1699/Grammarly.Grammarly.installer.yaml b/manifests/g/Grammarly/Grammarly/1.2.172.1699/Grammarly.Grammarly.installer.yaml new file mode 100644 index 0000000000000..ab6182cf80f00 --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.172.1699/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.172.1699 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: /update +UpgradeBehavior: install +ProductCode: Grammarly Desktop Integrations +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x86 + InstallerUrl: https://download-windows.grammarly.com/versions/1.2.172.1699/GrammarlyInstaller.exe + InstallerSha256: 223050E8C5DAA77A5B3F88545B24E3B49201F319E06B159CF927F80BC9B2CE50 +- Architecture: x64 + InstallerUrl: https://download-windows.grammarly.com/versions/1.2.172.1699/GrammarlyInstaller.exe + InstallerSha256: 223050E8C5DAA77A5B3F88545B24E3B49201F319E06B159CF927F80BC9B2CE50 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.172.1699/Grammarly.Grammarly.locale.en-US.yaml b/manifests/g/Grammarly/Grammarly/1.2.172.1699/Grammarly.Grammarly.locale.en-US.yaml new file mode 100644 index 0000000000000..854c4cf82186a --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.172.1699/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.172.1699 +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.172.1699/Grammarly.Grammarly.locale.zh-CN.yaml b/manifests/g/Grammarly/Grammarly/1.2.172.1699/Grammarly.Grammarly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a7bcc3a5f40eb --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.172.1699/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.172.1699 +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.172.1699/Grammarly.Grammarly.yaml b/manifests/g/Grammarly/Grammarly/1.2.172.1699/Grammarly.Grammarly.yaml new file mode 100644 index 0000000000000..95dec34623580 --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.172.1699/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.172.1699 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.173.1702/Grammarly.Grammarly.installer.yaml b/manifests/g/Grammarly/Grammarly/1.2.173.1702/Grammarly.Grammarly.installer.yaml new file mode 100644 index 0000000000000..e3cca10788a0b --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.173.1702/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.173.1702 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: /update +UpgradeBehavior: install +ProductCode: Grammarly Desktop Integrations +ReleaseDate: 2025-07-03 +Installers: +- Architecture: x86 + InstallerUrl: https://download-windows.grammarly.com/versions/1.2.173.1702/GrammarlyInstaller.exe + InstallerSha256: FBD06CC03B6C4061B3159D0685D0CDE331DC25B0D3474B8BC5E2B77FD52BE2B8 +- Architecture: x64 + InstallerUrl: https://download-windows.grammarly.com/versions/1.2.173.1702/GrammarlyInstaller.exe + InstallerSha256: FBD06CC03B6C4061B3159D0685D0CDE331DC25B0D3474B8BC5E2B77FD52BE2B8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Grammarly/Grammarly/1.2.173.1702/Grammarly.Grammarly.locale.en-US.yaml b/manifests/g/Grammarly/Grammarly/1.2.173.1702/Grammarly.Grammarly.locale.en-US.yaml new file mode 100644 index 0000000000000..a700b0924b3dc --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.173.1702/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.173.1702 +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.173.1702/Grammarly.Grammarly.locale.zh-CN.yaml b/manifests/g/Grammarly/Grammarly/1.2.173.1702/Grammarly.Grammarly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9e7c23c2321cc --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.173.1702/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.173.1702 +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.173.1702/Grammarly.Grammarly.yaml b/manifests/g/Grammarly/Grammarly/1.2.173.1702/Grammarly.Grammarly.yaml new file mode 100644 index 0000000000000..3edf14da2d28b --- /dev/null +++ b/manifests/g/Grammarly/Grammarly/1.2.173.1702/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.173.1702 +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/Graphviz/Graphviz/13.1.0/Graphviz.Graphviz.installer.yaml b/manifests/g/Graphviz/Graphviz/13.1.0/Graphviz.Graphviz.installer.yaml new file mode 100644 index 0000000000000..df1e80485eee4 --- /dev/null +++ b/manifests/g/Graphviz/Graphviz/13.1.0/Graphviz.Graphviz.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Graphviz.Graphviz +PackageVersion: 13.1.0 +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x86 + InstallerUrl: https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/13.1.0/windows_10_cmake_Release_graphviz-install-13.1.0-win32.exe + InstallerSha256: 7695427EEC251ED7E9440F03ACEF9892D8A93187AA3B3B65A9DD4D9BAB08C507 +- Architecture: x64 + InstallerUrl: https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/13.1.0/windows_10_cmake_Release_graphviz-install-13.1.0-win64.exe + InstallerSha256: 4D865F0C7775C2E1298D7889153F82331D0D07C66B7EEC958A80B79CC956F6BC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Graphviz/Graphviz/13.1.0/Graphviz.Graphviz.locale.en-US.yaml b/manifests/g/Graphviz/Graphviz/13.1.0/Graphviz.Graphviz.locale.en-US.yaml new file mode 100644 index 0000000000000..abf344439d842 --- /dev/null +++ b/manifests/g/Graphviz/Graphviz/13.1.0/Graphviz.Graphviz.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: Graphviz.Graphviz +PackageVersion: 13.1.0 +PackageLocale: en-US +Publisher: Graphviz +PublisherUrl: https://graphviz.org +PublisherSupportUrl: https://graphviz.org/documentation +PackageName: Graphviz +PackageUrl: https://graphviz.org/download +License: Common Public License Version 1.0 +LicenseUrl: https://graphviz.org/license +Copyright: (c) 2022 The Graphviz Authors +ShortDescription: Graphviz is open source graph visualization software. Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. +Description: |- + The Graphviz layout programs take descriptions of graphs in a simple text language, and make diagrams in useful formats, such as images and SVG for web pages; PDF or Postscript for inclusion in other documents; or display in an interactive graph browser. + Graphviz has many useful features for concrete diagrams, such as options for colors, fonts, tabular node layouts, line styles, hyperlinks, and custom shapes. +Moniker: graphviz +Tags: +- diagrams +- graph +- visualization +ReleaseNotes: |- + Added + - A new command line option, -Afoo=bar, serves as a shorthand way of writing -Gfoo=bar -Nfoo=bar -Efoo=bar. #2278 + Fixed + - Inter-cluster edges are no longer spuriously duplicated. #162, #258, #2615 + - When using the CMake build system, configuration no longer fails with syntax errors when PangoCairo is unavailable. This was a regression in Graphviz 13.0.0. #2697 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Graphviz/Graphviz/13.1.0/Graphviz.Graphviz.yaml b/manifests/g/Graphviz/Graphviz/13.1.0/Graphviz.Graphviz.yaml new file mode 100644 index 0000000000000..5697cfb00e326 --- /dev/null +++ b/manifests/g/Graphviz/Graphviz/13.1.0/Graphviz.Graphviz.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: Graphviz.Graphviz +PackageVersion: 13.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/A1RunGuard/2.10.2024.109/Greatis.A1RunGuard.installer.yaml b/manifests/g/Greatis/A1RunGuard/2.10.2024.109/Greatis.A1RunGuard.installer.yaml new file mode 100644 index 0000000000000..03ca06d314019 --- /dev/null +++ b/manifests/g/Greatis/A1RunGuard/2.10.2024.109/Greatis.A1RunGuard.installer.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Greatis.A1RunGuard +PackageVersion: 2.10.2024.109 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: A1RunGuard_setup.exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: A1RunGuard_is1 +ReleaseDate: 2024-10-09 +AppsAndFeaturesEntries: +- DisplayName: A1RunGuard 2.10.2024.109 + ProductCode: A1RunGuard_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\A1RunGuard' +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatissoftware.com/a1runguard.zip + InstallerSha256: 2A5C2EA5817DDD658DF771A56EB6031714BE867D5D425EA73188BD1FB6D2EA7B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/A1RunGuard/2.10.2024.109/Greatis.A1RunGuard.locale.en-US.yaml b/manifests/g/Greatis/A1RunGuard/2.10.2024.109/Greatis.A1RunGuard.locale.en-US.yaml new file mode 100644 index 0000000000000..fda450b82b628 --- /dev/null +++ b/manifests/g/Greatis/A1RunGuard/2.10.2024.109/Greatis.A1RunGuard.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Greatis.A1RunGuard +PackageVersion: 2.10.2024.109 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://greatis.com/contacts.html +PublisherSupportUrl: https://greatis.com/a1runguard/support.htm +PackageName: A1RunGuard +PackageUrl: https://greatis.com/a1runguard/ +License: Freeware (EULA) +LicenseUrl: https://greatis.com/a1runguard/eula.htm +Copyright: Copyright Ⓒ Greatis Software 2005-2025 +CopyrightUrl: https://greatis.com/#:~:text=Copyright +ShortDescription: Free Ultimate Process Firewall for Windows! +Description: > + A1RunGuard blocks unwanted programs, adds password protection for executables, + and prevents Ransomware attacks. +ReleaseNotes: |- + Version: 2.10.2024.109 - October 09 2024 + + 1. Updated compatibility with Windows 11 24H2. + 2. Updated dark theme. + 3. Added Chinese Traditional translation. + 4. Fixed small bugs. +ReleaseNotesUrl: https://greatis.com/a1runguard/news.htm#:~:text=Version%3A%202.10.2024.109 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/A1RunGuard/2.10.2024.109/Greatis.A1RunGuard.yaml b/manifests/g/Greatis/A1RunGuard/2.10.2024.109/Greatis.A1RunGuard.yaml new file mode 100644 index 0000000000000..4846f346586d5 --- /dev/null +++ b/manifests/g/Greatis/A1RunGuard/2.10.2024.109/Greatis.A1RunGuard.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: Greatis.A1RunGuard +PackageVersion: 2.10.2024.109 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/BootLogXP/2.5.2.7/Greatis.BootLogXP.installer.yaml b/manifests/g/Greatis/BootLogXP/2.5.2.7/Greatis.BootLogXP.installer.yaml new file mode 100644 index 0000000000000..3af44450b5f58 --- /dev/null +++ b/manifests/g/Greatis/BootLogXP/2.5.2.7/Greatis.BootLogXP.installer.yaml @@ -0,0 +1,29 @@ +# 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: Greatis.BootLogXP +PackageVersion: 2.5.2.7 +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: bootlogxp250.exe +Scope: machine +UpgradeBehavior: install +ReleaseDate: 2009-12-08 +AppsAndFeaturesEntries: +- DisplayName: BootLog XP + # [!IMPORTANT] + # Can't sure why it labeled itself as this in ARP entries. + # But version 'v2.5' is expected in "About Panel". + DisplayVersion: '2.10' + Publisher: Greatis Software +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatis.com/bootlogxp.zip + InstallerSha256: CFDCCCFF3A010020391AFBFFEABCE51981FDE15B287EB9FB21A8F358405A8E19 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/BootLogXP/2.5.2.7/Greatis.BootLogXP.locale.en-US.yaml b/manifests/g/Greatis/BootLogXP/2.5.2.7/Greatis.BootLogXP.locale.en-US.yaml new file mode 100644 index 0000000000000..a836ffd374809 --- /dev/null +++ b/manifests/g/Greatis/BootLogXP/2.5.2.7/Greatis.BootLogXP.locale.en-US.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.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Greatis.BootLogXP +PackageVersion: 2.5.2.7 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://www.greatis.com/index.html +PublisherSupportUrl: https://www.greatis.com/utilities/bootlogxp/support.htm +PrivacyUrl: https://www.greatis.com/privacy.html +PackageName: BootLog XP +PackageUrl: https://www.greatis.com/utilities/bootlogxp/download.htm +License: Proprietary (EULA) +Copyright: Copyright (c) 1998-2004 Greatis Software +CopyrightUrl: https://www.greatis.com/utilities/bootlogxp/index.html#:~:text=Copyright +ShortDescription: Boot Log XP is the best Windows boot analyzer. +Description: |- + Boot Log XP is that you search for troubleshooting Windows boot-up + problems in Windows XP. + + Boot Log XP creates the new boot log file and allows you to view it visually. +PurchaseUrl: https://www.greatis.com/utilities/bootlogxp/buy.htm +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/BootLogXP/2.5.2.7/Greatis.BootLogXP.yaml b/manifests/g/Greatis/BootLogXP/2.5.2.7/Greatis.BootLogXP.yaml new file mode 100644 index 0000000000000..5014e2a66b15f --- /dev/null +++ b/manifests/g/Greatis/BootLogXP/2.5.2.7/Greatis.BootLogXP.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: Greatis.BootLogXP +PackageVersion: 2.5.2.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/BootRacer/9.30.2024.1217/Greatis.BootRacer.installer.yaml b/manifests/g/Greatis/BootRacer/9.30.2024.1217/Greatis.BootRacer.installer.yaml new file mode 100644 index 0000000000000..16dc877cdcf65 --- /dev/null +++ b/manifests/g/Greatis/BootRacer/9.30.2024.1217/Greatis.BootRacer.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Greatis.BootRacer +PackageVersion: 9.30.2024.1217 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: BootRacerSetup.exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{50EB4E13-A810-411E-8F1F-C22FE7841DA2}_is1' +ReleaseDate: 2024-12-17 +AppsAndFeaturesEntries: +- DisplayName: BootRacer 9.30 + DisplayVersion: '9.30' + ProductCode: '{50EB4E13-A810-411E-8F1F-C22FE7841DA2}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\BootRacer' +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatissoftware.com/bootracer_free.zip + InstallerSha256: C2E05E200D8595D583D023C5B154775E78FB05281E1953C32156AC65BFDF9A07 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/BootRacer/9.30.2024.1217/Greatis.BootRacer.locale.en-US.yaml b/manifests/g/Greatis/BootRacer/9.30.2024.1217/Greatis.BootRacer.locale.en-US.yaml new file mode 100644 index 0000000000000..5ef7f041a1d60 --- /dev/null +++ b/manifests/g/Greatis/BootRacer/9.30.2024.1217/Greatis.BootRacer.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Greatis.BootRacer +PackageVersion: 9.30.2024.1217 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://greatis.com/index.html +PublisherSupportUrl: https://greatis.com/bootracer/contact.htm +PackageName: BootRacer +PackageUrl: https://greatis.com/bootracer/download.htm +License: Proprietary (EULA) +LicenseUrl: https://greatis.com/bootracer/eula.htm +Copyright: Copyright (c) 2008-2025 Greatis Software +ShortDescription: BootRacer Monitors Boot Time and Detects Slow Startup Programs! +Description: BootRacer finds out which programs slow down Windows boot-up process! +ReleaseNotes: |- + Version: 9.30.2024.1217 - December 17 2024 + + 1. Added option for disabling reopening programs after Windows reboot. It is called + Restart Manager + 2. Added the feature to change the command line of the startup programs using + Startup Control. + 3. Updated compatibility with the newest Windows 11 24H2. + 4. Fixed the small bugs. +ReleaseNotesUrl: https://greatis.com/bootracer/news.htm +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/BootRacer/9.30.2024.1217/Greatis.BootRacer.yaml b/manifests/g/Greatis/BootRacer/9.30.2024.1217/Greatis.BootRacer.yaml new file mode 100644 index 0000000000000..28f057fe805eb --- /dev/null +++ b/manifests/g/Greatis/BootRacer/9.30.2024.1217/Greatis.BootRacer.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: Greatis.BootRacer +PackageVersion: 9.30.2024.1217 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/BootRescue/2.0.0/Greatis.BootRescue.installer.yaml b/manifests/g/Greatis/BootRescue/2.0.0/Greatis.BootRescue.installer.yaml new file mode 100644 index 0000000000000..09b598bdc88bf --- /dev/null +++ b/manifests/g/Greatis/BootRescue/2.0.0/Greatis.BootRescue.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: Greatis.BootRescue +PackageVersion: 2.0.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: BootRescue.exe +InstallModes: +- interactive +- silent +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2012-09-11 +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatissoftware.com/bootrescue.zip + InstallerSha256: 9AD64673CB46E408F10C922DF3EDFF5B3484BC855E70BFD31D03FB7E07019DFB +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/BootRescue/2.0.0/Greatis.BootRescue.locale.en-US.yaml b/manifests/g/Greatis/BootRescue/2.0.0/Greatis.BootRescue.locale.en-US.yaml new file mode 100644 index 0000000000000..296e42ffe78e9 --- /dev/null +++ b/manifests/g/Greatis/BootRescue/2.0.0/Greatis.BootRescue.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: Greatis.BootRescue +PackageVersion: 2.0.0 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://greatis.com/index.html +PublisherSupportUrl: https://www.greatis.com/security/support.htm +PrivacyUrl: https://www.greatis.com/security/policy.htm +PackageName: BootRescue +PackageUrl: https://www.greatis.com/security/bootrescue.htm +License: Proprietary (EULA) +LicenseUrl: https://www.greatis.com/security/eula.htm +Copyright: Copyright (c) Greatis Software 1999-2025 +CopyrightUrl: https://www.greatis.com/security/bootrescue.htm#:~:text=Copyright +ShortDescription: BootRescue is free tool for recovery Master Boot Record /Volume Boot Record +PurchaseUrl: https://greatis.com/buy-warrior +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/BootRescue/2.0.0/Greatis.BootRescue.yaml b/manifests/g/Greatis/BootRescue/2.0.0/Greatis.BootRescue.yaml new file mode 100644 index 0000000000000..ef47f74518201 --- /dev/null +++ b/manifests/g/Greatis/BootRescue/2.0.0/Greatis.BootRescue.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: Greatis.BootRescue +PackageVersion: 2.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/DesktopKeeper/4.1.1.234/Greatis.DesktopKeeper.installer.yaml b/manifests/g/Greatis/DesktopKeeper/4.1.1.234/Greatis.DesktopKeeper.installer.yaml new file mode 100644 index 0000000000000..561de844d4b32 --- /dev/null +++ b/manifests/g/Greatis/DesktopKeeper/4.1.1.234/Greatis.DesktopKeeper.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Greatis.DesktopKeeper +PackageVersion: 4.1.1.234 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: DesktopKeeper_is1 +ReleaseDate: 2003-06-10 +AppsAndFeaturesEntries: +- Publisher: Greatis Software, LLC. + DisplayVersion: '4.0' + ProductCode: DesktopKeeper_is1 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\DesktopKeeper' +Installers: +- Architecture: x64 + InstallerUrl: https://www.greatis.com/DesktopKeeper410b.exe + InstallerSha256: 8236677002B6CEA55B7D0E8A07A3E2CF12F9F7EEB7158B03FFEC690E72D5BEBB +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/DesktopKeeper/4.1.1.234/Greatis.DesktopKeeper.locale.en-US.yaml b/manifests/g/Greatis/DesktopKeeper/4.1.1.234/Greatis.DesktopKeeper.locale.en-US.yaml new file mode 100644 index 0000000000000..91187556284ca --- /dev/null +++ b/manifests/g/Greatis/DesktopKeeper/4.1.1.234/Greatis.DesktopKeeper.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: Greatis.DesktopKeeper +PackageVersion: 4.1.1.234 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://www.greatis.com/index.html +PublisherSupportUrl: https://www.greatis.com/ateam.html +PrivacyUrl: https://www.greatis.com/privacy.html +PackageName: DesktopKeeper +PackageUrl: https://www.greatis.com/utilities/desktopkeeper/download.htm +License: Proprietary (EULA) +Copyright: Copyright (c) 1998-2004 Greatis Software +CopyrightUrl: https://www.greatis.com/utilities/desktopkeeper/index.html#:~:text=Copyright +ShortDescription: > + All-in-one software that includes a lot of useful and totally unusual + features!for Windows 95, 98, Me, NT4, 2000, XP +Description: > + DesktopKeeper is the totally unique software that really works with Windows + 2000/XP. Desktop Lock feature might be useful if you want to protect your + desktop from unauthorized access and determine if someone shows interest in + it. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/DesktopKeeper/4.1.1.234/Greatis.DesktopKeeper.yaml b/manifests/g/Greatis/DesktopKeeper/4.1.1.234/Greatis.DesktopKeeper.yaml new file mode 100644 index 0000000000000..7429223b13f4e --- /dev/null +++ b/manifests/g/Greatis/DesktopKeeper/4.1.1.234/Greatis.DesktopKeeper.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: Greatis.DesktopKeeper +PackageVersion: 4.1.1.234 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/DesktopSecretLock/Premium/2.99.2023.1121/Greatis.DesktopSecretLock.Premium.installer.yaml b/manifests/g/Greatis/DesktopSecretLock/Premium/2.99.2023.1121/Greatis.DesktopSecretLock.Premium.installer.yaml new file mode 100644 index 0000000000000..9044b6538bc08 --- /dev/null +++ b/manifests/g/Greatis/DesktopSecretLock/Premium/2.99.2023.1121/Greatis.DesktopSecretLock.Premium.installer.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Greatis.DesktopSecretLock.Premium +PackageVersion: 2.99.2023.1121 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: desktopsecretlock_premium.exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: Desktop Secret Lock_is1 +ReleaseDate: 2023-11-21 +AppsAndFeaturesEntries: +- DisplayName: Desktop Secret Lock 2.99.2023.1121 + ProductCode: Desktop Secret Lock_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\DesktopSecretLock' +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatissoftware.com/desktopsecretlock_premium.zip + InstallerSha256: BF1339360B73A08FE1FC2E4F0BF4A2FA683D5B5F4CAABCE57A078C87CD606E47 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/DesktopSecretLock/Premium/2.99.2023.1121/Greatis.DesktopSecretLock.Premium.locale.en-US.yaml b/manifests/g/Greatis/DesktopSecretLock/Premium/2.99.2023.1121/Greatis.DesktopSecretLock.Premium.locale.en-US.yaml new file mode 100644 index 0000000000000..f6a9446580f4d --- /dev/null +++ b/manifests/g/Greatis/DesktopSecretLock/Premium/2.99.2023.1121/Greatis.DesktopSecretLock.Premium.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: Greatis.DesktopSecretLock.Premium +PackageVersion: 2.99.2023.1121 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://greatis.com/index.html +PublisherSupportUrl: https://greatis.com/desktopsecretlock/support.htm +PrivacyUrl: https://greatis.com/desktopsecretlock/privacy.htm +PackageName: Desktop Secret Lock Premium +PackageUrl: https://greatis.com/desktopsecretlock/download.htm +License: Proprietary (EULA) +LicenseUrl: https://greatis.com/desktopsecretlock/eula.htm +Copyright: Copyright (c) 2025 Greatis Software +ShortDescription: Powerful Protection Against Remote Desktop Hacking and Unauthorized Access! +ReleaseNotesUrl: https://greatis.com/desktopsecretlock/news.htm +PurchaseUrl: https://greatis.com/desktopsecretlock/buy.htm +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/DesktopSecretLock/Premium/2.99.2023.1121/Greatis.DesktopSecretLock.Premium.yaml b/manifests/g/Greatis/DesktopSecretLock/Premium/2.99.2023.1121/Greatis.DesktopSecretLock.Premium.yaml new file mode 100644 index 0000000000000..b92305977c46d --- /dev/null +++ b/manifests/g/Greatis/DesktopSecretLock/Premium/2.99.2023.1121/Greatis.DesktopSecretLock.Premium.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: Greatis.DesktopSecretLock.Premium +PackageVersion: 2.99.2023.1121 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/DesktopSecretLock/Standard/2.99.2023.1121/Greatis.DesktopSecretLock.Standard.installer.yaml b/manifests/g/Greatis/DesktopSecretLock/Standard/2.99.2023.1121/Greatis.DesktopSecretLock.Standard.installer.yaml new file mode 100644 index 0000000000000..5e0bc1af4a328 --- /dev/null +++ b/manifests/g/Greatis/DesktopSecretLock/Standard/2.99.2023.1121/Greatis.DesktopSecretLock.Standard.installer.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Greatis.DesktopSecretLock.Standard +PackageVersion: 2.99.2023.1121 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: desktopsecretlock_setup.exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: Desktop Secret Lock_is1 +ReleaseDate: 2023-11-21 +AppsAndFeaturesEntries: +- DisplayName: Desktop Secret Lock 2.99.2023.1121 + ProductCode: Desktop Secret Lock_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\DesktopSecretLock' +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatissoftware.com/desktopsecretlockw.zip + InstallerSha256: D2364FD325775B8B8B4EAB33026960EE38FCF529E8A371A81F346A32EDC9D4F6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/DesktopSecretLock/Standard/2.99.2023.1121/Greatis.DesktopSecretLock.Standard.locale.en-US.yaml b/manifests/g/Greatis/DesktopSecretLock/Standard/2.99.2023.1121/Greatis.DesktopSecretLock.Standard.locale.en-US.yaml new file mode 100644 index 0000000000000..5be2d1dee451a --- /dev/null +++ b/manifests/g/Greatis/DesktopSecretLock/Standard/2.99.2023.1121/Greatis.DesktopSecretLock.Standard.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: Greatis.DesktopSecretLock.Standard +PackageVersion: 2.99.2023.1121 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://greatis.com/index.html +PublisherSupportUrl: https://greatis.com/desktopsecretlock/support.htm +PrivacyUrl: https://greatis.com/desktopsecretlock/privacy.htm +PackageName: Desktop Secret Lock Standard +PackageUrl: https://greatis.com/desktopsecretlock/download.htm +License: Proprietary (EULA) +LicenseUrl: https://greatis.com/desktopsecretlock/eula.htm +Copyright: Copyright (c) 2025 Greatis Software +ShortDescription: Powerful Protection Against Remote Desktop Hacking and Unauthorized Access! +ReleaseNotesUrl: https://greatis.com/desktopsecretlock/news.htm +PurchaseUrl: https://greatis.com/desktopsecretlock/buy.htm +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/DesktopSecretLock/Standard/2.99.2023.1121/Greatis.DesktopSecretLock.Standard.yaml b/manifests/g/Greatis/DesktopSecretLock/Standard/2.99.2023.1121/Greatis.DesktopSecretLock.Standard.yaml new file mode 100644 index 0000000000000..4a30ca95ea185 --- /dev/null +++ b/manifests/g/Greatis/DesktopSecretLock/Standard/2.99.2023.1121/Greatis.DesktopSecretLock.Standard.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: Greatis.DesktopSecretLock.Standard +PackageVersion: 2.99.2023.1121 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/EdgeResetButton/1.0/Greatis.EdgeResetButton.installer.yaml b/manifests/g/Greatis/EdgeResetButton/1.0/Greatis.EdgeResetButton.installer.yaml new file mode 100644 index 0000000000000..586e645fbb14a --- /dev/null +++ b/manifests/g/Greatis/EdgeResetButton/1.0/Greatis.EdgeResetButton.installer.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Greatis.EdgeResetButton +PackageVersion: '1.0' +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: EdgeResetButton_setup.exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: Edge Reset Button_is1 +ReleaseDate: 2016-03-29 +AppsAndFeaturesEntries: +- Publisher: Greatis Software, LLC. + ProductCode: Edge Reset Button_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\EdgeResetButton' +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatissoftware.com/edge_reset_button_setup.zip + InstallerSha256: 7D1D72C31679892E76F01F415840B0BE3D59578001590EA50ADA6AC4C5633269 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/EdgeResetButton/1.0/Greatis.EdgeResetButton.locale.en-US.yaml b/manifests/g/Greatis/EdgeResetButton/1.0/Greatis.EdgeResetButton.locale.en-US.yaml new file mode 100644 index 0000000000000..98554d3ab4d65 --- /dev/null +++ b/manifests/g/Greatis/EdgeResetButton/1.0/Greatis.EdgeResetButton.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: Greatis.EdgeResetButton +PackageVersion: '1.0' +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://www.greatis.com/index.html +PublisherSupportUrl: https://www.greatis.com/security/support.htm +PrivacyUrl: https://www.greatis.com/security/policy.htm +PackageName: Edge Reset Button +PackageUrl: https://www.greatis.com/security/edge-reset-button.htm +License: Proprietary (EULA) +LicenseUrl: https://www.greatis.com/security/eula.htm +Copyright: Copyright (c) Greatis Software 1999-2025 +CopyrightUrl: https://www.greatis.com/security/edge-reset-button.htm#:~:text=Copyright +ShortDescription: Edge Reset Button is a small program for resetting the Microsoft Edge browser +PurchaseUrl: https://www.greatis.com/security/buy.htm +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/EdgeResetButton/1.0/Greatis.EdgeResetButton.yaml b/manifests/g/Greatis/EdgeResetButton/1.0/Greatis.EdgeResetButton.yaml new file mode 100644 index 0000000000000..3bd5dae3ab7d5 --- /dev/null +++ b/manifests/g/Greatis/EdgeResetButton/1.0/Greatis.EdgeResetButton.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: Greatis.EdgeResetButton +PackageVersion: '1.0' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/GWXStopper/3.3/Greatis.GWXStopper.installer.yaml b/manifests/g/Greatis/GWXStopper/3.3/Greatis.GWXStopper.installer.yaml new file mode 100644 index 0000000000000..d7f746bcac484 --- /dev/null +++ b/manifests/g/Greatis/GWXStopper/3.3/Greatis.GWXStopper.installer.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Greatis.GWXStopper +PackageVersion: '3.3' +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: GWXStopper_setup.exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: GWXStopper_is1 +ReleaseDate: 2019-03-22 +AppsAndFeaturesEntries: +- Publisher: Greatis Software, LLC. + ProductCode: GWXStopper_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\GWXStopper' +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatis.com/stop-gwx-from-startup.zip + InstallerSha256: 4D130AF1A87EA18F615471EAA70EC0872B89FA43924F011F4F2E1583E3444359 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/GWXStopper/3.3/Greatis.GWXStopper.locale.en-US.yaml b/manifests/g/Greatis/GWXStopper/3.3/Greatis.GWXStopper.locale.en-US.yaml new file mode 100644 index 0000000000000..b4f9aa0f5eaf4 --- /dev/null +++ b/manifests/g/Greatis/GWXStopper/3.3/Greatis.GWXStopper.locale.en-US.yaml @@ -0,0 +1,15 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Greatis.GWXStopper +PackageVersion: '3.3' +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://greatis.com/index.html +PackageName: GWX Stopper +PackageUrl: https://greatis.com/blog/what-is-gwx-gwx-exe +License: Freeware +Copyright: Copyright (c) Greatis Software 2016-2019 +ShortDescription: A simple free utility to disable GWX scheduling tasks. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/GWXStopper/3.3/Greatis.GWXStopper.yaml b/manifests/g/Greatis/GWXStopper/3.3/Greatis.GWXStopper.yaml new file mode 100644 index 0000000000000..0207b4df8ce18 --- /dev/null +++ b/manifests/g/Greatis/GWXStopper/3.3/Greatis.GWXStopper.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: Greatis.GWXStopper +PackageVersion: '3.3' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/IQIYIRemover/1.0/Greatis.IQIYIRemover.installer.yaml b/manifests/g/Greatis/IQIYIRemover/1.0/Greatis.IQIYIRemover.installer.yaml new file mode 100644 index 0000000000000..6da7d7d03bec8 --- /dev/null +++ b/manifests/g/Greatis/IQIYIRemover/1.0/Greatis.IQIYIRemover.installer.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Greatis.IQIYIRemover +PackageVersion: '1.0' +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: iqiyi-remover-setup.exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: IQIYI Remover_is1 +ReleaseDate: 2015-12-14 +AppsAndFeaturesEntries: +- Publisher: Greatis Software, LLC. + ProductCode: IQIYI Remover_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\I-Q-I-Y-I-Remover' +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatis.com/iqiyi-remover-setup.zip + InstallerSha256: 6F61C47B9F3CD2EE46950374706912A647DED5053A3AE953EECBF6BE9149A655 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/IQIYIRemover/1.0/Greatis.IQIYIRemover.locale.en-US.yaml b/manifests/g/Greatis/IQIYIRemover/1.0/Greatis.IQIYIRemover.locale.en-US.yaml new file mode 100644 index 0000000000000..136783adf4c5c --- /dev/null +++ b/manifests/g/Greatis/IQIYIRemover/1.0/Greatis.IQIYIRemover.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: Greatis.IQIYIRemover +PackageVersion: '1.0' +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://greatis.com/index.html +PrivacyUrl: https://greatis.com/blog/terms/privacy-policy.htm +PackageName: IQIYI Remover +PackageUrl: https://greatis.com/blog/win32-pup-gen/remove-iqiyi-video.htm +License: Freeware +ShortDescription: IQIYI Remover is atotal uninstaller for IQIYI Video! +Description: |- + IQIYI Remover completely removes all files, services, registry key related to + IQIYI software. + + One click and restarting of your PC and you are free of IQIYI problem forever! +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/IQIYIRemover/1.0/Greatis.IQIYIRemover.yaml b/manifests/g/Greatis/IQIYIRemover/1.0/Greatis.IQIYIRemover.yaml new file mode 100644 index 0000000000000..37e73b8139aff --- /dev/null +++ b/manifests/g/Greatis/IQIYIRemover/1.0/Greatis.IQIYIRemover.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: Greatis.IQIYIRemover +PackageVersion: '1.0' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegGun/Platinum/Ukrainian/17.30.2025.618/Greatis.RegGun.Platinum.Ukrainian.installer.yaml b/manifests/g/Greatis/RegGun/Platinum/Ukrainian/17.30.2025.618/Greatis.RegGun.Platinum.Ukrainian.installer.yaml new file mode 100644 index 0000000000000..5dea4224b33ea --- /dev/null +++ b/manifests/g/Greatis/RegGun/Platinum/Ukrainian/17.30.2025.618/Greatis.RegGun.Platinum.Ukrainian.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: Greatis.RegGun.Platinum.Ukrainian +PackageVersion: 17.30.2025.618 +InstallerLocale: uk-UA +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: regrunplatukr.exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: RegRun Security Suite_is1 +ReleaseDate: 2020-12-17 +AppsAndFeaturesEntries: +- DisplayName: RegRun Security Suite Platinum + DisplayVersion: 12.10 release + ProductCode: RegRun Security Suite_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Greatis\RegRunSuite' +Installers: +- Architecture: x86 + InstallerUrl: https://greatissoftware.com/regrunplatukr.zip + InstallerSha256: 6C493D003181C794AB87724E58E5FECEAD17A06E8008372F305F03078C9B135F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegGun/Platinum/Ukrainian/17.30.2025.618/Greatis.RegGun.Platinum.Ukrainian.locale.en-US.yaml b/manifests/g/Greatis/RegGun/Platinum/Ukrainian/17.30.2025.618/Greatis.RegGun.Platinum.Ukrainian.locale.en-US.yaml new file mode 100644 index 0000000000000..ab46e4b01d0e5 --- /dev/null +++ b/manifests/g/Greatis/RegGun/Platinum/Ukrainian/17.30.2025.618/Greatis.RegGun.Platinum.Ukrainian.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Greatis.RegGun.Platinum.Ukrainian +PackageVersion: 17.30.2025.618 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://www.greatis.com/index.html +PublisherSupportUrl: https://www.greatis.com/security/support.htm +PrivacyUrl: https://greatis.com/security/policy.htm +PackageName: RegRun Security Suite Platinum Edition Ukrainian +PackageUrl: https://www.greatis.com/security/download.htm +License: Proprietary (EULA) +LicenseUrl: https://www.greatis.com/security/eula.htm +Copyright: Copyright (c) Greatis Software 1999-2025 +CopyrightUrl: https://www.greatis.com/security/download.htm#:~:text=Copyright +ShortDescription: > + Not an antivirus. Detects and removes rootkits/malware/adware that your + antivirus could not. +ReleaseNotesUrl: https://greatis.com/security/news.htm +PurchaseUrl: https://greatis.com/platinum-single +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegGun/Platinum/Ukrainian/17.30.2025.618/Greatis.RegGun.Platinum.Ukrainian.yaml b/manifests/g/Greatis/RegGun/Platinum/Ukrainian/17.30.2025.618/Greatis.RegGun.Platinum.Ukrainian.yaml new file mode 100644 index 0000000000000..7dcea7cc245b4 --- /dev/null +++ b/manifests/g/Greatis/RegGun/Platinum/Ukrainian/17.30.2025.618/Greatis.RegGun.Platinum.Ukrainian.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: Greatis.RegGun.Platinum.Ukrainian +PackageVersion: 17.30.2025.618 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegRun/Gold/17.30.2025.618/Greatis.RegRun.Gold.installer.yaml b/manifests/g/Greatis/RegRun/Gold/17.30.2025.618/Greatis.RegRun.Gold.installer.yaml new file mode 100644 index 0000000000000..b7fc63040aa30 --- /dev/null +++ b/manifests/g/Greatis/RegRun/Gold/17.30.2025.618/Greatis.RegRun.Gold.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: Greatis.RegRun.Gold +PackageVersion: 17.30.2025.618 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: regrung.exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: RegRun Security Suite_is1 +ReleaseDate: 2025-06-19 +AppsAndFeaturesEntries: +- DisplayName: RegRun Security Suite Gold + DisplayVersion: 17.30 release + ProductCode: RegRun Security Suite_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Greatis\RegRunSuite' +Installers: +- Architecture: x86 + InstallerUrl: https://greatissoftware.com/regrung.zip + InstallerSha256: EE369BC69E464A0C73F04BC9043B7DBCEB504D086259DE4DE846D4CD21952676 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegRun/Gold/17.30.2025.618/Greatis.RegRun.Gold.locale.en-US.yaml b/manifests/g/Greatis/RegRun/Gold/17.30.2025.618/Greatis.RegRun.Gold.locale.en-US.yaml new file mode 100644 index 0000000000000..7fa027e729865 --- /dev/null +++ b/manifests/g/Greatis/RegRun/Gold/17.30.2025.618/Greatis.RegRun.Gold.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Greatis.RegRun.Gold +PackageVersion: 17.30.2025.618 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://greatis.com/index.html +PublisherSupportUrl: https://greatis.com/security/support.htm +PackageName: RegRun Security Suite (Gold) +PackageUrl: https://greatis.com/security/download.htm +License: Proprietary (EULA) +LicenseUrl: https://greatis.com/security/eula.htm +Copyright: Copyright (c) 2008-2025 Greatis Software +ShortDescription: > + Not an antivirus. Detects and removes rootkits/malware/adware that your + antivirus could not. +ReleaseNotesUrl: https://greatis.com/security/news.htm +PurchaseUrl: https://greatis.onfastspring.com/regrun-gold +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegRun/Gold/17.30.2025.618/Greatis.RegRun.Gold.yaml b/manifests/g/Greatis/RegRun/Gold/17.30.2025.618/Greatis.RegRun.Gold.yaml new file mode 100644 index 0000000000000..1e60cea136372 --- /dev/null +++ b/manifests/g/Greatis/RegRun/Gold/17.30.2025.618/Greatis.RegRun.Gold.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: Greatis.RegRun.Gold +PackageVersion: 17.30.2025.618 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegRun/Platinum/17.30.2025.618/Greatis.RegRun.Platinum.installer.yaml b/manifests/g/Greatis/RegRun/Platinum/17.30.2025.618/Greatis.RegRun.Platinum.installer.yaml new file mode 100644 index 0000000000000..636c1d4d73410 --- /dev/null +++ b/manifests/g/Greatis/RegRun/Platinum/17.30.2025.618/Greatis.RegRun.Platinum.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: Greatis.RegRun.Platinum +PackageVersion: 17.30.2025.618 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: regrunplat.exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: RegRun Security Suite_is1 +ReleaseDate: 2025-06-19 +AppsAndFeaturesEntries: +- DisplayName: RegRun Security Suite Platinum + DisplayVersion: 17.30 release + ProductCode: RegRun Security Suite_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Greatis\RegRunSuite' +Installers: +- Architecture: x86 + InstallerUrl: https://greatissoftware.com/regrunplat.zip + InstallerSha256: BA4E0DB122FAFDA57326BD7401B2E86BD3DF4C368D360F18E8911189D54FACC8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegRun/Platinum/17.30.2025.618/Greatis.RegRun.Platinum.locale.en-US.yaml b/manifests/g/Greatis/RegRun/Platinum/17.30.2025.618/Greatis.RegRun.Platinum.locale.en-US.yaml new file mode 100644 index 0000000000000..0233348391963 --- /dev/null +++ b/manifests/g/Greatis/RegRun/Platinum/17.30.2025.618/Greatis.RegRun.Platinum.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Greatis.RegRun.Platinum +PackageVersion: 17.30.2025.618 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://greatis.com/index.html +PublisherSupportUrl: https://greatis.com/security/support.htm +PackageName: RegRun Security Suite Platinum Edition +PackageUrl: https://greatis.com/security/download.htm +License: Proprietary (EULA) +LicenseUrl: https://greatis.com/security/eula.htm +Copyright: Copyright (c) 2008-2025 Greatis Software +ShortDescription: > + Not an antivirus. Detects and removes rootkits/malware/adware that your + antivirus could not. +ReleaseNotesUrl: https://greatis.com/security/news.htm +PurchaseUrl: https://greatis.onfastspring.com/regrun-platinum +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegRun/Platinum/17.30.2025.618/Greatis.RegRun.Platinum.yaml b/manifests/g/Greatis/RegRun/Platinum/17.30.2025.618/Greatis.RegRun.Platinum.yaml new file mode 100644 index 0000000000000..250de3c0ad178 --- /dev/null +++ b/manifests/g/Greatis/RegRun/Platinum/17.30.2025.618/Greatis.RegRun.Platinum.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: Greatis.RegRun.Platinum +PackageVersion: 17.30.2025.618 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegRun/Reanimator/17.30.2025.618/Greatis.RegRun.Reanimator.installer.yaml b/manifests/g/Greatis/RegRun/Reanimator/17.30.2025.618/Greatis.RegRun.Reanimator.installer.yaml new file mode 100644 index 0000000000000..c380dfa176f46 --- /dev/null +++ b/manifests/g/Greatis/RegRun/Reanimator/17.30.2025.618/Greatis.RegRun.Reanimator.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: Greatis.RegRun.Reanimator +PackageVersion: 17.30.2025.618 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: ReanimatorStart.exe +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: UnHackMe Update - Reanimator_is1 +ReleaseDate: 2025-06-19 +AppsAndFeaturesEntries: +- ProductCode: UnHackMe Update - Reanimator_is1 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatissoftware.com/reanimator.zip + InstallerSha256: B2714C038156D33388C0ADE5605161EEAD62D5361E9BECF1F6FDC7F84E1805D2 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegRun/Reanimator/17.30.2025.618/Greatis.RegRun.Reanimator.locale.en-US.yaml b/manifests/g/Greatis/RegRun/Reanimator/17.30.2025.618/Greatis.RegRun.Reanimator.locale.en-US.yaml new file mode 100644 index 0000000000000..867fc1d675c54 --- /dev/null +++ b/manifests/g/Greatis/RegRun/Reanimator/17.30.2025.618/Greatis.RegRun.Reanimator.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Greatis.RegRun.Reanimator +PackageVersion: 17.30.2025.618 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://greatis.com/index.html +PublisherSupportUrl: https://greatis.com/security/support.htm +PackageName: RegRun Reanimator +PackageUrl: https://greatis.com/security/reanimator.html +License: Proprietary (EULA) +LicenseUrl: https://greatis.com/security/eula.htm +Copyright: Copyright (c) Greatis Software 1999-2025 +CopyrightUrl: https://greatis.com/security/reanimator.html#:~:text=Copyright +ShortDescription: > + Reanimator is a software for removing Trojans/Adware/Spyware/Malware and some + of the rootkits. +ReleaseNotesUrl: https://greatis.com/security/news.htm +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegRun/Reanimator/17.30.2025.618/Greatis.RegRun.Reanimator.yaml b/manifests/g/Greatis/RegRun/Reanimator/17.30.2025.618/Greatis.RegRun.Reanimator.yaml new file mode 100644 index 0000000000000..4a0a7b1eb2fe3 --- /dev/null +++ b/manifests/g/Greatis/RegRun/Reanimator/17.30.2025.618/Greatis.RegRun.Reanimator.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: Greatis.RegRun.Reanimator +PackageVersion: 17.30.2025.618 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegRun/RegRunCK/1.0.10/Greatis.RegRun.RegRunCK.installer.yaml b/manifests/g/Greatis/RegRun/RegRunCK/1.0.10/Greatis.RegRun.RegRunCK.installer.yaml new file mode 100644 index 0000000000000..14b09f8c49a90 --- /dev/null +++ b/manifests/g/Greatis/RegRun/RegRunCK/1.0.10/Greatis.RegRun.RegRunCK.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: Greatis.RegRun.RegRunCK +PackageVersion: 1.0.10 +InstallerType: portable +InstallModes: +- interactive +- silent +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2024-02-15 +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatis.com/regrunck.exe + InstallerSha256: 57AB66E82BF99264045E1B17F33C88213F78480524573B9673F3429AC866E605 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegRun/RegRunCK/1.0.10/Greatis.RegRun.RegRunCK.locale.en-US.yaml b/manifests/g/Greatis/RegRun/RegRunCK/1.0.10/Greatis.RegRun.RegRunCK.locale.en-US.yaml new file mode 100644 index 0000000000000..1e9f0a775011a --- /dev/null +++ b/manifests/g/Greatis/RegRun/RegRunCK/1.0.10/Greatis.RegRun.RegRunCK.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: Greatis.RegRun.RegRunCK +PackageVersion: 1.0.10 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://www.greatis.com/index.html +PublisherSupportUrl: https://www.greatis.com/security/support.htm +PrivacyUrl: https://www.greatis.com/security/policy.htm +PackageName: RegRun Security Suite +PackageUrl: https://www.greatis.com/security/download.htm +License: Proprietary (EULA) +LicenseUrl: https://www.greatis.com/security/eula.htm +Copyright: Copyright © Greatis Software 1999-2009 +CopyrightUrl: https://www.greatis.com/security/download.htm#:~:text=Copyright +ShortDescription: > + RegRunCK is for removing NTFS mount points, access denied files made by + MAX++/ZeroAccess rootkit. +PurchaseUrl: https://www.greatis.com/security/buy.htm +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegRun/RegRunCK/1.0.10/Greatis.RegRun.RegRunCK.yaml b/manifests/g/Greatis/RegRun/RegRunCK/1.0.10/Greatis.RegRun.RegRunCK.yaml new file mode 100644 index 0000000000000..be4ca0a6d8d54 --- /dev/null +++ b/manifests/g/Greatis/RegRun/RegRunCK/1.0.10/Greatis.RegRun.RegRunCK.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: Greatis.RegRun.RegRunCK +PackageVersion: 1.0.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegRun/Standard/17.30.2025.618/Greatis.RegRun.Standard.installer.yaml b/manifests/g/Greatis/RegRun/Standard/17.30.2025.618/Greatis.RegRun.Standard.installer.yaml new file mode 100644 index 0000000000000..8c0d4b8065814 --- /dev/null +++ b/manifests/g/Greatis/RegRun/Standard/17.30.2025.618/Greatis.RegRun.Standard.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: Greatis.RegRun.Standard +PackageVersion: 17.30.2025.618 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: regruns.exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: RegRun Security Suite_is1 +ReleaseDate: 2025-06-28 +AppsAndFeaturesEntries: +- DisplayName: RegRun Security Suite Standard + DisplayVersion: 17.30 release + ProductCode: RegRun Security Suite_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Greatis\RegRunSuite' +Installers: +- Architecture: x86 + InstallerUrl: https://greatissoftware.com/regruns.zip + InstallerSha256: B194008F3D88992FDCE7CF23A2D69BCF943CEA23A1E0D9D30044600B733B4F3F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegRun/Standard/17.30.2025.618/Greatis.RegRun.Standard.locale.en-US.yaml b/manifests/g/Greatis/RegRun/Standard/17.30.2025.618/Greatis.RegRun.Standard.locale.en-US.yaml new file mode 100644 index 0000000000000..2dabf3449efa2 --- /dev/null +++ b/manifests/g/Greatis/RegRun/Standard/17.30.2025.618/Greatis.RegRun.Standard.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: Greatis.RegRun.Standard +PackageVersion: 17.30.2025.618 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://greatis.com/index.html +PublisherSupportUrl: https://www.greatis.com/security/support.htm +PackageName: RegRun Security Suite +PackageUrl: https://www.greatis.com/security/download.htm +License: Proprietary (EULA) +LicenseUrl: https://www.greatis.com/security/eula.htm +Copyright: Copyright (c) 2008-2025 Greatis Software +ShortDescription: > + Not an antivirus. Detects and removes rootkits/malware/adware that your + antivirus could not. +ReleaseNotes: |- + Version: 17.30.2025.618 - June 19 2025 + + 1. Fixed display scaling issues on the 4K monitors. + 2. Fixed security issue with malware infected the "UserInit" registry value. + 3. Fixed: AD.ROBUSTLINK.CO.IN, AD.BWS-PROTECT.CO.IN, AD.OFFERLINKS.CC, + AD.HULONDOR.CO.IN, AD.PEROGIAL.CO.IN, AD.SWG-PROTECT.CO.IN, AD.CEPOSACO.CO.IN, + AD.OBQJ2.COM, AD.WAREMIS.CO.IN, AD.OXS-ADGUARD.PRO, AD.RECONNECTLINK.CO.IN, + AD.HIGHENDNETWORK.CO.IN,AD.MEBLERI.COM, AD.MAXPROTECT.CO.IN, + AD.PERFORMANCETUNE.CO.IN, AD.DEVICEBOOSTER.CO.IN, AD.RATTABLESS.COM, + AD.XNETWORK.CO.IN, AD.REVUPDEVICE.CO.IN, AD. AD.UPGRADEDCONNECTION.CO.IN, + AD.FORTIFIEDCONNECTION.CO.IN, AD.RECATEMATIVAR.CO.IN, AD.SQUINSUBIL.CO.IN, + AD.UPGRADEDCONNECT.CO.IN, AD.SWEPROTECT.CO.IN, AD.2022WELCOME.COM. + 4. Fixed small bugs. + 5. Updated: AV databases. +ReleaseNotesUrl: https://greatis.com/security/news.htm +PurchaseUrl: https://greatis.onfastspring.com/regrun-standard +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/RegRun/Standard/17.30.2025.618/Greatis.RegRun.Standard.yaml b/manifests/g/Greatis/RegRun/Standard/17.30.2025.618/Greatis.RegRun.Standard.yaml new file mode 100644 index 0000000000000..a8a254732911d --- /dev/null +++ b/manifests/g/Greatis/RegRun/Standard/17.30.2025.618/Greatis.RegRun.Standard.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: Greatis.RegRun.Standard +PackageVersion: 17.30.2025.618 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/StartScreenUnlimited/3.1.0.31/Greatis.StartScreenUnlimited.installer.yaml b/manifests/g/Greatis/StartScreenUnlimited/3.1.0.31/Greatis.StartScreenUnlimited.installer.yaml new file mode 100644 index 0000000000000..825ec995e5d40 --- /dev/null +++ b/manifests/g/Greatis/StartScreenUnlimited/3.1.0.31/Greatis.StartScreenUnlimited.installer.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Greatis.StartScreenUnlimited +PackageVersion: 3.1.0.31 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: unlimited_setup.exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: Start Screen Unlimited Lite_is1 +ReleaseDate: 2014-12-22 +AppsAndFeaturesEntries: +- Publisher: Greatis Software, LLC. + ProductCode: Start Screen Unlimited Lite_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Start Screen Unlimited' +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatis.com/unlimited_setup.zip + InstallerSha256: C7D9C6DC47FA2DF3E4D30D518C59825ACF357F23BB4FC5B4D01709076CA05660 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/StartScreenUnlimited/3.1.0.31/Greatis.StartScreenUnlimited.locale.en-US.yaml b/manifests/g/Greatis/StartScreenUnlimited/3.1.0.31/Greatis.StartScreenUnlimited.locale.en-US.yaml new file mode 100644 index 0000000000000..7cf6834e38294 --- /dev/null +++ b/manifests/g/Greatis/StartScreenUnlimited/3.1.0.31/Greatis.StartScreenUnlimited.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: Greatis.StartScreenUnlimited +PackageVersion: 3.1.0.31 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://www.greatis.com/index.html +PublisherSupportUrl: https://www.greatis.com/startscreenunlimited/support.html +PrivacyUrl: https://www.greatis.com/startscreenunlimited/policy.html +PackageName: Start Screen Unlimited +PackageUrl: https://www.greatis.com/startscreenunlimited/download.html +License: Proprietary +Copyright: (c) 2014 Greatis Software. All Rights Reserved. +CopyrightUrl: https://www.greatis.com/startscreenunlimited/download.html#:~:text=%C2%A9 +ShortDescription: Empower your Windows 8 Start Screen with digital gadgets. +Description: > + Unleash the full capabilities of your Windows 8 Start Screen with Start Screen + Unlimited! Add digital clock, Google search, power controls and numerous other + gadgets directly to your start screen. With Start Screen Unlimited, the only + limit is your imagination. +ReleaseNotesUrl: https://www.greatis.com/startscreenunlimited/whatsnew.html +PurchaseUrl: https://www.greatis.com/startscreenunlimited/order.html +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://www.greatis.com/startscreenunlimited/faq.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/StartScreenUnlimited/3.1.0.31/Greatis.StartScreenUnlimited.yaml b/manifests/g/Greatis/StartScreenUnlimited/3.1.0.31/Greatis.StartScreenUnlimited.yaml new file mode 100644 index 0000000000000..6e992b34bfda8 --- /dev/null +++ b/manifests/g/Greatis/StartScreenUnlimited/3.1.0.31/Greatis.StartScreenUnlimited.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: Greatis.StartScreenUnlimited +PackageVersion: 3.1.0.31 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/StopUpdates10/4.7.2025.0424/Greatis.StopUpdates10.installer.yaml b/manifests/g/Greatis/StopUpdates10/4.7.2025.0424/Greatis.StopUpdates10.installer.yaml new file mode 100644 index 0000000000000..51aecf759f6b7 --- /dev/null +++ b/manifests/g/Greatis/StopUpdates10/4.7.2025.0424/Greatis.StopUpdates10.installer.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Greatis.StopUpdates10 +PackageVersion: 4.7.2025.0424 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: stopupdates10setup.exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C186B659-50F8-4F40-9822-2B1163AAAEF2}_is1' +ReleaseDate: 2025-04-24 +AppsAndFeaturesEntries: +- ProductCode: '{C186B659-50F8-4F40-9822-2B1163AAAEF2}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\StopUpdates10' +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatissoftware.com/stopupdates10.zip + InstallerSha256: CB052DE28EFD576A4C002EA0DF573C9765F356BE2929D09414CE950EB86E87BB +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/StopUpdates10/4.7.2025.0424/Greatis.StopUpdates10.locale.en-US.yaml b/manifests/g/Greatis/StopUpdates10/4.7.2025.0424/Greatis.StopUpdates10.locale.en-US.yaml new file mode 100644 index 0000000000000..ef0f2068d39e0 --- /dev/null +++ b/manifests/g/Greatis/StopUpdates10/4.7.2025.0424/Greatis.StopUpdates10.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Greatis.StopUpdates10 +PackageVersion: 4.7.2025.0424 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://greatis.com/contacts.html +PublisherSupportUrl: https://greatis.com/stopupdates10/support.htm +PackageName: StopUpdates10 +PackageUrl: https://greatis.com/stopupdates10/download.htm +License: Proprietary (EULA) +LicenseUrl: https://greatis.com/stopupdates10/eula.htm +Copyright: Copyright Ⓒ Greatis Software 2005-2025 +CopyrightUrl: https://greatis.com/#:~:text=Copyright +ShortDescription: Take your Control over Windows 11/10/8/7 updates with StopUpdates10 Free! +ReleaseNotesUrl: https://greatis.com/stopupdates10/#changelog:~:text=Version%204.7.2025.0424 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/StopUpdates10/4.7.2025.0424/Greatis.StopUpdates10.yaml b/manifests/g/Greatis/StopUpdates10/4.7.2025.0424/Greatis.StopUpdates10.yaml new file mode 100644 index 0000000000000..a11ca403d4ef1 --- /dev/null +++ b/manifests/g/Greatis/StopUpdates10/4.7.2025.0424/Greatis.StopUpdates10.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: Greatis.StopUpdates10 +PackageVersion: 4.7.2025.0424 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/UnHackMe/Beta/17.33.2025.624/Greatis.UnHackMe.Beta.installer.yaml b/manifests/g/Greatis/UnHackMe/Beta/17.33.2025.624/Greatis.UnHackMe.Beta.installer.yaml new file mode 100644 index 0000000000000..095525d189dcd --- /dev/null +++ b/manifests/g/Greatis/UnHackMe/Beta/17.33.2025.624/Greatis.UnHackMe.Beta.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: Greatis.UnHackMe.Beta +PackageVersion: 17.33.2025.624 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: unhackme_setup.exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: UnHackMe_is1 +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- ProductCode: UnHackMe_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\UnHackMe' +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatissoftware.com/unhackme-beta.zip + InstallerSha256: 1327331AE0AD7348E13C1257D1EEC8A678751FB93FCD9B2931C25272215D1BB8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/UnHackMe/Beta/17.33.2025.624/Greatis.UnHackMe.Beta.locale.en-US.yaml b/manifests/g/Greatis/UnHackMe/Beta/17.33.2025.624/Greatis.UnHackMe.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..dd25db250c61c --- /dev/null +++ b/manifests/g/Greatis/UnHackMe/Beta/17.33.2025.624/Greatis.UnHackMe.Beta.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: Greatis.UnHackMe.Beta +PackageVersion: 17.33.2025.624 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://greatis.com/index.html +PublisherSupportUrl: https://greatis.com/unhackme/support.htm +PackageName: UnHackMe Stable Beta +PackageUrl: https://greatis.com/unhackme/download.htm +License: Proprietary (EULA) +LicenseUrl: https://greatis.com/unhackme/eula.htm +Copyright: Copyright (c) Greatis Software 2005-2025 +ShortDescription: UnHackMe is the ultimate malware killer for Windows! +ReleaseNotesUrl: https://greatis.com/unhackme/news.htm +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/UnHackMe/Beta/17.33.2025.624/Greatis.UnHackMe.Beta.yaml b/manifests/g/Greatis/UnHackMe/Beta/17.33.2025.624/Greatis.UnHackMe.Beta.yaml new file mode 100644 index 0000000000000..26575e373f0f9 --- /dev/null +++ b/manifests/g/Greatis/UnHackMe/Beta/17.33.2025.624/Greatis.UnHackMe.Beta.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: Greatis.UnHackMe.Beta +PackageVersion: 17.33.2025.624 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/UnHackMe/Stable/17.30.2025.618/Greatis.UnHackMe.Stable.installer.yaml b/manifests/g/Greatis/UnHackMe/Stable/17.30.2025.618/Greatis.UnHackMe.Stable.installer.yaml new file mode 100644 index 0000000000000..b5e257c128e49 --- /dev/null +++ b/manifests/g/Greatis/UnHackMe/Stable/17.30.2025.618/Greatis.UnHackMe.Stable.installer.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Greatis.UnHackMe.Stable +PackageVersion: 17.30.2025.618 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: unhackme_setup.exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: UnHackMe_is1 +ReleaseDate: 2025-06-18 +AppsAndFeaturesEntries: +- ProductCode: UnHackMe_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\UnHackMe' +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatissoftware.com/unhackme.zip + InstallerSha256: 1622A00E15364C36A8758FA083B5EF6C58BBEE6C4AE6155217A4EC26569FFC42 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/UnHackMe/Stable/17.30.2025.618/Greatis.UnHackMe.Stable.locale.en-US.yaml b/manifests/g/Greatis/UnHackMe/Stable/17.30.2025.618/Greatis.UnHackMe.Stable.locale.en-US.yaml new file mode 100644 index 0000000000000..7a922aa3dba20 --- /dev/null +++ b/manifests/g/Greatis/UnHackMe/Stable/17.30.2025.618/Greatis.UnHackMe.Stable.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Greatis.UnHackMe.Stable +PackageVersion: 17.30.2025.618 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://greatis.com/contacts.html +PublisherSupportUrl: https://greatis.com/unhackme/support.htm +PackageName: UnHackMe +PackageUrl: https://greatis.com/unhackme/download.htm +License: Proprietary (EULA) +LicenseUrl: https://greatis.com/unhackme/eula.htm +Copyright: Copyright Ⓒ Greatis Software 2005-2025 +CopyrightUrl: https://greatis.com/#:~:text=Copyright +ShortDescription: UnHackMe is the ultimate malware killer for Windows! +ReleaseNotesUrl: https://greatis.com/unhackme/news.htm#:~:text=Version:%2017.33.2025.624 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/UnHackMe/Stable/17.30.2025.618/Greatis.UnHackMe.Stable.yaml b/manifests/g/Greatis/UnHackMe/Stable/17.30.2025.618/Greatis.UnHackMe.Stable.yaml new file mode 100644 index 0000000000000..756f67b5117d4 --- /dev/null +++ b/manifests/g/Greatis/UnHackMe/Stable/17.30.2025.618/Greatis.UnHackMe.Stable.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: Greatis.UnHackMe.Stable +PackageVersion: 17.30.2025.618 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/WinDowse/5.3.0.0/Greatis.WinDowse.installer.yaml b/manifests/g/Greatis/WinDowse/5.3.0.0/Greatis.WinDowse.installer.yaml new file mode 100644 index 0000000000000..18c2a8f97dfc8 --- /dev/null +++ b/manifests/g/Greatis/WinDowse/5.3.0.0/Greatis.WinDowse.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Greatis.WinDowse +PackageVersion: 5.3.0.0 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: uninstallPrevious +ProductCode: Greatis WinDowse 5.3_is1 +ReleaseDate: 2017-11-14 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Greatis\WinDowse' +Installers: +- Architecture: x86 + InstallerUrl: https://www.greatis.com/delphicb/freedownload/wdsetup.exe + InstallerSha256: 72C632E92FE2703174315115E75D2EFECED9AB07632D978BA0A568AF656781DB +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/WinDowse/5.3.0.0/Greatis.WinDowse.locale.en-US.yaml b/manifests/g/Greatis/WinDowse/5.3.0.0/Greatis.WinDowse.locale.en-US.yaml new file mode 100644 index 0000000000000..32b9825fd7fbf --- /dev/null +++ b/manifests/g/Greatis/WinDowse/5.3.0.0/Greatis.WinDowse.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: Greatis.WinDowse +PackageVersion: 5.3.0.0 +PackageLocale: en-US +Publisher: Greatis Software +PublisherUrl: https://www.greatis.com/index.html +PackageName: Greatis WinDowse 5.3 +PackageUrl: https://www.greatis.com/delphicb/windowse/ +License: Proprietary +Copyright: Copyright © 1999-2014 Greatis Software +CopyrightUrl: https://www.greatis.com/delphicb/windowse/#:~:text=Copyright%20%C2%A9 +ShortDescription: Advanced Windows Analyzer +Description: |- + Look into any window - it's as simple as 1-2 now! + + 1. Place mouse on the window you want to analyze + 2. See over the 40 parameters of the selected window immediately, without any + clicks! +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Greatis/WinDowse/5.3.0.0/Greatis.WinDowse.yaml b/manifests/g/Greatis/WinDowse/5.3.0.0/Greatis.WinDowse.yaml new file mode 100644 index 0000000000000..3a3db2eb54b0e --- /dev/null +++ b/manifests/g/Greatis/WinDowse/5.3.0.0/Greatis.WinDowse.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: Greatis.WinDowse +PackageVersion: 5.3.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GreycLab/GMIC-Qt/GIMP/.validation b/manifests/g/GreycLab/GMIC-Qt/GIMP/.validation new file mode 100644 index 0000000000000..74a7b534e33bb --- /dev/null +++ b/manifests/g/GreycLab/GMIC-Qt/GIMP/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"19cdf9fe-324c-4d83-add5-36e4a0749574","TestPlan":"Validation-Domain","PackagePath":"manifests/g/GreycLab/GMIC-Qt/GIMP/3.5.3","CommitId":"4a96d64f1db4fca5154d32879b8856ccdb221a71"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/g/GreycLab/GMIC-Qt/GIMP/3.4.3-gimp2.10/GreycLab.GMIC-Qt.GIMP.installer.yaml b/manifests/g/GreycLab/GMIC-Qt/GIMP/3.4.3-gimp2.10/GreycLab.GMIC-Qt.GIMP.installer.yaml index 83fd5a2afc51a..999fb4e2fced3 100644 --- a/manifests/g/GreycLab/GMIC-Qt/GIMP/3.4.3-gimp2.10/GreycLab.GMIC-Qt.GIMP.installer.yaml +++ b/manifests/g/GreycLab/GMIC-Qt/GIMP/3.4.3-gimp2.10/GreycLab.GMIC-Qt.GIMP.installer.yaml @@ -16,7 +16,7 @@ AppsAndFeaturesEntries: Dependencies: PackageDependencies: # This package is target for GIMP v2.10.x - - PackageIdentifier: GIMP.GIMP + - PackageIdentifier: GIMP.GIMP.2 MinimumVersion: 2.10.0 # NOTE: Should be restricted as "==2.10.*", or ">=2.10.0,<2.11.0" Installers: diff --git a/manifests/g/GreycLab/GMIC-Qt/GIMP/3.5.3/GreycLab.GMIC-Qt.GIMP.installer.yaml b/manifests/g/GreycLab/GMIC-Qt/GIMP/3.5.3/GreycLab.GMIC-Qt.GIMP.installer.yaml index 0875724d85986..cc16300903d8f 100644 --- a/manifests/g/GreycLab/GMIC-Qt/GIMP/3.5.3/GreycLab.GMIC-Qt.GIMP.installer.yaml +++ b/manifests/g/GreycLab/GMIC-Qt/GIMP/3.5.3/GreycLab.GMIC-Qt.GIMP.installer.yaml @@ -13,7 +13,7 @@ InstallModes: UpgradeBehavior: install Dependencies: PackageDependencies: - - PackageIdentifier: GIMP.GIMP + - PackageIdentifier: GIMP.GIMP.2 MinimumVersion: 2.10.0 ProductCode: G'MIC-Qt for GIMP 2.10_is1 ReleaseDate: 2024-10-11 diff --git a/manifests/g/Gruntwork/Terragrunt/0.82.0/Gruntwork.Terragrunt.installer.yaml b/manifests/g/Gruntwork/Terragrunt/0.82.0/Gruntwork.Terragrunt.installer.yaml new file mode 100644 index 0000000000000..1f7eabca3e283 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.82.0/Gruntwork.Terragrunt.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Gruntwork.Terragrunt +PackageVersion: 0.82.0 +InstallerType: portable +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: terragrunt.exe + PortableCommandAlias: terragrunt +Commands: +- terragrunt +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v0.82.0/terragrunt_windows_386.exe + InstallerSha256: DAA00C717835B9DACD7182951B8C2E15DD1B918F833C959B82A997F1E469CDB8 +- Architecture: x64 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v0.82.0/terragrunt_windows_amd64.exe + InstallerSha256: 306A553BFCA76C21F91CD35FA9ACFA81C78FB87BC66429309BA4D992C4098A8D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.82.0/Gruntwork.Terragrunt.locale.en-US.yaml b/manifests/g/Gruntwork/Terragrunt/0.82.0/Gruntwork.Terragrunt.locale.en-US.yaml new file mode 100644 index 0000000000000..0f2a365ddd2b1 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.82.0/Gruntwork.Terragrunt.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Gruntwork.Terragrunt +PackageVersion: 0.82.0 +PackageLocale: en-US +Publisher: Gruntwork +PublisherUrl: https://terragrunt.gruntwork.io/ +PublisherSupportUrl: https://terragrunt.gruntwork.io/docs/community/support +PrivacyUrl: https://gruntwork.io/legal/privacy-policy +PackageName: Terragrunt +PackageUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v0.68.9 +License: MIT +LicenseUrl: https://github.com/gruntwork-io/terragrunt/blob/HEAD/LICENSE.txt +Copyright: © 2024 Gruntwork, Inc. All rights reserved. +ShortDescription: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Description: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Tags: +- IaC +- Infrastructure as Code +- Terraform +- Terraform Wrapper +- terragrunt +ReleaseNotes: |- + Description + OpenTofu 1.10 support: We are now testing Terragrunt against OpenTofu 1.10, and is confirmed to be working. + NOTE: Although this release is marked as backward incompatible, it is functionally compatible as nothing has been changed in Terragrunt internals. The minor version release is useful to mark the change in the OpenTofu version that is being tested. + What's Changed + - Add support for OpenTofu 1.10 by @denis256 in #4465 + Full Changelog: v0.81.10...v0.82.0 +ReleaseNotesUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v0.82.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/gruntwork-io/terragrunt/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.82.0/Gruntwork.Terragrunt.yaml b/manifests/g/Gruntwork/Terragrunt/0.82.0/Gruntwork.Terragrunt.yaml new file mode 100644 index 0000000000000..7a43e0d1f6b03 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.82.0/Gruntwork.Terragrunt.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: Gruntwork.Terragrunt +PackageVersion: 0.82.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.82.1/Gruntwork.Terragrunt.installer.yaml b/manifests/g/Gruntwork/Terragrunt/0.82.1/Gruntwork.Terragrunt.installer.yaml new file mode 100644 index 0000000000000..b2ad50750a6f8 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.82.1/Gruntwork.Terragrunt.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Gruntwork.Terragrunt +PackageVersion: 0.82.1 +InstallerType: portable +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: terragrunt.exe + PortableCommandAlias: terragrunt +Commands: +- terragrunt +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v0.82.1/terragrunt_windows_386.exe + InstallerSha256: EDD93FAC5B2AB9F9F0BD424F7627A6F87206684A73B36DC3261B71E33C4CC9F8 +- Architecture: x64 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v0.82.1/terragrunt_windows_amd64.exe + InstallerSha256: D53A7D1D9317AC1FC18706590AA33C3CECAB8FC9769B67D1B9839E1BA994342F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.82.1/Gruntwork.Terragrunt.locale.en-US.yaml b/manifests/g/Gruntwork/Terragrunt/0.82.1/Gruntwork.Terragrunt.locale.en-US.yaml new file mode 100644 index 0000000000000..5aba9822f2390 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.82.1/Gruntwork.Terragrunt.locale.en-US.yaml @@ -0,0 +1,51 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Gruntwork.Terragrunt +PackageVersion: 0.82.1 +PackageLocale: en-US +Publisher: Gruntwork +PublisherUrl: https://terragrunt.gruntwork.io/ +PublisherSupportUrl: https://terragrunt.gruntwork.io/docs/community/support +PrivacyUrl: https://gruntwork.io/legal/privacy-policy +PackageName: Terragrunt +PackageUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v0.68.9 +License: MIT +LicenseUrl: https://github.com/gruntwork-io/terragrunt/blob/HEAD/LICENSE.txt +Copyright: © 2024 Gruntwork, Inc. All rights reserved. +ShortDescription: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Description: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Tags: +- IaC +- Infrastructure as Code +- Terraform +- Terraform Wrapper +- terragrunt +ReleaseNotes: |- + 🧪 Experiments Updated + The cas experiment now supports terraform block source attributes + The cas experiment now supports de-duplication of OpenTofu/Terraform module source cloning during unit initialization. + This both reduces time spent cloning OpenTofu/Terraform module sources by reducing network bandwidth overhead, and reduces disk utilization. + Screenshot 2025-06-26 at 7 01 38 AM + You can learn more about the CAS feature in the dedicated feature documentation. + 🐛 Bugs Fixed + The hcl validate command now returns an appropriate exit code + When using hcl validate, if any unit fails validation when run against a stack of units, the final exit code with be non-zero when any unit fails validation. + While this is technically a bugfix that is a 🛠️ breaking change in behavior, maintainers have opted to release this as part of a patch release, as it's what most users expect from the command, it's how the command is documented, and avoiding the breaking change is fairly simple: + terragrunt hcl validate || true + We are also trying to reduce the number of minor releases on the road to 1.0 to make it easier to focus on the big changes that require significant adjustment in usage of Terragrunt, and want to make sure that users take special note of breaking removal of deprecated functionality. + What's Changed + - feat: Expanding CAS support for OpenTofu/Terraform source clones by @yhakbar in #4436 + - fix: Setting correct exit code for hcl validate by @yhakbar in #4290 + - docs: Updating report experiment docs by @yhakbar in #4452 + - docs: Fixing some 404s reported by @yhakbar in #4467 + - chore: Addressing review feedback from #4436 by @yhakbar in #4472 + - chore: Adding EnsureRun method by @yhakbar in #4453 + - chore: Adding AJ as CODEOWNER by @yhakbar in #4458 + Full Changelog: v0.82.0...v0.82.1 +ReleaseNotesUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v0.82.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/gruntwork-io/terragrunt/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.82.1/Gruntwork.Terragrunt.yaml b/manifests/g/Gruntwork/Terragrunt/0.82.1/Gruntwork.Terragrunt.yaml new file mode 100644 index 0000000000000..3511b466802a3 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.82.1/Gruntwork.Terragrunt.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: Gruntwork.Terragrunt +PackageVersion: 0.82.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.82.2/Gruntwork.Terragrunt.installer.yaml b/manifests/g/Gruntwork/Terragrunt/0.82.2/Gruntwork.Terragrunt.installer.yaml new file mode 100644 index 0000000000000..aa9c32326d9ab --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.82.2/Gruntwork.Terragrunt.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Gruntwork.Terragrunt +PackageVersion: 0.82.2 +InstallerType: portable +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: terragrunt.exe + PortableCommandAlias: terragrunt +Commands: +- terragrunt +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v0.82.2/terragrunt_windows_386.exe + InstallerSha256: FEC90F23683D1D25B99534E87AD468469C9B4900BFF198DC6EB7F62FEFEDBD3B +- Architecture: x64 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v0.82.2/terragrunt_windows_amd64.exe + InstallerSha256: B1C14A072DBA9DE8F8E805A2F3A7A71D86D0EA736292D917BF39E4A1F7559353 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.82.2/Gruntwork.Terragrunt.locale.en-US.yaml b/manifests/g/Gruntwork/Terragrunt/0.82.2/Gruntwork.Terragrunt.locale.en-US.yaml new file mode 100644 index 0000000000000..ce05d80b98961 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.82.2/Gruntwork.Terragrunt.locale.en-US.yaml @@ -0,0 +1,53 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Gruntwork.Terragrunt +PackageVersion: 0.82.2 +PackageLocale: en-US +Publisher: Gruntwork +PublisherUrl: https://terragrunt.gruntwork.io/ +PublisherSupportUrl: https://terragrunt.gruntwork.io/docs/community/support +PrivacyUrl: https://gruntwork.io/legal/privacy-policy +PackageName: Terragrunt +PackageUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v0.68.9 +License: MIT +LicenseUrl: https://github.com/gruntwork-io/terragrunt/blob/HEAD/LICENSE.txt +Copyright: © 2024 Gruntwork, Inc. All rights reserved. +ShortDescription: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Description: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Tags: +- IaC +- Infrastructure as Code +- Terraform +- Terraform Wrapper +- terragrunt +ReleaseNotes: |- + 🐛 Bug Fixes + get_terragrunt_dir returns appropriate directory + The get_terragrunt_dir() HCL function now returns the expected stack directory containing a terragrunt.stack.hcl when used in a terragrunt.stack.hcl file. + # terragrunt.stack.hcl + unit "unit_a" { + source = "../../unit_a" + path = "unit_a" + values = { + terragrunt_dir = get_terragrunt_dir() + } + } + non-git default templates supported for Catalog/Scaffold + A bug in how the default_template attribute of the catalog configuration block worked resulted in a requirement that the default template be a Git repository. That bug has been resolved, removing the restriction. + catalog { + urls = ["../local-catalog"] + default_template = "../not-a-git-repo" + } + What's Changed + - fix get_terragrunt_dir when using stack by @james03160927 in #4443 + - fix: Support non-git templates for Catalog/Scaffold by @yhakbar in #4474 + - build(deps): bump github.com/labstack/echo/v4 from 4.13.3 to 4.13.4 by @dependabot in #4456 + - build(deps): bump github.com/gruntwork-io/terratest from 0.49.0 to 0.50.0 by @dependabot in #4457 + Full Changelog: v0.82.1...v0.82.2 +ReleaseNotesUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v0.82.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/gruntwork-io/terragrunt/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.82.2/Gruntwork.Terragrunt.yaml b/manifests/g/Gruntwork/Terragrunt/0.82.2/Gruntwork.Terragrunt.yaml new file mode 100644 index 0000000000000..960e0a7b9fa71 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.82.2/Gruntwork.Terragrunt.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: Gruntwork.Terragrunt +PackageVersion: 0.82.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.82.3/Gruntwork.Terragrunt.installer.yaml b/manifests/g/Gruntwork/Terragrunt/0.82.3/Gruntwork.Terragrunt.installer.yaml new file mode 100644 index 0000000000000..c3b7ee4e70062 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.82.3/Gruntwork.Terragrunt.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Gruntwork.Terragrunt +PackageVersion: 0.82.3 +InstallerType: portable +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: terragrunt.exe + PortableCommandAlias: terragrunt +Commands: +- terragrunt +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v0.82.3/terragrunt_windows_386.exe + InstallerSha256: 12BB09D685C6C97D7AB600B2413A2D42A80A6B4F6CB18164EE4692D6DDE0A29A +- Architecture: x64 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v0.82.3/terragrunt_windows_amd64.exe + InstallerSha256: 93FF19DC729516D0EFD36876774613BCE75F32EBA69DB507E59D005B45D4F877 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.82.3/Gruntwork.Terragrunt.locale.en-US.yaml b/manifests/g/Gruntwork/Terragrunt/0.82.3/Gruntwork.Terragrunt.locale.en-US.yaml new file mode 100644 index 0000000000000..d1eccc67f08ce --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.82.3/Gruntwork.Terragrunt.locale.en-US.yaml @@ -0,0 +1,57 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Gruntwork.Terragrunt +PackageVersion: 0.82.3 +PackageLocale: en-US +Publisher: Gruntwork +PublisherUrl: https://terragrunt.gruntwork.io/ +PublisherSupportUrl: https://terragrunt.gruntwork.io/docs/community/support +PrivacyUrl: https://gruntwork.io/legal/privacy-policy +PackageName: Terragrunt +PackageUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v0.68.9 +License: MIT +LicenseUrl: https://github.com/gruntwork-io/terragrunt/blob/HEAD/LICENSE.txt +Copyright: © 2024 Gruntwork, Inc. All rights reserved. +ShortDescription: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Description: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Tags: +- IaC +- Infrastructure as Code +- Terraform +- Terraform Wrapper +- terragrunt +ReleaseNotes: |- + 🧪 Experiments Added + Introduction of the auto-provider-cache-dir experiment + The new auto-provider-cache-dir experiment has been added to automatically configure OpenTofu provider caching when certain conditions are met: + - You are using OpenTofu + - You are using a version of OpenTofu >= 1.10 + This leverages recent improvements in how OpenTofu handles provider caching to allow for safe concurrent access to provider plugins in OpenTofu 1.10. + In micro-benchmarks, the native provider cache directory out-performs the Provider Cache Server, as the overhead of starting and running the provider cache server is eliminated. + Screenshot 2025-06-25 at 12 38 05 PM + Once generally available, this feature will be enabled by default, automatically providing performance improvements to Terragrunt users using OpenTofu >= 1.10. If you are currently using the Provider Cache Server, you are advised to experiment with this feature, and share your feedback. + You can learn more about the feature in the dedicated feature docs, including a comparison with the Provider Cache Server, so you can learn if limitations in how the native OpenTofu provider cache directory will result in a requirement to continue using the Provider Cache Server going forward. + Special thanks to @cam72cam for coordinating with us to get this long-awaited feature supported in OpenTofu to meet the needs of the IaC community. + ✨ New Features + --version-manager-file-name Flag Added + During a run --all, Terragrunt memoizes the version of OpenTofu/Terraform being run to determine if version constraints are being satisfied, without doing unnecessary work to repeatedly check the version of OpenTofu/Terraform being run in each directory. + To ensure that users using tool managers are able to leverage different versions of OpenTofu/Terraform in different directories, the cache key for this memoization includes calculations based on common version manager tools. + By default, the following are detected: + - .terraform-version + - .tool-versions + - .mise.toml + - mise.toml + To support the usage of any arbitrary tool manager, a new --version-manager-file-name flag has been introduced to allow configurability over this list. + To learn more about --version-manager-file-name read the docs. + What's Changed + - feat: Adding auto provider cache dir experiment by @yhakbar in #4466 + - feat: add new --version-manager-file-name flag that allows users to overri… by @wakeful in #4415 + - docs: Adding docs for local state to the side with stacks by @yhakbar in #4477 + Full Changelog: v0.82.2...v0.82.3 +ReleaseNotesUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v0.82.3 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/gruntwork-io/terragrunt/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.82.3/Gruntwork.Terragrunt.yaml b/manifests/g/Gruntwork/Terragrunt/0.82.3/Gruntwork.Terragrunt.yaml new file mode 100644 index 0000000000000..a22d0cdd77425 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.82.3/Gruntwork.Terragrunt.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: Gruntwork.Terragrunt +PackageVersion: 0.82.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.82.4/Gruntwork.Terragrunt.installer.yaml b/manifests/g/Gruntwork/Terragrunt/0.82.4/Gruntwork.Terragrunt.installer.yaml new file mode 100644 index 0000000000000..5b275056e9828 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.82.4/Gruntwork.Terragrunt.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: Gruntwork.Terragrunt +PackageVersion: 0.82.4 +InstallerType: portable +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: terragrunt.exe + PortableCommandAlias: terragrunt +Commands: +- terragrunt +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v0.82.4/terragrunt_windows_386.exe + InstallerSha256: 12D7F3621E7183705E3F130660A41197C3338F6BB4347B39914198A1AE990371 +- Architecture: x64 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v0.82.4/terragrunt_windows_amd64.exe + InstallerSha256: D1FEA4F69A6FE8478C33DC658CEADB7F9DFCB7F1051DC6B128BBECF1EEE05BDE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.82.4/Gruntwork.Terragrunt.locale.en-US.yaml b/manifests/g/Gruntwork/Terragrunt/0.82.4/Gruntwork.Terragrunt.locale.en-US.yaml new file mode 100644 index 0000000000000..ea397f65731a2 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.82.4/Gruntwork.Terragrunt.locale.en-US.yaml @@ -0,0 +1,54 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Gruntwork.Terragrunt +PackageVersion: 0.82.4 +PackageLocale: en-US +Publisher: Gruntwork +PublisherUrl: https://terragrunt.gruntwork.io/ +PublisherSupportUrl: https://terragrunt.gruntwork.io/docs/community/support +PrivacyUrl: https://gruntwork.io/legal/privacy-policy +PackageName: Terragrunt +PackageUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v0.68.9 +License: MIT +LicenseUrl: https://github.com/gruntwork-io/terragrunt/blob/HEAD/LICENSE.txt +Copyright: © 2024 Gruntwork, Inc. All rights reserved. +ShortDescription: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Description: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Tags: +- IaC +- Infrastructure as Code +- Terraform +- Terraform Wrapper +- terragrunt +ReleaseNotes: |- + ✨ New Features + Support for OpenTofu 1.10 Native S3 Locking + The remote_state S3 backend now integrates natively with the OpenTofu 1.10 feature of state locking via S3 without the usage of DynamoDB using the new use_lockfile attribute. + # Configure OpenTofu/Terraform state to be stored in S3 with native S3 locking instead of DynamoDB. + # This uses S3 object conditional writes for state locking, which requires OpenTofu >= 1.10. + remote_state { + backend = "s3" + config = { + bucket = "my-tofu-state" + key = "${path_relative_to_include()}/tofu.tfstate" + region = "us-east-1" + encrypt = true + use_lockfile = true + } + } + In previous releases, if users wanted to integrate with this OpenTofu feature, they would have to use the generate attribute, which opts users out of more advanced features of Terragrunt remote state management like automatic provisioning of state resources. + By using the native attribute in config, users can retain the benefits of automatic backend bootstrapping in addition to native integration with the new OpenTofu feature. + You can learn more about backend configurations in the HCL docs. + What's Changed + - feat: Adding support for native state locking by @yhakbar in #4485 + - fix: resolve failing CAS & DAG tests by @wakeful in #4480 + - fix: Use a constant for min version of tofu for auto provider cache dir by @yhakbar in #4479 + - chore: update external dependencies by @wakeful in #4486 + Full Changelog: v0.82.3...v0.82.4 +ReleaseNotesUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v0.82.4 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/gruntwork-io/terragrunt/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.82.4/Gruntwork.Terragrunt.yaml b/manifests/g/Gruntwork/Terragrunt/0.82.4/Gruntwork.Terragrunt.yaml new file mode 100644 index 0000000000000..425521710fb6e --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.82.4/Gruntwork.Terragrunt.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: Gruntwork.Terragrunt +PackageVersion: 0.82.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.83.0/Gruntwork.Terragrunt.installer.yaml b/manifests/g/Gruntwork/Terragrunt/0.83.0/Gruntwork.Terragrunt.installer.yaml new file mode 100644 index 0000000000000..60ecb12854d2f --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.83.0/Gruntwork.Terragrunt.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: Gruntwork.Terragrunt +PackageVersion: 0.83.0 +InstallerType: portable +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: terragrunt.exe + PortableCommandAlias: terragrunt +Commands: +- terragrunt +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v0.83.0/terragrunt_windows_386.exe + InstallerSha256: E4F32D567B775D34B4E7965EB654CFAACB6698F9E985DA5328AFED3ADF5863B7 +- Architecture: x64 + InstallerUrl: https://github.com/gruntwork-io/terragrunt/releases/download/v0.83.0/terragrunt_windows_amd64.exe + InstallerSha256: 99B35A84C9354E896FE744274CF3834B6E455770CA3A39ABB6B7AF81C34928DC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.83.0/Gruntwork.Terragrunt.locale.en-US.yaml b/manifests/g/Gruntwork/Terragrunt/0.83.0/Gruntwork.Terragrunt.locale.en-US.yaml new file mode 100644 index 0000000000000..2b13a6a0f7ca0 --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.83.0/Gruntwork.Terragrunt.locale.en-US.yaml @@ -0,0 +1,53 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Gruntwork.Terragrunt +PackageVersion: 0.83.0 +PackageLocale: en-US +Publisher: Gruntwork +PublisherUrl: https://terragrunt.gruntwork.io/ +PublisherSupportUrl: https://terragrunt.gruntwork.io/docs/community/support +PrivacyUrl: https://gruntwork.io/legal/privacy-policy +PackageName: Terragrunt +PackageUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v0.68.9 +License: MIT +LicenseUrl: https://github.com/gruntwork-io/terragrunt/blob/HEAD/LICENSE.txt +Copyright: © 2024 Gruntwork, Inc. All rights reserved. +ShortDescription: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Description: Terragrunt is a thin wrapper for Terraform that provides extra tools for keeping your Terraform configurations DRY, working with multiple Terraform modules, and managing remote state. +Tags: +- IaC +- Infrastructure as Code +- Terraform +- Terraform Wrapper +- terragrunt +ReleaseNotes: |- + ✨ New Features + - Added initial implementation of runner-pool to improve unit apply performance. The feature can be enabled using the --experiment runner-pool flag. + RFC: #3629 + 🛠️ Breaking Changes + - Updated log messages to use "Unit" terminology instead of "Module" for improved clarity and consistency. + 🐛 Bug Fixes + - Fixed flaky tests related to the provider cache. + - Added explicit check for user-defined --tf-path flag. + - Updated Dockerfile to support Starlight documentation generation. + - Fixed incorrect lock file constraints generated by the Terragrunt Provider Cache. + - Fixed discovery of Terragrunt files in runner-pool, ensuring correct file resolution during execution. + What's Changed + - feat: Runner pool implementation by @denis256 in #4434 + - fix: Fixing TestProviderCache flake by @yhakbar in #4495 + - fix: Adding explicit check to see if user set --tf-path by @yhakbar in #4493 + - fix: Adjusting Dockerfile for Starlight docs by @yhakbar in #4496 + - fix: Fix lock file constraints generated by Terragrunt Provider Cache by @ajax-ryzhyi-r in #4380 + - fix: Fixed discovery of Terragrunt files in runner-pool by @denis256 in #4491 + - docs: Updated documentation for fail-fast flag by @denis256 in #4503 + - docs: Updated docs to reference default terragrunt.values.hcl by @denis256 in #4490 + New Contributors + - @ajax-ryzhyi-r made their first contribution in #4380 + Full Changelog: v0.82.4...v0.83.0 +ReleaseNotesUrl: https://github.com/gruntwork-io/terragrunt/releases/tag/v0.83.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/gruntwork-io/terragrunt/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gruntwork/Terragrunt/0.83.0/Gruntwork.Terragrunt.yaml b/manifests/g/Gruntwork/Terragrunt/0.83.0/Gruntwork.Terragrunt.yaml new file mode 100644 index 0000000000000..ebf70e258e61d --- /dev/null +++ b/manifests/g/Gruntwork/Terragrunt/0.83.0/Gruntwork.Terragrunt.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: Gruntwork.Terragrunt +PackageVersion: 0.83.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/geeksoftwareGmbH/PDF24Creator/11.27.0/geeksoftwareGmbH.PDF24Creator.installer.yaml b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.27.0/geeksoftwareGmbH.PDF24Creator.installer.yaml new file mode 100644 index 0000000000000..3fc801a00c355 --- /dev/null +++ b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.27.0/geeksoftwareGmbH.PDF24Creator.installer.yaml @@ -0,0 +1,53 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: geeksoftwareGmbH.PDF24Creator +PackageVersion: 11.27.0 +InstallerLocale: en-US +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerType: wix + InstallerUrl: https://download.pdf24.org/pdf24-creator-11.27.0-x64.msi + InstallerSha256: 9F783E323BBB4EB5E070E5F0E5093A8657455F52A8C368F7BA3E56E83F28637D + ProductCode: '{89C370BC-FD38-4C03-8E17-1FD391472B97}' +- Architecture: x64 + InstallerType: inno + InstallerUrl: https://download.pdf24.org/pdf24-creator-11.27.0-x64.exe + InstallerSha256: 0530CE02587D6572CAAAAA4FA59FC4959A3CF2AB14D43E35315A367C79CD5EA6 + InstallerSwitches: + Custom: /NOUPDATE /NORESTART + AppsAndFeaturesEntries: + - Publisher: PDF24.org + ProductCode: '{81A6F461-0DBA-4F12-B56F-0E977EC10576}_is1' +- Architecture: x86 + InstallerType: wix + InstallerUrl: https://download.pdf24.org/pdf24-creator-11.27.0-x86.msi + InstallerSha256: 667FCE28FA135E025975643FD0C91A928B991BFCA9304EC4494EC9F46A82D045 + ProductCode: '{87E77ADF-26E7-4CE2-BDC7-DB5495672017}' +- Architecture: x86 + InstallerType: inno + InstallerUrl: https://download.pdf24.org/pdf24-creator-11.27.0-x86.exe + InstallerSha256: 97115999E6E22B2F0E7D16D2C9E5C0C9B2C5FF687D57C67E272BAC9F6F6C4B58 + InstallerSwitches: + Custom: /NOUPDATE /NORESTART + AppsAndFeaturesEntries: + - Publisher: PDF24.org + ProductCode: '{81A6F461-0DBA-4F12-B56F-0E977EC10576}_is1' +- Architecture: arm64 + InstallerType: wix + InstallerUrl: https://download.pdf24.org/pdf24-creator-11.27.0-arm64.msi + InstallerSha256: 2481F18878F54EDD5C9734839BFF73A8E20D1371AAC1BBD01EE4A09D98F287EC + ProductCode: '{B7778724-A8AE-4C3C-A08F-A9DD259328B9}' +- Architecture: arm64 + InstallerType: inno + InstallerUrl: https://download.pdf24.org/pdf24-creator-11.27.0-arm64.exe + InstallerSha256: 53715B62C33432258489F0B422B9210A65AB4249CA6843922CCB7DC04F7D1B85 + InstallerSwitches: + Custom: /NOUPDATE /NORESTART + AppsAndFeaturesEntries: + - Publisher: PDF24.org + ProductCode: '{81A6F461-0DBA-4F12-B56F-0E977EC10576}_is1' +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/geeksoftwareGmbH/PDF24Creator/11.27.0/geeksoftwareGmbH.PDF24Creator.locale.de-DE.yaml b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.27.0/geeksoftwareGmbH.PDF24Creator.locale.de-DE.yaml new file mode 100644 index 0000000000000..c89c635d79ee3 --- /dev/null +++ b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.27.0/geeksoftwareGmbH.PDF24Creator.locale.de-DE.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: geeksoftwareGmbH.PDF24Creator +PackageVersion: 11.27.0 +PackageLocale: de-DE +Publisher: geek software GmbH +PublisherUrl: https://www.pdf24.org/de/ +PublisherSupportUrl: https://help.pdf24.org/de/ +PrivacyUrl: https://www.pdf24.org/de/privacy-policy +PackageName: PDF24 Creator +License: Proprietary +LicenseUrl: https://www.pdf24.org/de/terms-of-use +ShortDescription: Eine kostenlose und benutzerfreundliche PDF Lösung mit vielen Funktionen +Tags: +- pdf +- pdf-creator +- pdf-editor +- pdf-printer +- pdf-reader +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/g/geeksoftwareGmbH/PDF24Creator/11.27.0/geeksoftwareGmbH.PDF24Creator.locale.en-US.yaml b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.27.0/geeksoftwareGmbH.PDF24Creator.locale.en-US.yaml new file mode 100644 index 0000000000000..64d4d0f68f575 --- /dev/null +++ b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.27.0/geeksoftwareGmbH.PDF24Creator.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: geeksoftwareGmbH.PDF24Creator +PackageVersion: 11.27.0 +PackageLocale: en-US +Publisher: geek software GmbH +PublisherUrl: https://www.pdf24.org/en/ +PublisherSupportUrl: https://help.pdf24.org/en/ +PrivacyUrl: https://www.pdf24.org/en/privacy-policy +PackageName: PDF24 Creator +License: Proprietary +LicenseUrl: https://www.pdf24.org/en/terms-of-use +ShortDescription: A free and easy to use PDF solution with many features +Moniker: pdf24 +Tags: +- pdf +- pdf-creator +- pdf-editor +- pdf-printer +- pdf-reader +Documentations: +- DocumentLabel: PDF24 Creator 11 Manual + DocumentUrl: https://creator.pdf24.org/manual/11/ +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/geeksoftwareGmbH/PDF24Creator/11.27.0/geeksoftwareGmbH.PDF24Creator.yaml b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.27.0/geeksoftwareGmbH.PDF24Creator.yaml new file mode 100644 index 0000000000000..32c5eb9f61ca6 --- /dev/null +++ b/manifests/g/geeksoftwareGmbH/PDF24Creator/11.27.0/geeksoftwareGmbH.PDF24Creator.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: geeksoftwareGmbH.PDF24Creator +PackageVersion: 11.27.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5747/ggml.llamacpp.installer.yaml b/manifests/g/ggml/llamacpp/b5747/ggml.llamacpp.installer.yaml new file mode 100644 index 0000000000000..5e853ad84b36a --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5747/ggml.llamacpp.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5747 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-batched-bench.exe +- RelativeFilePath: llama-bench.exe +- RelativeFilePath: llama-cli.exe +- RelativeFilePath: llama-gguf-split.exe +- RelativeFilePath: llama-imatrix.exe +- RelativeFilePath: llama-mtmd-cli.exe +- RelativeFilePath: llama-perplexity.exe +- RelativeFilePath: llama-quantize.exe +- RelativeFilePath: llama-run.exe +- RelativeFilePath: llama-server.exe +- RelativeFilePath: llama-tokenize.exe +- RelativeFilePath: llama-tts.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-24 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ggml-org/llama.cpp/releases/download/b5747/llama-b5747-bin-win-vulkan-x64.zip + InstallerSha256: AD5CFDD54E45EBAD4663345ADAAB24F6D867CB4042DE0E87F8EF8354B0F72929 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5747/ggml.llamacpp.locale.en-US.yaml b/manifests/g/ggml/llamacpp/b5747/ggml.llamacpp.locale.en-US.yaml new file mode 100644 index 0000000000000..da644deb811aa --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5747/ggml.llamacpp.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5747 +PackageLocale: en-US +Publisher: ggml +PublisherUrl: https://github.com/ggml-org +PublisherSupportUrl: https://github.com/ggml-org/llama.cpp/issues +PackageName: llama.cpp +PackageUrl: https://github.com/ggml-org/llama.cpp +License: MIT +LicenseUrl: https://github.com/ggml-org/llama.cpp/blob/HEAD/LICENSE +ShortDescription: LLM inference in C/C++ +Tags: +- ggml +- llama +ReleaseNotesUrl: https://github.com/ggml-org/llama.cpp/releases/tag/b5747 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ggml-org/llama.cpp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5747/ggml.llamacpp.yaml b/manifests/g/ggml/llamacpp/b5747/ggml.llamacpp.yaml new file mode 100644 index 0000000000000..42e639df2d4ab --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5747/ggml.llamacpp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5747 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5753/ggml.llamacpp.installer.yaml b/manifests/g/ggml/llamacpp/b5753/ggml.llamacpp.installer.yaml new file mode 100644 index 0000000000000..c714cd423c99b --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5753/ggml.llamacpp.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5753 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-batched-bench.exe +- RelativeFilePath: llama-bench.exe +- RelativeFilePath: llama-cli.exe +- RelativeFilePath: llama-gguf-split.exe +- RelativeFilePath: llama-imatrix.exe +- RelativeFilePath: llama-mtmd-cli.exe +- RelativeFilePath: llama-perplexity.exe +- RelativeFilePath: llama-quantize.exe +- RelativeFilePath: llama-run.exe +- RelativeFilePath: llama-server.exe +- RelativeFilePath: llama-tokenize.exe +- RelativeFilePath: llama-tts.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-24 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ggml-org/llama.cpp/releases/download/b5753/llama-b5753-bin-win-vulkan-x64.zip + InstallerSha256: 187049B4015E16ECF13883886DC36740259797AD397126611610AE17A5958009 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5753/ggml.llamacpp.locale.en-US.yaml b/manifests/g/ggml/llamacpp/b5753/ggml.llamacpp.locale.en-US.yaml new file mode 100644 index 0000000000000..6b7a1131e3ae1 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5753/ggml.llamacpp.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5753 +PackageLocale: en-US +Publisher: ggml +PublisherUrl: https://github.com/ggml-org +PublisherSupportUrl: https://github.com/ggml-org/llama.cpp/issues +PackageName: llama.cpp +PackageUrl: https://github.com/ggml-org/llama.cpp +License: MIT +LicenseUrl: https://github.com/ggml-org/llama.cpp/blob/HEAD/LICENSE +ShortDescription: LLM inference in C/C++ +Tags: +- ggml +- llama +ReleaseNotesUrl: https://github.com/ggml-org/llama.cpp/releases/tag/b5753 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ggml-org/llama.cpp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5753/ggml.llamacpp.yaml b/manifests/g/ggml/llamacpp/b5753/ggml.llamacpp.yaml new file mode 100644 index 0000000000000..4287ade9a020e --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5753/ggml.llamacpp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5753 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5757/ggml.llamacpp.installer.yaml b/manifests/g/ggml/llamacpp/b5757/ggml.llamacpp.installer.yaml new file mode 100644 index 0000000000000..d42b09ae45a10 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5757/ggml.llamacpp.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5757 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-batched-bench.exe +- RelativeFilePath: llama-bench.exe +- RelativeFilePath: llama-cli.exe +- RelativeFilePath: llama-gguf-split.exe +- RelativeFilePath: llama-imatrix.exe +- RelativeFilePath: llama-mtmd-cli.exe +- RelativeFilePath: llama-perplexity.exe +- RelativeFilePath: llama-quantize.exe +- RelativeFilePath: llama-run.exe +- RelativeFilePath: llama-server.exe +- RelativeFilePath: llama-tokenize.exe +- RelativeFilePath: llama-tts.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-26 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ggml-org/llama.cpp/releases/download/b5757/llama-b5757-bin-win-vulkan-x64.zip + InstallerSha256: 502FBECA209BCCAAD4951F23F5FBA36ACCD5512628FA4BBA468F8E5919DFC206 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5757/ggml.llamacpp.locale.en-US.yaml b/manifests/g/ggml/llamacpp/b5757/ggml.llamacpp.locale.en-US.yaml new file mode 100644 index 0000000000000..05604f114b2e6 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5757/ggml.llamacpp.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5757 +PackageLocale: en-US +Publisher: ggml +PublisherUrl: https://github.com/ggml-org +PublisherSupportUrl: https://github.com/ggml-org/llama.cpp/issues +PackageName: llama.cpp +PackageUrl: https://github.com/ggml-org/llama.cpp +License: MIT +LicenseUrl: https://github.com/ggml-org/llama.cpp/blob/HEAD/LICENSE +ShortDescription: LLM inference in C/C++ +Tags: +- ggml +- llama +ReleaseNotesUrl: https://github.com/ggml-org/llama.cpp/releases/tag/b5757 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ggml-org/llama.cpp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5757/ggml.llamacpp.yaml b/manifests/g/ggml/llamacpp/b5757/ggml.llamacpp.yaml new file mode 100644 index 0000000000000..89810a12cd6d9 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5757/ggml.llamacpp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5757 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5760/ggml.llamacpp.installer.yaml b/manifests/g/ggml/llamacpp/b5760/ggml.llamacpp.installer.yaml new file mode 100644 index 0000000000000..3fc924ba1318b --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5760/ggml.llamacpp.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5760 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-batched-bench.exe +- RelativeFilePath: llama-bench.exe +- RelativeFilePath: llama-cli.exe +- RelativeFilePath: llama-gguf-split.exe +- RelativeFilePath: llama-imatrix.exe +- RelativeFilePath: llama-mtmd-cli.exe +- RelativeFilePath: llama-perplexity.exe +- RelativeFilePath: llama-quantize.exe +- RelativeFilePath: llama-run.exe +- RelativeFilePath: llama-server.exe +- RelativeFilePath: llama-tokenize.exe +- RelativeFilePath: llama-tts.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-26 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ggml-org/llama.cpp/releases/download/b5760/llama-b5760-bin-win-vulkan-x64.zip + InstallerSha256: E5454A7F478CF227D7C3C8A905ED87C1F487D4909DEE1F04C3683332A1E744CE +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5760/ggml.llamacpp.locale.en-US.yaml b/manifests/g/ggml/llamacpp/b5760/ggml.llamacpp.locale.en-US.yaml new file mode 100644 index 0000000000000..1c3ce75499c63 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5760/ggml.llamacpp.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5760 +PackageLocale: en-US +Publisher: ggml +PublisherUrl: https://github.com/ggml-org +PublisherSupportUrl: https://github.com/ggml-org/llama.cpp/issues +PackageName: llama.cpp +PackageUrl: https://github.com/ggml-org/llama.cpp +License: MIT +LicenseUrl: https://github.com/ggml-org/llama.cpp/blob/HEAD/LICENSE +ShortDescription: LLM inference in C/C++ +Tags: +- ggml +- llama +ReleaseNotesUrl: https://github.com/ggml-org/llama.cpp/releases/tag/b5760 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ggml-org/llama.cpp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5760/ggml.llamacpp.yaml b/manifests/g/ggml/llamacpp/b5760/ggml.llamacpp.yaml new file mode 100644 index 0000000000000..27ae403939e6f --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5760/ggml.llamacpp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5760 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5774/ggml.llamacpp.installer.yaml b/manifests/g/ggml/llamacpp/b5774/ggml.llamacpp.installer.yaml new file mode 100644 index 0000000000000..23caeb92b729f --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5774/ggml.llamacpp.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5774 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-batched-bench.exe +- RelativeFilePath: llama-bench.exe +- RelativeFilePath: llama-cli.exe +- RelativeFilePath: llama-gguf-split.exe +- RelativeFilePath: llama-imatrix.exe +- RelativeFilePath: llama-mtmd-cli.exe +- RelativeFilePath: llama-perplexity.exe +- RelativeFilePath: llama-quantize.exe +- RelativeFilePath: llama-run.exe +- RelativeFilePath: llama-server.exe +- RelativeFilePath: llama-tokenize.exe +- RelativeFilePath: llama-tts.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-28 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ggml-org/llama.cpp/releases/download/b5774/llama-b5774-bin-win-vulkan-x64.zip + InstallerSha256: A6449E0A911B38A0A8949FEEF75BB5D8EB673ACEFE3EB0F26145F07FA4A6F53B +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5774/ggml.llamacpp.locale.en-US.yaml b/manifests/g/ggml/llamacpp/b5774/ggml.llamacpp.locale.en-US.yaml new file mode 100644 index 0000000000000..58b2574cfd52b --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5774/ggml.llamacpp.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5774 +PackageLocale: en-US +Publisher: ggml +PublisherUrl: https://github.com/ggml-org +PublisherSupportUrl: https://github.com/ggml-org/llama.cpp/issues +PackageName: llama.cpp +PackageUrl: https://github.com/ggml-org/llama.cpp +License: MIT +LicenseUrl: https://github.com/ggml-org/llama.cpp/blob/HEAD/LICENSE +ShortDescription: LLM inference in C/C++ +Tags: +- ggml +- llama +ReleaseNotesUrl: https://github.com/ggml-org/llama.cpp/releases/tag/b5774 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ggml-org/llama.cpp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5774/ggml.llamacpp.yaml b/manifests/g/ggml/llamacpp/b5774/ggml.llamacpp.yaml new file mode 100644 index 0000000000000..69fc56a0534f7 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5774/ggml.llamacpp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5774 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5780/ggml.llamacpp.installer.yaml b/manifests/g/ggml/llamacpp/b5780/ggml.llamacpp.installer.yaml new file mode 100644 index 0000000000000..c82fdebcaf74d --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5780/ggml.llamacpp.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5780 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-batched-bench.exe +- RelativeFilePath: llama-bench.exe +- RelativeFilePath: llama-cli.exe +- RelativeFilePath: llama-gguf-split.exe +- RelativeFilePath: llama-imatrix.exe +- RelativeFilePath: llama-mtmd-cli.exe +- RelativeFilePath: llama-perplexity.exe +- RelativeFilePath: llama-quantize.exe +- RelativeFilePath: llama-run.exe +- RelativeFilePath: llama-server.exe +- RelativeFilePath: llama-tokenize.exe +- RelativeFilePath: llama-tts.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-29 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ggml-org/llama.cpp/releases/download/b5780/llama-b5780-bin-win-vulkan-x64.zip + InstallerSha256: 64745AABC71D851DAB671654A8188DBD54BB18D7003505E5465FF20AE420C6E5 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5780/ggml.llamacpp.locale.en-US.yaml b/manifests/g/ggml/llamacpp/b5780/ggml.llamacpp.locale.en-US.yaml new file mode 100644 index 0000000000000..d2cfe2b1edb8a --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5780/ggml.llamacpp.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5780 +PackageLocale: en-US +Publisher: ggml +PublisherUrl: https://github.com/ggml-org +PublisherSupportUrl: https://github.com/ggml-org/llama.cpp/issues +PackageName: llama.cpp +PackageUrl: https://github.com/ggml-org/llama.cpp +License: MIT +LicenseUrl: https://github.com/ggml-org/llama.cpp/blob/HEAD/LICENSE +ShortDescription: LLM inference in C/C++ +Tags: +- ggml +- llama +ReleaseNotesUrl: https://github.com/ggml-org/llama.cpp/releases/tag/b5780 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ggml-org/llama.cpp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5780/ggml.llamacpp.yaml b/manifests/g/ggml/llamacpp/b5780/ggml.llamacpp.yaml new file mode 100644 index 0000000000000..1c68d5ed85bdc --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5780/ggml.llamacpp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5780 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5787/ggml.llamacpp.installer.yaml b/manifests/g/ggml/llamacpp/b5787/ggml.llamacpp.installer.yaml new file mode 100644 index 0000000000000..5c43ee0dd1634 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5787/ggml.llamacpp.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5787 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-batched-bench.exe +- RelativeFilePath: llama-bench.exe +- RelativeFilePath: llama-cli.exe +- RelativeFilePath: llama-gguf-split.exe +- RelativeFilePath: llama-imatrix.exe +- RelativeFilePath: llama-mtmd-cli.exe +- RelativeFilePath: llama-perplexity.exe +- RelativeFilePath: llama-quantize.exe +- RelativeFilePath: llama-run.exe +- RelativeFilePath: llama-server.exe +- RelativeFilePath: llama-tokenize.exe +- RelativeFilePath: llama-tts.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-06-30 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ggml-org/llama.cpp/releases/download/b5787/llama-b5787-bin-win-vulkan-x64.zip + InstallerSha256: 410F1B8BA9D529FDE6121D47234D466BD3BEC52B2F8A9DAF55BC76D35FBBB6C5 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5787/ggml.llamacpp.locale.en-US.yaml b/manifests/g/ggml/llamacpp/b5787/ggml.llamacpp.locale.en-US.yaml new file mode 100644 index 0000000000000..0575747830151 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5787/ggml.llamacpp.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5787 +PackageLocale: en-US +Publisher: ggml +PublisherUrl: https://github.com/ggml-org +PublisherSupportUrl: https://github.com/ggml-org/llama.cpp/issues +PackageName: llama.cpp +PackageUrl: https://github.com/ggml-org/llama.cpp +License: MIT +LicenseUrl: https://github.com/ggml-org/llama.cpp/blob/HEAD/LICENSE +ShortDescription: LLM inference in C/C++ +Tags: +- ggml +- llama +ReleaseNotesUrl: https://github.com/ggml-org/llama.cpp/releases/tag/b5787 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ggml-org/llama.cpp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5787/ggml.llamacpp.yaml b/manifests/g/ggml/llamacpp/b5787/ggml.llamacpp.yaml new file mode 100644 index 0000000000000..53a2fc0ad3553 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5787/ggml.llamacpp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5787 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5815/ggml.llamacpp.installer.yaml b/manifests/g/ggml/llamacpp/b5815/ggml.llamacpp.installer.yaml new file mode 100644 index 0000000000000..34cc673ca564e --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5815/ggml.llamacpp.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5815 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-batched-bench.exe +- RelativeFilePath: llama-bench.exe +- RelativeFilePath: llama-cli.exe +- RelativeFilePath: llama-gguf-split.exe +- RelativeFilePath: llama-imatrix.exe +- RelativeFilePath: llama-mtmd-cli.exe +- RelativeFilePath: llama-perplexity.exe +- RelativeFilePath: llama-quantize.exe +- RelativeFilePath: llama-run.exe +- RelativeFilePath: llama-server.exe +- RelativeFilePath: llama-tokenize.exe +- RelativeFilePath: llama-tts.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-07-03 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ggml-org/llama.cpp/releases/download/b5815/llama-b5815-bin-win-vulkan-x64.zip + InstallerSha256: 9BA12070DED3AE038689B9110A4EB0D8F7FF08459758A32D8BE8A602D0615825 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5815/ggml.llamacpp.locale.en-US.yaml b/manifests/g/ggml/llamacpp/b5815/ggml.llamacpp.locale.en-US.yaml new file mode 100644 index 0000000000000..c779179e65d7f --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5815/ggml.llamacpp.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5815 +PackageLocale: en-US +Publisher: ggml +PublisherUrl: https://github.com/ggml-org +PublisherSupportUrl: https://github.com/ggml-org/llama.cpp/issues +PackageName: llama.cpp +PackageUrl: https://github.com/ggml-org/llama.cpp +License: MIT +LicenseUrl: https://github.com/ggml-org/llama.cpp/blob/HEAD/LICENSE +ShortDescription: LLM inference in C/C++ +Tags: +- ggml +- llama +ReleaseNotesUrl: https://github.com/ggml-org/llama.cpp/releases/tag/b5815 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ggml-org/llama.cpp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5815/ggml.llamacpp.yaml b/manifests/g/ggml/llamacpp/b5815/ggml.llamacpp.yaml new file mode 100644 index 0000000000000..b57f9ddb69d57 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5815/ggml.llamacpp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5815 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5833/ggml.llamacpp.installer.yaml b/manifests/g/ggml/llamacpp/b5833/ggml.llamacpp.installer.yaml new file mode 100644 index 0000000000000..aabe95867b9b8 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5833/ggml.llamacpp.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5833 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-batched-bench.exe +- RelativeFilePath: llama-bench.exe +- RelativeFilePath: llama-cli.exe +- RelativeFilePath: llama-gguf-split.exe +- RelativeFilePath: llama-imatrix.exe +- RelativeFilePath: llama-mtmd-cli.exe +- RelativeFilePath: llama-perplexity.exe +- RelativeFilePath: llama-quantize.exe +- RelativeFilePath: llama-run.exe +- RelativeFilePath: llama-server.exe +- RelativeFilePath: llama-tokenize.exe +- RelativeFilePath: llama-tts.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-07-05 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ggml-org/llama.cpp/releases/download/b5833/llama-b5833-bin-win-vulkan-x64.zip + InstallerSha256: 7B0B064EA5E6B11B5E3F47DFA247DF99283E5A8C26083DE2001E251908FE3AE7 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5833/ggml.llamacpp.locale.en-US.yaml b/manifests/g/ggml/llamacpp/b5833/ggml.llamacpp.locale.en-US.yaml new file mode 100644 index 0000000000000..2f0a5f7eaea38 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5833/ggml.llamacpp.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5833 +PackageLocale: en-US +Publisher: ggml +PublisherUrl: https://github.com/ggml-org +PublisherSupportUrl: https://github.com/ggml-org/llama.cpp/issues +PackageName: llama.cpp +PackageUrl: https://github.com/ggml-org/llama.cpp +License: MIT +LicenseUrl: https://github.com/ggml-org/llama.cpp/blob/HEAD/LICENSE +ShortDescription: LLM inference in C/C++ +Tags: +- ggml +- llama +ReleaseNotesUrl: https://github.com/ggml-org/llama.cpp/releases/tag/b5833 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ggml-org/llama.cpp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5833/ggml.llamacpp.yaml b/manifests/g/ggml/llamacpp/b5833/ggml.llamacpp.yaml new file mode 100644 index 0000000000000..5cb5b616e1bf2 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5833/ggml.llamacpp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5833 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5835/ggml.llamacpp.installer.yaml b/manifests/g/ggml/llamacpp/b5835/ggml.llamacpp.installer.yaml new file mode 100644 index 0000000000000..08b50de15af02 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5835/ggml.llamacpp.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5835 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-batched-bench.exe +- RelativeFilePath: llama-bench.exe +- RelativeFilePath: llama-cli.exe +- RelativeFilePath: llama-gguf-split.exe +- RelativeFilePath: llama-imatrix.exe +- RelativeFilePath: llama-mtmd-cli.exe +- RelativeFilePath: llama-perplexity.exe +- RelativeFilePath: llama-quantize.exe +- RelativeFilePath: llama-run.exe +- RelativeFilePath: llama-server.exe +- RelativeFilePath: llama-tokenize.exe +- RelativeFilePath: llama-tts.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-07-06 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ggml-org/llama.cpp/releases/download/b5835/llama-b5835-bin-win-vulkan-x64.zip + InstallerSha256: A52B2E19E980483533F30B01A3AB89DCA712A7946DE647DB936B67F20CE1E36B +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5835/ggml.llamacpp.locale.en-US.yaml b/manifests/g/ggml/llamacpp/b5835/ggml.llamacpp.locale.en-US.yaml new file mode 100644 index 0000000000000..9d32e6275f34c --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5835/ggml.llamacpp.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5835 +PackageLocale: en-US +Publisher: ggml +PublisherUrl: https://github.com/ggml-org +PublisherSupportUrl: https://github.com/ggml-org/llama.cpp/issues +PackageName: llama.cpp +PackageUrl: https://github.com/ggml-org/llama.cpp +License: MIT +LicenseUrl: https://github.com/ggml-org/llama.cpp/blob/HEAD/LICENSE +ShortDescription: LLM inference in C/C++ +Tags: +- ggml +- llama +ReleaseNotesUrl: https://github.com/ggml-org/llama.cpp/releases/tag/b5835 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ggml-org/llama.cpp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5835/ggml.llamacpp.yaml b/manifests/g/ggml/llamacpp/b5835/ggml.llamacpp.yaml new file mode 100644 index 0000000000000..b9d3b8207f8fd --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5835/ggml.llamacpp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5835 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5840/ggml.llamacpp.installer.yaml b/manifests/g/ggml/llamacpp/b5840/ggml.llamacpp.installer.yaml new file mode 100644 index 0000000000000..1a25566fbda63 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5840/ggml.llamacpp.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5840 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-batched-bench.exe +- RelativeFilePath: llama-bench.exe +- RelativeFilePath: llama-cli.exe +- RelativeFilePath: llama-gguf-split.exe +- RelativeFilePath: llama-imatrix.exe +- RelativeFilePath: llama-mtmd-cli.exe +- RelativeFilePath: llama-perplexity.exe +- RelativeFilePath: llama-quantize.exe +- RelativeFilePath: llama-run.exe +- RelativeFilePath: llama-server.exe +- RelativeFilePath: llama-tokenize.exe +- RelativeFilePath: llama-tts.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-07-08 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ggml-org/llama.cpp/releases/download/b5840/llama-b5840-bin-win-vulkan-x64.zip + InstallerSha256: C89CFE571083113B654D4BA7A8D1F2FC2CD8C1E83F90555C7A64E01F3BC0094F +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5840/ggml.llamacpp.locale.en-US.yaml b/manifests/g/ggml/llamacpp/b5840/ggml.llamacpp.locale.en-US.yaml new file mode 100644 index 0000000000000..8653d330f57f3 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5840/ggml.llamacpp.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5840 +PackageLocale: en-US +Publisher: ggml +PublisherUrl: https://github.com/ggml-org +PublisherSupportUrl: https://github.com/ggml-org/llama.cpp/issues +PackageName: llama.cpp +PackageUrl: https://github.com/ggml-org/llama.cpp +License: MIT +LicenseUrl: https://github.com/ggml-org/llama.cpp/blob/HEAD/LICENSE +ShortDescription: LLM inference in C/C++ +Tags: +- ggml +- llama +ReleaseNotesUrl: https://github.com/ggml-org/llama.cpp/releases/tag/b5840 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ggml-org/llama.cpp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5840/ggml.llamacpp.yaml b/manifests/g/ggml/llamacpp/b5840/ggml.llamacpp.yaml new file mode 100644 index 0000000000000..b83c0c3a73658 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5840/ggml.llamacpp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5840 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5849/ggml.llamacpp.installer.yaml b/manifests/g/ggml/llamacpp/b5849/ggml.llamacpp.installer.yaml new file mode 100644 index 0000000000000..d220689119d2a --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5849/ggml.llamacpp.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5849 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-batched-bench.exe +- RelativeFilePath: llama-bench.exe +- RelativeFilePath: llama-cli.exe +- RelativeFilePath: llama-gguf-split.exe +- RelativeFilePath: llama-imatrix.exe +- RelativeFilePath: llama-mtmd-cli.exe +- RelativeFilePath: llama-perplexity.exe +- RelativeFilePath: llama-quantize.exe +- RelativeFilePath: llama-run.exe +- RelativeFilePath: llama-server.exe +- RelativeFilePath: llama-tokenize.exe +- RelativeFilePath: llama-tts.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-07-08 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ggml-org/llama.cpp/releases/download/b5849/llama-b5849-bin-win-vulkan-x64.zip + InstallerSha256: C87ECA2BF975E5D5CC09FF01ECBC8EA1AA3E2D3A3164FA624997C6E86A924DF2 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5849/ggml.llamacpp.locale.en-US.yaml b/manifests/g/ggml/llamacpp/b5849/ggml.llamacpp.locale.en-US.yaml new file mode 100644 index 0000000000000..f6133f33c6f67 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5849/ggml.llamacpp.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5849 +PackageLocale: en-US +Publisher: ggml +PublisherUrl: https://github.com/ggml-org +PublisherSupportUrl: https://github.com/ggml-org/llama.cpp/issues +PackageName: llama.cpp +PackageUrl: https://github.com/ggml-org/llama.cpp +License: MIT +LicenseUrl: https://github.com/ggml-org/llama.cpp/blob/HEAD/LICENSE +ShortDescription: LLM inference in C/C++ +Tags: +- ggml +- llama +ReleaseNotesUrl: https://github.com/ggml-org/llama.cpp/releases/tag/b5849 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ggml-org/llama.cpp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/ggml/llamacpp/b5849/ggml.llamacpp.yaml b/manifests/g/ggml/llamacpp/b5849/ggml.llamacpp.yaml new file mode 100644 index 0000000000000..f66d0950c209e --- /dev/null +++ b/manifests/g/ggml/llamacpp/b5849/ggml.llamacpp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b5849 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/g/glzr-io/glazewm/3.9.1/glzr-io.glazewm.installer.yaml b/manifests/g/glzr-io/glazewm/3.9.1/glzr-io.glazewm.installer.yaml new file mode 100644 index 0000000000000..f3899806ea80b --- /dev/null +++ b/manifests/g/glzr-io/glazewm/3.9.1/glzr-io.glazewm.installer.yaml @@ -0,0 +1,35 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: glzr-io.glazewm +PackageVersion: 3.9.1 +InstallerType: burn +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: '{0F9E07AA-23F7-4975-9F97-71F0F758D5B7}' +ReleaseDate: 2025-06-18 +AppsAndFeaturesEntries: +- ProductCode: '{2740CC4A-24D6-4588-9057-14616378AD66}' + UpgradeCode: '{F57ADFF3-4521-4A6B-87B1-D34A7D9BAE1E}' + InstallerType: burn +- ProductCode: '{2740CC4A-24D6-4588-9057-14616378AD66}' + UpgradeCode: '{EF0F849B-D90D-4647-BB26-730C6FCE5F9E}' + InstallerType: wix +- DisplayName: Zebar + DisplayVersion: 3.1.1 + ProductCode: '{2740CC4A-24D6-4588-9057-14616378AD66}' + UpgradeCode: '{570D3DD8-FDBD-5B5C-A519-2FF34BA60B33}' + InstallerType: wix +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/glzr-io/glazewm/releases/download/v3.9.1/glazewm-v3.9.1.exe + InstallerSha256: 6201E8F2A593BAE20425F117795E739130777F2E2B82A89187ABFB1752F73640 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/glzr-io/glazewm/3.9.1/glzr-io.glazewm.locale.en-US.yaml b/manifests/g/glzr-io/glazewm/3.9.1/glzr-io.glazewm.locale.en-US.yaml new file mode 100644 index 0000000000000..733dc12422680 --- /dev/null +++ b/manifests/g/glzr-io/glazewm/3.9.1/glzr-io.glazewm.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: glzr-io.glazewm +PackageVersion: 3.9.1 +PackageLocale: en-US +Publisher: Glzr Software Pte. Ltd. +PublisherUrl: https://github.com/glzr-io +PublisherSupportUrl: https://github.com/glzr-io/glazewm/issues +Author: glzr.io +PackageName: GlazeWM +PackageUrl: https://github.com/glzr-io/glazewm +License: GPL-3.0 +LicenseUrl: https://github.com/glzr-io/glazewm/blob/HEAD/LICENSE.md +Copyright: Copyright (c) Glzr Software Pte. Ltd.. All rights reserved. +ShortDescription: GlazeWM is a tiling window manager for Windows inspired by i3wm. +Description: GlazeWM lets you easily organize windows and adjust their layout on the fly by using keyboard-driven commands. +Tags: +- i3wm +- rust +- tiling-window-manager +- window-manager +- windows +ReleaseNotes: |- + 🐛 Bug fixes + - Fixed error with keep_alive workspaces that were bound to a specific monitor (#1102). + - Reverted rule for initializing WS_POPUP windows as floating (#1101). This was causing common apps like Steam, Telegram, and more to initialize as floating instead of tiling correctly. + 🛠️️ Internal changes + - Updated winget-releaser in Winget release workflow (#1098). + Big thanks to @vikingnope for contributing to this release 💛 + / @lars-berger +ReleaseNotesUrl: https://github.com/glzr-io/glazewm/releases/tag/v3.9.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/glzr-io/glazewm/3.9.1/glzr-io.glazewm.yaml b/manifests/g/glzr-io/glazewm/3.9.1/glzr-io.glazewm.yaml new file mode 100644 index 0000000000000..245bb8c8d7c8e --- /dev/null +++ b/manifests/g/glzr-io/glazewm/3.9.1/glzr-io.glazewm.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: glzr-io.glazewm +PackageVersion: 3.9.1 +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/g/gstreamerproject/gstreamer/1.26.3/gstreamerproject.gstreamer.installer.yaml b/manifests/g/gstreamerproject/gstreamer/1.26.3/gstreamerproject.gstreamer.installer.yaml new file mode 100644 index 0000000000000..86b8c19232702 --- /dev/null +++ b/manifests/g/gstreamerproject/gstreamer/1.26.3/gstreamerproject.gstreamer.installer.yaml @@ -0,0 +1,38 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: gstreamerproject.gstreamer +PackageVersion: 1.26.3 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x86 + InstallerUrl: https://gstreamer.freedesktop.org/data/pkg/windows/1.26.3/msvc/gstreamer-1.0-msvc-x86-1.26.3.msi + InstallerSha256: 4277FBA58078FAE5A68067F05FAB1408B7CD888B9C54A358B3D31A2455BDBC60 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 + ProductCode: '{2DF53323-3D7D-4163-863E-510FD9620A0B}' + AppsAndFeaturesEntries: + - DisplayName: GStreamer 1.0 (MSVC x86) + ProductCode: '{2DF53323-3D7D-4163-863E-510FD9620A0B}' + UpgradeCode: '{EBE0C791-D84E-4F7E-A4EB-18012A0E319D}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%/./gstreamer' +- Architecture: x64 + InstallerUrl: https://gstreamer.freedesktop.org/data/pkg/windows/1.26.3/msvc/gstreamer-1.0-msvc-x86_64-1.26.3.msi + InstallerSha256: 17FA6E6D3C9549D8DCDBAC9103C9DD0FAF72614B41344D1109DB87CF8CD84567 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + ProductCode: '{0E2B227F-0323-4BFE-B11D-B3FEEC1F0A4E}' + AppsAndFeaturesEntries: + - DisplayName: GStreamer 1.0 (MSVC x86_64) + ProductCode: '{0E2B227F-0323-4BFE-B11D-B3FEEC1F0A4E}' + UpgradeCode: '{C20A66DC-B249-4E6D-A68A-D0F836B2B3CF}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/./gstreamer' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/gstreamerproject/gstreamer/1.26.3/gstreamerproject.gstreamer.locale.en-US.yaml b/manifests/g/gstreamerproject/gstreamer/1.26.3/gstreamerproject.gstreamer.locale.en-US.yaml new file mode 100644 index 0000000000000..c7d49123ba3a6 --- /dev/null +++ b/manifests/g/gstreamerproject/gstreamer/1.26.3/gstreamerproject.gstreamer.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: gstreamerproject.gstreamer +PackageVersion: 1.26.3 +PackageLocale: en-US +Publisher: GStreamer Project +PublisherUrl: https://www.freedesktop.org/ +PublisherSupportUrl: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues +PrivacyUrl: https://www.freedesktop.org/wiki/PrivacyPolicy/ +PackageName: GStreamer +License: LGPL-2.1 +LicenseUrl: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/blob/HEAD/LICENSE +ShortDescription: GStreamer is a library for constructing graphs of media-handling components. +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://gstreamer.freedesktop.org/documentation/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/gstreamerproject/gstreamer/1.26.3/gstreamerproject.gstreamer.yaml b/manifests/g/gstreamerproject/gstreamer/1.26.3/gstreamerproject.gstreamer.yaml new file mode 100644 index 0000000000000..3944634963cf9 --- /dev/null +++ b/manifests/g/gstreamerproject/gstreamer/1.26.3/gstreamerproject.gstreamer.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: gstreamerproject.gstreamer +PackageVersion: 1.26.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.locale.en-US.yaml b/manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.locale.en-US.yaml deleted file mode 100644 index 0fcde43b1cf31..0000000000000 --- a/manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.locale.en-US.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# 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 - -PackageIdentifier: HDDGURU.HDDLLFTool -PackageVersion: "4.40" -PackageLocale: en-US -Publisher: HDDGURU -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 diff --git a/manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.locale.zh-CN.yaml b/manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.locale.zh-CN.yaml deleted file mode 100644 index 252c187c8fd0a..0000000000000 --- a/manifests/h/HDDGURU/HDDLLFTool/4.40/HDDGURU.HDDLLFTool.locale.zh-CN.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# 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 - -PackageIdentifier: HDDGURU.HDDLLFTool -PackageVersion: "4.40" -PackageLocale: zh-CN -Publisher: HDDGURU -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 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.50/HDDGURU.HDDLLFTool.locale.en-US.yaml b/manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.locale.en-US.yaml new file mode 100644 index 0000000000000..1113600c61f72 --- /dev/null +++ b/manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.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: HDDGURU.HDDLLFTool +PackageVersion: '4.50' +PackageLocale: en-US +Publisher: HDDGURU +# 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 +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. +Tags: +- erase +- format +- hdd +- llf +- low-level-format +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.locale.zh-CN.yaml b/manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e63fd56806d50 --- /dev/null +++ b/manifests/h/HDDGURU/HDDLLFTool/4.50/HDDGURU.HDDLLFTool.locale.zh-CN.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: HDDGURU.HDDLLFTool +PackageVersion: '4.50' +PackageLocale: zh-CN +Publisher: HDDGURU +# 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 +ShortDescription: 硬盘低级格式化工具 +Description: 免费的硬盘低级格式化工具,可以擦除、低级格式化并返修 SATA、IDE、SAS、SCSI、SSD 硬盘,任何 USB 和火线硬盘盒,以及 SD、MMC、记忆棒和 CompactFlash 介质。 +Tags: +- 低格 +- 低级格式化 +- 擦除 +- 格式化 +- 硬盘 +ManifestType: locale +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/HERE/MAPMAKING/CLI/17.5.6/HERE.MAPMAKING.CLI.installer.yaml b/manifests/h/HERE/MAPMAKING/CLI/17.5.6/HERE.MAPMAKING.CLI.installer.yaml new file mode 100644 index 0000000000000..022a61f612d72 --- /dev/null +++ b/manifests/h/HERE/MAPMAKING/CLI/17.5.6/HERE.MAPMAKING.CLI.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: HERE.MAPMAKING.CLI +PackageVersion: 17.5.6 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{1E7C506F-5A37-3C7D-9BAC-68A683AFB45B}' +Installers: +- Architecture: x64 + InstallerUrl: https://artifact.api.platform.here.com/v1/references/hrn:here:artifact::olp-here-test:com.here.platform:cli:17.5.6/maps-cli-installer-17.5.6.msi?apiKey=84q8N9DRx6YAqyJaXUpr9fhiTnCUIBzvHLpk3QU4Oaw + InstallerSha256: CAEE1433CA3EEA340BCC7EEB3067DC45D82FCB92099A7AC5F00BD68AF6327336 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/h/HERE/MAPMAKING/CLI/17.5.6/HERE.MAPMAKING.CLI.locale.en-US.yaml b/manifests/h/HERE/MAPMAKING/CLI/17.5.6/HERE.MAPMAKING.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..fe14810d0ea8a --- /dev/null +++ b/manifests/h/HERE/MAPMAKING/CLI/17.5.6/HERE.MAPMAKING.CLI.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: HERE.MAPMAKING.CLI +PackageVersion: 17.5.6 +PackageLocale: en-US +Publisher: HERE Technologies +PackageName: Maps CLI +License: Proprietary +Copyright: Copyright (C) 2017-2024 HERE Global B.V. and its affiliate(s). +ShortDescription: With the Command Line Interface you can access HERE Map Making service from a command line or with scripts. +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/h/HERE/MAPMAKING/CLI/17.5.6/HERE.MAPMAKING.CLI.yaml b/manifests/h/HERE/MAPMAKING/CLI/17.5.6/HERE.MAPMAKING.CLI.yaml new file mode 100644 index 0000000000000..7b6208957c414 --- /dev/null +++ b/manifests/h/HERE/MAPMAKING/CLI/17.5.6/HERE.MAPMAKING.CLI.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: HERE.MAPMAKING.CLI +PackageVersion: 17.5.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/h/HERE/OLPCLI/17.5.6/HERE.OLPCLI.installer.yaml b/manifests/h/HERE/OLPCLI/17.5.6/HERE.OLPCLI.installer.yaml new file mode 100644 index 0000000000000..1ac8988c1ae52 --- /dev/null +++ b/manifests/h/HERE/OLPCLI/17.5.6/HERE.OLPCLI.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: HERE.OLPCLI +PackageVersion: 17.5.6 +InstallerLocale: en-US +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +ProductCode: '{3D357148-BA48-380D-9DD1-3EB9BD698314}' +Installers: +- Architecture: x64 + InstallerUrl: https://artifact.api.platform.here.com/v1/references/hrn:here:artifact::olp-here-test:com.here.platform:cli:17.5.6/olp-cli-installer-17.5.6.msi?apiKey=84q8N9DRx6YAqyJaXUpr9fhiTnCUIBzvHLpk3QU4Oaw + InstallerSha256: 4149CE9957E819FC7C7CAABF4ACA06DFCE36D792A1EB03E5401F0B96D04A3160 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/h/HERE/OLPCLI/17.5.6/HERE.OLPCLI.locale.en-US.yaml b/manifests/h/HERE/OLPCLI/17.5.6/HERE.OLPCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..989711c078359 --- /dev/null +++ b/manifests/h/HERE/OLPCLI/17.5.6/HERE.OLPCLI.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: HERE.OLPCLI +PackageVersion: 17.5.6 +PackageLocale: en-US +Publisher: HERE Technologies +PackageName: OLP CLI +License: Proprietary +Copyright: Copyright (C) 2017-2022 HERE Global B.V. and its affiliate(s). +ShortDescription: With the Command Line Interface you can access HERE platform services from a command line or with scripts. +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/h/HERE/OLPCLI/17.5.6/HERE.OLPCLI.yaml b/manifests/h/HERE/OLPCLI/17.5.6/HERE.OLPCLI.yaml new file mode 100644 index 0000000000000..7ab6ec59844fd --- /dev/null +++ b/manifests/h/HERE/OLPCLI/17.5.6/HERE.OLPCLI.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: HERE.OLPCLI +PackageVersion: 17.5.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/h/HERE/OLPCLI/NATIVE/17.5.6/HERE.OLPCLI.NATIVE.installer.yaml b/manifests/h/HERE/OLPCLI/NATIVE/17.5.6/HERE.OLPCLI.NATIVE.installer.yaml new file mode 100644 index 0000000000000..b006fbba1bba5 --- /dev/null +++ b/manifests/h/HERE/OLPCLI/NATIVE/17.5.6/HERE.OLPCLI.NATIVE.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: HERE.OLPCLI.NATIVE +PackageVersion: 17.5.6 +InstallerType: portable +Commands: +- olp +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + InstallerUrl: https://artifact.api.platform.here.com/v1/references/hrn:here:artifact::olp-here-test:com.here.platform:cli:17.5.6/olp-cli-native-image-17.5.6.exe?apiKey=84q8N9DRx6YAqyJaXUpr9fhiTnCUIBzvHLpk3QU4Oaw + InstallerSha256: 0C5E03F4CD5FAD2DFF42C725F505D755EE372AA35BEFFBB297C5DCA1CD1B3391 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/h/HERE/OLPCLI/NATIVE/17.5.6/HERE.OLPCLI.NATIVE.locale.en-US.yaml b/manifests/h/HERE/OLPCLI/NATIVE/17.5.6/HERE.OLPCLI.NATIVE.locale.en-US.yaml new file mode 100644 index 0000000000000..0d7ecba742d29 --- /dev/null +++ b/manifests/h/HERE/OLPCLI/NATIVE/17.5.6/HERE.OLPCLI.NATIVE.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: HERE.OLPCLI.NATIVE +PackageVersion: 17.5.6 +PackageLocale: en-US +Publisher: HERE Technologies +PackageName: OLP CLI Native +License: Proprietary +Copyright: Copyright (C) 2017-2024 HERE Global B.V. and its affiliate(s). +ShortDescription: With the Command Line Interface you can access HERE platform services from a command line or with scripts. +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/h/HERE/OLPCLI/NATIVE/17.5.6/HERE.OLPCLI.NATIVE.yaml b/manifests/h/HERE/OLPCLI/NATIVE/17.5.6/HERE.OLPCLI.NATIVE.yaml new file mode 100644 index 0000000000000..74169d5c2061e --- /dev/null +++ b/manifests/h/HERE/OLPCLI/NATIVE/17.5.6/HERE.OLPCLI.NATIVE.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: HERE.OLPCLI.NATIVE +PackageVersion: 17.5.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/h/HHDSoftware/VirtualSerialPortTools/6.22.00.1498/HHDSoftware.VirtualSerialPortTools.installer.yaml b/manifests/h/HHDSoftware/VirtualSerialPortTools/6.22.00.1498/HHDSoftware.VirtualSerialPortTools.installer.yaml deleted file mode 100644 index 1cfdd9ec84f37..0000000000000 --- a/manifests/h/HHDSoftware/VirtualSerialPortTools/6.22.00.1498/HHDSoftware.VirtualSerialPortTools.installer.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: HHDSoftware.VirtualSerialPortTools -PackageVersion: 6.22.00.1498 -InstallerType: exe -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: -silent - SilentWithProgress: -silent -UpgradeBehavior: install -FileExtensions: -- vsptlic -ProductCode: '{33F86C6D-D307-4253-8A63-D6F862E6CBF1}' -ReleaseDate: 2025-04-11 -ElevationRequirement: elevationRequired -Installers: -- Architecture: x86 - InstallerUrl: https://hhdsoftware.com/download/virtual-serial-port-tools.exe - InstallerSha256: DFD1C63011B815D9887A8A04E9AB2C300B8896738803E5F72F44D6558E39EB81 -- Architecture: x64 - InstallerUrl: https://hhdsoftware.com/download/virtual-serial-port-tools.exe - InstallerSha256: DFD1C63011B815D9887A8A04E9AB2C300B8896738803E5F72F44D6558E39EB81 -- Architecture: arm64 - InstallerUrl: https://hhdsoftware.com/download/virtual-serial-port-tools-arm64.exe - InstallerSha256: 61D0EF839F8412DA1C4AAAB0B7A67A67D355BDB054E8E1A432A5AA2243FB8E1A -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/h/HHDSoftware/VirtualSerialPortTools/6.22.00.1498/HHDSoftware.VirtualSerialPortTools.yaml b/manifests/h/HHDSoftware/VirtualSerialPortTools/6.22.00.1498/HHDSoftware.VirtualSerialPortTools.yaml deleted file mode 100644 index f529b8c1fc6c9..0000000000000 --- a/manifests/h/HHDSoftware/VirtualSerialPortTools/6.22.00.1498/HHDSoftware.VirtualSerialPortTools.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: HHDSoftware.VirtualSerialPortTools -PackageVersion: 6.22.00.1498 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/h/HHDSoftware/VirtualSerialPortTools/7.01.00.1604/HHDSoftware.VirtualSerialPortTools.installer.yaml b/manifests/h/HHDSoftware/VirtualSerialPortTools/7.01.00.1604/HHDSoftware.VirtualSerialPortTools.installer.yaml new file mode 100644 index 0000000000000..73830d6eeb2a1 --- /dev/null +++ b/manifests/h/HHDSoftware/VirtualSerialPortTools/7.01.00.1604/HHDSoftware.VirtualSerialPortTools.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: HHDSoftware.VirtualSerialPortTools +PackageVersion: 7.01.00.1604 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: -silent + SilentWithProgress: -silent +UpgradeBehavior: install +FileExtensions: +- vsptlic +ProductCode: '{33F86C6D-D307-4253-8A63-D6F862E6CBF1}' +ElevationRequirement: elevationRequired +Installers: +- Architecture: x64 + InstallerUrl: https://hhdsoftware.com/download/virtual-serial-port-tools.exe + InstallerSha256: 0F51CB0D3E2B9DD09F7FE2288575267598F217171B389CF8CDAA3EDC3DB15A3A +- Architecture: arm64 + InstallerUrl: https://hhdsoftware.com/download/virtual-serial-port-tools-arm64.exe + InstallerSha256: 8C57306704F20B94E1DAE086E098486F50DFCC176595CF2D6475E956D987F734 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/HHDSoftware/VirtualSerialPortTools/6.22.00.1498/HHDSoftware.VirtualSerialPortTools.locale.en-US.yaml b/manifests/h/HHDSoftware/VirtualSerialPortTools/7.01.00.1604/HHDSoftware.VirtualSerialPortTools.locale.en-US.yaml similarity index 91% rename from manifests/h/HHDSoftware/VirtualSerialPortTools/6.22.00.1498/HHDSoftware.VirtualSerialPortTools.locale.en-US.yaml rename to manifests/h/HHDSoftware/VirtualSerialPortTools/7.01.00.1604/HHDSoftware.VirtualSerialPortTools.locale.en-US.yaml index edd43ae0d10f4..ea48d867ba792 100644 --- a/manifests/h/HHDSoftware/VirtualSerialPortTools/6.22.00.1498/HHDSoftware.VirtualSerialPortTools.locale.en-US.yaml +++ b/manifests/h/HHDSoftware/VirtualSerialPortTools/7.01.00.1604/HHDSoftware.VirtualSerialPortTools.locale.en-US.yaml @@ -1,41 +1,35 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: HHDSoftware.VirtualSerialPortTools -PackageVersion: 6.22.00.1498 -PackageLocale: en-US -Publisher: HHD Software, Ltd. -PublisherUrl: https://hhdsoftware.com/ -PublisherSupportUrl: https://hhdsoftware.com/support/contact-us -PrivacyUrl: https://www.hhdsoftware.com/company/privacy-policy -Author: HHD Software Ltd. -PackageName: HHD Software Virtual Serial Port Tools -PackageUrl: https://hhdsoftware.com/virtual-serial-port-tools -License: Proprietary -LicenseUrl: https://hhdsoftware.com/company/licenses/regular -Copyright: © 2001 - 2025 HHD Software Ltd. -CopyrightUrl: https://hhdsoftware.com/company/licenses/regular -ShortDescription: Build and manage sophisticated virtual serial port configurations and schemes -Description: |- - Virtual Serial Port Tools is a consolidated serial ports management and emulation tool kit which combines the power of Virtual, Remote, Shared and Network Serial Ports modules together, allowing you to create complex virtual serial port configurations and sophisticated sharing & interconnection schemes. In addition to that, it also includes support for scripted serial ports, using which you can program virtual serial port logic using TypeScript/JavaScript programming language. - In addition to an intuitive and extremely clear user interface it also provides you with Software Developer Kit (SDK) to automate whole process from your application. This library comes in the form of ActiveX/COM and .NET Component that give you full control over the product's internal processes from native C++, Delphi, Java, Rust as well as .NET C# source codes and JavaScript / TypeScript scripts. Detailed documentation for Virtual Serial Port Tools Developer API is also provided. - Virtual com ports and interconnection/sharing schemes created by this product fully emulate all hardware serial port settings, rs232 null-modem pinouts and communication options including flow control, control lines and even line noise. -# Moniker: -Tags: -- serial -- serial-port -- virtual-serial-port -ReleaseNotes: |- - Bug Fixes - Reported bugs fixed - A number of reported bugs have been fixed. -ReleaseNotesUrl: https://hhdsoftware.com/virtual-serial-port-tools/history -PurchaseUrl: https://hhdsoftware.com/virtual-serial-port-tools#pr-prices -# InstallationNotes: -Documentations: -- DocumentLabel: Documentation - DocumentUrl: https://hhdsoftwaredocs.online/vspt -- DocumentLabel: Knowledge Base - DocumentUrl: https://hhdsoftware.com/support/knowledge-base -ManifestType: defaultLocale -ManifestVersion: 1.10.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: HHDSoftware.VirtualSerialPortTools +PackageVersion: 7.01.00.1604 +PackageLocale: en-US +Publisher: HHD Software, Ltd. +PublisherUrl: https://hhdsoftware.com/ +PublisherSupportUrl: https://hhdsoftware.com/support/contact-us +PrivacyUrl: https://www.hhdsoftware.com/company/privacy-policy +Author: HHD Software Ltd. +PackageName: HHD Software Virtual Serial Port Tools +PackageUrl: https://hhdsoftware.com/virtual-serial-port-tools +License: Proprietary +LicenseUrl: https://hhdsoftware.com/company/licenses/regular +Copyright: © 2001 - 2025 HHD Software Ltd. +CopyrightUrl: https://hhdsoftware.com/company/licenses/regular +ShortDescription: Build and manage sophisticated virtual serial port configurations and schemes +Description: |- + Virtual Serial Port Tools is a consolidated serial ports management and emulation tool kit which combines the power of Virtual, Remote, Shared and Network Serial Ports modules together, allowing you to create complex virtual serial port configurations and sophisticated sharing & interconnection schemes. In addition to that, it also includes support for scripted serial ports, using which you can program virtual serial port logic using TypeScript/JavaScript programming language. + In addition to an intuitive and extremely clear user interface it also provides you with Software Developer Kit (SDK) to automate whole process from your application. This library comes in the form of ActiveX/COM and .NET Component that give you full control over the product's internal processes from native C++, Delphi, Java, Rust as well as .NET C# source codes and JavaScript / TypeScript scripts. Detailed documentation for Virtual Serial Port Tools Developer API is also provided. + Virtual com ports and interconnection/sharing schemes created by this product fully emulate all hardware serial port settings, rs232 null-modem pinouts and communication options including flow control, control lines and even line noise. +Tags: +- serial +- serial-port +- virtual-serial-port +ReleaseNotesUrl: https://hhdsoftware.com/virtual-serial-port-tools/history +PurchaseUrl: https://hhdsoftware.com/virtual-serial-port-tools#pr-prices +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://hhdsoftwaredocs.online/vspt +- DocumentLabel: Knowledge Base + DocumentUrl: https://hhdsoftware.com/support/knowledge-base +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HHDSoftware/VirtualSerialPortTools/6.22.00.1498/HHDSoftware.VirtualSerialPortTools.locale.zh-CN.yaml b/manifests/h/HHDSoftware/VirtualSerialPortTools/7.01.00.1604/HHDSoftware.VirtualSerialPortTools.locale.zh-CN.yaml similarity index 82% rename from manifests/h/HHDSoftware/VirtualSerialPortTools/6.22.00.1498/HHDSoftware.VirtualSerialPortTools.locale.zh-CN.yaml rename to manifests/h/HHDSoftware/VirtualSerialPortTools/7.01.00.1604/HHDSoftware.VirtualSerialPortTools.locale.zh-CN.yaml index 78d5e780f86ff..412210ac38e3b 100644 --- a/manifests/h/HHDSoftware/VirtualSerialPortTools/6.22.00.1498/HHDSoftware.VirtualSerialPortTools.locale.zh-CN.yaml +++ b/manifests/h/HHDSoftware/VirtualSerialPortTools/7.01.00.1604/HHDSoftware.VirtualSerialPortTools.locale.zh-CN.yaml @@ -1,38 +1,23 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=QUSU.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: HHDSoftware.VirtualSerialPortTools -PackageVersion: 6.22.00.1498 -PackageLocale: zh-CN -# Publisher: -# PublisherUrl: -# PublisherSupportUrl: -# PrivacyUrl: -# Author: -# PackageName: -# PackageUrl: -License: 专有软件 -# LicenseUrl: -# Copyright: -# CopyrightUrl: -ShortDescription: 构建并管理复杂的虚拟串口配置与方案 -Description: |- - 虚拟串口工具集是一款集成的串口管理与仿真工具包,它将虚拟串口、远程串口、共享串口和网络串口模块的强大功能融为一体,使您能够创建复杂的虚拟串口配置以及精密的共享与互联方案。此外,该工具还支持脚本化串口功能,您可以使用 TypeScript/JavaScript 编程语言编写虚拟串口逻辑程序。 - 除了直观且极为清晰的操作界面外,该工具还提供软件开发工具包(SDK),以便您从应用程序中自动化整个流程。该库以 ActiveX/COM 和 .NET 组件形式提供,使您能够通过原生 C++、Delphi、Java、Rust 以及 .NET C# 源代码和 JavaScript/TypeScript 脚本全面控制产品的内部进程。同时提供详尽的虚拟串口工具开发者 API 文档。 - 本产品创建的虚拟 COM 端口及互联/共享方案完整模拟了所有硬件串口设置、RS232 零调制解调器引脚排列及通信选项,包括流控制、控制线甚至线路噪声模拟。 -# Moniker: -Tags: -- 串口 -- 串行 -- 虚拟串口 -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: 文档 - DocumentUrl: https://hhdsoftwaredocs.online/vspt -- DocumentLabel: 知识库 - DocumentUrl: https://hhdsoftware.com/support/knowledge-base -ManifestType: locale -ManifestVersion: 1.10.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: HHDSoftware.VirtualSerialPortTools +PackageVersion: 7.01.00.1604 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 构建并管理复杂的虚拟串口配置与方案 +Description: |- + 虚拟串口工具集是一款集成的串口管理与仿真工具包,它将虚拟串口、远程串口、共享串口和网络串口模块的强大功能融为一体,使您能够创建复杂的虚拟串口配置以及精密的共享与互联方案。此外,该工具还支持脚本化串口功能,您可以使用 TypeScript/JavaScript 编程语言编写虚拟串口逻辑程序。 + 除了直观且极为清晰的操作界面外,该工具还提供软件开发工具包(SDK),以便您从应用程序中自动化整个流程。该库以 ActiveX/COM 和 .NET 组件形式提供,使您能够通过原生 C++、Delphi、Java、Rust 以及 .NET C# 源代码和 JavaScript/TypeScript 脚本全面控制产品的内部进程。同时提供详尽的虚拟串口工具开发者 API 文档。 + 本产品创建的虚拟 COM 端口及互联/共享方案完整模拟了所有硬件串口设置、RS232 零调制解调器引脚排列及通信选项,包括流控制、控制线甚至线路噪声模拟。 +Tags: +- 串口 +- 串行 +- 虚拟串口 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://hhdsoftwaredocs.online/vspt +- DocumentLabel: 知识库 + DocumentUrl: https://hhdsoftware.com/support/knowledge-base +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HHDSoftware/VirtualSerialPortTools/7.01.00.1604/HHDSoftware.VirtualSerialPortTools.yaml b/manifests/h/HHDSoftware/VirtualSerialPortTools/7.01.00.1604/HHDSoftware.VirtualSerialPortTools.yaml new file mode 100644 index 0000000000000..584fe8a5d5ec1 --- /dev/null +++ b/manifests/h/HHDSoftware/VirtualSerialPortTools/7.01.00.1604/HHDSoftware.VirtualSerialPortTools.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: HHDSoftware.VirtualSerialPortTools +PackageVersion: 7.01.00.1604 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/HMCL/HMCL/Dev/3.6.12.282/HMCL.HMCL.Dev.installer.yaml b/manifests/h/HMCL/HMCL/Dev/3.6.12.282/HMCL.HMCL.Dev.installer.yaml new file mode 100644 index 0000000000000..a75fab25ea03b --- /dev/null +++ b/manifests/h/HMCL/HMCL/Dev/3.6.12.282/HMCL.HMCL.Dev.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: HMCL.HMCL.Dev +PackageVersion: 3.6.12.282 +InstallerType: portable +Commands: +- hmcl-dev +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/HMCL-dev/HMCL/releases/download/v3.6.12.282/HMCL-3.6.12.282.exe + InstallerSha256: D0E9E3AEF8AAD97B636AEEF0F0E9C11EB4D7840767CB88FF8927A0186F27677A +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-22 diff --git a/manifests/h/HMCL/HMCL/Dev/3.6.12.282/HMCL.HMCL.Dev.locale.en-US.yaml b/manifests/h/HMCL/HMCL/Dev/3.6.12.282/HMCL.HMCL.Dev.locale.en-US.yaml new file mode 100644 index 0000000000000..aee57a81a4017 --- /dev/null +++ b/manifests/h/HMCL/HMCL/Dev/3.6.12.282/HMCL.HMCL.Dev.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: HMCL.HMCL.Dev +PackageVersion: 3.6.12.282 +PackageLocale: en-US +Publisher: huanghongxun +PublisherUrl: https://github.com/HMCL-dev +PublisherSupportUrl: https://github.com/HMCL-dev/HMCL/issues +PackageName: Hello Minecraft! Launcher Dev +PackageUrl: https://github.com/HMCL-dev/HMCL +License: GPL-3.0 +Copyright: Copyright (C) 2025 huangyuhui +ShortDescription: A Minecraft Launcher which is multi-functional, cross-platform and popular +Tags: +- javafx +- minecraft +- minecraft-launcher +ReleaseNotesUrl: https://github.com/HMCL-dev/HMCL/releases/tag/v3.6.12.282 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/HMCL-dev/HMCL/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/h/HMCL/HMCL/Dev/3.6.12.282/HMCL.HMCL.Dev.yaml b/manifests/h/HMCL/HMCL/Dev/3.6.12.282/HMCL.HMCL.Dev.yaml new file mode 100644 index 0000000000000..a21889d8b5cdd --- /dev/null +++ b/manifests/h/HMCL/HMCL/Dev/3.6.12.282/HMCL.HMCL.Dev.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: HMCL.HMCL.Dev +PackageVersion: 3.6.12.282 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/h/HMCL/HMCL/Dev/3.6.12.283/HMCL.HMCL.Dev.installer.yaml b/manifests/h/HMCL/HMCL/Dev/3.6.12.283/HMCL.HMCL.Dev.installer.yaml new file mode 100644 index 0000000000000..9ad7d233c1740 --- /dev/null +++ b/manifests/h/HMCL/HMCL/Dev/3.6.12.283/HMCL.HMCL.Dev.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: HMCL.HMCL.Dev +PackageVersion: 3.6.12.283 +InstallerType: portable +Commands: +- hmcl-dev +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/HMCL-dev/HMCL/releases/download/v3.6.12.283/HMCL-3.6.12.283.exe + InstallerSha256: EC358918D4A1D11B2D42E23DB1ECD729C6DE66295FB0930D7225910AEF72F432 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-04 diff --git a/manifests/h/HMCL/HMCL/Dev/3.6.12.283/HMCL.HMCL.Dev.locale.en-US.yaml b/manifests/h/HMCL/HMCL/Dev/3.6.12.283/HMCL.HMCL.Dev.locale.en-US.yaml new file mode 100644 index 0000000000000..2154e0ed75ce0 --- /dev/null +++ b/manifests/h/HMCL/HMCL/Dev/3.6.12.283/HMCL.HMCL.Dev.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: HMCL.HMCL.Dev +PackageVersion: 3.6.12.283 +PackageLocale: en-US +Publisher: huanghongxun +PublisherUrl: https://github.com/HMCL-dev +PublisherSupportUrl: https://github.com/HMCL-dev/HMCL/issues +PackageName: Hello Minecraft! Launcher Dev +PackageUrl: https://github.com/HMCL-dev/HMCL +License: GPL-3.0 +Copyright: Copyright (C) 2025 huangyuhui +ShortDescription: A Minecraft Launcher which is multi-functional, cross-platform and popular +Tags: +- javafx +- minecraft +- minecraft-launcher +ReleaseNotesUrl: https://github.com/HMCL-dev/HMCL/releases/tag/v3.6.12.283 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/HMCL-dev/HMCL/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/h/HMCL/HMCL/Dev/3.6.12.283/HMCL.HMCL.Dev.yaml b/manifests/h/HMCL/HMCL/Dev/3.6.12.283/HMCL.HMCL.Dev.yaml new file mode 100644 index 0000000000000..fc5d8a591ac9e --- /dev/null +++ b/manifests/h/HMCL/HMCL/Dev/3.6.12.283/HMCL.HMCL.Dev.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: HMCL.HMCL.Dev +PackageVersion: 3.6.12.283 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/h/HMCL/HMCL/Dev/Maven/3.6.12.283/HMCL.HMCL.Dev.Maven.installer.yaml b/manifests/h/HMCL/HMCL/Dev/Maven/3.6.12.283/HMCL.HMCL.Dev.Maven.installer.yaml new file mode 100644 index 0000000000000..9fb336538252a --- /dev/null +++ b/manifests/h/HMCL/HMCL/Dev/Maven/3.6.12.283/HMCL.HMCL.Dev.Maven.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: HMCL.HMCL.Dev.Maven +PackageVersion: 3.6.12.283 +InstallerType: portable +Commands: +- hmcl-dev +Installers: +- Architecture: x86 + InstallerUrl: https://repo1.maven.org/maven2/org/glavo/hmcl/hmcl-dev/3.6.12.283/hmcl-dev-3.6.12.283.exe + InstallerSha256: EC358918D4A1D11B2D42E23DB1ECD729C6DE66295FB0930D7225910AEF72F432 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/h/HMCL/HMCL/Dev/Maven/3.6.12.283/HMCL.HMCL.Dev.Maven.locale.en-US.yaml b/manifests/h/HMCL/HMCL/Dev/Maven/3.6.12.283/HMCL.HMCL.Dev.Maven.locale.en-US.yaml new file mode 100644 index 0000000000000..2e87972bb0886 --- /dev/null +++ b/manifests/h/HMCL/HMCL/Dev/Maven/3.6.12.283/HMCL.HMCL.Dev.Maven.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: HMCL.HMCL.Dev.Maven +PackageVersion: 3.6.12.283 +PackageLocale: en-US +Publisher: huanghongxun +PackageName: Hello Minecraft! Launcher Dev +License: GPL-3.0 +Copyright: Copyright (C) 2025 huangyuhui +ShortDescription: A Minecraft Launcher which is multi-functional, cross-platform and popular +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/h/HMCL/HMCL/Dev/Maven/3.6.12.283/HMCL.HMCL.Dev.Maven.yaml b/manifests/h/HMCL/HMCL/Dev/Maven/3.6.12.283/HMCL.HMCL.Dev.Maven.yaml new file mode 100644 index 0000000000000..b5b990d4d715f --- /dev/null +++ b/manifests/h/HMCL/HMCL/Dev/Maven/3.6.12.283/HMCL.HMCL.Dev.Maven.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: HMCL.HMCL.Dev.Maven +PackageVersion: 3.6.12.283 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/h/HMCL/HMCL/Dev/Maven/TencentCloudMirror/3.6.12.283/HMCL.HMCL.Dev.Maven.TencentCloudMirror.installer.yaml b/manifests/h/HMCL/HMCL/Dev/Maven/TencentCloudMirror/3.6.12.283/HMCL.HMCL.Dev.Maven.TencentCloudMirror.installer.yaml new file mode 100644 index 0000000000000..1937f68b5c509 --- /dev/null +++ b/manifests/h/HMCL/HMCL/Dev/Maven/TencentCloudMirror/3.6.12.283/HMCL.HMCL.Dev.Maven.TencentCloudMirror.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: HMCL.HMCL.Dev.Maven.TencentCloudMirror +PackageVersion: 3.6.12.283 +InstallerType: portable +Commands: +- hmcl-dev +Installers: +- Architecture: x86 + InstallerUrl: https://mirrors.cloud.tencent.com/nexus/repository/maven-public/org/glavo/hmcl/hmcl-dev/3.6.12.283/hmcl-dev-3.6.12.283.exe + InstallerSha256: EC358918D4A1D11B2D42E23DB1ECD729C6DE66295FB0930D7225910AEF72F432 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/h/HMCL/HMCL/Dev/Maven/TencentCloudMirror/3.6.12.283/HMCL.HMCL.Dev.Maven.TencentCloudMirror.locale.en-US.yaml b/manifests/h/HMCL/HMCL/Dev/Maven/TencentCloudMirror/3.6.12.283/HMCL.HMCL.Dev.Maven.TencentCloudMirror.locale.en-US.yaml new file mode 100644 index 0000000000000..61d9dc64eb08e --- /dev/null +++ b/manifests/h/HMCL/HMCL/Dev/Maven/TencentCloudMirror/3.6.12.283/HMCL.HMCL.Dev.Maven.TencentCloudMirror.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: HMCL.HMCL.Dev.Maven.TencentCloudMirror +PackageVersion: 3.6.12.283 +PackageLocale: en-US +Publisher: huanghongxun +PackageName: Hello Minecraft! Launcher Dev +License: GPL-3.0 +Copyright: Copyright (C) 2025 huangyuhui +ShortDescription: A Minecraft Launcher which is multi-functional, cross-platform and popular +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/h/HMCL/HMCL/Dev/Maven/TencentCloudMirror/3.6.12.283/HMCL.HMCL.Dev.Maven.TencentCloudMirror.yaml b/manifests/h/HMCL/HMCL/Dev/Maven/TencentCloudMirror/3.6.12.283/HMCL.HMCL.Dev.Maven.TencentCloudMirror.yaml new file mode 100644 index 0000000000000..88fd31c828cf1 --- /dev/null +++ b/manifests/h/HMCL/HMCL/Dev/Maven/TencentCloudMirror/3.6.12.283/HMCL.HMCL.Dev.Maven.TencentCloudMirror.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: HMCL.HMCL.Dev.Maven.TencentCloudMirror +PackageVersion: 3.6.12.283 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/h/HP/AnywarePCoIPClient/25.06.1/HP.AnywarePCoIPClient.installer.yaml b/manifests/h/HP/AnywarePCoIPClient/25.06.1/HP.AnywarePCoIPClient.installer.yaml new file mode 100644 index 0000000000000..b906b9f0a49bf --- /dev/null +++ b/manifests/h/HP/AnywarePCoIPClient/25.06.1/HP.AnywarePCoIPClient.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: HP.AnywarePCoIPClient +PackageVersion: 25.06.1 +InstallerType: nullsoft +Scope: machine +Protocols: +- pcoip +ProductCode: Teradici PCoIP Client +Installers: +- Architecture: x64 + InstallerUrl: https://dl.anyware.hp.com/DeAdBCiUYInHcSTy/pcoip-client/raw/names/pcoip-client-exe/versions/25.06.1/pcoip-client_25.06.1.exe + InstallerSha256: BB1CB8DF39F033394023C5557F626C736649DD2FA0E66CFDF701BB719BCABDE0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/HP/AnywarePCoIPClient/25.06.1/HP.AnywarePCoIPClient.locale.en-US.yaml b/manifests/h/HP/AnywarePCoIPClient/25.06.1/HP.AnywarePCoIPClient.locale.en-US.yaml new file mode 100644 index 0000000000000..6b1b7e75dc58b --- /dev/null +++ b/manifests/h/HP/AnywarePCoIPClient/25.06.1/HP.AnywarePCoIPClient.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: HP.AnywarePCoIPClient +PackageVersion: 25.06.1 +PackageLocale: en-US +Publisher: HP Development Company, L.P. +PublisherUrl: https://anyware.hp.com/ +PublisherSupportUrl: https://anyware.hp.com/knowledge +PrivacyUrl: https://www.hp.com/us-en/privacy/privacy.html +Author: HP Development Company, L.P. +PackageName: Anyware PCoIP Client +PackageUrl: https://anyware.hp.com/find/product/hp-anyware +License: Proprietary +LicenseUrl: https://anyware.hp.com/reference/eula/hp-anyware-end-user-license-agreement +Copyright: © 2025 HP Development Company, L.P. All rights reserved. +CopyrightUrl: https://anyware.hp.com/reference/eula/hp-anyware-end-user-license-agreement +ShortDescription: Connect securely to a remote desktop. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HP/AnywarePCoIPClient/25.06.1/HP.AnywarePCoIPClient.locale.zh-CN.yaml b/manifests/h/HP/AnywarePCoIPClient/25.06.1/HP.AnywarePCoIPClient.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2790867b4c4e4 --- /dev/null +++ b/manifests/h/HP/AnywarePCoIPClient/25.06.1/HP.AnywarePCoIPClient.locale.zh-CN.yaml @@ -0,0 +1,12 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: HP.AnywarePCoIPClient +PackageVersion: 25.06.1 +PackageLocale: zh-CN +PublisherSupportUrl: https://support.hp.com/cn-zh +PrivacyUrl: https://www.hp.com/cn-zh/privacy/privacy.html +License: 专有软件 +ShortDescription: 安全连接到远程桌面。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HP/AnywarePCoIPClient/25.06.1/HP.AnywarePCoIPClient.yaml b/manifests/h/HP/AnywarePCoIPClient/25.06.1/HP.AnywarePCoIPClient.yaml new file mode 100644 index 0000000000000..f54964051e713 --- /dev/null +++ b/manifests/h/HP/AnywarePCoIPClient/25.06.1/HP.AnywarePCoIPClient.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: HP.AnywarePCoIPClient +PackageVersion: 25.06.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/HaiYing/OfficeAI/0.5.0/HaiYing.OfficeAI.installer.yaml b/manifests/h/HaiYing/OfficeAI/0.5.0/HaiYing.OfficeAI.installer.yaml deleted file mode 100644 index 9b466e75bc570..0000000000000 --- a/manifests/h/HaiYing/OfficeAI/0.5.0/HaiYing.OfficeAI.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/19 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: HaiYing.OfficeAI -PackageVersion: 0.5.0 -InstallerType: inno -Scope: user -UpgradeBehavior: install -ProductCode: '{0F11C518-54BE-493A-AB69-A4FB1C53BBCD}_is1' -ReleaseDate: 2025-06-04 -Installers: -- Architecture: x86 - InstallerUrl: https://downloadcdn.office-ai.cn/bin/OfficeAI.exe - InstallerSha256: F2F2DF910CB7851B71217917CD019F5957AFDE4AD5A11478CFD92424D940D5A1 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/h/HaiYing/OfficeAI/0.5.0/HaiYing.OfficeAI.yaml b/manifests/h/HaiYing/OfficeAI/0.5.0/HaiYing.OfficeAI.yaml deleted file mode 100644 index 8c1b08e01abae..0000000000000 --- a/manifests/h/HaiYing/OfficeAI/0.5.0/HaiYing.OfficeAI.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/19 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: HaiYing.OfficeAI -PackageVersion: 0.5.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/h/HaiYing/OfficeAI/0.5.2/HaiYing.OfficeAI.installer.yaml b/manifests/h/HaiYing/OfficeAI/0.5.2/HaiYing.OfficeAI.installer.yaml new file mode 100644 index 0000000000000..8a889525e65aa --- /dev/null +++ b/manifests/h/HaiYing/OfficeAI/0.5.2/HaiYing.OfficeAI.installer.yaml @@ -0,0 +1,16 @@ +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: HaiYing.OfficeAI +PackageVersion: 0.5.2 +InstallerType: inno +Scope: user +UpgradeBehavior: install +ProductCode: '{0F11C518-54BE-493A-AB69-A4FB1C53BBCD}_is1' +ReleaseDate: 2025-06-04 +Installers: +- Architecture: x86 + InstallerUrl: https://downloadcdn.office-ai.cn/bin/OfficeAI.exe + InstallerSha256: 7CFBF6DA730D48BBF2227BF19728765876425EC5FAECA9A9C0CD6CCFE8FA2A5F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/HaiYing/OfficeAI/0.5.0/HaiYing.OfficeAI.locale.en-US.yaml b/manifests/h/HaiYing/OfficeAI/0.5.2/HaiYing.OfficeAI.locale.en-US.yaml similarity index 94% rename from manifests/h/HaiYing/OfficeAI/0.5.0/HaiYing.OfficeAI.locale.en-US.yaml rename to manifests/h/HaiYing/OfficeAI/0.5.2/HaiYing.OfficeAI.locale.en-US.yaml index ffc2abe8eda88..875ac12841801 100644 --- a/manifests/h/HaiYing/OfficeAI/0.5.0/HaiYing.OfficeAI.locale.en-US.yaml +++ b/manifests/h/HaiYing/OfficeAI/0.5.2/HaiYing.OfficeAI.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jun/19 +# Automatically updated by the winget bot at 2025/Jul/03 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: HaiYing.OfficeAI -PackageVersion: 0.5.0 +PackageVersion: 0.5.2 PackageLocale: en-US Publisher: 珠海海鹦安全科技有限公司 PublisherUrl: https://www.haiyingsec.cn/ diff --git a/manifests/h/HaiYing/OfficeAI/0.5.0/HaiYing.OfficeAI.locale.zh-CN.yaml b/manifests/h/HaiYing/OfficeAI/0.5.2/HaiYing.OfficeAI.locale.zh-CN.yaml similarity index 93% rename from manifests/h/HaiYing/OfficeAI/0.5.0/HaiYing.OfficeAI.locale.zh-CN.yaml rename to manifests/h/HaiYing/OfficeAI/0.5.2/HaiYing.OfficeAI.locale.zh-CN.yaml index 9ea2ec5887f0e..4509f5887406b 100644 --- a/manifests/h/HaiYing/OfficeAI/0.5.0/HaiYing.OfficeAI.locale.zh-CN.yaml +++ b/manifests/h/HaiYing/OfficeAI/0.5.2/HaiYing.OfficeAI.locale.zh-CN.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jun/19 +# Automatically updated by the winget bot at 2025/Jul/03 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: HaiYing.OfficeAI -PackageVersion: 0.5.0 +PackageVersion: 0.5.2 PackageLocale: zh-CN Publisher: 珠海海鹦安全科技有限公司 PublisherUrl: https://www.haiyingsec.cn/ diff --git a/manifests/h/HaiYing/OfficeAI/0.5.2/HaiYing.OfficeAI.yaml b/manifests/h/HaiYing/OfficeAI/0.5.2/HaiYing.OfficeAI.yaml new file mode 100644 index 0000000000000..306069225f5d6 --- /dev/null +++ b/manifests/h/HaiYing/OfficeAI/0.5.2/HaiYing.OfficeAI.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/03 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: HaiYing.OfficeAI +PackageVersion: 0.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/HanwhaVision/WisenetWAVEVMS/Server/6.0.3.40736/HanwhaVision.WisenetWAVEVMS.Server.installer.yaml b/manifests/h/HanwhaVision/WisenetWAVEVMS/Server/6.0.3.40736/HanwhaVision.WisenetWAVEVMS.Server.installer.yaml new file mode 100644 index 0000000000000..1810a670d968f --- /dev/null +++ b/manifests/h/HanwhaVision/WisenetWAVEVMS/Server/6.0.3.40736/HanwhaVision.WisenetWAVEVMS.Server.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: HanwhaVision.WisenetWAVEVMS.Server +PackageVersion: 6.0.3.40736 +InstallerType: burn +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2025-04-08 +AppsAndFeaturesEntries: +- ProductCode: '{4b3cee32-d0d4-476a-855c-c7ceebcd3791}' + UpgradeCode: '{110DF587-DBCE-4CEF-ABBF-2C502A4A3723}' + InstallerType: burn +Installers: +- Architecture: x64 + InstallerUrl: https://updates.wavevms.com/hanwha/40736/windows/wave-server-6.0.3.40736-windows_x64.exe + InstallerSha256: 33D87A3AC0E257DC927D8B2F309E02D35EE04E0229F6C2789E460064D582CD8F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/HanwhaVision/WisenetWAVEVMS/Server/6.0.3.40736/HanwhaVision.WisenetWAVEVMS.Server.locale.en-US.yaml b/manifests/h/HanwhaVision/WisenetWAVEVMS/Server/6.0.3.40736/HanwhaVision.WisenetWAVEVMS.Server.locale.en-US.yaml new file mode 100644 index 0000000000000..82936fed0f55c --- /dev/null +++ b/manifests/h/HanwhaVision/WisenetWAVEVMS/Server/6.0.3.40736/HanwhaVision.WisenetWAVEVMS.Server.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: HanwhaVision.WisenetWAVEVMS.Server +PackageVersion: 6.0.3.40736 +PackageLocale: en-US +Publisher: Hanwha +PublisherUrl: https://hanwhavisionamerica.com/our-brand/ +PublisherSupportUrl: https://hanwhavisionamerica.com/support/ +PrivacyUrl: https://hanwhavisionamerica.com/privacy-policy/ +PackageName: Wisenet WAVE Server +PackageUrl: https://hanwhavisionamerica.com/wisenet-wave-vms/ +License: Proprietary +Copyright: Copyright (c) Hanwha. All rights reserved. +CopyrightUrl: https://hanwhavisionamerica.com/our-brand/#:~:text=All%20right%20reserved +ShortDescription: Powerful and intuitivevideo management +Description: > + Streamline your video security with Wisenet WAVE VMS from Hanwha Vision. Fully + leverage onboard camera analytics, scale your security system with ease and + tailor your dashboard to the needs of your operation. +ReleaseNotesUrl: https://hanwhavisionamerica.com/wisenet-wave-vms-release-notes/#:~:text=6.0.3.40736 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HanwhaVision/WisenetWAVEVMS/Server/6.0.3.40736/HanwhaVision.WisenetWAVEVMS.Server.yaml b/manifests/h/HanwhaVision/WisenetWAVEVMS/Server/6.0.3.40736/HanwhaVision.WisenetWAVEVMS.Server.yaml new file mode 100644 index 0000000000000..8b28531148e1f --- /dev/null +++ b/manifests/h/HanwhaVision/WisenetWAVEVMS/Server/6.0.3.40736/HanwhaVision.WisenetWAVEVMS.Server.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: HanwhaVision.WisenetWAVEVMS.Server +PackageVersion: 6.0.3.40736 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hashicorp/Consul/1.21.2/Hashicorp.Consul.installer.yaml b/manifests/h/Hashicorp/Consul/1.21.2/Hashicorp.Consul.installer.yaml new file mode 100644 index 0000000000000..3c8e089bc8446 --- /dev/null +++ b/manifests/h/Hashicorp/Consul/1.21.2/Hashicorp.Consul.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: Hashicorp.Consul +PackageVersion: 1.21.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: consul.exe +Commands: +- consul +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x86 + InstallerUrl: https://releases.hashicorp.com/consul/1.21.2/consul_1.21.2_windows_386.zip + InstallerSha256: 4EC9B3E82FFF8EDD3144E51872119BBCB01373C8861A497C53E05D2F792E36F1 +- Architecture: x64 + InstallerUrl: https://releases.hashicorp.com/consul/1.21.2/consul_1.21.2_windows_amd64.zip + InstallerSha256: 7D70101FC9E179D85F3C8C41A02E6E546FB7D208807E5908A44C164994501462 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hashicorp/Consul/1.21.2/Hashicorp.Consul.locale.en-US.yaml b/manifests/h/Hashicorp/Consul/1.21.2/Hashicorp.Consul.locale.en-US.yaml new file mode 100644 index 0000000000000..ae63299148162 --- /dev/null +++ b/manifests/h/Hashicorp/Consul/1.21.2/Hashicorp.Consul.locale.en-US.yaml @@ -0,0 +1,62 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Hashicorp.Consul +PackageVersion: 1.21.2 +PackageLocale: en-US +Publisher: HashiCorp +PublisherUrl: https://www.hashicorp.com/ +PublisherSupportUrl: https://github.com/hashicorp/consul/issues +PrivacyUrl: https://www.hashicorp.com/privacy +Author: HashiCorp, Inc. +PackageName: HashiCorp Consul +PackageUrl: https://developer.hashicorp.com/consul +License: BUSL-1.1 +LicenseUrl: https://github.com/hashicorp/consul/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 HashiCorp, Inc. +ShortDescription: A distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure. +Description: |- + Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure. + Consul provides several key features: + - Multi-Datacenter - Consul is built to be datacenter aware, and can support any number of regions without complex configuration. + - Service Mesh - Consul Service Mesh enables secure service-to-service communication with automatic TLS encryption and identity-based authorization. Applications can use sidecar proxies in a service mesh configuration to establish TLS connections for inbound and outbound connections with Transparent Proxy. + - API Gateway - Consul API Gateway manages access to services within Consul Service Mesh, allow users to define traffic and authorization policies to services deployed within the mesh. + - Service Discovery - Consul makes it simple for services to register themselves and to discover other services via a DNS or HTTP interface. External services such as SaaS providers can be registered as well. + - Health Checking - Health Checking enables Consul to quickly alert operators about any issues in a cluster. The integration with service discovery prevents routing traffic to unhealthy hosts and enables service level circuit breakers. + - Dynamic App Configuration - An HTTP API that allows users to store indexed objects within Consul, for storing configuration parameters and application metadata. +Tags: +- api-gateway +- ecs +- kubernetes +- service-discovery +- service-mesh +- vault +ReleaseNotes: |- + SECURITY: + - security: Upgrade UBI base image version to address CVE + CVE-2025-4802 + CVE-2024-40896 + CVE-2024-12243 + CVE-2025-24528 + CVE-2025-3277 + CVE-2024-12133 + CVE-2024-57970 + CVE-2025-31115 [GH-22409] + - cli: update tls ca and cert create to reduce excessive file perms for generated public files [GH-22286] + - connect: Added non default namespace and partition checks to ConnectCA CSR requests. [GH-22376] + - security: Upgrade Go to 1.23.10. [GH-22412] + IMPROVEMENTS: + - config: Warn about invalid characters in datacenter resulting in non-generation of X.509 certificates when using external CA for agent TLS communication. [GH-22382] + - connect: Use net.JoinHostPort for host:port formatting to handle IPv6. [GH-22359] + BUG FIXES: + - http: return a clear error when both Service.Service and Service.ID are missing during catalog registration [GH-22381] + - license: (Enterprise only) Fixed issue where usage metrics are not written to the snapshot to export the license data. [GH-10668] + - wan-federation: Fixed an issue where advertised IPv6 addresses were causing WAN federation to fail. [GH-22226] +ReleaseNotesUrl: https://github.com/hashicorp/consul/releases/tag/v1.21.2 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://developer.hashicorp.com/consul/docs +- DocumentLabel: Tutorials + DocumentUrl: https://developer.hashicorp.com/consul/tutorials +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hashicorp/Consul/1.21.2/Hashicorp.Consul.locale.zh-CN.yaml b/manifests/h/Hashicorp/Consul/1.21.2/Hashicorp.Consul.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fc7bf0f864a46 --- /dev/null +++ b/manifests/h/Hashicorp/Consul/1.21.2/Hashicorp.Consul.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: Hashicorp.Consul +PackageVersion: 1.21.2 +PackageLocale: zh-CN +ShortDescription: 分布式、高可用且支持多数据中心的服务解决方案,专为动态分布式基础设施中的应用程序连接与配置而设计。 +Description: |- + Consul 是一种分布式、高可用且支持多数据中心的服务解决方案,专为动态分布式基础设施中的应用程序连接与配置而设计。 + Consul 提供以下核心功能: + - 多数据中心支持 - 原生支持多数据中心架构,无需复杂配置即可扩展至任意规模区域 + - 服务网格 - 通过自动 TLS 加密和基于身份认证的授权机制,保障服务间通信安全。应用可通过透明代理(Transparent Proxy)在服务网格配置中使用边车代理,建立入站/出站连接的 TLS 加密通道 + - API 网关 - 管理服务网格内部访问权限,允许用户为网格内服务定义流量控制与授权策略 + - 服务发现 - 支持服务通过 DNS 或 HTTP 接口快速自注册与发现,同时可集成外部服务(如 SaaS 提供商) + - 健康检查 - 实时监测集群状态并快速告警,结合服务发现机制自动隔离故障节点,实现服务级熔断 + - 动态应用配置 - 提供 HTTP API 存储索引化对象,用于管理配置参数与应用程序元数据 +ReleaseNotesUrl: https://github.com/hashicorp/consul/releases/tag/v1.21.2 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://developer.hashicorp.com/consul/docs +- DocumentLabel: 教程 + DocumentUrl: https://developer.hashicorp.com/consul/tutorials +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hashicorp/Consul/1.21.2/Hashicorp.Consul.yaml b/manifests/h/Hashicorp/Consul/1.21.2/Hashicorp.Consul.yaml new file mode 100644 index 0000000000000..f8a6580b8afcf --- /dev/null +++ b/manifests/h/Hashicorp/Consul/1.21.2/Hashicorp.Consul.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: Hashicorp.Consul +PackageVersion: 1.21.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.installer.yaml b/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.installer.yaml index 20d717b5ee300..921095c77d492 100644 --- a/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.installer.yaml +++ b/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.installer.yaml @@ -1,5 +1,5 @@ -# Created using wingetcreate 1.9.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Hashicorp.Vagrant PackageVersion: 2.4.7 @@ -13,6 +13,7 @@ InstallerSuccessCodes: UpgradeBehavior: install Commands: - vagrant +ReleaseDate: 2025-06-17 AppsAndFeaturesEntries: - UpgradeCode: '{1A672674-6722-4E3A-9061-8F539A8B0ED6}' Installers: @@ -25,4 +26,4 @@ Installers: InstallerSha256: D2CF07A7E97BE3C1A49DA55963DF75A773C32A87F1EE26FEB18600B37E513DDF ProductCode: '{41BF3B30-3283-4018-BE63-8881C36F4A9E}' ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.locale.en-US.yaml b/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.locale.en-US.yaml index 1eb5c173477e1..9e4a933065020 100644 --- a/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.locale.en-US.yaml +++ b/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created using wingetcreate 1.9.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Hashicorp.Vagrant PackageVersion: 2.4.7 @@ -20,10 +20,12 @@ Tags: - develop - development - virtualization +ReleaseNotes: https://github.com/hashicorp/vagrant/blob/HEAD/CHANGELOG.md#247-june-17-2025 +ReleaseNotesUrl: https://github.com/hashicorp/vagrant/blob/HEAD/CHANGELOG.md#245-april-23-2025 Documentations: - DocumentLabel: Documentation DocumentUrl: https://developer.hashicorp.com/vagrant/docs - DocumentLabel: Tutorials DocumentUrl: https://developer.hashicorp.com/vagrant/tutorials ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.locale.zh-CN.yaml b/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.locale.zh-CN.yaml index f01c8927a33eb..562ee8fe82433 100644 --- a/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.locale.zh-CN.yaml +++ b/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Created using wingetcreate 1.9.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Hashicorp.Vagrant PackageVersion: 2.4.7 @@ -9,10 +9,11 @@ Description: Vagrant 是一款用于在单一工作流中构建和管理虚拟 Tags: - 开发 - 虚拟化 +ReleaseNotes: https://github.com/hashicorp/vagrant/blob/HEAD/CHANGELOG.md#247-june-17-2025 Documentations: - DocumentLabel: 文档 DocumentUrl: https://developer.hashicorp.com/vagrant/docs - DocumentLabel: 教程 DocumentUrl: https://developer.hashicorp.com/vagrant/tutorials ManifestType: locale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.yaml b/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.yaml index 815b781854310..3c93c9b0655e2 100644 --- a/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.yaml +++ b/manifests/h/Hashicorp/Vagrant/2.4.7/Hashicorp.Vagrant.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.9.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Hashicorp.Vagrant PackageVersion: 2.4.7 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hashicorp/Vault/1.20.0/Hashicorp.Vault.installer.yaml b/manifests/h/Hashicorp/Vault/1.20.0/Hashicorp.Vault.installer.yaml new file mode 100644 index 0000000000000..a8152e9b6ccf1 --- /dev/null +++ b/manifests/h/Hashicorp/Vault/1.20.0/Hashicorp.Vault.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Hashicorp.Vault +PackageVersion: 1.20.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: vault.exe +ReleaseDate: 2025-06-25 +Installers: +- Architecture: x86 + InstallerUrl: https://releases.hashicorp.com/vault/1.20.0/vault_1.20.0_windows_386.zip + InstallerSha256: 47BAFD6FCA4159D2C0E723F31E4DC0F29EE73344DD10230253497C35EF3E1400 +- Architecture: x64 + InstallerUrl: https://releases.hashicorp.com/vault/1.20.0/vault_1.20.0_windows_amd64.zip + InstallerSha256: E3EDFE135A6BDD0C14C4452326E0517F55A5EB9ECE6499059C81F5F131206C85 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hashicorp/Vault/1.20.0/Hashicorp.Vault.locale.en-US.yaml b/manifests/h/Hashicorp/Vault/1.20.0/Hashicorp.Vault.locale.en-US.yaml new file mode 100644 index 0000000000000..d7ea808453232 --- /dev/null +++ b/manifests/h/Hashicorp/Vault/1.20.0/Hashicorp.Vault.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Hashicorp.Vault +PackageVersion: 1.20.0 +PackageLocale: en-US +Publisher: HashiCorp +PublisherUrl: https://www.hashicorp.com/ +PublisherSupportUrl: https://github.com/hashicorp/vault/issues +PrivacyUrl: https://www.hashicorp.com/privacy?product_intent=vault +Author: Mitchell Hashimoto +PackageName: Hashicorp Vault +PackageUrl: https://www.vaultproject.io/ +License: Mozilla Public License 2.0 +LicenseUrl: https://github.com/hashicorp/vault/blob/main/LICENSE +Copyright: Copyright (c) Hashicorp +CopyrightUrl: https://github.com/hashicorp/vault/blob/main/LICENSE +ShortDescription: Vault is a tool for securely accessing secrets. +Moniker: vault +Tags: +- hashicorp +- vault +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hashicorp/Vault/1.20.0/Hashicorp.Vault.yaml b/manifests/h/Hashicorp/Vault/1.20.0/Hashicorp.Vault.yaml new file mode 100644 index 0000000000000..c5f3f36445709 --- /dev/null +++ b/manifests/h/Hashicorp/Vault/1.20.0/Hashicorp.Vault.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: Hashicorp.Vault +PackageVersion: 1.20.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/Headlamp/Headlamp/0.32.0/Headlamp.Headlamp.installer.yaml b/manifests/h/Headlamp/Headlamp/0.32.0/Headlamp.Headlamp.installer.yaml new file mode 100644 index 0000000000000..60d20f99137ec --- /dev/null +++ b/manifests/h/Headlamp/Headlamp/0.32.0/Headlamp.Headlamp.installer.yaml @@ -0,0 +1,22 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Headlamp.Headlamp +PackageVersion: 0.32.0 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +ProductCode: d24ad94a-d320-5504-bf77-34b71a6f1c7d +ReleaseDate: 2025-06-26 +AppsAndFeaturesEntries: +- DisplayName: Headlamp 0.32.0 + Publisher: Kinvolk + ProductCode: d24ad94a-d320-5504-bf77-34b71a6f1c7d +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/kubernetes-sigs/headlamp/releases/download/v0.32.0/Headlamp-0.32.0-win-x64.exe + InstallerSha256: 9ADD5BF23325292BDB0CAA9DC02E7F57242B3985DA7B3D08016602E3C1052D3E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/Headlamp/Headlamp/0.32.0/Headlamp.Headlamp.locale.en-US.yaml b/manifests/h/Headlamp/Headlamp/0.32.0/Headlamp.Headlamp.locale.en-US.yaml new file mode 100644 index 0000000000000..00437ccc8ec6d --- /dev/null +++ b/manifests/h/Headlamp/Headlamp/0.32.0/Headlamp.Headlamp.locale.en-US.yaml @@ -0,0 +1,64 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Headlamp.Headlamp +PackageVersion: 0.32.0 +PackageLocale: en-US +Publisher: Headlamp +PublisherUrl: https://headlamp.dev/ +PublisherSupportUrl: https://github.com/kubernetes-sigs/headlamp/issues +PackageName: Headlamp +PackageUrl: https://github.com/kubernetes-sigs/headlamp +License: Apache-2.0 +LicenseUrl: https://github.com/kubernetes-sigs/headlamp/blob/HEAD/LICENSE +ShortDescription: Kubernetes web UI. +Description: A Kubernetes web UI that is fully-featured, user-friendly and extensible. +Tags: +- cncf +- dashboard +- headlamp +- kinvolk +- kubernetes +- logging +- monitoring +- plugins +- ui +- web +ReleaseNotes: |- + ✨ Enhancements: + - Add new advanced search feature (allows searching Kubernetes resources using queries in Js, more languages coming soon) + - Display Custom Resources in the map (thanks to @faebr, @alexandernorth, @VictorMarcolino) + - Allow to delete clusters that are coming from local kubeconfigs + 🐞 Bug fixes + - Reset logs' state on item change + - Fix OIDC token refresh logic + - Remove unneeded URL change when closing a details pane + 💻 Development + - Added releaser tool to help manage and automate the release process + - Add support for plugins to register a custom map node glance (thanks to @userAdityaa) + - Update sample ingress URL to use kubernetes-sigs/headlamp (thanks @dorser) + - Update sample ingress to use ingressClassName instead of deprecated annotation (thanks @dorser) + - Add more tsdocs to misc functions + - Add Github pull request template (thanks to @SinghaAnirban005 ) + - Refactor plugin-management into a package (pluginctl) (thanks to @Faakhir30 ) + - Add ReferenceGrant resource and tests (thanks to @userAdityaa ) + - Disable tracing by default in backend's telemetry instrumentation (thanks to @DhairyaMajmudar ) + - Add the possibility for the map's nodes to have weights (thanks to @adwait-godbole ) + - Replace ConfirmDialog's switch with a check box and improve the buttons' labels + - Add more options to the Dockerfile to make it more flexible when needed to use e.g. push + - Add cloudbuild.yml for future integration with Kubernetes image publishing infrastructure + - Misc dependency updates + 🌍 Internationalization + - Update Hindi (thanks to @SinghaAnirban005) + - Make NamespaceAutocompletion's placeholder translatable (thanks to @SinghaAnirban005) + 📖 Documentation + - Document how to use the new registerKubeObjectGlance (thanks to @userAdityaa) + - Fix typo and broken link to the registerUIPanel docs (thanks to @SinghaAnirban005 ) + - Add architecture section + - Update the deployment docs to use --dry-run=client (thanks to @MontBlan-c ) + - Add guidance for OIDC's large JWT and ingress header limits +ReleaseNotesUrl: https://github.com/kubernetes-sigs/headlamp/releases/tag/v0.32.0 +Documentations: +- DocumentLabel: Headlamp Documentation + DocumentUrl: https://headlamp.dev/docs/latest +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Headlamp/Headlamp/0.32.0/Headlamp.Headlamp.yaml b/manifests/h/Headlamp/Headlamp/0.32.0/Headlamp.Headlamp.yaml new file mode 100644 index 0000000000000..5b5ae15456313 --- /dev/null +++ b/manifests/h/Headlamp/Headlamp/0.32.0/Headlamp.Headlamp.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Headlamp.Headlamp +PackageVersion: 0.32.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.15/HearthSim.HearthstoneDeckTracker.installer.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.15/HearthSim.HearthstoneDeckTracker.installer.yaml new file mode 100644 index 0000000000000..63d7bee6ddb8f --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.15/HearthSim.HearthstoneDeckTracker.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.44.15 +Platform: +- Windows.Desktop +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/HearthSim/HDT-Releases/releases/download/v1.44.15/HDT-Installer.exe + InstallerSha256: BFEA426F056FEFFACDAC6CA059DD27A456E3D41A61A72D4DA8C88921176345A4 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-24 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.15/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.15/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml new file mode 100644 index 0000000000000..e12b30824b418 --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.15/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.44.15 +PackageLocale: en-US +Publisher: HearthSim +PublisherUrl: https://hearthsim.net +Author: HearthSim +PackageName: Hearthstone Deck Tracker +PackageUrl: https://hsreplay.net/downloads +License: Proprietary +LicenseUrl: https://hearthsim.net/legal/terms-of-service.html +Copyright: Copyright © HearthSim. All Rights Reserved. +CopyrightUrl: https://hearthsim.net/legal/terms-of-service.html +ShortDescription: A deck tracker and deck manager for Hearthstone on Windows +Tags: +- deck-tracker +- game +- hearthstone +ReleaseNotesUrl: https://github.com/HearthSim/HDT-Releases/releases/tag/v1.44.15 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.15/HearthSim.HearthstoneDeckTracker.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.15/HearthSim.HearthstoneDeckTracker.yaml new file mode 100644 index 0000000000000..04233609a022d --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.15/HearthSim.HearthstoneDeckTracker.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: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.44.15 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.16/HearthSim.HearthstoneDeckTracker.installer.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.16/HearthSim.HearthstoneDeckTracker.installer.yaml new file mode 100644 index 0000000000000..6c2a158837105 --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.16/HearthSim.HearthstoneDeckTracker.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.44.16 +Platform: +- Windows.Desktop +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/HearthSim/HDT-Releases/releases/download/v1.44.16/HDT-Installer.exe + InstallerSha256: D62DFC54D08BAAF02411B3EF5D8B919C18CA7FD4B7D15BBA79D24B3AB1AC4ED9 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-30 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.16/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.16/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml new file mode 100644 index 0000000000000..5397b271de3ac --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.16/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.44.16 +PackageLocale: en-US +Publisher: HearthSim +PublisherUrl: https://hearthsim.net +Author: HearthSim +PackageName: Hearthstone Deck Tracker +PackageUrl: https://hsreplay.net/downloads +License: Proprietary +LicenseUrl: https://hearthsim.net/legal/terms-of-service.html +Copyright: Copyright © HearthSim. All Rights Reserved. +CopyrightUrl: https://hearthsim.net/legal/terms-of-service.html +ShortDescription: A deck tracker and deck manager for Hearthstone on Windows +Tags: +- deck-tracker +- game +- hearthstone +ReleaseNotesUrl: https://github.com/HearthSim/HDT-Releases/releases/tag/v1.44.16 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.16/HearthSim.HearthstoneDeckTracker.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.16/HearthSim.HearthstoneDeckTracker.yaml new file mode 100644 index 0000000000000..9aaba4c895099 --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.44.16/HearthSim.HearthstoneDeckTracker.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: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.44.16 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.0/HearthSim.HearthstoneDeckTracker.installer.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.0/HearthSim.HearthstoneDeckTracker.installer.yaml new file mode 100644 index 0000000000000..e467d823c243d --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.0/HearthSim.HearthstoneDeckTracker.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.0 +Platform: +- Windows.Desktop +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/HearthSim/HDT-Releases/releases/download/v1.45.0/HDT-Installer.exe + InstallerSha256: 88124AC2281A9428E8EB63704F227990987ADDAF786E0E79B5E93C632E433312 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-01 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.0/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.0/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml new file mode 100644 index 0000000000000..e725578fe40ec --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.0/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.0 +PackageLocale: en-US +Publisher: HearthSim +PublisherUrl: https://hearthsim.net +Author: HearthSim +PackageName: Hearthstone Deck Tracker +PackageUrl: https://hsreplay.net/downloads +License: Proprietary +LicenseUrl: https://hearthsim.net/legal/terms-of-service.html +Copyright: Copyright © HearthSim. All Rights Reserved. +CopyrightUrl: https://hearthsim.net/legal/terms-of-service.html +ShortDescription: A deck tracker and deck manager for Hearthstone on Windows +Tags: +- deck-tracker +- game +- hearthstone +ReleaseNotesUrl: https://github.com/HearthSim/HDT-Releases/releases/tag/v1.45.0 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.0/HearthSim.HearthstoneDeckTracker.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.0/HearthSim.HearthstoneDeckTracker.yaml new file mode 100644 index 0000000000000..6a773862bdf04 --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.0/HearthSim.HearthstoneDeckTracker.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: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.1/HearthSim.HearthstoneDeckTracker.installer.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.1/HearthSim.HearthstoneDeckTracker.installer.yaml new file mode 100644 index 0000000000000..876b2ee47f47f --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.1/HearthSim.HearthstoneDeckTracker.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.1 +Platform: +- Windows.Desktop +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/HearthSim/HDT-Releases/releases/download/v1.45.1/HDT-Installer.exe + InstallerSha256: E4C97B733CEF37EFAA7F3273EAEA86EC36723FFC03A8D0AB8AC5656BD4B2F546 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-01 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.1/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.1/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml new file mode 100644 index 0000000000000..2d19c6b2df931 --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.1/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.1 +PackageLocale: en-US +Publisher: HearthSim +PublisherUrl: https://hearthsim.net +Author: HearthSim +PackageName: Hearthstone Deck Tracker +PackageUrl: https://hsreplay.net/downloads +License: Proprietary +LicenseUrl: https://hearthsim.net/legal/terms-of-service.html +Copyright: Copyright © HearthSim. All Rights Reserved. +CopyrightUrl: https://hearthsim.net/legal/terms-of-service.html +ShortDescription: A deck tracker and deck manager for Hearthstone on Windows +Tags: +- deck-tracker +- game +- hearthstone +ReleaseNotesUrl: https://github.com/HearthSim/HDT-Releases/releases/tag/v1.45.1 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.1/HearthSim.HearthstoneDeckTracker.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.1/HearthSim.HearthstoneDeckTracker.yaml new file mode 100644 index 0000000000000..8337a364592e3 --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.1/HearthSim.HearthstoneDeckTracker.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: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.2/HearthSim.HearthstoneDeckTracker.installer.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.2/HearthSim.HearthstoneDeckTracker.installer.yaml new file mode 100644 index 0000000000000..e3226e35baf6d --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.2/HearthSim.HearthstoneDeckTracker.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.2 +Platform: +- Windows.Desktop +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/HearthSim/HDT-Releases/releases/download/v1.45.2/HDT-Installer.exe + InstallerSha256: 8C54100C6538C36C31E28CD975CB2A724FCA371AA9B07355F445A5D4ADE158EF +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-02 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.2/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.2/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml new file mode 100644 index 0000000000000..fa6dea084ec89 --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.2/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.2 +PackageLocale: en-US +Publisher: HearthSim +PublisherUrl: https://hearthsim.net +Author: HearthSim +PackageName: Hearthstone Deck Tracker +PackageUrl: https://hsreplay.net/downloads +License: Proprietary +LicenseUrl: https://hearthsim.net/legal/terms-of-service.html +Copyright: Copyright © HearthSim. All Rights Reserved. +CopyrightUrl: https://hearthsim.net/legal/terms-of-service.html +ShortDescription: A deck tracker and deck manager for Hearthstone on Windows +Tags: +- deck-tracker +- game +- hearthstone +ReleaseNotesUrl: https://github.com/HearthSim/HDT-Releases/releases/tag/v1.45.2 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.2/HearthSim.HearthstoneDeckTracker.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.2/HearthSim.HearthstoneDeckTracker.yaml new file mode 100644 index 0000000000000..465def80f4837 --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.2/HearthSim.HearthstoneDeckTracker.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: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.4/HearthSim.HearthstoneDeckTracker.installer.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.4/HearthSim.HearthstoneDeckTracker.installer.yaml new file mode 100644 index 0000000000000..c9cdfb1d789d4 --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.4/HearthSim.HearthstoneDeckTracker.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.4 +Platform: +- Windows.Desktop +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/HearthSim/HDT-Releases/releases/download/v1.45.4/HDT-Installer.exe + InstallerSha256: 43399934B748AED7D35EFF8ED93018725BE231803C9073531CF0B74A0975A1A0 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-03 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.4/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.4/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml new file mode 100644 index 0000000000000..8508acd45b7b0 --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.4/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.4 +PackageLocale: en-US +Publisher: HearthSim +PublisherUrl: https://hearthsim.net +Author: HearthSim +PackageName: Hearthstone Deck Tracker +PackageUrl: https://hsreplay.net/downloads +License: Proprietary +LicenseUrl: https://hearthsim.net/legal/terms-of-service.html +Copyright: Copyright © HearthSim. All Rights Reserved. +CopyrightUrl: https://hearthsim.net/legal/terms-of-service.html +ShortDescription: A deck tracker and deck manager for Hearthstone on Windows +Tags: +- deck-tracker +- game +- hearthstone +ReleaseNotesUrl: https://github.com/HearthSim/HDT-Releases/releases/tag/v1.45.4 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.4/HearthSim.HearthstoneDeckTracker.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.4/HearthSim.HearthstoneDeckTracker.yaml new file mode 100644 index 0000000000000..fd88b2a0a2f69 --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.4/HearthSim.HearthstoneDeckTracker.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: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.5/HearthSim.HearthstoneDeckTracker.installer.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.5/HearthSim.HearthstoneDeckTracker.installer.yaml new file mode 100644 index 0000000000000..b0bcacf3425a5 --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.5/HearthSim.HearthstoneDeckTracker.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.5 +Platform: +- Windows.Desktop +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/HearthSim/HDT-Releases/releases/download/v1.45.5/HDT-Installer.exe + InstallerSha256: 2E23175CA245F1A0B2791987CC791953ABBF7256D8AEF2F8B8159EA08A87D537 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-07-04 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.5/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.5/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml new file mode 100644 index 0000000000000..879b8df9004ec --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.5/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.5 +PackageLocale: en-US +Publisher: HearthSim +PublisherUrl: https://hearthsim.net +Author: HearthSim +PackageName: Hearthstone Deck Tracker +PackageUrl: https://hsreplay.net/downloads +License: Proprietary +LicenseUrl: https://hearthsim.net/legal/terms-of-service.html +Copyright: Copyright © HearthSim. All Rights Reserved. +CopyrightUrl: https://hearthsim.net/legal/terms-of-service.html +ShortDescription: A deck tracker and deck manager for Hearthstone on Windows +Tags: +- deck-tracker +- game +- hearthstone +ReleaseNotesUrl: https://github.com/HearthSim/HDT-Releases/releases/tag/v1.45.5 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.5/HearthSim.HearthstoneDeckTracker.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.5/HearthSim.HearthstoneDeckTracker.yaml new file mode 100644 index 0000000000000..19a96bd00e4c6 --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.5/HearthSim.HearthstoneDeckTracker.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: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/h/Helm/Helm/3.18.4/Helm.Helm.installer.yaml b/manifests/h/Helm/Helm/3.18.4/Helm.Helm.installer.yaml new file mode 100644 index 0000000000000..398012a711b42 --- /dev/null +++ b/manifests/h/Helm/Helm/3.18.4/Helm.Helm.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS2.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Helm.Helm +PackageVersion: 3.18.4 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: windows-amd64/helm.exe + PortableCommandAlias: helm + InstallerUrl: https://get.helm.sh/helm-v3.18.4-windows-amd64.zip + InstallerSha256: 0AF12A2233D71EF4207DB1EABBF103B554631206ED5B2B34FC56B73A52596888 +- Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: windows-arm64/helm.exe + PortableCommandAlias: helm + InstallerUrl: https://get.helm.sh/helm-v3.18.4-windows-arm64.zip + InstallerSha256: DE6BC8FCFFEB041F524A92C6026EA22EF6F939118A30E6BB8B996B77A38486B1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/Helm/Helm/3.18.4/Helm.Helm.locale.en-US.yaml b/manifests/h/Helm/Helm/3.18.4/Helm.Helm.locale.en-US.yaml new file mode 100644 index 0000000000000..c701209de80f4 --- /dev/null +++ b/manifests/h/Helm/Helm/3.18.4/Helm.Helm.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS2.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Helm.Helm +PackageVersion: 3.18.4 +PackageLocale: en-US +Publisher: Helm +PublisherUrl: https://helm.sh +PublisherSupportUrl: https://github.com/helm/community +Author: Helm +PackageName: Helm +PackageUrl: https://helm.sh +License: Apache-2.0 +LicenseUrl: https://github.com/helm/helm/blob/main/LICENSE +Copyright: Helm Authors 2025 +ShortDescription: The Package Manager for Kubernetes +Moniker: helm +Tags: +- kubernetes +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Helm/Helm/3.18.4/Helm.Helm.yaml b/manifests/h/Helm/Helm/3.18.4/Helm.Helm.yaml new file mode 100644 index 0000000000000..d63df22ac7522 --- /dev/null +++ b/manifests/h/Helm/Helm/3.18.4/Helm.Helm.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.6 $debug=NVS2.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Helm.Helm +PackageVersion: 3.18.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/Henry++/simplewall/3.8.6.1/Henry++.simplewall.installer.yaml b/manifests/h/Henry++/simplewall/3.8.6.1/Henry++.simplewall.installer.yaml new file mode 100644 index 0000000000000..31de5dea8e6ae --- /dev/null +++ b/manifests/h/Henry++/simplewall/3.8.6.1/Henry++.simplewall.installer.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Henry++.simplewall +PackageVersion: 3.8.6.1 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +ExpectedReturnCodes: +- InstallerReturnCode: 2 + ReturnResponse: fileInUse +UpgradeBehavior: install +ProductCode: simplewall +ReleaseDate: 2025-05-21 +AppsAndFeaturesEntries: +- ProductCode: simplewall +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\simplewall' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/henrypp/simplewall/releases/download/v.3.8.6.1/simplewall-3.8.6.1-setup.exe + InstallerSha256: 19ABF6DBCC035B408EFE6E717F0E52E55174A178FC3F85196AF434C371A3E3B1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/Henry++/simplewall/3.8.6.1/Henry++.simplewall.locale.en-US.yaml b/manifests/h/Henry++/simplewall/3.8.6.1/Henry++.simplewall.locale.en-US.yaml new file mode 100644 index 0000000000000..f0bc9c2430413 --- /dev/null +++ b/manifests/h/Henry++/simplewall/3.8.6.1/Henry++.simplewall.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Henry++.simplewall +PackageVersion: 3.8.6.1 +PackageLocale: en-US +Publisher: Henry++ +PublisherUrl: https://github.com/henrypp/ +PublisherSupportUrl: https://github.com/henrypp/simplewall/issues +Author: Henrypp +PackageName: simplewall +PackageUrl: https://github.com/henrypp/simplewall/releases/tag/v.3.8.6 +License: GPL-3.0 +LicenseUrl: https://github.com/henrypp/simplewall/blob/HEAD/LICENSE +Copyright: Copyright (C) 2007 Free Software Foundation, Inc. +CopyrightUrl: https://raw.githubusercontent.com/henrypp/simplewall/master/LICENSE +ShortDescription: Simple tool to configure Windows Filtering Platform (WFP) which can configure network activity on your computer. +Moniker: simplewall +Tags: +- administration +- firewall +- foss +- internet +- network +- network-monitor +- open-source +ReleaseNotes: |- + This is a maintenance release. + - fixed "open containing folder" error (issue #1977) + - fixed crash at startup (issue #1979) + - fixed crash dump (issue #1958) +ReleaseNotesUrl: https://github.com/henrypp/simplewall/releases/tag/v.3.8.6.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Henry++/simplewall/3.8.6.1/Henry++.simplewall.yaml b/manifests/h/Henry++/simplewall/3.8.6.1/Henry++.simplewall.yaml new file mode 100644 index 0000000000000..8403118d007fd --- /dev/null +++ b/manifests/h/Henry++/simplewall/3.8.6.1/Henry++.simplewall.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: Henry++.simplewall +PackageVersion: 3.8.6.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hibbiki/Chromium/138.0.7204.50/Hibbiki.Chromium.installer.yaml b/manifests/h/Hibbiki/Chromium/138.0.7204.50/Hibbiki.Chromium.installer.yaml new file mode 100644 index 0000000000000..26e9d5d088aac --- /dev/null +++ b/manifests/h/Hibbiki/Chromium/138.0.7204.50/Hibbiki.Chromium.installer.yaml @@ -0,0 +1,33 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Hibbiki.Chromium +PackageVersion: 138.0.7204.50 +InstallerType: exe +InstallModes: +- silent +UpgradeBehavior: install +Protocols: +- http +- https +FileExtensions: +- htm +- html +- url +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/Hibbiki/chromium-win64/releases/download/v138.0.7204.50-r1465706/mini_installer.sync.exe + InstallerSha256: 94B0BD85AA3CA9C1C977674DB4346C7B241D607C1CBEB7BE7D7F071AD105CC30 + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/Hibbiki/chromium-win64/releases/download/v138.0.7204.50-r1465706/mini_installer.sync.exe + InstallerSha256: 94B0BD85AA3CA9C1C977674DB4346C7B241D607C1CBEB7BE7D7F071AD105CC30 + InstallerSwitches: + Custom: --system-level +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hibbiki/Chromium/138.0.7204.50/Hibbiki.Chromium.locale.en-US.yaml b/manifests/h/Hibbiki/Chromium/138.0.7204.50/Hibbiki.Chromium.locale.en-US.yaml new file mode 100644 index 0000000000000..b98f3e42c8843 --- /dev/null +++ b/manifests/h/Hibbiki/Chromium/138.0.7204.50/Hibbiki.Chromium.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Hibbiki.Chromium +PackageVersion: 138.0.7204.50 +PackageLocale: en-US +Publisher: The Chromium Authors +PublisherUrl: https://github.com/Hibbiki/chromium-win64 +Author: Hibbiki +PackageName: Chromium +PackageUrl: https://github.com/Hibbiki/chromium-win64 +License: BSD 3-Clause License +LicenseUrl: https://chromium.googlesource.com/chromium/src.git/+/refs/heads/master/LICENSE +Copyright: Copyright 2015 The Chromium Authors. All rights reserved. +CopyrightUrl: https://chromium.googlesource.com/chromium/src.git/+/refs/heads/master/LICENSE +ShortDescription: Stable Chromium build for Windows 64-bit, nothing fancy. +Tags: +- browser +- chromium +ReleaseNotes: |- + b92bf4efea2fb9280825bceb4803c60016bc9c36 ../out/x64/mini_installer.sync.exe + cd01df5038208c60b673db876e2baa55565a850b ../out/x64/chrome.sync.7z + 9995f0f4f3406778e2494f3e5104458533a97adb ../out/x64/mini_installer.nosync.exe + 5b985c033f16ebd1b93959fcb881afb441e16035 ../out/x64/chrome.nosync.7z + 234bec9eadf63b989dac4b34d63ae4e38bc77814 ../out/noarch/policy_templates.zip +ReleaseNotesUrl: https://github.com/Hibbiki/chromium-win64/releases/tag/v138.0.7204.50-r1465706 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hibbiki/Chromium/138.0.7204.50/Hibbiki.Chromium.yaml b/manifests/h/Hibbiki/Chromium/138.0.7204.50/Hibbiki.Chromium.yaml new file mode 100644 index 0000000000000..da6f4c3753a1b --- /dev/null +++ b/manifests/h/Hibbiki/Chromium/138.0.7204.50/Hibbiki.Chromium.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Hibbiki.Chromium +PackageVersion: 138.0.7204.50 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hibbiki/Chromium/138.0.7204.97/Hibbiki.Chromium.installer.yaml b/manifests/h/Hibbiki/Chromium/138.0.7204.97/Hibbiki.Chromium.installer.yaml new file mode 100644 index 0000000000000..93313d8a6af84 --- /dev/null +++ b/manifests/h/Hibbiki/Chromium/138.0.7204.97/Hibbiki.Chromium.installer.yaml @@ -0,0 +1,33 @@ +# 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: Hibbiki.Chromium +PackageVersion: 138.0.7204.97 +InstallerType: exe +InstallModes: +- silent +UpgradeBehavior: install +Protocols: +- http +- https +FileExtensions: +- htm +- html +- url +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/Hibbiki/chromium-win64/releases/download/v138.0.7204.97-r1465706/mini_installer.sync.exe + InstallerSha256: 92F30BF625A494102D9CA6EE4B5E282852B5574CC9A451622D5897871CE0A6A3 + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/Hibbiki/chromium-win64/releases/download/v138.0.7204.97-r1465706/mini_installer.sync.exe + InstallerSha256: 92F30BF625A494102D9CA6EE4B5E282852B5574CC9A451622D5897871CE0A6A3 + InstallerSwitches: + Custom: --system-level +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hibbiki/Chromium/138.0.7204.97/Hibbiki.Chromium.locale.en-US.yaml b/manifests/h/Hibbiki/Chromium/138.0.7204.97/Hibbiki.Chromium.locale.en-US.yaml new file mode 100644 index 0000000000000..38bab5088b1c9 --- /dev/null +++ b/manifests/h/Hibbiki/Chromium/138.0.7204.97/Hibbiki.Chromium.locale.en-US.yaml @@ -0,0 +1,28 @@ +# 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: Hibbiki.Chromium +PackageVersion: 138.0.7204.97 +PackageLocale: en-US +Publisher: The Chromium Authors +PublisherUrl: https://github.com/Hibbiki/chromium-win64 +Author: Hibbiki +PackageName: Chromium +PackageUrl: https://github.com/Hibbiki/chromium-win64 +License: BSD 3-Clause License +LicenseUrl: https://chromium.googlesource.com/chromium/src.git/+/refs/heads/master/LICENSE +Copyright: Copyright 2015 The Chromium Authors. All rights reserved. +CopyrightUrl: https://chromium.googlesource.com/chromium/src.git/+/refs/heads/master/LICENSE +ShortDescription: Stable Chromium build for Windows 64-bit, nothing fancy. +Tags: +- browser +- chromium +ReleaseNotes: |- + 06b8daf5ff62174f5a62e5e1ad0bdd18cb20e47f ../out/x64/mini_installer.sync.exe + f694d0ac65c178ff04de0e810829d88626ee742c ../out/x64/chrome.sync.7z + 949dd71b594a4e693e2e559decbbfdd4df4bc0af ../out/x64/mini_installer.nosync.exe + 9af7fa052211af9b74e415fecd53548f2c83ed55 ../out/x64/chrome.nosync.7z + 496d1ff4011728c4cf8bd4ec4924bf96e235746c ../out/noarch/policy_templates.zip +ReleaseNotesUrl: https://github.com/Hibbiki/chromium-win64/releases/tag/v138.0.7204.97-r1465706 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hibbiki/Chromium/138.0.7204.97/Hibbiki.Chromium.yaml b/manifests/h/Hibbiki/Chromium/138.0.7204.97/Hibbiki.Chromium.yaml new file mode 100644 index 0000000000000..37a7fea67da4e --- /dev/null +++ b/manifests/h/Hibbiki/Chromium/138.0.7204.97/Hibbiki.Chromium.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: Hibbiki.Chromium +PackageVersion: 138.0.7204.97 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/High-Logic/FontCreator/15.0.0.3022/High-Logic.FontCreator.installer.yaml b/manifests/h/High-Logic/FontCreator/15.0.0.3022/High-Logic.FontCreator.installer.yaml deleted file mode 100644 index d107a5b974226..0000000000000 --- a/manifests/h/High-Logic/FontCreator/15.0.0.3022/High-Logic.FontCreator.installer.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: High-Logic.FontCreator -PackageVersion: 15.0.0.3022 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -FileExtensions: -- designspace -- fcp -- glyphs -- otf -- ttc -- ttf -- ufo -- woff -- woff2 -ReleaseDate: 2025-05-29 -Installers: -- Architecture: x86 - InstallerUrl: https://www.high-logic.com/FontCreatorSetup.exe - InstallerSha256: 859054D803535D979BC8D70C021404FA2A43BC2A48AA02086FF36FE8F4196698 - ProductCode: FontCreator8_is1 -- Architecture: x64 - InstallerUrl: https://www.high-logic.com/FontCreatorSetup-x64.exe - InstallerSha256: E3C09C7C5B0EDEB4E222D965A47FFB8CC38F56815963458ED2993E5E88F9E1CF - ProductCode: FontCreator11-x64_is1 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/h/High-Logic/FontCreator/15.0.0.3022/High-Logic.FontCreator.yaml b/manifests/h/High-Logic/FontCreator/15.0.0.3022/High-Logic.FontCreator.yaml deleted file mode 100644 index 22c098432704e..0000000000000 --- a/manifests/h/High-Logic/FontCreator/15.0.0.3022/High-Logic.FontCreator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: High-Logic.FontCreator -PackageVersion: 15.0.0.3022 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/h/High-Logic/FontCreator/15.0.0.3024/High-Logic.FontCreator.installer.yaml b/manifests/h/High-Logic/FontCreator/15.0.0.3024/High-Logic.FontCreator.installer.yaml new file mode 100644 index 0000000000000..470428fd8187c --- /dev/null +++ b/manifests/h/High-Logic/FontCreator/15.0.0.3024/High-Logic.FontCreator.installer.yaml @@ -0,0 +1,30 @@ +# Automatically updated by the winget bot at 2025/Jul/02 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: High-Logic.FontCreator +PackageVersion: 15.0.0.3024 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- designspace +- fcp +- glyphs +- otf +- ttc +- ttf +- ufo +- woff +- woff2 +ReleaseDate: 2025-05-29 +Installers: +- Architecture: x86 + InstallerUrl: https://www.high-logic.com/FontCreatorSetup.exe + InstallerSha256: 1A9967CC9FCB5EAE9EBBF4B0D4BEA4D13206E52F1DF6159BD7C6443886A254BF + ProductCode: FontCreator8_is1 +- Architecture: x64 + InstallerUrl: https://www.high-logic.com/FontCreatorSetup-x64.exe + InstallerSha256: 2C195C2D3BDA93D7F63F929C062FEFB8340B2B52CBEDAAB245ABC1D5370A87D1 + ProductCode: FontCreator11-x64_is1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/High-Logic/FontCreator/15.0.0.3022/High-Logic.FontCreator.locale.en-US.yaml b/manifests/h/High-Logic/FontCreator/15.0.0.3024/High-Logic.FontCreator.locale.en-US.yaml similarity index 93% rename from manifests/h/High-Logic/FontCreator/15.0.0.3022/High-Logic.FontCreator.locale.en-US.yaml rename to manifests/h/High-Logic/FontCreator/15.0.0.3024/High-Logic.FontCreator.locale.en-US.yaml index 32533f5e00967..5f6910fb3f1e6 100644 --- a/manifests/h/High-Logic/FontCreator/15.0.0.3022/High-Logic.FontCreator.locale.en-US.yaml +++ b/manifests/h/High-Logic/FontCreator/15.0.0.3024/High-Logic.FontCreator.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod +# Automatically updated by the winget bot at 2025/Jul/02 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: High-Logic.FontCreator -PackageVersion: 15.0.0.3022 +PackageVersion: 15.0.0.3024 PackageLocale: en-US Publisher: High-Logic B.V. PublisherUrl: https://www.high-logic.com/ diff --git a/manifests/h/High-Logic/FontCreator/15.0.0.3022/High-Logic.FontCreator.locale.zh-CN.yaml b/manifests/h/High-Logic/FontCreator/15.0.0.3024/High-Logic.FontCreator.locale.zh-CN.yaml similarity index 81% rename from manifests/h/High-Logic/FontCreator/15.0.0.3022/High-Logic.FontCreator.locale.zh-CN.yaml rename to manifests/h/High-Logic/FontCreator/15.0.0.3024/High-Logic.FontCreator.locale.zh-CN.yaml index d5f1540deb0fa..29beed0b69ab3 100644 --- a/manifests/h/High-Logic/FontCreator/15.0.0.3022/High-Logic.FontCreator.locale.zh-CN.yaml +++ b/manifests/h/High-Logic/FontCreator/15.0.0.3024/High-Logic.FontCreator.locale.zh-CN.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod +# Automatically updated by the winget bot at 2025/Jul/02 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: High-Logic.FontCreator -PackageVersion: 15.0.0.3022 +PackageVersion: 15.0.0.3024 PackageLocale: zh-CN Publisher: High-Logic B.V. PackageName: High-Logic FontCreator diff --git a/manifests/h/High-Logic/FontCreator/15.0.0.3024/High-Logic.FontCreator.yaml b/manifests/h/High-Logic/FontCreator/15.0.0.3024/High-Logic.FontCreator.yaml new file mode 100644 index 0000000000000..b9c2ba7db2e1d --- /dev/null +++ b/manifests/h/High-Logic/FontCreator/15.0.0.3024/High-Logic.FontCreator.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/02 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: High-Logic.FontCreator +PackageVersion: 15.0.0.3024 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/HiroSystems/Clarinet/3.2.0/HiroSystems.Clarinet.installer.yaml b/manifests/h/HiroSystems/Clarinet/3.2.0/HiroSystems.Clarinet.installer.yaml new file mode 100644 index 0000000000000..4b6f8788a6e5c --- /dev/null +++ b/manifests/h/HiroSystems/Clarinet/3.2.0/HiroSystems.Clarinet.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: HiroSystems.Clarinet +PackageVersion: 3.2.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{30086751-774D-4FAC-99E6-2F24EB755917}' +ReleaseDate: 2025-06-30 +AppsAndFeaturesEntries: +- ProductCode: '{30086751-774D-4FAC-99E6-2F24EB755917}' + UpgradeCode: '{E41901A3-0B71-4D86-9175-B12D7C7533BE}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\clarinet\bin' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hirosystems/clarinet/releases/download/v3.2.0/clarinet-windows-x64.msi + InstallerSha256: D82FC244D1889425AB78BFC6D6DE39B7BB6AE71DE7AE0E9DFF28B2232FED41F7 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/HiroSystems/Clarinet/3.2.0/HiroSystems.Clarinet.locale.en-US.yaml b/manifests/h/HiroSystems/Clarinet/3.2.0/HiroSystems.Clarinet.locale.en-US.yaml new file mode 100644 index 0000000000000..904b5738bbd77 --- /dev/null +++ b/manifests/h/HiroSystems/Clarinet/3.2.0/HiroSystems.Clarinet.locale.en-US.yaml @@ -0,0 +1,58 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: HiroSystems.Clarinet +PackageVersion: 3.2.0 +PackageLocale: en-US +Publisher: Hiro Systems +PublisherUrl: https://www.hiro.so/ +PublisherSupportUrl: https://github.com/hirosystems/clarinet/issues +PrivacyUrl: https://www.hiro.so/terms-privacy +Author: Hiro Systems +PackageName: clarinet +PackageUrl: https://github.com/hirosystems/clarinet +License: GPL-3.0 +LicenseUrl: https://github.com/hirosystems/clarinet/blob/HEAD/LICENSE +Copyright: Copyright (C) 2007 Free Software Foundation, Inc +CopyrightUrl: https://raw.githubusercontent.com/hirosystems/clarinet/main/LICENSE +ShortDescription: Command-line tool and runtime for the Clarity smart contract language. +Description: Clarinet is a Clarity runtime packaged as a command line tool, designed to facilitate smart contract understanding, development, testing and deployment. Clarinet consists of a Clarity REPL and a testing harness, which, when used together allow you to rapidly develop and test a Clarity smart contract, with the need to deploy the contract to a local devnet or testnet. +Moniker: clarinet +Tags: +- blockchain +- cli +- command-line +- stacks +ReleaseNotes: |- + ✨ Features + Hightlight: With this release, the Devnet now starts directly in epoch 3.0. + - Devnet snapshot (#1812) (b93870e) + - Go to trait definition for impl-trait and use-trait (#1867) (23fcf54) + - Add release build for x86_64-unknown-linux-musl (#1860) (6640d77) + - add rate limit retries in native mxs data fetching (#1852) (69baa1a) + 🪲 Bug Fixes + - Better error messages for contract call failures (#1874) + - Devnet chainhook event observer (#1881) (8bccd83) + - "Go to definition" functionality for native LSP (#1859) (93461dc) + - Incorrect contract path in "Go to" reply from copy/paste error in previous PR (#1865) (d4fe76f) + - Leading newlines formatting problem (#1856) (06edda4) + - set_tx_sender (#1861) (98683ab) + - Document range formatting (#1847) (c9b58d3) + ⚡ Performance improvement + - Improve performance and interface of text coloring macros (#1873) (83aed88) + - Remove clone of entire definitions hashmap for file during definitions lookup (#1869) (b6ba476) + - Remove unnecessary to_vec() in recursive functions (#1868) (0196b00) + - Remove unnecesary clone()s and to_string()s (#1866) (8548790) + - iter_with_drain (#1858) (d477945) + 🔁 Refactor + - Fix clippy uninlined_format_args (#1877) (fb9f9a6) + 📚 Documentation Changes + - Fix typo in comment (#1863) (10fb1cf) + Contributors + @tippenein + @hugocaillard + @jbencin + @racequite +ReleaseNotesUrl: https://github.com/hirosystems/clarinet/releases/tag/v3.2.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HiroSystems/Clarinet/3.2.0/HiroSystems.Clarinet.yaml b/manifests/h/HiroSystems/Clarinet/3.2.0/HiroSystems.Clarinet.yaml new file mode 100644 index 0000000000000..b9cb469af75d1 --- /dev/null +++ b/manifests/h/HiroSystems/Clarinet/3.2.0/HiroSystems.Clarinet.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: HiroSystems.Clarinet +PackageVersion: 3.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.0/HiroshibaKazuyuki.VOICEVOX.CPU.installer.yaml b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.0/HiroshibaKazuyuki.VOICEVOX.CPU.installer.yaml new file mode 100644 index 0000000000000..d0301779328dd --- /dev/null +++ b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.0/HiroshibaKazuyuki.VOICEVOX.CPU.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: HiroshibaKazuyuki.VOICEVOX.CPU +PackageVersion: 0.24.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: VOICEVOX/VOICEVOX.exe +UpgradeBehavior: install +ReleaseDate: 2025-06-25 +Installers: +- Architecture: neutral + InstallerUrl: https://github.com/VOICEVOX/voicevox/releases/download/0.24.0/voicevox-windows-cpu-0.24.0.zip + InstallerSha256: D2451CB9B4CA414E6B5A6DF2AEED59BEF0C8106AADEBCFAFA69DAE46A8605899 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.0/HiroshibaKazuyuki.VOICEVOX.CPU.locale.en-US.yaml b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.0/HiroshibaKazuyuki.VOICEVOX.CPU.locale.en-US.yaml new file mode 100644 index 0000000000000..016ff785afe29 --- /dev/null +++ b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.0/HiroshibaKazuyuki.VOICEVOX.CPU.locale.en-US.yaml @@ -0,0 +1,136 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: HiroshibaKazuyuki.VOICEVOX.CPU +PackageVersion: 0.24.0 +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̶版̶)̶ + 追加機能 + - プロジェクトの複製を保存する機能を追加 + - ARM64版Linuxエディタの提供 + - トーク:辞書に登録されていない英単語の自然なカタカナ読みを可能に + What's Changed + - ソング:ノート追加のプレビュー処理をステートパターンで実装 by @sigprogramming in #2171 + - [project-sequencer-statemachine] mainブランチをマージ by @sigprogramming in #2404 + - [project-sequencer-statemachine] MoveNoteStateを追加 by @sigprogramming in #2412 + - fix(test): [project-sequencer-statemachine] Linux の e2e テストで、electron を --no-sandbox で動くように by @Hiroshiba in #2465 + - [project-sequencer-statemachine] ResizeNoteLeftStateを追加 by @sigprogramming in #2463 + - [project-sequencer-statemachine] ResizeNoteRightStateを追加 by @sigprogramming in #2477 + - [project-sequencer-statemachine] SelectNotesWithRectStateを追加してIdleStateを変更 by @sigprogramming in #2480 + - add: [project-sequencer-statemachine] DrawPitchStateを追加 by @sigprogramming in #2482 + - add: [project-sequencer-statemachine] ErasePitchStateを追加 by @sigprogramming in #2487 + - [project-sequencer-statemachine] StoreをDIするように変更 by @sigprogramming in #2495 + - [project-sequencer-statemachine] ステートのインスタンスの作成をファクトリ関数で行うようにする by @sigprogramming in #2500 + - [project-sequencer-statemachine] ファイルを分けて整理 by @sigprogramming in #2504 + - [project-sequencer-statemachine] ツールに対応 by @sigprogramming in #2517 + - feat: [project-sequencer-statemachine] 初期ステートの設定周りを変更 by @sigprogramming in #2518 + - [project-sequencer-statemachine] transitionToでonExitが呼ばれた場合でもステートが正しく動作するようにする by @sigprogramming in #2519 + - feat: [project-sequencer-statemachine] CursorStateの更新を行うようにする by @sigprogramming in #2520 + - [project-sequencer-statemachine] mainブランチをマージ by @sigprogramming in #2525 + - fix: [project-sequencer-statemachine] editNotesToolIdleStateのupdateCursorStateを修正 by @sigprogramming in #2531 + - refactor: [project-sequencer-statemachine] executeNotesSelectionProcessを分割 by @sigprogramming in #2532 + - fix: [project-sequencer-statemachine] targetAreaを修正 by @sigprogramming in #2533 + - feat: [project-sequencer-statemachine] previewModeを追加 by @sigprogramming in #2535 + - feat: [project-sequencer-statemachine] ダブルクリック時はaddNoteStateに遷移せずに直接ノート追加の処理を行うようにする by @sigprogramming in #2540 + - feat: [project-sequencer-statemachine] ステートマシンに置き換える by @sigprogramming in #2544 + - feat: [project-sequencer-statemachine] EditLyricStateを追加 by @sigprogramming in #2553 + - feat: プロジェクトの複製を保存する機能を追加 by @sevenc-nanashi in #2571 + - refactor(test): playwrightテストの共通部分を少しリファクタリング、歌詞編集テストの移動 by @Hiroshiba in #2562 + - chore: 7zやtyposのダウンロードをリトライする by @Hiroshiba in #2566 + - feat: [project-sequencer-statemachine] mainにマージする by @sigprogramming in #2555 + - chore: エンジンのOpenAPI関数簡略化に追従 by @Hiroshiba in #2582 + - chore(build): typosのバージョンアップ: 1.21.0 -> 1.30.0 by @nanae772 in #2584 + - feat: arm64版linuxエディタのデプロイ可能にする by @nanae772 in #2579 + - test: ドラッグで長いノートを追加するテストと、複数ノートを一度に歌詞編集するテストを追加 by @Hiroshiba in #2561 + - refactor: ステートのprivateメソッドを下の方に移動 by @sigprogramming in #2588 + - feat: 音声のスケジューリングでずれが発生しないようにする by @sigprogramming in #2594 + - chore: eslint-plugin-file-progressとeslint-config-flat-gitignoreを導入してeslintを改善 by @sevenc-nanashi in #2581 + - fix: 「くわ」が別モーラとして分割されない問題を修正 by @Hiroshiba in #2604 + - chore: ESLintのキャッシュを有効化 by @nanae772 in #2597 + - chore: typosのバージョンを管理 by @nanae772 in #2595 + - chore: 依存関係を更新 by @sevenc-nanashi in #2598 + - chore: ESModuleにする by @sevenc-nanashi in #2580 + - fix!: bpmInputBufferをなくしつつ、再生中でもbpmを変更できるようにする by @Hiroshiba in #2603 + - fix: Tabキーで自動スクロールしない問題を修正(#2599) by @terapotan in #2606 + - build: インストール時にVOICEVOX-CPU-ARCH.AppImageからVOICEVOX.AppImageにrenameするようにする by @madosuki in #2590 + - docs: 商用以外のライセンスに配慮した案内に変更 by @Hiroshiba in #2609 + - chore: preview-pagesのワークフローをownerがVOICEVOXであるときのみ実行するようにする by @nanae772 in #2612 + - docs: issueの自動クローズについてより伝わりやすい文面の提案 by @nanae772 in #2613 + - refactor: download7z.ts, downloadTypos.tsで使われていたpath.resolveをpath.joinに置き換える by @nanae772 in #2614 + - fix: 再生位置のハイライトが動かなかったのを修正 by @sevenc-nanashi in #2621 + - refactor: gridInfoではなくnumMeasuresをinjectするようにする by @sigprogramming in #2605 + - refactor: プロジェクト保存周りの関数を別ファイルに切り出してリファクタリング by @Hiroshiba in #2573 + - docs: コードの歩き方.mdを最新の情報に更新 by @Hiroshiba in #2617 + - fix: 無くなったフレーズのピッチやボリュームを削除していなかったので修正 by @sigprogramming in #2622 + - fix: プリセット管理ダイアログをSET_DIALOG_OPENで開くように変更する by @madosuki in #2623 + - refactor: ヘルプダイアログを除くcomputed+@update:modelValueパターンで開くダイアログをdefineModelを使うようにする by @madosuki in #2624 + - fix: ヘルプダイアログが無限に開けるのを修正 #2610 by @madosuki in #2625 + - feat: ソング:カーソルをシーケンサーの端に持っていったときにスクロールする機能を追加(#2319) by @terapotan in #2583 + - refactor: useMountedを追加し、mountedの管理を統一 by @Hiroshiba in #2629 + - chore: eslintにvitestプラグインを追加 by @Hiroshiba in #2628 + - chore(tests): vitestのimportを明示的にする by @Hiroshiba in #2630 + - refactor: MenuBarの定義を分散 by @sevenc-nanashi in #2596 + - refactor(MenuBar): subMenuDataのpropsを統合 by @Hiroshiba in #2633 + - feat: ピッチ生成APIでピッチの更新を行うようにする by @sigprogramming in #2635 + - test: 音声書き出しe2eテスト by @Hiroshiba in #2473 + - refactor: ソングのレンダリング関係の型と関数を移動 by @sigprogramming in #2639 + - chore(docs): preview-pagesのURLを更新 by @Hiroshiba in #2640 + - refactor: FrameAudioQueryの生成と音声合成の処理をaction化 by @sigprogramming in #2641 + - refactor: selectPriorPhrase関数のインターフェースを変更 by @sigprogramming in #2638 + - ci: Ubuntu 22.04に更新 by @Hiroshiba in #2647 + - refactor: generatePhrases関数をリファクタリング by @sigprogramming in #2643 + - refactor: electronのカレントディレクトリの変更のロジックを関数の外に出す by @Hiroshiba in #2569 + - refactor: generateQuerySourceなどの関数をsongTrackRendering.tsに移動 by @sigprogramming in #2642 + - refactor: generateQueryなどの関数をsongTrackRendering.tsに移動 by @sigprogramming in #2648 + - refactor: installVvppEngineをDisplayableErrorをthrowする形に変更 by @Hiroshiba in #2557 + - chore: キャラクターダイアログ系コンポーネントをOldプレフィックスを付けてコピー by @takusea in #2644 + - feat!: キャラクター関連のダイアログを再設計 by @takusea in #2505 + - test: singFrameF0のモックを追加 by @sigprogramming in #2652 + - refactor: SongTrackRendererを追加 by @sigprogramming in #2651 + - feat(design): テキストダイアログをリデザイン by @takusea in #2654 + - build: [release-0.23] to 0.23.1 by @Hiroshiba in #2659 + - fix(build): [release-0.23] Linux Nvidia ビルドのコメント忘れ by @Hiroshiba in #2660 + - chore!: merge 0.23.1 by @Hiroshiba in #2662 + - build: [release-0.23] Linux NVIDIA の設定を復元 by @Hiroshiba in #2663 + - chore(build): #2663 をマージ by @Hiroshiba in #2664 + - refactor: SongTrackRendererでレンダリングを行うようにする by @sigprogramming in #2667 + - refactor: os, path, fsの名前付きインポートをデフォルトインポートに変更 by @yohaku7 in #2673 + - fix: テキストダイアログを閉じた際にUIロックが解除されない不具合を修正 by @takusea in #2658 + - feat: カタカナ英語のsupported_featuresをエンジン管理UIに追加 by @sevenc-nanashi in #2671 + - feat: 音素タイミング編集データをプロジェクトで保持するようにする by @sigprogramming in #2675 + - fix: アップデートのお知らせダイアログが閉じられない問題を修正 by @sabonerune in #2669 + - build: [release-0.24] to 0.24.0 by @Hiroshiba in #2682 + - feat: OpenAPI Generatorをpnpm runで実行できるように by @sevenc-nanashi in #2674 + - feat(複数選択): 一括並び替えを追加 by @sevenc-nanashi in #2678 + - fix: ドラッグアンドドロップでvvprojファイルが開けないバグを修正 by @Hiroshiba in #2687 + New Contributors + - @yohaku7 made their first contribution in #2673 + Full Changelog: 0.23.0...0.24.0 +ReleaseNotesUrl: https://github.com/VOICEVOX/voicevox/releases/tag/0.24.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.0/HiroshibaKazuyuki.VOICEVOX.CPU.yaml b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.0/HiroshibaKazuyuki.VOICEVOX.CPU.yaml new file mode 100644 index 0000000000000..2860266ba59f9 --- /dev/null +++ b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.0/HiroshibaKazuyuki.VOICEVOX.CPU.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: HiroshibaKazuyuki.VOICEVOX.CPU +PackageVersion: 0.24.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.1/HiroshibaKazuyuki.VOICEVOX.CPU.installer.yaml b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.1/HiroshibaKazuyuki.VOICEVOX.CPU.installer.yaml new file mode 100644 index 0000000000000..c1666b68720ee --- /dev/null +++ b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.1/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.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: VOICEVOX/VOICEVOX.exe +UpgradeBehavior: install +ReleaseDate: 2025-06-30 +Installers: +- Architecture: neutral + InstallerUrl: https://github.com/VOICEVOX/voicevox/releases/download/0.24.1/voicevox-windows-cpu-0.24.1.zip + InstallerSha256: 110AB5AAC5F6B2F4D9D042C6DFA5054433684B0E2033EBD6F58CF83ED1ECAE6E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.1/HiroshibaKazuyuki.VOICEVOX.CPU.locale.en-US.yaml b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.1/HiroshibaKazuyuki.VOICEVOX.CPU.locale.en-US.yaml new file mode 100644 index 0000000000000..177c54e1676ec --- /dev/null +++ b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.1/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.1 +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̶版̶)̶ + 追加機能 + - ソング:vvproj以外のプロジェクトをインポートできない問題を修正 + What's Changed + - docs: [release-0.24] アプデ内容のARM64版エディタの記述をLinux向けだとわかるように by @Hiroshiba in #2689 + - build: [release-0.24] to 0.24.1 by @Hiroshiba in #2698 + Full Changelog: 0.24.0...0.24.1 +ReleaseNotesUrl: https://github.com/VOICEVOX/voicevox/releases/tag/0.24.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.1/HiroshibaKazuyuki.VOICEVOX.CPU.yaml b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.1/HiroshibaKazuyuki.VOICEVOX.CPU.yaml new file mode 100644 index 0000000000000..0f58abf9004b4 --- /dev/null +++ b/manifests/h/HiroshibaKazuyuki/VOICEVOX/CPU/0.24.1/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.1 +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/Hitencent/JisuPDF/3.0.0.5002/Hitencent.JisuPDF.installer.yaml b/manifests/h/Hitencent/JisuPDF/3.0.0.5002/Hitencent.JisuPDF.installer.yaml new file mode 100644 index 0000000000000..cfad564c1cd0a --- /dev/null +++ b/manifests/h/Hitencent/JisuPDF/3.0.0.5002/Hitencent.JisuPDF.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: Hitencent.JisuPDF +PackageVersion: 3.0.0.5002 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +FileExtensions: +- pdf +ProductCode: 极速PDF阅读器 +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://dl.jisupdf.com/jisupdf_setup_3.0.0.5002.exe + InstallerSha256: B3210F26A0D14DD57189E9D282C41634313600AFB8643021996396997BF05D07 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hitencent/JisuPDF/3.0.0.5002/Hitencent.JisuPDF.locale.en-US.yaml b/manifests/h/Hitencent/JisuPDF/3.0.0.5002/Hitencent.JisuPDF.locale.en-US.yaml new file mode 100644 index 0000000000000..6e5f487a81543 --- /dev/null +++ b/manifests/h/Hitencent/JisuPDF/3.0.0.5002/Hitencent.JisuPDF.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Hitencent.JisuPDF +PackageVersion: 3.0.0.5002 +PackageLocale: en-US +Publisher: 北京海腾时代科技有限公司 +PublisherUrl: https://jisupdf.com/ +PublisherSupportUrl: https://jisupdf.com/zh-cn/feedback.html +PrivacyUrl: https://jisupdf.com/privacy.html +Author: Beijing Hitencent Technology Co., Ltd. +PackageName: 极速PDF阅读器 +PackageUrl: https://jisupdf.com/zh-cn/pdf-reader.html +License: Freeware +Copyright: Copyright (C) jisupdf.com Inc. All Rights Reserved. +ShortDescription: A fast and easy-to-use PDF reader +Description: Jisu PDF Reader is a fast and easy-to-use PDF reader with small size, fast start-up speed and low memory usage. It provides not only single-page mode and spread mode, but also full-screen mode and slideshow mode. With brand new annotation features such as writing, highlighting and drawing, it will make your reading and noting more convenient and easier. +Tags: +- annotate +- annotation +- comment +- ebook +- pdf +- read +- reader +- viewer +ReleaseNotesUrl: https://jisupdf.com/zh-cn/log.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hitencent/JisuPDF/3.0.0.5002/Hitencent.JisuPDF.locale.zh-CN.yaml b/manifests/h/Hitencent/JisuPDF/3.0.0.5002/Hitencent.JisuPDF.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cc6c2f1cfe247 --- /dev/null +++ b/manifests/h/Hitencent/JisuPDF/3.0.0.5002/Hitencent.JisuPDF.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: Hitencent.JisuPDF +PackageVersion: 3.0.0.5002 +PackageLocale: zh-CN +Publisher: 北京海腾时代科技有限公司 +PublisherUrl: https://jisupdf.com/ +PublisherSupportUrl: https://jisupdf.com/zh-cn/feedback.html +PrivacyUrl: https://jisupdf.com/privacy.html +Author: 北京海腾时代科技有限公司 +PackageName: 极速PDF阅读器 +PackageUrl: https://jisupdf.com/zh-cn/pdf-reader.html +License: 免费软件 +Copyright: Copyright (C) jisupdf.com Inc. All Rights Reserved. +ShortDescription: 闪电般好用的 PDF 阅读器 +Description: 极速PDF阅读器是一款闪电般好用的 PDF 阅读器,体积小、启动速度快,且占用内存极少;提供单页、书本模式个性阅读,又有全屏、幻灯片等功能助您随心切换;全新定义注释:写字、高亮、画线等功能让您的阅读、随心笔记更轻松,更省事! +Tags: +- pdf +- 批注 +- 查看器 +- 标注 +- 注释 +- 电子书 +- 阅读 +- 阅读器 +ReleaseNotesUrl: https://jisupdf.com/zh-cn/log.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Hitencent/JisuPDF/3.0.0.5002/Hitencent.JisuPDF.yaml b/manifests/h/Hitencent/JisuPDF/3.0.0.5002/Hitencent.JisuPDF.yaml new file mode 100644 index 0000000000000..8dd1da61c597a --- /dev/null +++ b/manifests/h/Hitencent/JisuPDF/3.0.0.5002/Hitencent.JisuPDF.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: Hitencent.JisuPDF +PackageVersion: 3.0.0.5002 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/HomeBank/HomeBank/5.9.3/HomeBank.HomeBank.installer.yaml b/manifests/h/HomeBank/HomeBank/5.9.3/HomeBank.HomeBank.installer.yaml new file mode 100644 index 0000000000000..2a0768365d86f --- /dev/null +++ b/manifests/h/HomeBank/HomeBank/5.9.3/HomeBank.HomeBank.installer.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: HomeBank.HomeBank +PackageVersion: 5.9.3 +InstallerLocale: en-US +InstallerType: inno +UpgradeBehavior: install +ProductCode: '{770D94F9-211A-4BC7-9921-FC946ABD82C8}_is1' +ReleaseDate: 2025-07-06 +AppsAndFeaturesEntries: +- ProductCode: '{770D94F9-211A-4BC7-9921-FC946ABD82C8}_is1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://www.gethomebank.org/public/binaries/HomeBank-5.9.3-setup.exe + InstallerSha256: 4D0138BD97605E249904329C6F8162442D280B753259BB329E720BB640B7A489 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x86 + Scope: machine + InstallerUrl: https://www.gethomebank.org/public/binaries/HomeBank-5.9.3-setup.exe + InstallerSha256: 4D0138BD97605E249904329C6F8162442D280B753259BB329E720BB640B7A489 + InstallerSwitches: + Custom: /ALLUSERS + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\HomeBank' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/HomeBank/HomeBank/5.9.3/HomeBank.HomeBank.locale.en-US.yaml b/manifests/h/HomeBank/HomeBank/5.9.3/HomeBank.HomeBank.locale.en-US.yaml new file mode 100644 index 0000000000000..20afe6c2050c1 --- /dev/null +++ b/manifests/h/HomeBank/HomeBank/5.9.3/HomeBank.HomeBank.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: HomeBank.HomeBank +PackageVersion: 5.9.3 +PackageLocale: en-US +Publisher: Maxime DOYEN +PublisherSupportUrl: http://homebank.free.fr/support.php +PackageName: HomeBank +PackageUrl: http://homebank.free.fr/ +License: GNU General Public Licence, version 2 or later +LicenseUrl: http://homebank.free.fr/en/support.php +ShortDescription: HomeBank is a free software (as in "free speech" and also as in "free beer") that will assist you to manage your personal accounting. +Description: |- + HomeBank is a free, open source, personal finance and money management application that can be used to manage your daily and monthly finance details easily as well as effectively. + It has built-in powerful filtering tools and graphs that will help you to analyze your everyday transactions. + It is a cross platform tool which will work on almost all common devices and operating systems, including Linux, Windows, FreeBSD, and Mac OS X. +Tags: +- accounting +- budget +- finance +- money +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HomeBank/HomeBank/5.9.3/HomeBank.HomeBank.yaml b/manifests/h/HomeBank/HomeBank/5.9.3/HomeBank.HomeBank.yaml new file mode 100644 index 0000000000000..5d9fdf213e677 --- /dev/null +++ b/manifests/h/HomeBank/HomeBank/5.9.3/HomeBank.HomeBank.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: HomeBank.HomeBank +PackageVersion: 5.9.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/HomeDev/PatchCleanerPortable/1.4.2.0/HomeDev.PatchCleanerPortable.installer.yaml b/manifests/h/HomeDev/PatchCleanerPortable/1.4.2.0/HomeDev.PatchCleanerPortable.installer.yaml new file mode 100644 index 0000000000000..c485d58c85dcf --- /dev/null +++ b/manifests/h/HomeDev/PatchCleanerPortable/1.4.2.0/HomeDev.PatchCleanerPortable.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: HomeDev.PatchCleanerPortable +PackageVersion: 1.4.2.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: PatchCleanerPortable_1_4_2_0\PatchCleaner\PatchCleaner.exe + PortableCommandAlias: patchcleaner +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x86 + InstallerUrl: https://deac-riga.dl.sourceforge.net/project/patchcleaner/PatchCleaner_Portable/v1.4.2.0/PatchCleanerPortable_1_4_2_0.zip + InstallerSha256: 62EAF79C146D35862329CA1ADEDD089CC08BA554DBDFF440E08657F9814CE3B8 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/h/HomeDev/PatchCleanerPortable/1.4.2.0/HomeDev.PatchCleanerPortable.locale.en-US.yaml b/manifests/h/HomeDev/PatchCleanerPortable/1.4.2.0/HomeDev.PatchCleanerPortable.locale.en-US.yaml new file mode 100644 index 0000000000000..751f5cd57c146 --- /dev/null +++ b/manifests/h/HomeDev/PatchCleanerPortable/1.4.2.0/HomeDev.PatchCleanerPortable.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: HomeDev.PatchCleanerPortable +PackageVersion: 1.4.2.0 +PackageLocale: en-US +Publisher: HomeDev +PackageName: PatchCleaner Portable +PackageUrl: https://www.homedev.com.au/Free/PatchCleaner +License: Proprietary +ShortDescription: (Re)Moves orphaned .msi files from the C:\Windows\Installer folder to free up disk space. +Tags: +- msi +- cleanup +- diskspace +- storagespace +- harddrive +- harddisk +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/h/HomeDev/PatchCleanerPortable/1.4.2.0/HomeDev.PatchCleanerPortable.yaml b/manifests/h/HomeDev/PatchCleanerPortable/1.4.2.0/HomeDev.PatchCleanerPortable.yaml new file mode 100644 index 0000000000000..654a8aee4bab2 --- /dev/null +++ b/manifests/h/HomeDev/PatchCleanerPortable/1.4.2.0/HomeDev.PatchCleanerPortable.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: HomeDev.PatchCleanerPortable +PackageVersion: 1.4.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/h/HuLaSpark/HuLa/2.6.13/HuLaSpark.HuLa.installer.yaml b/manifests/h/HuLaSpark/HuLa/2.6.13/HuLaSpark.HuLa.installer.yaml new file mode 100644 index 0000000000000..0b8507a194cc7 --- /dev/null +++ b/manifests/h/HuLaSpark/HuLa/2.6.13/HuLaSpark.HuLa.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: HuLaSpark.HuLa +PackageVersion: 2.6.13 +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/HuLaSpark/HuLa/releases/download/v2.6.13/HuLa_2.6.13_x64-setup.exe + InstallerSha256: B2A7CEC4002C4862E77533D033F5A1D8382AC2B179F79BA82DDE3AA5F4E122B7 + ProductCode: HuLa +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/HuLaSpark/HuLa/releases/download/v2.6.13/HuLa_2.6.13_x64_zh-CN.msi + InstallerSha256: 3CC4983C75F419AE9C1DFD9B0FB3DF208AF8E00099EA737B76C0DEC362703F77 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{D58D61DA-9E36-4A0A-B84E-53D737B836A6}' + AppsAndFeaturesEntries: + - UpgradeCode: '{B3F67017-3BE2-5E94-ADD9-86A186F83104}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/HuLaSpark/HuLa/2.6.13/HuLaSpark.HuLa.locale.en-US.yaml b/manifests/h/HuLaSpark/HuLa/2.6.13/HuLaSpark.HuLa.locale.en-US.yaml new file mode 100644 index 0000000000000..08c2881bbd310 --- /dev/null +++ b/manifests/h/HuLaSpark/HuLa/2.6.13/HuLaSpark.HuLa.locale.en-US.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: HuLaSpark.HuLa +PackageVersion: 2.6.13 +PackageLocale: en-US +ShortDescription: An Instant Messaging System Built with Tauri, Vite 6, Vue 3, and TypeScript +Description: HuLa is an instant messaging system developed with Tauri, Vite 6, Vue 3, and TypeScript. It leverages the cross-platform capabilities of Tauri and the reactive design of Vue 3, combined with TypeScript's type safety features and the fast build system of Vite 6, to provide users with an efficient, secure, and easy-to-use communication solution. +Tags: +- call +- chat +- friends +- im +- instant-messaging +- message +- send +- share +- talk +- voice +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://hulaspark.com/docs/getting-started/introduction +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HuLaSpark/HuLa/2.6.13/HuLaSpark.HuLa.locale.zh-CN.yaml b/manifests/h/HuLaSpark/HuLa/2.6.13/HuLaSpark.HuLa.locale.zh-CN.yaml new file mode 100644 index 0000000000000..76706591f6cc1 --- /dev/null +++ b/manifests/h/HuLaSpark/HuLa/2.6.13/HuLaSpark.HuLa.locale.zh-CN.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: HuLaSpark.HuLa +PackageVersion: 2.6.13 +PackageLocale: zh-CN +Publisher: hula +PublisherUrl: https://hulaspark.com/ +PublisherSupportUrl: https://github.com/HuLaSpark/HuLa/issues +PackageName: HuLa +PackageUrl: https://hulaspark.com/ +License: Apache-2.0 +LicenseUrl: https://github.com/HuLaSpark/HuLa/blob/HEAD/LICENSE +Copyright: Copyright © 2025 HuLaSpark All Rights Reserved. +ShortDescription: 一款基于 Tauri、Vite 6、Vue 3 和 TypeScript 构建的即时通讯系统 +Description: HuLa 是一款基于 Tauri、Vite 6、Vue 3 和 TypeScript 构建的即时通讯系统。它利用了 Tauri 的跨平台能力和 Vue 3 的响应式设计,结合了 TypeScript 的类型安全特性和 Vite 6 的快速构建,为用户提供了一个高效、安全和易用的通讯解决方案。 +Tags: +- 信息 +- 共享 +- 分享 +- 发送 +- 好友 +- 朋友 +- 消息 +- 电话 +- 聊天 +- 语音 +- 通话 +ReleaseNotes: |- + 更新内容 + - fix(view): 🐛 修复文件类型气泡的样式和上传分片功能 + - fix(component): 🐛 修复 mac 启动依赖问题 + - fix: macos 开发模式样式不生效 (#299) + - feat(component): ✨ 增加文件类型(除语音、视频)等文件类型的样式兼容 + - fix(common): 🐛 修复未提示用户错误弹框问题 + - feat(component): ✨增加上传视频、文件、音频等功能 (#292) + - fix(service): 🐛 修复网络设置后缀为空时,调用接口失败的 bug + - fix(view): 🐛 只保持主窗口窗口大小 + - fix(component): 🐛 用户修改当前群聊昵称显示问题 + - docs(LICENSE): 📝 修改 LICENSE 的 Copyright + - [Snyk] Upgrade @tauri-apps/plugin-http from 2.4.3 to 2.4.4 (#289) + - docs: add links to other language versions of README (#288) + - feat(view): ✨ 保持窗口位置和大小 (#287) + - fix(hook): 🐛 修复 pinia 初始化报错问题 + - perf(store): ⚡ 优化刷新会话列表后,时间和最新消息简介没有更新的问题 + - perf(service): ⚡ 优化 webSocket 重连机制 + - perf(component): ⚡ 优化 webSocket 的重连性能和网络检测方法 + 完整的更新日志:https://github.com/HuLaSpark/HuLa/compare/v2.6.12...v2.6.13 +ReleaseNotesUrl: https://github.com/HuLaSpark/HuLa/releases/tag/v2.6.13 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://hulaspark.com/docs/getting-started/introduction +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HuLaSpark/HuLa/2.6.13/HuLaSpark.HuLa.yaml b/manifests/h/HuLaSpark/HuLa/2.6.13/HuLaSpark.HuLa.yaml new file mode 100644 index 0000000000000..7f6593de36ef9 --- /dev/null +++ b/manifests/h/HuLaSpark/HuLa/2.6.13/HuLaSpark.HuLa.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: HuLaSpark.HuLa +PackageVersion: 2.6.13 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/HuaweiCloudMeeting/11.6.4/Huawei.HuaweiCloudMeeting.installer.yaml b/manifests/h/Huawei/HuaweiCloudMeeting/11.6.4/Huawei.HuaweiCloudMeeting.installer.yaml new file mode 100644 index 0000000000000..6fa88bb83d365 --- /dev/null +++ b/manifests/h/Huawei/HuaweiCloudMeeting/11.6.4/Huawei.HuaweiCloudMeeting.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: Huawei.HuaweiCloudMeeting +PackageVersion: 11.6.4 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- cloudlink +- welinksoftclient +ProductCode: '{6C2B15DC-BDC4-4CCC-AB99-5EF14D2FBCFC}_is1' +Installers: +- Architecture: x86 + InstallerUrl: https://softclient-intl.meeting.huaweicloud.com/HUAWEICLOUDMeeting_Win_11.6.4.exe + InstallerSha256: 7D419AF6C5E0E10F518AFF6770E1F83E6A6815D6000BCBD82ECF99D0991500AE +- InstallerLocale: zh-CN + Architecture: x86 + InstallerUrl: https://softclient.meeting.huaweicloud.com/HWMeeting/HUAWEICLOUDMeeting_Win_11.6.4.exe + InstallerSha256: 7D419AF6C5E0E10F518AFF6770E1F83E6A6815D6000BCBD82ECF99D0991500AE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/HuaweiCloudMeeting/11.6.4/Huawei.HuaweiCloudMeeting.locale.en-US.yaml b/manifests/h/Huawei/HuaweiCloudMeeting/11.6.4/Huawei.HuaweiCloudMeeting.locale.en-US.yaml new file mode 100644 index 0000000000000..29a19bf182677 --- /dev/null +++ b/manifests/h/Huawei/HuaweiCloudMeeting/11.6.4/Huawei.HuaweiCloudMeeting.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: Huawei.HuaweiCloudMeeting +PackageVersion: 11.6.4 +PackageLocale: en-US +Publisher: Huawei Technologies Co., Ltd. +PublisherUrl: https://www.huaweicloud.com/intl/product/meeting.html +PrivacyUrl: https://intl.meeting.huaweicloud.com/#/privacy +Author: Huawei Cloud Computing Technologies Co., Ltd. +PackageName: HUAWEI CLOUD Meeting +PackageUrl: https://www.huaweicloud.com/intl/product/meeting/download.html +License: Proprietary +LicenseUrl: https://www.huaweicloud.com/intl/declaration/tsa_meeting.html +Copyright: ©2024 Huawei Cloud Computing Technologies Co., Ltd. All rights reserved. +CopyrightUrl: https://www.huaweicloud.com/intl/declaration/statement.html +ShortDescription: Online Meeting & Video Conferencing +Description: Huawei Cloud Meeting offers secure and reliable videoconferencing with crystal-clear audio and ultra-HD video quality. Hold online meetings with staff or clients from a computer, mobile, or fixed room terminal. +Tags: +- conference +- conferencing +- meeting +- video-conferencing +- voice-conferencing +ReleaseNotes: |- + 1. Optimized the call screen; + 2. Fixed known issues. +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://support.huaweicloud.com/intl/clientuse-meeting/bf_pc_use.html +- DocumentLabel: Documentation + DocumentUrl: https://support.huaweicloud.com/intl/productdesc-meeting/productdesc.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/HuaweiCloudMeeting/11.6.4/Huawei.HuaweiCloudMeeting.locale.zh-CN.yaml b/manifests/h/Huawei/HuaweiCloudMeeting/11.6.4/Huawei.HuaweiCloudMeeting.locale.zh-CN.yaml new file mode 100644 index 0000000000000..06f2a164f8374 --- /dev/null +++ b/manifests/h/Huawei/HuaweiCloudMeeting/11.6.4/Huawei.HuaweiCloudMeeting.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Huawei.HuaweiCloudMeeting +PackageVersion: 11.6.4 +PackageLocale: zh-CN +Publisher: Huawei Technologies Co., Ltd. +PublisherUrl: https://www.huaweicloud.com/product/meeting.html +PrivacyUrl: https://meeting.huaweicloud.com/#/privacy +Author: 华为云计算技术有限公司 +PackageName: 华为云会议 +PackageUrl: https://www.huaweicloud.com/product/meeting/download.html +License: 专有软件 +LicenseUrl: https://www.huaweicloud.com/declaration/tsa_meeting.html +Copyright: 华为云计算技术有限公司 版权所有 +CopyrightUrl: https://www.huaweicloud.com/declaration/statement.html +ShortDescription: “云端”协同的会议解决方案,全平台接入,全球覆盖,提供高清、稳定、安全、高效的极简会议体验 +Description: 华为云会议支持手机、电脑、平板、华为视讯终端、智慧大屏、第三方会议终端等全系列智能协作终端接入,为客户提供全场景覆盖、简单易用、快速部署、软硬一体的端云协同视频会议解决方案。 +Tags: +- 会议 +- 开会 +- 视频会议 +- 语音会议 +ReleaseNotes: |- + 1. 呼叫界面优化; + 2. 修复已知问题。 +PurchaseUrl: https://www.huaweicloud.com/product/meeting/price.html +Documentations: +- DocumentLabel: 入门 + DocumentUrl: https://www.huaweicloud.com/product/meeting/getting-started.html +- DocumentLabel: 文档 + DocumentUrl: https://support.huaweicloud.com/meeting/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/HuaweiCloudMeeting/11.6.4/Huawei.HuaweiCloudMeeting.yaml b/manifests/h/Huawei/HuaweiCloudMeeting/11.6.4/Huawei.HuaweiCloudMeeting.yaml new file mode 100644 index 0000000000000..20081da19e2f7 --- /dev/null +++ b/manifests/h/Huawei/HuaweiCloudMeeting/11.6.4/Huawei.HuaweiCloudMeeting.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: Huawei.HuaweiCloudMeeting +PackageVersion: 11.6.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Welink/7.53.7/Huawei.Welink.installer.yaml b/manifests/h/Huawei/Welink/7.53.7/Huawei.Welink.installer.yaml new file mode 100644 index 0000000000000..6a2e8e028b425 --- /dev/null +++ b/manifests/h/Huawei/Welink/7.53.7/Huawei.Welink.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: Huawei.Welink +PackageVersion: 7.53.7 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- hwwelink +- welinksoftclient +ProductCode: '{BE219E3C-4246-497E-B418-D2FE44D909F3}_is1' +Installers: +- Architecture: x86 + InstallerUrl: https://cdn02.welink.huaweicloud.com/appstore/file/web/free/down/860187feba7344e2982f5f31d64af877/WeLink_Win_cloud_202507021652_28065_win_b250630_master_7.53.7_583.exe + InstallerSha256: 5198BC0611465E3009C1E798167A1D7160C94E2C83EF55F92C09A7D46CD495DD +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Welink/7.53.7/Huawei.Welink.locale.en-US.yaml b/manifests/h/Huawei/Welink/7.53.7/Huawei.Welink.locale.en-US.yaml new file mode 100644 index 0000000000000..dd2d1b67a7fca --- /dev/null +++ b/manifests/h/Huawei/Welink/7.53.7/Huawei.Welink.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: Huawei.Welink +PackageVersion: 7.53.7 +PackageLocale: en-US +Publisher: Huawei Technologies Co., Ltd. +PublisherUrl: https://www.huaweicloud.com/intl/product/welink.html +PrivacyUrl: https://api.welink.huaweicloud.com/mcloud/mag/ProxyForText/pc/ppolicy/v3/privacy/latestContent/en?regionCode=SG +Author: Huawei Technologies Co., Ltd. +PackageName: Welink +PackageUrl: https://www.huaweicloud.com/intl/product/welink/welink-download.html +License: Proprietary +LicenseUrl: https://www.huaweicloud.com/intl/declaration-sg/tsa_welink.html +Copyright: ©2019-2024. Huawei Technologies Co., Ltd. All Rights Reserved. +CopyrightUrl: https://www.huaweicloud.com/intl/declaration/statement.html +ShortDescription: A secure, intelligent, and digital platform powered by Huawei for all office scenarios. +Tags: +- attendance +- bussiness +- check-in +- collaboration +- communicate +- comunication +- conference +- docs +- document +- enterprise +- meeting +- oa +- office +- saas +- team +- working +ReleaseNotes: |- + 1. The call screen is visually enhanced. + 2. The official account experience is optimized. + 3. The product performance is improved for better user experience. + + Upgrade WeLink now and begin your new journey! +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Welink/7.53.7/Huawei.Welink.locale.zh-CN.yaml b/manifests/h/Huawei/Welink/7.53.7/Huawei.Welink.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a629292651843 --- /dev/null +++ b/manifests/h/Huawei/Welink/7.53.7/Huawei.Welink.locale.zh-CN.yaml @@ -0,0 +1,48 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Huawei.Welink +PackageVersion: 7.53.7 +PackageLocale: zh-CN +Publisher: Huawei Technologies Co., Ltd. +PublisherUrl: https://www.huaweicloud.com/product/welink.html +PublisherSupportUrl: https://support.huaweicloud.com/welink/index.html +PrivacyUrl: https://api.welink.huaweicloud.com/mcloud/mag/ProxyForText/pc/ppolicy/v3/privacy/latestContent/cn?regionCode=CN +Author: 华为云计算技术有限公司 +PackageName: Welink +PackageUrl: https://www.huaweicloud.com/product/welink-download.html +License: 专有软件 +LicenseUrl: https://www.huaweicloud.com/declaration/tsa-welink.html +Copyright: ©2019-2024 华为技术有限公司。保留一切权利。 +CopyrightUrl: https://www.huaweicloud.com/declaration/statement.html +ShortDescription: 源自华为,更懂企业的全场景安全、智能、数字化协同办公平台 +Description: 华为云 WeLink 源于华为全球化数字化办公实践,是一款全场景远程智能数字化协同办公平台,支持视频会议、考勤打卡、直播、企业网盘、云笔记等数字化办公场景。 +Tags: +- oa +- saas +- 交流 +- 企业 +- 会议 +- 公司 +- 办公 +- 协作 +- 协同 +- 团队 +- 工作 +- 打卡 +- 文档 +- 沟通 +- 签到 +- 考勤 +ReleaseNotes: |- + 1. 呼叫界面视觉全新升级 + 2. 公众号体验优化 + 3. 提升产品性能,优化用户体验 + + 即刻更新,体验升级! +ReleaseNotesUrl: https://support.huaweicloud.com/productdesc-welink/welink_whatsnew_pc.html +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://support.huaweicloud.com/usermanual-welink/welink_pcuse.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Huawei/Welink/7.53.7/Huawei.Welink.yaml b/manifests/h/Huawei/Welink/7.53.7/Huawei.Welink.yaml new file mode 100644 index 0000000000000..1ec76169185f0 --- /dev/null +++ b/manifests/h/Huawei/Welink/7.53.7/Huawei.Welink.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: Huawei.Welink +PackageVersion: 7.53.7 +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/h/HulubuluSoftware/AdvancedRenamer/4.13/HulubuluSoftware.AdvancedRenamer.installer.yaml b/manifests/h/HulubuluSoftware/AdvancedRenamer/4.13/HulubuluSoftware.AdvancedRenamer.installer.yaml new file mode 100644 index 0000000000000..963c90e465b56 --- /dev/null +++ b/manifests/h/HulubuluSoftware/AdvancedRenamer/4.13/HulubuluSoftware.AdvancedRenamer.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: HulubuluSoftware.AdvancedRenamer +PackageVersion: "4.13" +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- aren +ProductCode: Advanced Renamer_is1 +ReleaseDate: 2025-06-25 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://www.advancedrenamer.com/down/win/advanced_renamer_setup_4_13.exe + InstallerSha256: 906715ABEB84F1CA3677CC4861B2BB443AFA427DC92AE7E4E9B49223267F7704 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/HulubuluSoftware/AdvancedRenamer/4.13/HulubuluSoftware.AdvancedRenamer.locale.en-US.yaml b/manifests/h/HulubuluSoftware/AdvancedRenamer/4.13/HulubuluSoftware.AdvancedRenamer.locale.en-US.yaml new file mode 100644 index 0000000000000..de29a3edd83c0 --- /dev/null +++ b/manifests/h/HulubuluSoftware/AdvancedRenamer/4.13/HulubuluSoftware.AdvancedRenamer.locale.en-US.yaml @@ -0,0 +1,64 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: HulubuluSoftware.AdvancedRenamer +PackageVersion: "4.13" +PackageLocale: en-US +Publisher: Hulubulu Software +PublisherUrl: https://www.advancedrenamer.com/ +PublisherSupportUrl: https://www.advancedrenamer.com/support +PrivacyUrl: https://www.advancedrenamer.com/privacy +Author: Kim Jensen +PackageName: Advanced Renamer +PackageUrl: https://www.advancedrenamer.com/download +License: Proprietary +LicenseUrl: https://www.advancedrenamer.com/license +Copyright: Copyright (c) Hulubulu Software by Kim Jensen +ShortDescription: Batch file renaming utility for Windows and Mac. +Description: |- + Advanced Renamer is a program for renaming multiple files and folders at once. By configuring renaming methods the names can be manipulated in various ways. + It is easy to set up a batch rename using multiple methods on a large amount of files. The 13 different methods enables you to change the names, and timestamps of files in one go. The files can also be copied or moved to new locations based on information in the files. + With Advanced Renamer you can construct new file names by adding, removing, replacing, changing case, or giving the file a brand new name based on known information about the file. + Before performing the operations on the files you can verify that the output will be correct and if you perform the rename and regret it, you can undo the complete batch. +Moniker: advancedrenamer +Tags: +- file +- folder +- rename +- renamer +- renaming +ReleaseNotes: |- + Move, Delete, or Rename existing target files + + When setting up a renaming batch you might end up with the error "File already exists". This can be most common when moving or copying files to a new location. It has been requested that the program should have an option to overwrite existing files, but that makes it difficult to undo a batch properly. Instead you will now have these three options, before starting the batch: + - Move existing files to a new location + - Move existing files to recycle bin + - Rename existing files + The buttons will show automatically in panel in the bottom of the main window, when at least one item has the "File already exists" error. + When renaming or moving files with this feature, the program will use Advanced Renamer technology to produce the new names and file paths, which means you can use the same tags as in a standard renaming batch and you can even revert the action. + Note, this only works for files, not folders. + + Export list, including all metadata + + A new window for exporting the file list has been added, with many more options. As always you can export to text and CSV file, but now you can also export to JSON format. There are plenty of options for how the program should format the output and which encoding to use. You can choose to export the columns of the item list as it is or export all metadata found in the files. + A later version will extend the support for importing files and enriching the list of files with more data from external sources. + + Full list of changes in version 4.13 + - When new filename already exists, the program will now give the option to move or rename the existing target files + - New export Window: Export to TXT, CSV, and JSON files + - Fixed Timestamp method for use with folders on Windows + - Will give an error when starting a renaming batch and there are no methods added + - The program is now less likely to crash when analysing corrupted MP4 files + - Support for reading metadata from .ivf files + - Support more tags from .wav, .ogg, .webp, and .aiff files + - Alias metadata fields, Channels -> AudioChannels and SampleRate -> AudioSampleRate added for better compatibility + - Improved reading of metadata from .ogg, .ogv, and .mp3 files + - Show a summary of error codes in the pre batch window + - Changed implementation of Copy batch mode to preserve timestamps and file attributes on file copy +ReleaseNotesUrl: https://www.advancedrenamer.com/whatsnew_v4 +PurchaseUrl: https://www.advancedrenamer.com/compare +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://www.advancedrenamer.com/user_guide/v4/gettingstarted +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HulubuluSoftware/AdvancedRenamer/4.13/HulubuluSoftware.AdvancedRenamer.locale.zh-CN.yaml b/manifests/h/HulubuluSoftware/AdvancedRenamer/4.13/HulubuluSoftware.AdvancedRenamer.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b90e2ce1c5c57 --- /dev/null +++ b/manifests/h/HulubuluSoftware/AdvancedRenamer/4.13/HulubuluSoftware.AdvancedRenamer.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: HulubuluSoftware.AdvancedRenamer +PackageVersion: "4.13" +PackageLocale: zh-CN +Publisher: Hulubulu Software +PackageName: Advanced Renamer +License: 专有软件 +ShortDescription: 适用于 Windows 和 Mac 的批量文件重命名工具。 +Description: |- + Advanced Renamer 是一款一次性重命名多个文件和文件夹的程序。通过配置重命名方法,可以对名称进行各种操作。 + 你可以使用多种方法对大量文件进行批量重命名,可以通过 13 种不同的方式一次性更改文件名和时间戳,也可以根据文件中的信息将文件复制或移动到新的位置。 + 有了 Advanced Renamer,你可以根据文件的已知信息,通过添加、删除、替换、更改大小写或赋予文件一个全新的名称来创建新的文件名。 + 在对文件执行操作前,你可以验证输出结果是否正确,如果执行重命名后感到后悔,还可以撤销整个批处理。 +Tags: +- 文件 +- 文件夹 +- 更名 +- 更名器 +- 重命名 +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://www.advancedrenamer.com/user_guide/v4/gettingstarted +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HulubuluSoftware/AdvancedRenamer/4.13/HulubuluSoftware.AdvancedRenamer.yaml b/manifests/h/HulubuluSoftware/AdvancedRenamer/4.13/HulubuluSoftware.AdvancedRenamer.yaml new file mode 100644 index 0000000000000..fed7292aec769 --- /dev/null +++ b/manifests/h/HulubuluSoftware/AdvancedRenamer/4.13/HulubuluSoftware.AdvancedRenamer.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: HulubuluSoftware.AdvancedRenamer +PackageVersion: "4.13" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/HydraLauncher/Hydra/3.6.2/HydraLauncher.Hydra.installer.yaml b/manifests/h/HydraLauncher/Hydra/3.6.2/HydraLauncher.Hydra.installer.yaml new file mode 100644 index 0000000000000..a9dbfd2b79478 --- /dev/null +++ b/manifests/h/HydraLauncher/Hydra/3.6.2/HydraLauncher.Hydra.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: HydraLauncher.Hydra +PackageVersion: 3.6.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- hydralauncher +ProductCode: 5c15b0c3-fe4f-5c4b-8f22-d37bfd0a3904 +ReleaseDate: 2025-06-27 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/hydralauncher/hydra/releases/download/v3.6.2/hydralauncher-3.6.2-setup.exe + InstallerSha256: 7A4C31CDEE31A61DDE396900E5FBC87D659131CF4E9FD00A34B344200097EC3F + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/hydralauncher/hydra/releases/download/v3.6.2/hydralauncher-3.6.2-setup.exe + InstallerSha256: 7A4C31CDEE31A61DDE396900E5FBC87D659131CF4E9FD00A34B344200097EC3F + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/HydraLauncher/Hydra/3.6.2/HydraLauncher.Hydra.locale.en-US.yaml b/manifests/h/HydraLauncher/Hydra/3.6.2/HydraLauncher.Hydra.locale.en-US.yaml new file mode 100644 index 0000000000000..36619b3c08a29 --- /dev/null +++ b/manifests/h/HydraLauncher/Hydra/3.6.2/HydraLauncher.Hydra.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: HydraLauncher.Hydra +PackageVersion: 3.6.2 +PackageLocale: en-US +Publisher: Los Broxas +PublisherUrl: https://github.com/hydralauncher +PublisherSupportUrl: https://github.com/hydralauncher/hydra/issues +Author: Los Broxas +PackageName: Hydra +PackageUrl: https://github.com/hydralauncher/hydra +License: MIT +LicenseUrl: https://github.com/hydralauncher/hydra/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024 Los Broxas +ShortDescription: A game launcher with its own embedded BitTorrent client. +Description: Hydra is a Game Launcher with its own embedded BitTorrent Client. The launcher is written in TypeScript (Electron) and Python, which handles the torrenting system by using libtorrent. +Moniker: hydralauncher +Tags: +- game +- gaming +- launcher +ReleaseNotes: |- + What's Changed + - update spanish translation by @Lianela in https://github.com/hydralauncher/hydra/pull/1773 + - small performance improvement + Full Changelog: https://github.com/hydralauncher/hydra/compare/v3.6.1...v3.6.2 +ReleaseNotesUrl: https://github.com/hydralauncher/hydra/releases/tag/v3.6.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/hydralauncher/hydra/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HydraLauncher/Hydra/3.6.2/HydraLauncher.Hydra.locale.zh-CN.yaml b/manifests/h/HydraLauncher/Hydra/3.6.2/HydraLauncher.Hydra.locale.zh-CN.yaml new file mode 100644 index 0000000000000..377b4a948445a --- /dev/null +++ b/manifests/h/HydraLauncher/Hydra/3.6.2/HydraLauncher.Hydra.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: HydraLauncher.Hydra +PackageVersion: 3.6.2 +PackageLocale: zh-CN +Publisher: Los Broxas +PackageName: Hydra +ShortDescription: 一款内置 BitTorrent 客户端的游戏启动器。 +Description: Hydra 是一款内置 BitTorrent 客户端的游戏启动器。该启动器由 TypeScript (Electron) 和 Python 编写,使用 libtorrent 处理 Torrent 系统。 +Tags: +- 启动器 +- 游戏 +ReleaseNotesUrl: https://github.com/hydralauncher/hydra/releases/tag/v3.6.2 +Documentations: +- DocumentLabel: 维基 + DocumentUrl: https://github.com/hydralauncher/hydra/wiki +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HydraLauncher/Hydra/3.6.2/HydraLauncher.Hydra.yaml b/manifests/h/HydraLauncher/Hydra/3.6.2/HydraLauncher.Hydra.yaml new file mode 100644 index 0000000000000..aa3445f6df7d2 --- /dev/null +++ b/manifests/h/HydraLauncher/Hydra/3.6.2/HydraLauncher.Hydra.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: HydraLauncher.Hydra +PackageVersion: 3.6.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/HydrusNetwork/HydrusNetwork/v627/HydrusNetwork.HydrusNetwork.installer.yaml b/manifests/h/HydrusNetwork/HydrusNetwork/v627/HydrusNetwork.HydrusNetwork.installer.yaml new file mode 100644 index 0000000000000..f0dd2671bf4d7 --- /dev/null +++ b/manifests/h/HydrusNetwork/HydrusNetwork/v627/HydrusNetwork.HydrusNetwork.installer.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: HydrusNetwork.HydrusNetwork +PackageVersion: v627 +InstallerLocale: en-US +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: Hydrus Network_is1 +ReleaseDate: 2025-06-25 +AppsAndFeaturesEntries: +- ProductCode: Hydrus Network_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%SystemDrive%\Hydrus Network' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hydrusnetwork/hydrus/releases/download/v627/Hydrus.Network.627.-.Windows.-.Installer.exe + InstallerSha256: 5E766BFE593EC1B8348429A5024C8455758BC3893DF7B160037FC865AD4C635E +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/h/HydrusNetwork/HydrusNetwork/v627/HydrusNetwork.HydrusNetwork.locale.en-US.yaml b/manifests/h/HydrusNetwork/HydrusNetwork/v627/HydrusNetwork.HydrusNetwork.locale.en-US.yaml new file mode 100644 index 0000000000000..775b6546688ef --- /dev/null +++ b/manifests/h/HydrusNetwork/HydrusNetwork/v627/HydrusNetwork.HydrusNetwork.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: HydrusNetwork.HydrusNetwork +PackageVersion: v627 +PackageLocale: en-US +Publisher: Hydrus Network +PublisherUrl: https://github.com/hydrusnetwork/hydrus +PublisherSupportUrl: https://github.com/hydrusnetwork/hydrus/issues +PrivacyUrl: https://hydrusnetwork.github.io/hydrus/privacy.html +Author: Hydrus Network +PackageName: Hydrus Network +PackageUrl: https://github.com/hydrusnetwork/hydrus +License: WTFPL +LicenseUrl: https://github.com/hydrusnetwork/hydrus/blob/HEAD/license.txt +Copyright: Copyright (C) 2011 Hydrus Developer +CopyrightUrl: https://github.com/hydrusnetwork/hydrus/blob/master/license.txt +ShortDescription: A personal booru-style media tagger that can import files and tags from your hard drive and popular websites. Content can be shared with other users via user-run servers. +Description: |- + The hydrus network client is an application written for Anon and other internet-fluent media nerds who have large image/swf/webm collections. + It browses with tags instead of folders, a little like a booru on your desktop. Advanced users can share tags and files anonymously through custom servers that any user may run. + Everything is free and privacy is the first concern. Executable releases are available for Windows, Linux, and macOS. + The program is in python, so you can also run it straight from the source code. +Moniker: hydrus-network +Tags: +- booru +- cross-platform +- image-database +ReleaseNotes: |- + misc + - windows that remember position are better about saving that position on a window move. some window managers (particularly on Linux) were not recognising the previous 'window move has ended' tech, nor non-mouse moves, so I wrote something that will work more generally. let me know if any windows start positioning crazy this week during drags! + - fixed variable framerate render timing in the native viewer for animated webp files. I messed up some logic when I first rolled this out in v620; should be working correct now (issue #1749) + - fixed an issue where import sidecars were losing their texts' order (they were being pseudorandomly re-sorted) in the outer layer of string processing where multiple sidecar texts are combined. the sidecar pipeline now preserves original sort throughout the pipeline (issue #1746) + - added a TEST: Stop mpv before media transition in an attempt to early-cancel laggy mpv when transitioning media when the current (looping and pre-buffering) media is near the end. may also help some situations with laggy storage, but we'll see. I think this mode might have some load bugs + visual duplicate detection is ready + - the 'A and B are visual duplicates' system now compares spatial edge data and is better able to recognise mosaic/blur patches, minor alterations or repositions, and subtle alternates in busy areas like eye pupils. all the remaining difficult false positives I have are fixed, and the test easily catches several pairs that were previously tricky, allowing me to remove a hacky test on the colour testing side of things that was producing some false negatives + - this test is now available as a comparator in duplicates auto-resolution rules! you can choose it to be at least 'very probably', 'almost certainly', or 'near-perfect'. I default to and recommend 'almost certainly' for now. I am still interested in seeing any new false positives you encounter + - note that this tool is CPU heavy--expect about a second per pair tested! the UI seems to be holding up well with the delay, but I've added a new label to the preview panel to show when it is running slow and there are pairs still to be tested + - added a new and generally cautious 'visually similar pairs - eliminate smaller' suggested rule. it does an 'A and B are almost certainly visual duplicates' test on similar filetypes, preferring an A that is larger in size and larger or equal in resolution, and is semi-automatic. if you have been following all this, please give it a go and let me know what you think + - assuming this tech holds up, this was the last big difficult thing in my auto-resolution superjob. there is still a lot I want to do, but it'll mostly be cleaner UI, some more comparator types, a way to interact with the denied pairs log, smoother counting and pair load in more places, a way to load up a duplicate rule's pending decisions in the normal filter, richer duplicate-aware pair preview/review, that sort of thing + cleanup/docs/boring + - added some notes to the 'migrate' and 'source' help regarding needing to rebuild your venv every time you move the install folder + - added some 'better software for x' links to 'getting started with files' to ComicRackCE, Lanaragi, and Calibre + - added a little about 'A and B are visual duplicates' to the duplicates auto-resolution help + - the 'LabHistogram' stuff that does the new 'A and B are visual duplicates' is now renamed generally to 'VisualData', and the LabHistogram stuff is rejiggered into a subclass + - fixed a small warning bug when the thumbnail pair list in the auto-resolution preview panel is updated to have a new rule while it is empty + - fixed a duplicate file system bug where it wasn't able to negotiate the correct media id for a file when the duplicate group had an identity definition but somehow was desynced and did not list the king as a member + - added a new 'pixel-perlfect jpegs vs pngs - except when png is smaller' alternate suggested rule that does pixel perfect jpegs and pngs but only actions when the jpeg is smaller than the png + - wrote some unit tests for 'A and B are visual duplicates' + - I think I silenced OpenCV's warning logspam. if you ever saw [ WARN:44@43420.823] global grfmt_png.cpp:695 read_chunk chunk data is too large kind of thing in your log, you shouldn't any more + future build + - I am making another future build this week. This is a special build with new libraries that I would like advanced users to test out so I know they are safe to fold into the normal release. + - it is here: https://github.com/hydrusnetwork/hydrus/releases/tag/v627-future-01 . if you are experienced and would like to help me, please check it out + - the new numpy version that caused trouble for Arch users also broke our build right afterwards, so this is an attempt to fix that while rolling in some security updates. updating PyInstaller more than a year to the same numpy fix they rolled out two weeks ago did not, I was surprised to discover, appear to break anything, so the builds may be significantly more stable and OS-compatible. as usual, I will be interested to know if anyone on Win 10 or any other older OS has trouble running this. as far as I can tell, a clean install is not required + - the specific changes this week are-- + - On All-- + - requests moved from 2.32.3 to 2.32.4 (security fix) + - On Linux and Windows-- + - PyInstaller moved from 6.7 to 6.14.1 (handles new numpy) + - setuptools moved from 70.3.0 to 78.1.1 (security fix) + - numpy moved from 2.2.6 to 2.3.1 (lots of improvements, py 3.11+) + - On Windows-- + - sqlite dll moved from 3.45.3 to 3.50.1 + - Source venvs-- + - numpy moved from >=2.0.0 to <=2.3.1 +ReleaseNotesUrl: https://github.com/hydrusnetwork/hydrus/releases/tag/v627 +PurchaseUrl: https://hydrusnetwork.github.io/hydrus/support.html +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://hydrusnetwork.github.io/hydrus/faq.html +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/h/HydrusNetwork/HydrusNetwork/v627/HydrusNetwork.HydrusNetwork.yaml b/manifests/h/HydrusNetwork/HydrusNetwork/v627/HydrusNetwork.HydrusNetwork.yaml new file mode 100644 index 0000000000000..33bb8d2571f5e --- /dev/null +++ b/manifests/h/HydrusNetwork/HydrusNetwork/v627/HydrusNetwork.HydrusNetwork.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.11.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: HydrusNetwork.HydrusNetwork +PackageVersion: v627 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/h/HydrusNetwork/HydrusNetwork/v628/HydrusNetwork.HydrusNetwork.installer.yaml b/manifests/h/HydrusNetwork/HydrusNetwork/v628/HydrusNetwork.HydrusNetwork.installer.yaml new file mode 100644 index 0000000000000..9220fdb539fe1 --- /dev/null +++ b/manifests/h/HydrusNetwork/HydrusNetwork/v628/HydrusNetwork.HydrusNetwork.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: HydrusNetwork.HydrusNetwork +PackageVersion: v628 +InstallerLocale: en-US +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: Hydrus Network_is1 +ReleaseDate: 2025-07-02 +AppsAndFeaturesEntries: +- ProductCode: Hydrus Network_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%SystemDrive%\Hydrus Network' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hydrusnetwork/hydrus/releases/download/v628/Hydrus.Network.628.-.Windows.-.Installer.exe + InstallerSha256: 3E751A92CB04169622E7BE7079E9E3F2AB0330108FF2463BD3831F5DD1CF5CFF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/HydrusNetwork/HydrusNetwork/v628/HydrusNetwork.HydrusNetwork.locale.en-US.yaml b/manifests/h/HydrusNetwork/HydrusNetwork/v628/HydrusNetwork.HydrusNetwork.locale.en-US.yaml new file mode 100644 index 0000000000000..27f3b38e610b2 --- /dev/null +++ b/manifests/h/HydrusNetwork/HydrusNetwork/v628/HydrusNetwork.HydrusNetwork.locale.en-US.yaml @@ -0,0 +1,86 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: HydrusNetwork.HydrusNetwork +PackageVersion: v628 +PackageLocale: en-US +Publisher: Hydrus Network +PublisherUrl: https://github.com/hydrusnetwork/hydrus +PublisherSupportUrl: https://github.com/hydrusnetwork/hydrus/issues +PrivacyUrl: https://hydrusnetwork.github.io/hydrus/privacy.html +Author: Hydrus Network +PackageName: Hydrus Network +PackageUrl: https://github.com/hydrusnetwork/hydrus +License: WTFPL +LicenseUrl: https://github.com/hydrusnetwork/hydrus/blob/HEAD/license.txt +Copyright: Copyright (C) 2011 Hydrus Developer +CopyrightUrl: https://github.com/hydrusnetwork/hydrus/blob/master/license.txt +ShortDescription: A personal booru-style media tagger that can import files and tags from your hard drive and popular websites. Content can be shared with other users via user-run servers. +Description: |- + The hydrus network client is an application written for Anon and other internet-fluent media nerds who have large image/swf/webm collections. + It browses with tags instead of folders, a little like a booru on your desktop. Advanced users can share tags and files anonymously through custom servers that any user may run. + Everything is free and privacy is the first concern. Executable releases are available for Windows, Linux, and macOS. + The program is in python, so you can also run it straight from the source code. +Moniker: hydrus-network +Tags: +- booru +- cross-platform +- image-database +ReleaseNotes: |- + ratings + - thanks to a user, we have another round of new ratings UI features-- + - under options->media viewer you can now have the ratings hover window and background appear, just like in the normal media viewer! quick ratings setting from the preview! + - under the new options->ratings, you can now customise the size of ratings in the manage ratings dialog and the preview viewer. you can also set a different width for inc/dec ratings + - also under options->ratings, you can now set numerical ratings to only show the 3/5 fraction and a single star on the thumbnail view + - under the services->manage services panel of a 'numerical' rating service, you can now set to have the 3/5 fraction written to the left/right of the stars display + - a bunch of misc code cleanup. we are slowly tearing out some of my bad old code to make a more decoupled renderer here, and ideally to eventually figure out a proper 'what this rating will look like' preview widget alongside these options + - thanks to another user, we have a bunch of new rating svgs available by default: architecture, art-palette, cinema-reel, eye, heart-cute, inspiration, scenery, smile, and wallpaper. I think they look great! + misc + - the new 'export filename' generation routine now parses any subdirs your pattern makes and forces a 64 character limit on Windows and a ~250 byte limit otherwise. you can now put {character}\{hash} as the pattern and it will create stable and reliable folder names. this is a hardcoded hack waiting for a richer path generation system (issue #1751) + - fixed a bug when loading an OR predicate that held a rating predicate during database initialisation (which could happen during a db update or, it seems, when loading the core options structure after the user had done some OR/ratings work that populated the 'recently used predicates' structure) + - fixed a bug when rendering any rating predicate to text during database initialisation + - since it is a clever routine and it has caused us trouble before, predicates now never fail to render themselves. if there's an error, they print it to log and return error:cannot render this predicate + - fixed a bug in the 'present this list of texts to the user' renderer that was causing the last line not to render when there were more than 4 items to show. this made for a completely empty output if you pasted five really short texts into 'paste queries'. it was also undercounting the 'and x others' line by one, when there were more than 24 lines of content + - the 'stop removing double slashes at the start of an URL' test went well, so all users are now flipped to working this way by default. the 'TEST' checkbox under options->downloading is now a 'DEBUG' one, if you need to go back to the old way + - the program no longer logs the full error when FFMPEG cannot render a PSD + - the program no longer logs the full error when Qt cannot render a PDF for a thumbnail + potential duplicate pairs count is smoother + - the widget that edits a potential duplicate pairs search context (which you see in the duplicate filter page sidebar and the duplicates auto-resolution search panel) now has an integrated duplicate pairs count. this count calculates in an iterative/incremental way, doing a bit of counting over and over rather than one big job, just like the duplicates auto-resolution preview page, and thus opening a duplicates filter page is no longer an instant db lag. updating the search context or getting a signal of new potential pairs will quickly cancel any ongoing search and restart the count. it also pauses an ongoing count while you are not looking at it. the count also only disables the 'launch the filter' and 'show some random potential pairs' buttons until it finds at least one pair. this should all just work better! + - note that I did a bit more assumptive 'things haven't changed in the past five minutes' logic with this work, so while it should still update itself on big changes, I made it lazier on the small stuff. let me know if and when it undercounts. I also stopped it refreshing after every 'random potential pairs' action, too. the refresh button should fix any undercounting or other desync, so let's see how it does IRL + duplicates auto-resolution + - the approve/deny actions in the review rule panel now work in chunks, which gives other jobs time to get at the database (no more freezing up), and they report '16/55' status on the button you clicked, so you can see how it is doing + - this panel also gets a 'select all' button + - I tweaked the suggested 'A and B are visual dupes' rule to queue up 128 files and broke it into two rules--one that requires A has filesize > 1.1x B and the other doing A has width/height > 1.1x B, mostly to increase confidence on the 'better' action. I didn't have time to add times to the comparator system, but that's next. I want 'A modified date earlier than B' on both rules as an extra safety guard rail for what I suggest as a default + - added a new 'archived file delete lock' exception under options->files and trash, for any auto-resolution action + - I've hidden the 'work hard' button. I don't really like it and it wasn't working pleasantly. maybe I'll bring it back, but if I do it'll be with some nicer UI + boring duplicate cleanup + - the initial work that goes into setting up the new iterative potential duplicate pair fetch is now cached and shared amongst all callers, so a variety of refresh calls and duplicate filter or rule edit panel loads will now be that bit faster off the mark. this is important if you have like 700k potential pairs + - the new iterative potential duplicate pair fetch now pre-filters to any simple local file domain, so when it runs on a single local file domain with a small relative file count, it is now much much faster + - the new iterative potential duplicate pair fetch is now faster with system:everything searches + - the new iterative potential duplicate pair fetch tech now grabs in blocks of 4096 pairs, up from 1024. the core auto-resolution rule searcher is now 4096, too, down from 8192 + - the old monolithic potential duplicate pairs counter, which now only occurs in unit tests and an API call, uses the new tech (just by iterating over the whole search space in one transaction), and is thus a good bit faster and cleaner etc.. in various situations. I was able to delete a bunch of semi-duplicated code after this! + - all duplicate pair searches that are both system:everything and a union of multiple local file domains now run at good speed (they were previously extremely unoptimised in many situations) + boring cleanup + - when editing favourite regexes, the 'add' call now shows a rich regex edit box, and both add and edit calls' regex boxes are a little wider and no longer offer a recursive 'manage favourites' command from their menu lol + - moved the edit regex favourites panel to its own class + - moved the autocomplete dropdown resize code from old wx hacks to Qt Events + - moved the frame size and position saving code from old wx hacks to Qt Events and Timers and a nicer eventFilter, and reduced some save spam + - since they are no longer used anywhere, cleared out these old wx move and maximise event catching hacks + - when you enter a password through the database menu, it now asks for it a second time to confirm you typed it all ok, and if you clear it, it gives a yes/no to confirm that + - the slideshow custom period input now defaults to 15.0 so the user knows they can do sub-second input, and it now presents a graphical message if the time was unparseable + - the various 'separate' subscription choices should be better about sorting the to-be-split queries with human sort rather than just ascii + - my 'select from a list' and 'select from a checkbox list' mini-dialogs now sort their contents with richer human sort + - in the edit duplicates auto-resolution rule panel, the 'max pairs in pending queue' widget now disables more carefully based on the starting operation mode. btw I think I was crazy defining the pause state via a third operation mode choice and will most likely rework this to a separate checkbox + - updated the example response in the Client API /manage_pages/get_page_info documentation to include hash_ids + - cleaned some misc client db job-to-command mapping stuff + - bunch of little logical improvements for various text entry dialog feel, mostly making some 'edit this if you want' cancel outcomes in sub merge/separate no longer mean a cancel of the larger multi-step workflow + - help->about now says your numpy version + - broke ClientGUITags, which was ~230KB, into smaller files for Manage Tags, Manage Tag Siblings, Manage Tag Parents, Incremental Tagging, Tag Filters, Sync Maintenance EditReview, Tag Display Options, Edit Namespace Sort, and Tag Summary Generators in hydrus.client.gui.metadata + text entry dialog overhaul +ReleaseNotesUrl: https://github.com/hydrusnetwork/hydrus/releases/tag/v628 +PurchaseUrl: https://hydrusnetwork.github.io/hydrus/support.html +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://hydrusnetwork.github.io/hydrus/faq.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HydrusNetwork/HydrusNetwork/v628/HydrusNetwork.HydrusNetwork.yaml b/manifests/h/HydrusNetwork/HydrusNetwork/v628/HydrusNetwork.HydrusNetwork.yaml new file mode 100644 index 0000000000000..6170c5759ae22 --- /dev/null +++ b/manifests/h/HydrusNetwork/HydrusNetwork/v628/HydrusNetwork.HydrusNetwork.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: HydrusNetwork.HydrusNetwork +PackageVersion: v628 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/h3poteto/fedistar/1.11.7/h3poteto.fedistar.installer.yaml b/manifests/h/h3poteto/fedistar/1.11.7/h3poteto.fedistar.installer.yaml new file mode 100644 index 0000000000000..40301cc5d95d6 --- /dev/null +++ b/manifests/h/h3poteto/fedistar/1.11.7/h3poteto.fedistar.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: h3poteto.fedistar +PackageVersion: 1.11.7 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{F2ED03C3-0C39-4C52-937B-C1FE3C7A69DB}' +ReleaseDate: 2025-07-01 +AppsAndFeaturesEntries: +- Publisher: fedistar + ProductCode: '{F2ED03C3-0C39-4C52-937B-C1FE3C7A69DB}' + UpgradeCode: '{41840B3C-ADCE-5123-A0C8-344F6C799161}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\fedistar' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/h3poteto/fedistar/releases/download/v1.11.7/fedistar_1.11.7_x64_en-US.msi + InstallerSha256: C2F1C79413698409DE0C4D38EE835EBBD19B751178E4230B22BAA37F74B5D098 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/h3poteto/fedistar/1.11.7/h3poteto.fedistar.locale.en-US.yaml b/manifests/h/h3poteto/fedistar/1.11.7/h3poteto.fedistar.locale.en-US.yaml new file mode 100644 index 0000000000000..84ee9c8adb144 --- /dev/null +++ b/manifests/h/h3poteto/fedistar/1.11.7/h3poteto.fedistar.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: h3poteto.fedistar +PackageVersion: 1.11.7 +PackageLocale: en-US +Publisher: h3poteto +PublisherUrl: https://github.com/h3poteto +PublisherSupportUrl: https://github.com/h3poteto/fedistar/issues +PackageName: fedistar +PackageUrl: https://github.com/h3poteto/fedistar +License: GPL-3.0 +LicenseUrl: https://github.com/h3poteto/fedistar/blob/HEAD/LICENSE +ShortDescription: Multi-column Fediverse client for desktop +Tags: +- app +- desktop +- firefish +- friendica +- mastodon +- pleroma +ReleaseNotes: |- + What's Changed + - Add options to switch showBoosts and showReplies by @h3poteto in #1874 + - Update Rust crate megalodon to 1.0.1 by @renovate in #1873 + - Update dependency megalodon to v10.1.2 by @renovate in #1871 + - Update eslint monorepo to ^9.30.0 by @renovate in #1864 + - [Auto update] Thirdparty libraries list by @github-actions in #1867 + - Update Rust crate reqwest to >=0.12.20 by @renovate in #1868 + - Update dependency ts-jest to ^29.4.0 by @renovate in #1872 + - Update dependency @tauri-apps/plugin-clipboard-manager to ^2.3.0 by @renovate in #1875 + - Update dependency @tauri-apps/plugin-notification to ~2.3.0 - autoclosed by @renovate in #1876 + - Update dependency @tauri-apps/plugin-shell to ~2.3.0 by @renovate in #1879 + - Update Rust crate tauri-plugin-notification to 2.3.0 by @renovate in #1881 + - Update dependency @tauri-apps/plugin-dialog to ~2.3.0 by @renovate in #1883 + - Update dependency @tauri-apps/plugin-os to ~2.3.0 by @renovate in #1877 + - Update typescript-eslint monorepo to ^8.35.0 by @renovate in #1869 + - Update dependency sass to ^1.89.2 by @renovate in #1865 + - Update dependency @tauri-apps/plugin-global-shortcut to ~2.3.0 by @renovate in #1885 + - Revert "Update Rust crate tauri-plugin-notification to 2.3.0" by @h3poteto in #1897 + - Update dependency react-virtuoso to v4.13.0 by @renovate in #1866 + - New Crowdin updates by @h3poteto in #1889 + - Update dependency @tauri-apps/plugin-http to ~2.5.0 by @renovate in #1886 + - Update dependency @tauri-apps/plugin-fs to ~2.4.0 by @renovate in #1884 + - Update dependency @tauri-apps/plugin-process to ~2.3.0 by @renovate in #1878 + - [Auto update] Thirdparty libraries list by @github-actions in #1901 + - Fix macos build for TAURI_BUNDLER_DMG_IGNORE_CI by @h3poteto in #1903 + Full Changelog: v1.11.6...v1.11.7 +ReleaseNotesUrl: https://github.com/h3poteto/fedistar/releases/tag/v1.11.7 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/h3poteto/fedistar/1.11.7/h3poteto.fedistar.yaml b/manifests/h/h3poteto/fedistar/1.11.7/h3poteto.fedistar.yaml new file mode 100644 index 0000000000000..779f044fc8f1d --- /dev/null +++ b/manifests/h/h3poteto/fedistar/1.11.7/h3poteto.fedistar.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: h3poteto.fedistar +PackageVersion: 1.11.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/h3poteto/whalebird-desktop/6.2.3/h3poteto.whalebird-desktop.installer.yaml b/manifests/h/h3poteto/whalebird-desktop/6.2.3/h3poteto.whalebird-desktop.installer.yaml new file mode 100644 index 0000000000000..857d97493c44f --- /dev/null +++ b/manifests/h/h3poteto/whalebird-desktop/6.2.3/h3poteto.whalebird-desktop.installer.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: h3poteto.whalebird-desktop +PackageVersion: 6.2.3 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: d77a112a-8e72-57ad-b6c1-1933ae3b6877 +ReleaseDate: 2025-06-29 +AppsAndFeaturesEntries: +- DisplayName: Whalebird 6.2.3 + Publisher: Akira Fukushima + ProductCode: d77a112a-8e72-57ad-b6c1-1933ae3b6877 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/h3poteto/whalebird-desktop/releases/download/v6.2.3/Whalebird-6.2.3-win-x64.exe + InstallerSha256: A7C654F40E33AA767F78C3EBDCCECE9819388E48967F12D3FF3081734BD3904D + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/h3poteto/whalebird-desktop/releases/download/v6.2.3/Whalebird-6.2.3-win-x64.exe + InstallerSha256: A7C654F40E33AA767F78C3EBDCCECE9819388E48967F12D3FF3081734BD3904D + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/h3poteto/whalebird-desktop/6.2.3/h3poteto.whalebird-desktop.locale.en-US.yaml b/manifests/h/h3poteto/whalebird-desktop/6.2.3/h3poteto.whalebird-desktop.locale.en-US.yaml new file mode 100644 index 0000000000000..dec76cfdf1f04 --- /dev/null +++ b/manifests/h/h3poteto/whalebird-desktop/6.2.3/h3poteto.whalebird-desktop.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: h3poteto.whalebird-desktop +PackageVersion: 6.2.3 +PackageLocale: en-US +Publisher: AkiraFukushima +PublisherUrl: https://h3poteto.github.io/ +PublisherSupportUrl: https://github.com/h3poteto/whalebird-desktop/issues +PrivacyUrl: https://whalebird.social/en/desktop/privacy_policy +Author: h3poteto +PackageName: Whalebird +PackageUrl: https://whalebird.social/ +License: GPL-3.0 +LicenseUrl: https://github.com/h3poteto/whalebird-desktop/blob/HEAD/LICENSE +Copyright: Copyright (c) 2021 Akira Fukushima +CopyrightUrl: https://raw.githubusercontent.com/h3poteto/whalebird-desktop/master/LICENSE +ShortDescription: An Electron based Mastodon, Pleroma and Misskey client for Windows, Mac and Linux +Moniker: whalebird +Tags: +- electron +- mastodon +- misskey +- pleroma +- whalebird +ReleaseNotes: |- + What's Changed + - refs #5159 Add show boosts option on timelines by @h3poteto in #5228 + - Update Node.js to v22.16.0 - autoclosed by @renovate in #5212 + - Update dependency react-hotkeys-hook to v5 by @renovate in #5214 + - [Auto update] Thirdparty libraries list by @github-actions in #5219 + - Update typescript-eslint monorepo to v8.34.0 by @renovate in #5220 + - Update dependency @types/node to v22.15.31 by @renovate in #5221 + - Update dependency sass to v1.89.2 by @renovate in #5224 + - Update dependency next to v14.2.29 by @renovate in #5226 + - Update dependency globals to v16.2.0 by @renovate in #5227 + - Update eslint monorepo to v9.28.0 by @renovate in #5225 + - Update dependency sanitize-html to v2.17.0 by @renovate in #5222 + - Update dependency electron to v36 by @renovate in #5216 + - Update dependency @babel/runtime-corejs3 to v7.27.6 by @renovate in #5229 + - Update dependency postcss to v8.5.4 by @renovate in #5230 + - Update dependency react-virtuoso to v4.12.8 by @renovate in #5231 + - Update dependency react-hotkeys-hook to v5.1.0 by @renovate in #5233 + - New Crowdin updates by @h3poteto in #5234 + - Update dependency @electron/notarize to v3 by @renovate in #5182 + - Update apple-actions/import-codesign-certs action to v5 by @renovate in #5186 + - refs #4799 Add DM timeline by @h3poteto in #5239 + - New Crowdin updates by @h3poteto in #5248 + Full Changelog: v6.2.2...v6.2.3 +ReleaseNotesUrl: https://github.com/h3poteto/whalebird-desktop/releases/tag/v6.2.3 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/h3poteto/whalebird-desktop/6.2.3/h3poteto.whalebird-desktop.yaml b/manifests/h/h3poteto/whalebird-desktop/6.2.3/h3poteto.whalebird-desktop.yaml new file mode 100644 index 0000000000000..37168e5c813e8 --- /dev/null +++ b/manifests/h/h3poteto/whalebird-desktop/6.2.3/h3poteto.whalebird-desktop.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: h3poteto.whalebird-desktop +PackageVersion: 6.2.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/hoppscotch/Hoppscotch/25.5.4-0/hoppscotch.Hoppscotch.installer.yaml b/manifests/h/hoppscotch/Hoppscotch/25.5.4-0/hoppscotch.Hoppscotch.installer.yaml new file mode 100644 index 0000000000000..f8c68f9c54032 --- /dev/null +++ b/manifests/h/hoppscotch/Hoppscotch/25.5.4-0/hoppscotch.Hoppscotch.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: hoppscotch.Hoppscotch +PackageVersion: 25.5.4-0 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{FA5216B7-47FE-4CB0-B80D-30220AE4DAE8}' +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- DisplayVersion: 25.5.4 + ProductCode: '{FA5216B7-47FE-4CB0-B80D-30220AE4DAE8}' + UpgradeCode: '{75553029-191D-517B-AAA3-B841B7DD3064}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Hoppscotch' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hoppscotch/releases/releases/download/v25.5.4-0/Hoppscotch_win_x64.msi + InstallerSha256: A07D2A452678C5435BC9331C5FEBD498800D1CAF60ABE3D4AC4AAFE2E1593626 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/hoppscotch/Hoppscotch/25.5.4-0/hoppscotch.Hoppscotch.locale.en-US.yaml b/manifests/h/hoppscotch/Hoppscotch/25.5.4-0/hoppscotch.Hoppscotch.locale.en-US.yaml new file mode 100644 index 0000000000000..7a30f98505cfa --- /dev/null +++ b/manifests/h/hoppscotch/Hoppscotch/25.5.4-0/hoppscotch.Hoppscotch.locale.en-US.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: hoppscotch.Hoppscotch +PackageVersion: 25.5.4-0 +PackageLocale: en-US +Publisher: hoppscotch +PublisherUrl: https://github.com/hoppscotch +PublisherSupportUrl: https://github.com/hoppscotch/releases/issues +PackageName: Hoppscotch +PackageUrl: https://github.com/hoppscotch/releases +License: MIT License +ShortDescription: Open Source API Development Ecosystem +ReleaseNotes: 'chore: bump cloud-desktop and selfhost-desktop to v25.5.4-0' +ReleaseNotesUrl: https://github.com/hoppscotch/releases/releases/tag/v25.5.4-0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/hoppscotch/Hoppscotch/25.5.4-0/hoppscotch.Hoppscotch.yaml b/manifests/h/hoppscotch/Hoppscotch/25.5.4-0/hoppscotch.Hoppscotch.yaml new file mode 100644 index 0000000000000..7ab040f58ea0d --- /dev/null +++ b/manifests/h/hoppscotch/Hoppscotch/25.5.4-0/hoppscotch.Hoppscotch.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: hoppscotch.Hoppscotch +PackageVersion: 25.5.4-0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/hoppscotch/Hoppscotch/25.6.0-0/hoppscotch.Hoppscotch.installer.yaml b/manifests/h/hoppscotch/Hoppscotch/25.6.0-0/hoppscotch.Hoppscotch.installer.yaml new file mode 100644 index 0000000000000..26e60e8240d7d --- /dev/null +++ b/manifests/h/hoppscotch/Hoppscotch/25.6.0-0/hoppscotch.Hoppscotch.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: hoppscotch.Hoppscotch +PackageVersion: 25.6.0-0 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{A3585A37-B511-45FE-BF83-DD0B0AB3980C}' +ReleaseDate: 2025-06-26 +AppsAndFeaturesEntries: +- DisplayVersion: 25.6.0 + ProductCode: '{A3585A37-B511-45FE-BF83-DD0B0AB3980C}' + UpgradeCode: '{75553029-191D-517B-AAA3-B841B7DD3064}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Hoppscotch' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hoppscotch/releases/releases/download/v25.6.0-0/Hoppscotch_win_x64.msi + InstallerSha256: 6413F0E99475E33D09156C653BF49AFEF127D5CF2D3790DAB12AD8FE6C02AB49 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/hoppscotch/Hoppscotch/25.6.0-0/hoppscotch.Hoppscotch.locale.en-US.yaml b/manifests/h/hoppscotch/Hoppscotch/25.6.0-0/hoppscotch.Hoppscotch.locale.en-US.yaml new file mode 100644 index 0000000000000..0c904d74b7e16 --- /dev/null +++ b/manifests/h/hoppscotch/Hoppscotch/25.6.0-0/hoppscotch.Hoppscotch.locale.en-US.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: hoppscotch.Hoppscotch +PackageVersion: 25.6.0-0 +PackageLocale: en-US +Publisher: hoppscotch +PublisherUrl: https://github.com/hoppscotch +PublisherSupportUrl: https://github.com/hoppscotch/releases/issues +PackageName: Hoppscotch +PackageUrl: https://github.com/hoppscotch/releases +License: MIT License +ShortDescription: Open Source API Development Ecosystem +ReleaseNotes: 'chore: bump cloud-desktop and selfhost-desktop to v25.6.0-0' +ReleaseNotesUrl: https://github.com/hoppscotch/releases/releases/tag/v25.6.0-0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/hoppscotch/Hoppscotch/25.6.0-0/hoppscotch.Hoppscotch.yaml b/manifests/h/hoppscotch/Hoppscotch/25.6.0-0/hoppscotch.Hoppscotch.yaml new file mode 100644 index 0000000000000..65cea7c3497e1 --- /dev/null +++ b/manifests/h/hoppscotch/Hoppscotch/25.6.0-0/hoppscotch.Hoppscotch.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: hoppscotch.Hoppscotch +PackageVersion: 25.6.0-0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/houmain/keymapper/4.12.2/houmain.keymapper.installer.yaml b/manifests/h/houmain/keymapper/4.12.2/houmain.keymapper.installer.yaml new file mode 100644 index 0000000000000..236d626232e15 --- /dev/null +++ b/manifests/h/houmain/keymapper/4.12.2/houmain.keymapper.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: houmain.keymapper +PackageVersion: 4.12.2 +InstallerLocale: en-US +InstallerType: wix +Scope: user +ProductCode: '{04E74FED-AF09-4D0B-AF1B-50C3C41315B2}' +ReleaseDate: 2025-06-29 +AppsAndFeaturesEntries: +- ProductCode: '{04E74FED-AF09-4D0B-AF1B-50C3C41315B2}' + UpgradeCode: '{D3B4DADB-1A7E-40B3-A6F0-EEB022317FC8}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\keymapper' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/houmain/keymapper/releases/download/4.12.2/keymapper-4.12.2-Windows-x86_64.msi + InstallerSha256: 49CE6D10B3F416BD762D799260E2EE18C87FEEE8EEAB29B7E76F966720E1B96B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/houmain/keymapper/4.12.2/houmain.keymapper.locale.en-US.yaml b/manifests/h/houmain/keymapper/4.12.2/houmain.keymapper.locale.en-US.yaml new file mode 100644 index 0000000000000..8270945d3ec38 --- /dev/null +++ b/manifests/h/houmain/keymapper/4.12.2/houmain.keymapper.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: houmain.keymapper +PackageVersion: 4.12.2 +PackageLocale: en-US +Publisher: Albert Kalchmair +PublisherUrl: https://github.com/houmain +PublisherSupportUrl: https://github.com/houmain/keymapper/issues +PackageName: keymapper +PackageUrl: https://github.com/houmain/keymapper +License: GPL-3.0 +LicenseUrl: https://github.com/houmain/keymapper/blob/HEAD/LICENSE +ShortDescription: A cross-platform context-aware key remapper +Tags: +- context-awareness +- cross-platform +- gnome-shell-extension +- keyboard-layout +- keyboard-shortcuts +- keymapper +- wayland +ReleaseNotes: |- + Added + - Showing a hint in "Next Key Info" that Gnome/KDE script is not enabled. + Changed + - Handling only lowres wheel events by default on Linux (#268). + Fixed + - Not blocking when opening configuration from tray on Linux (#220). + - Fixed focus update when xwayland app is minimized to tray (#220). + - Fixed device context fallthrough (#277). + - Optimized SVG icon. +ReleaseNotesUrl: https://github.com/houmain/keymapper/releases/tag/4.12.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/houmain/keymapper/4.12.2/houmain.keymapper.yaml b/manifests/h/houmain/keymapper/4.12.2/houmain.keymapper.yaml new file mode 100644 index 0000000000000..578f8fda2d618 --- /dev/null +++ b/manifests/h/houmain/keymapper/4.12.2/houmain.keymapper.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: houmain.keymapper +PackageVersion: 4.12.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/houseabsolute/ubi/0.7.2/houseabsolute.ubi.installer.yaml b/manifests/h/houseabsolute/ubi/0.7.2/houseabsolute.ubi.installer.yaml new file mode 100644 index 0000000000000..1988653dd5aaf --- /dev/null +++ b/manifests/h/houseabsolute/ubi/0.7.2/houseabsolute.ubi.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: houseabsolute.ubi +PackageVersion: 0.7.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ubi.exe + PortableCommandAlias: ubi +Commands: +- ubi +ReleaseDate: 2025-06-19 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/houseabsolute/ubi/releases/download/v0.7.2/ubi-Windows-msvc-i686.zip + InstallerSha256: 61FE245BCD47529F5674DD35E76B4CCDF0FE7C65F5D12E1ADCD9EA95E604CEFF + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/houseabsolute/ubi/releases/download/v0.7.2/ubi-Windows-msvc-x86_64.zip + InstallerSha256: 2E172CBA2764C1E19CBD36BF9F20ABE4B84CB8165D237263AEF78705B02E7788 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/houseabsolute/ubi/releases/download/v0.7.2/ubi-Windows-msvc-arm64.zip + InstallerSha256: EA1BBB7AB347B47A6D08FE09F888780DC51FF9F2A20DD64D81772B5A535986C3 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/houseabsolute/ubi/0.7.2/houseabsolute.ubi.locale.en-US.yaml b/manifests/h/houseabsolute/ubi/0.7.2/houseabsolute.ubi.locale.en-US.yaml new file mode 100644 index 0000000000000..c7c26341297d7 --- /dev/null +++ b/manifests/h/houseabsolute/ubi/0.7.2/houseabsolute.ubi.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: houseabsolute.ubi +PackageVersion: 0.7.2 +PackageLocale: en-US +Publisher: A house for code +PublisherUrl: https://github.com/houseabsolute +PublisherSupportUrl: https://github.com/houseabsolute/ubi/issues +PackageName: ubi +PackageUrl: https://github.com/houseabsolute/ubi +License: Apache-2.0 or MIT +Copyright: Copyright (c) 2022 David Rolsky +ShortDescription: The Universal Binary Installer +Description: |- + UBI is a universal binary installer library and CLI tool. + When I say "universal", I mean it downloads binaries from GitHub or GitLab releases. + When I say "binary", I mean it handles single-file executables like those created by most Go and Rust projects. + When I say "installer", I mean it plops the binary wherever you tell it to. + And finally, when I say "UBI", I don't mean "universal basic income", but that'd be nice too. +Tags: +- binary +- download +- executable +- install +- portable +ReleaseNotes: |- + - - Added support for release artifacts with a .jar extension. Based on PR #126 from @dpassen + (Derek Passen). +ReleaseNotesUrl: https://github.com/houseabsolute/ubi/releases/tag/v0.7.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/houseabsolute/ubi/0.7.2/houseabsolute.ubi.locale.zh-CN.yaml b/manifests/h/houseabsolute/ubi/0.7.2/houseabsolute.ubi.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6e0ebe731dbbd --- /dev/null +++ b/manifests/h/houseabsolute/ubi/0.7.2/houseabsolute.ubi.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: houseabsolute.ubi +PackageVersion: 0.7.2 +PackageLocale: zh-CN +ShortDescription: 通用二进制安装器 +Description: |- + UBI 是一个通用二进制安装器库和命令行工具。 + “通用”是指它能从 GitHub 或 GitLab 发布的版本中下载二进制文件。 + “二进制”是指它能处理单文件可执行文件,比如大多数 Go 和 Rust 项目创建的可执行文件。 + “安装程序”是指的是它会按照你的要求将二进制文件放到任何地方。 + 最后,当我说“UBI”时,我指的不是“全民基本收入(universal basic income)”,但那也不错。 +Tags: +- 下载 +- 二进制 +- 便携式 +- 可执行文件 +- 安装 +ReleaseNotesUrl: https://github.com/houseabsolute/ubi/releases/tag/v0.7.2 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/h/houseabsolute/ubi/0.7.2/houseabsolute.ubi.yaml b/manifests/h/houseabsolute/ubi/0.7.2/houseabsolute.ubi.yaml new file mode 100644 index 0000000000000..66858e89366a2 --- /dev/null +++ b/manifests/h/houseabsolute/ubi/0.7.2/houseabsolute.ubi.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: houseabsolute.ubi +PackageVersion: 0.7.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/huanghongxun/HelloMinecraftLauncher/3.6.12/huanghongxun.HelloMinecraftLauncher.installer.yaml b/manifests/h/huanghongxun/HelloMinecraftLauncher/3.6.12/huanghongxun.HelloMinecraftLauncher.installer.yaml new file mode 100644 index 0000000000000..d19c9cea124c0 --- /dev/null +++ b/manifests/h/huanghongxun/HelloMinecraftLauncher/3.6.12/huanghongxun.HelloMinecraftLauncher.installer.yaml @@ -0,0 +1,15 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: huanghongxun.HelloMinecraftLauncher +PackageVersion: 3.6.12 +InstallerType: portable +Commands: +- hmcl +ReleaseDate: 2025-03-28 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/HMCL-dev/HMCL/releases/download/release-3.6.12/HMCL-3.6.12.exe + InstallerSha256: 33445ED110EA0FCF1F33253A6926460DA3D943AFE1B23B4874FF16A1066AAD58 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/huanghongxun/HelloMinecraftLauncher/3.6.12/huanghongxun.HelloMinecraftLauncher.locale.en-US.yaml b/manifests/h/huanghongxun/HelloMinecraftLauncher/3.6.12/huanghongxun.HelloMinecraftLauncher.locale.en-US.yaml new file mode 100644 index 0000000000000..491e6adacfb95 --- /dev/null +++ b/manifests/h/huanghongxun/HelloMinecraftLauncher/3.6.12/huanghongxun.HelloMinecraftLauncher.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: huanghongxun.HelloMinecraftLauncher +PackageVersion: 3.6.12 +PackageLocale: en-US +Publisher: huanghongxun +PublisherUrl: https://www.huangyuhui.net/ +PublisherSupportUrl: https://github.com/HMCL-dev/HMCL/issues +Author: Yellow Fish +PackageName: Hello Minecraft! Launcher +PackageUrl: https://hmcl.huangyuhui.net/ +License: GNU General Public License v3.0 +LicenseUrl: https://github.com/HMCL-dev/HMCL/blob/HEAD/LICENSE +Copyright: Copyright (C) 2021 huangyuhui +ShortDescription: A Minecraft Launcher which is multi-functional, cross-platform and popular. +Description: | + HMCL is an open-source, cross-platform Minecraft launcher that supports Mod Management, Game Customizing, ModLoader Installing (Forge, NeoForge, Fabric, Quilt, LiteLoader, and OptiFine), Modpack Creating, UI Customization, and more. + HMCL has amazing cross-platform capabilities. Not only does it run on different operating systems like Windows, Linux, and macOS, but it also supports various CPU architectures such as x86, ARM, MIPS, and LoongArch. You can easily enjoy Minecraft across different platforms through HMCL. +Tags: +- HMCL +- Launcher +- Minecraft +- Minecraft-curseforge +- Minecraft-launcher +Documentations: +- DocumentLabel: Hello Minecraft! Launcher 帮助文档 + DocumentUrl: https://docs.hmcl.net/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/h/huanghongxun/HelloMinecraftLauncher/3.6.12/huanghongxun.HelloMinecraftLauncher.locale.zh-CN.yaml b/manifests/h/huanghongxun/HelloMinecraftLauncher/3.6.12/huanghongxun.HelloMinecraftLauncher.locale.zh-CN.yaml new file mode 100644 index 0000000000000..de7bfc4b43782 --- /dev/null +++ b/manifests/h/huanghongxun/HelloMinecraftLauncher/3.6.12/huanghongxun.HelloMinecraftLauncher.locale.zh-CN.yaml @@ -0,0 +1,45 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: huanghongxun.HelloMinecraftLauncher +PackageVersion: 3.6.12 +PackageLocale: zh-CN +Publisher: huanghongxun +PublisherUrl: https://www.huangyuhui.net/ +PublisherSupportUrl: https://github.com/HMCL-dev/HMCL/issues +PrivacyUrl: https://hmcl.huangyuhui.net/about/ +Author: Yellow Fish +PackageName: Hello Minecraft! Launcher +PackageUrl: https://hmcl.huangyuhui.net/ +License: GPL-3.0 +LicenseUrl: https://github.com/HMCL-dev/HMCL/blob/HEAD/LICENSE +Copyright: Copyright (C) 2021 huangyuhui +ShortDescription: HMCL 是一个免费、开源的 Minecraft 启动器,允许玩家方便快捷地安装、管理、运行游戏。 +Moniker: HMCL +Tags: +- Minecraft +- Minecraft启动器 +- hello-minecraft-launcher +- hmcl +- minecraft-curseforge +- 我的世界 +ReleaseNotes: |- + This version is a stable version. + The full changelogs can be found on the website: https://docs.hmcl.net/changelog/stable.html + Notice: changelogs are written in Chinese. + ────────────────────┬──────────────────────────────────────────────────────────────── + File Name │SHA-256 Checksum + ────────────────────┼──────────────────────────────────────────────────────────────── + HMCL-3.6.12.exe │33445ed110ea0fcf1f33253a6926460da3d943afe1b23b4874ff16a1066aad58 + ────────────────────┼──────────────────────────────────────────────────────────────── + HMCL-3.6.12.jar │a1fac6ec255920e0c9a0713aa3047d3fbbe20650a16a6605e4f12915e78e1f81 + ────────────────────┼──────────────────────────────────────────────────────────────── + HMCL-3.6.12.sh │f237b5de413e19b334a2491221e5e42ca190a7b931a162280675c4295517038b + ────────────────────┴──────────────────────────────────────────────────────────────── +ReleaseNotesUrl: https://github.com/HMCL-dev/HMCL/releases/tag/release-3.6.12 +InstallationNotes: 使用指令 hmcl 启动 +Documentations: +- DocumentLabel: Hello Minecraft! Launcher 帮助文档 + DocumentUrl: https://docs.hmcl.net/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/huanghongxun/HelloMinecraftLauncher/3.6.12/huanghongxun.HelloMinecraftLauncher.yaml b/manifests/h/huanghongxun/HelloMinecraftLauncher/3.6.12/huanghongxun.HelloMinecraftLauncher.yaml new file mode 100644 index 0000000000000..5ea9144fe3b68 --- /dev/null +++ b/manifests/h/huanghongxun/HelloMinecraftLauncher/3.6.12/huanghongxun.HelloMinecraftLauncher.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: huanghongxun.HelloMinecraftLauncher +PackageVersion: 3.6.12 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/IBM/Aspera/1.0.12/IBM.Aspera.installer.yaml b/manifests/i/IBM/Aspera/1.0.12/IBM.Aspera.installer.yaml new file mode 100644 index 0000000000000..6bef81d51ffb0 --- /dev/null +++ b/manifests/i/IBM/Aspera/1.0.12/IBM.Aspera.installer.yaml @@ -0,0 +1,21 @@ +# 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: IBM.Aspera +PackageVersion: 1.0.12 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +Protocols: +- aspera +ProductCode: '{BAFBA0D6-1C4C-4D09-AF63-922BA35EBDD7}' +ReleaseDate: 2025-06-26 +AppsAndFeaturesEntries: +- UpgradeCode: '{3A073F21-9753-5031-9262-278661F7B2E3}' +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.ibmaspera.com/dist/desktop/stable/windows/ibm-aspera-desktop-1.0.12-x64.msi + InstallerSha256: 4BD48736771E3D67333C4A191A205CFD850D931A276FF6C4497DD6D3364B1F96 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/IBM/Aspera/1.0.12/IBM.Aspera.locale.en-US.yaml b/manifests/i/IBM/Aspera/1.0.12/IBM.Aspera.locale.en-US.yaml new file mode 100644 index 0000000000000..6c5cda3881bf5 --- /dev/null +++ b/manifests/i/IBM/Aspera/1.0.12/IBM.Aspera.locale.en-US.yaml @@ -0,0 +1,45 @@ +# 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: IBM.Aspera +PackageVersion: 1.0.12 +PackageLocale: en-US +Publisher: IBM +PublisherUrl: https://ibmaspera.com/ +PublisherSupportUrl: https://ibmaspera.com/help +PrivacyUrl: https://www.ibm.com/privacy +Author: International Business Machines Corporation +PackageName: IBM Aspera +PackageUrl: https://ibmaspera.com/help/downloads/desktop +License: Proprietary +# LicenseUrl: +Copyright: © Copyright IBM Corp. 2023, 2025 +# CopyrightUrl: +ShortDescription: With IBM Aspera you can transfer files from web apps or directly through this app once you connect your IBM Aspera servers to it. +Description: |- + Aspera for desktop is a transfer client that powers high-speed file transfers between your computer and Aspera transfer servers. When used with a website that is integrated with Aspera, Aspera for desktop allows you to start uploads and downloads directly from the browser. + Does your company use Aspera? + Once you downloaded and installed Aspera for desktop, you are ready to get started. Open a web browser of your choice and navigate to your company's website that integrates with Aspera. The desktop app seamlessly integrates with websites and allows you to perform high-speed file transfer directly through your browser. Follow the instructions provided on the website to start transferring files. + Why do I need to use a desktop app to transfer files? + Users that are familiar with Google Drive or Box might be used to downloading and uploading files directly in the web browser without the need for a separate desktop application. However, web browsers are limited in the functions they provide for file transfers and often result in slow transfers and poor performance. + When integrating with Aspera, websites are able to offer users faster file transfers regardless of file size or physical distance. While Aspera does offer install-free solutions, the Aspera desktop app provides users with the best end to end high-speed file transfer experience. Additionally, the desktop app provides these features: + - High-speed file transfer + Reliably and securely transfer large files or directories at maximum speed regardless of network conditions or physical distance. + - Manage transfers + View past history and current transfer progress with the ability to pause and resume transfers. When used with Shares, the desktop app lets users transfer shared files faster and more reliably. + - Remotely view and manage content + Sign in to your IBM Aspera on Cloud (AoC), IBM Aspera Faspex 5, or IBM Aspera High-Speed Transfer Server (HSTS) accounts directly from the desktop app to browse and manage your account content. + - And much more! + To learn more about the new approach to fast data transfer, check out the Aspera website: https://www.ibm.com/products/aspera. +# Moniker: +# Tags: +ReleaseNotes: |- + Enhancements + - File and package transfers now require the correct decryption password. Transfers fail immediately if an incorrect password is provided, ensuring proper security during immediate decryption. + - Enhanced AoC and Faspex 5 inbox handling by enabling separate accounts for each configuration to direct data to different local directories. +ReleaseNotesUrl: https://www.ibm.com/docs/en/aspera-for-desktop/1.0.x?topic=started-what-is-new-in-aspera-desktop +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IBM/Aspera/1.0.12/IBM.Aspera.locale.zh-CN.yaml b/manifests/i/IBM/Aspera/1.0.12/IBM.Aspera.locale.zh-CN.yaml new file mode 100644 index 0000000000000..325c4b756022b --- /dev/null +++ b/manifests/i/IBM/Aspera/1.0.12/IBM.Aspera.locale.zh-CN.yaml @@ -0,0 +1,42 @@ +# 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: IBM.Aspera +PackageVersion: 1.0.12 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 利用 IBM Aspera,您可以从 Web 应用程序传输文件,或者在将 IBM Aspera 服务器连接到该应用程序后直接通过该应用程序传输文件。 +Description: |- + Aspera 桌面版是一款高速传输客户端,可在您的计算机与 Aspera 传输服务器之间实现极速文件传输。当配合集成 Aspera 的网站使用时,您可以直接通过浏览器发起上传和下载操作。 + 您的企业是否正在使用 Aspera? + 下载并安装 Aspera 桌面版后,您即可开始使用。打开任意网页浏览器,访问您公司集成 Aspera 的网站。该桌面应用能与网站无缝集成,让您直接通过浏览器执行高速文件传输。请遵循网站提供的指引开始传输文件。 + 为何需要通过桌面应用传输文件? + 习惯使用 Google Drive 或 Box 的用户可能更熟悉直接在网页浏览器中上传下载文件,而无需额外安装桌面应用。然而,浏览器在文件传输功能方面存在局限,往往导致传输速度缓慢、性能低下。 + 通过集成 Aspera 技术,网站能为用户提供无视文件大小或地理距离的高速传输体验。虽然 Aspera 也提供免安装解决方案,但桌面应用能为用户带来端到端的最佳高速传输体验。此外,该应用还具备以下功能: + - 高速文件传输 + 无论网络条件或物理距离如何,都能以最高速度安全可靠地传输大型文件或目录 + - 传输管理 + 查看历史记录和当前传输进度,支持暂停/恢复操作。配合 Shares 功能使用时,可更快速可靠地传输共享文件 + - 远程查看管理内容 + 直接通过桌面应用登录 IBM Aspera on Cloud (AoC)、IBM Aspera Faspex 5 或 IBM Aspera 高速传输服务器(HSTS)账户,浏览和管理账户内容 + - 更多强大功能! + 了解革命性高速数据传输技术,请访问 Aspera 官网:https://www.ibm.com/products/aspera +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IBM/Aspera/1.0.12/IBM.Aspera.yaml b/manifests/i/IBM/Aspera/1.0.12/IBM.Aspera.yaml new file mode 100644 index 0000000000000..9bae681aa8d61 --- /dev/null +++ b/manifests/i/IBM/Aspera/1.0.12/IBM.Aspera.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: IBM.Aspera +PackageVersion: 1.0.12 +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/IObit/AdvancedSystemCare/18.3.0.240/IObit.AdvancedSystemCare.installer.yaml b/manifests/i/IObit/AdvancedSystemCare/18.3.0.240/IObit.AdvancedSystemCare.installer.yaml deleted file mode 100644 index f4fee965abe87..0000000000000 --- a/manifests/i/IObit/AdvancedSystemCare/18.3.0.240/IObit.AdvancedSystemCare.installer.yaml +++ /dev/null @@ -1,27 +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: IObit.AdvancedSystemCare -PackageVersion: 18.3.0.240 -InstallerLocale: en-US -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -ProductCode: Advanced SystemCare_is1 -AppsAndFeaturesEntries: -- DisplayName: Advanced SystemCare - Publisher: IObit - DisplayVersion: 18.3.0 - ProductCode: Advanced SystemCare_is1 -ElevationRequirement: elevatesSelf -Installers: -- Architecture: x86 - InstallerUrl: https://cdn.iobit.com/dl/advanced-systemcare-setup.exe - InstallerSha256: E4278E71D7A9122D196DBF1D1BDF63BD90D241E28D85F883ED8F6F7F71B2B256 -ManifestType: installer -ManifestVersion: 1.9.0 -ReleaseDate: 2025-04-10 diff --git a/manifests/i/IObit/AdvancedSystemCare/18.3.0.240/IObit.AdvancedSystemCare.locale.en-US.yaml b/manifests/i/IObit/AdvancedSystemCare/18.3.0.240/IObit.AdvancedSystemCare.locale.en-US.yaml deleted file mode 100644 index d8245c034ae2e..0000000000000 --- a/manifests/i/IObit/AdvancedSystemCare/18.3.0.240/IObit.AdvancedSystemCare.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: IObit.AdvancedSystemCare -PackageVersion: 18.3.0.240 -PackageLocale: en-US -Publisher: IObit -PublisherUrl: https://www.iobit.com/ -PublisherSupportUrl: https://www.iobit.com/onlinefeedback.php -PrivacyUrl: https://www.iobit.com/privacy.php -PackageName: Advanced SystemCare -PackageUrl: https://www.iobit.com/advancedsystemcarefree.php -License: Freeware -LicenseUrl: https://www.iobit.com/eula.php -Copyright: © IObit. All rights reserved. -CopyrightUrl: https://www.iobit.com/legal.php -ShortDescription: Speed up computer, clean your PC, and protect your private data. AI makes everything easier, and extraordinary. -Description: IObit Advanced SystemCare is a comprehensive PC optimization tool designed to enhance performance and security. Using AI, this software cleans junk files, optimizes system settings, and speeds up your computer. Privacy protection is a priority, with features to clear traces and block suspicious processes. With Internet Booster and real-time tune-up, Advanced SystemCare ensures your PC runs smoothly and efficiently. -Moniker: advanced-systemcare -Tags: -- cleaner -- optimization -- system -ReleaseNotes: |- - v18.3 2025-04-10 - - Optimized Bundleware to detect more bundleware more accurately - - Expanded database to remove 18% more malicious/ads plugins for faster and more secure browsing - - Fixed all known bugs -PurchaseUrl: https://www.iobit.com/advancedsystemcarepro.php -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://www.iobit.com/faq.php -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/i/IObit/AdvancedSystemCare/18.3.0.240/IObit.AdvancedSystemCare.yaml b/manifests/i/IObit/AdvancedSystemCare/18.3.0.240/IObit.AdvancedSystemCare.yaml deleted file mode 100644 index 05ee0521adf01..0000000000000 --- a/manifests/i/IObit/AdvancedSystemCare/18.3.0.240/IObit.AdvancedSystemCare.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: IObit.AdvancedSystemCare -PackageVersion: 18.3.0.240 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/i/IObit/AdvancedSystemCare/18.4.0.247/IObit.AdvancedSystemCare.installer.yaml b/manifests/i/IObit/AdvancedSystemCare/18.4.0.247/IObit.AdvancedSystemCare.installer.yaml new file mode 100644 index 0000000000000..0625e4e344e7b --- /dev/null +++ b/manifests/i/IObit/AdvancedSystemCare/18.4.0.247/IObit.AdvancedSystemCare.installer.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: IObit.AdvancedSystemCare +PackageVersion: 18.4.0.247 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: Advanced SystemCare_is1 +AppsAndFeaturesEntries: +- DisplayName: Advanced SystemCare + Publisher: IObit + DisplayVersion: 18.4.0 + ProductCode: Advanced SystemCare_is1 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://cdn.iobit.com/dl/advanced-systemcare-setup.exe + InstallerSha256: 4AE99A03409871849AC88205FC290AE110C53497E1335CFE903C7400B22D005F +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-06-26 diff --git a/manifests/i/IObit/AdvancedSystemCare/18.4.0.247/IObit.AdvancedSystemCare.locale.en-US.yaml b/manifests/i/IObit/AdvancedSystemCare/18.4.0.247/IObit.AdvancedSystemCare.locale.en-US.yaml new file mode 100644 index 0000000000000..91d6d1af9fd72 --- /dev/null +++ b/manifests/i/IObit/AdvancedSystemCare/18.4.0.247/IObit.AdvancedSystemCare.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: IObit.AdvancedSystemCare +PackageVersion: 18.4.0.247 +PackageLocale: en-US +Publisher: IObit +PublisherUrl: https://www.iobit.com/ +PublisherSupportUrl: https://www.iobit.com/onlinefeedback.php +PrivacyUrl: https://www.iobit.com/privacy.php +PackageName: Advanced SystemCare +PackageUrl: https://www.iobit.com/advancedsystemcarefree.php +License: Freeware +LicenseUrl: https://www.iobit.com/eula.php +Copyright: © IObit. All rights reserved. +CopyrightUrl: https://www.iobit.com/legal.php +ShortDescription: Speed up computer, clean your PC, and protect your private data. AI makes everything easier, and extraordinary. +Description: IObit Advanced SystemCare is a comprehensive PC optimization tool designed to enhance performance and security. Using AI, this software cleans junk files, optimizes system settings, and speeds up your computer. Privacy protection is a priority, with features to clear traces and block suspicious processes. With Internet Booster and real-time tune-up, Advanced SystemCare ensures your PC runs smoothly and efficiently. +Moniker: advanced-systemcare +Tags: +- cleaner +- optimization +- system +ReleaseNotes: |- + v18.4 2025-06-26 + - Enlarged startup database to further accelerate your computer's boot-up and response speed + - Expanded Anti-Spyware database to remove more threats and protect your PC in real time + - Software Updater supports updating the latest Chrome 137, Edge 137, Firefox 139, etc. + - Expanded Surfing Protection database for a safer and smoother browsing experience + - Optimized multiple languages + - Fixed all known bugs +PurchaseUrl: https://www.iobit.com/advancedsystemcarepro.php +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://www.iobit.com/faq.php +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/i/IObit/AdvancedSystemCare/18.4.0.247/IObit.AdvancedSystemCare.yaml b/manifests/i/IObit/AdvancedSystemCare/18.4.0.247/IObit.AdvancedSystemCare.yaml new file mode 100644 index 0000000000000..c5ead86ee0f53 --- /dev/null +++ b/manifests/i/IObit/AdvancedSystemCare/18.4.0.247/IObit.AdvancedSystemCare.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: IObit.AdvancedSystemCare +PackageVersion: 18.4.0.247 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/i/IObit/MalwareFighter/12.3.0.1507/IObit.MalwareFighter.installer.yaml b/manifests/i/IObit/MalwareFighter/12.3.0.1507/IObit.MalwareFighter.installer.yaml deleted file mode 100644 index 9ce5ebe06679f..0000000000000 --- a/manifests/i/IObit/MalwareFighter/12.3.0.1507/IObit.MalwareFighter.installer.yaml +++ /dev/null @@ -1,26 +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: IObit.MalwareFighter -PackageVersion: 12.3.0.1507 -InstallerLocale: en-US -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -ProductCode: IObit Malware Fighter_is1 -AppsAndFeaturesEntries: -- DisplayName: IObit Malware Fighter 12 - Publisher: IObit - ProductCode: IObit Malware Fighter_is1 -ElevationRequirement: elevatesSelf -Installers: -- Architecture: x86 - InstallerUrl: https://cdn.iobit.com/dl/iobit_malware_fighter_setup.exe - InstallerSha256: 617FB0F11E40EFD20744F741676B968BAD7234248C72111A9BA08EE64018181D -ManifestType: installer -ManifestVersion: 1.9.0 -ReleaseDate: 2025-04-28 diff --git a/manifests/i/IObit/MalwareFighter/12.3.0.1507/IObit.MalwareFighter.locale.en-US.yaml b/manifests/i/IObit/MalwareFighter/12.3.0.1507/IObit.MalwareFighter.locale.en-US.yaml deleted file mode 100644 index 62abc2b62cc28..0000000000000 --- a/manifests/i/IObit/MalwareFighter/12.3.0.1507/IObit.MalwareFighter.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: IObit.MalwareFighter -PackageVersion: 12.3.0.1507 -PackageLocale: en-US -Publisher: IObit -PublisherUrl: https://www.iobit.com/ -PublisherSupportUrl: https://www.iobit.com/onlinefeedback.php -PrivacyUrl: https://www.iobit.com/privacy.php -PackageName: IObit Malware Fighter -PackageUrl: https://www.iobit.com/malware-fighter.php -License: Freeware -LicenseUrl: https://www.iobit.com/eula.php -Copyright: © IObit. All rights reserved. -CopyrightUrl: https://www.iobit.com/legal.php -ShortDescription: All-Around PC Protection with Powerful Anti-Malware and the Strongest Privacy Solutions -Description: IObit Malware Fighter is a comprehensive security tool designed to protect your PC from various threats, including viruses, ransomware, spyware, Trojans, adware, and worms. It offers real-time protection, automatically scanning and preventing malware before it can harm your system. The software also includes privacy protection features, such as a safe box for sensitive data and browser protection to block phishing websites and annoying ads. -Tags: -- antimalware -- protection -- security -ReleaseNotes: |- - v12.3 2025-04-28 - - Enhanced Behavior Guard for deeper behavioral analysis of potential threats. - - Enhanced Camera Guard to defend against more unauthorized camera behaviors. - - Surfing Protection now supports adding items to the White List. - - Expanded database to remove the latest threats including Trojan.HermeticWiper, Ransom.Ryuk, and Ransom.Conti. - - Fixed known bugs. -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://www.iobit.com/faq.php -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/i/IObit/MalwareFighter/12.3.0.1507/IObit.MalwareFighter.yaml b/manifests/i/IObit/MalwareFighter/12.3.0.1507/IObit.MalwareFighter.yaml deleted file mode 100644 index f3142eeb36340..0000000000000 --- a/manifests/i/IObit/MalwareFighter/12.3.0.1507/IObit.MalwareFighter.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: IObit.MalwareFighter -PackageVersion: 12.3.0.1507 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/i/IObit/MalwareFighter/12.4.0.1536/IObit.MalwareFighter.installer.yaml b/manifests/i/IObit/MalwareFighter/12.4.0.1536/IObit.MalwareFighter.installer.yaml new file mode 100644 index 0000000000000..6ca98bf89b1ef --- /dev/null +++ b/manifests/i/IObit/MalwareFighter/12.4.0.1536/IObit.MalwareFighter.installer.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: IObit.MalwareFighter +PackageVersion: 12.4.0.1536 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: IObit Malware Fighter_is1 +AppsAndFeaturesEntries: +- DisplayName: IObit Malware Fighter 12 + Publisher: IObit + ProductCode: IObit Malware Fighter_is1 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://cdn.iobit.com/dl/iobit_malware_fighter_setup.exe + InstallerSha256: 9AC960B2F51DFBCE1BEA9FA9FCF84E9C9DDFFAA5A81ECD2AD9497F38B8252ED2 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-06-30 diff --git a/manifests/i/IObit/MalwareFighter/12.4.0.1536/IObit.MalwareFighter.locale.en-US.yaml b/manifests/i/IObit/MalwareFighter/12.4.0.1536/IObit.MalwareFighter.locale.en-US.yaml new file mode 100644 index 0000000000000..2ea54715569a7 --- /dev/null +++ b/manifests/i/IObit/MalwareFighter/12.4.0.1536/IObit.MalwareFighter.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: IObit.MalwareFighter +PackageVersion: 12.4.0.1536 +PackageLocale: en-US +Publisher: IObit +PublisherUrl: https://www.iobit.com/ +PublisherSupportUrl: https://www.iobit.com/onlinefeedback.php +PrivacyUrl: https://www.iobit.com/privacy.php +PackageName: IObit Malware Fighter +PackageUrl: https://www.iobit.com/malware-fighter.php +License: Freeware +LicenseUrl: https://www.iobit.com/eula.php +Copyright: © IObit. All rights reserved. +CopyrightUrl: https://www.iobit.com/legal.php +ShortDescription: All-Around PC Protection with Powerful Anti-Malware and the Strongest Privacy Solutions +Description: IObit Malware Fighter is a comprehensive security tool designed to protect your PC from various threats, including viruses, ransomware, spyware, Trojans, adware, and worms. It offers real-time protection, automatically scanning and preventing malware before it can harm your system. The software also includes privacy protection features, such as a safe box for sensitive data and browser protection to block phishing websites and annoying ads. +Tags: +- antimalware +- protection +- security +ReleaseNotes: |- + v12.4 2025-06-30 + - Enhanced real-time behavior analysis for Process Guard to intercept more potential threat behaviors. + - Enhanced browser password protection with more rigorous monitoring of password accesses. + - Expanded database to remove the latest threats including Ransom.Xmas1, Trojan.Midie, and Trojan.Jalapeno. + - Fixed known bugs. +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://www.iobit.com/faq.php +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IObit/MalwareFighter/12.4.0.1536/IObit.MalwareFighter.yaml b/manifests/i/IObit/MalwareFighter/12.4.0.1536/IObit.MalwareFighter.yaml new file mode 100644 index 0000000000000..43c91c5d1b0ad --- /dev/null +++ b/manifests/i/IObit/MalwareFighter/12.4.0.1536/IObit.MalwareFighter.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: IObit.MalwareFighter +PackageVersion: 12.4.0.1536 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/IObit/Uninstaller/14.4.0.3/IObit.Uninstaller.installer.yaml b/manifests/i/IObit/Uninstaller/14.4.0.3/IObit.Uninstaller.installer.yaml index 368c62d03c56a..09bc957b14126 100644 --- a/manifests/i/IObit/Uninstaller/14.4.0.3/IObit.Uninstaller.installer.yaml +++ b/manifests/i/IObit/Uninstaller/14.4.0.3/IObit.Uninstaller.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jun/18 +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: IObit.Uninstaller @@ -27,4 +27,4 @@ Installers: InstallerSha256: 2EEDB4E902026473D549FB3AF0639F9628C314FA42931189BE029C6DBA1693FD ManifestType: installer ManifestVersion: 1.10.0 -ReleaseDate: 2025-04-10 +ReleaseDate: 2025-06-18 diff --git a/manifests/i/IObit/Uninstaller/14.4.0.3/IObit.Uninstaller.locale.en-US.yaml b/manifests/i/IObit/Uninstaller/14.4.0.3/IObit.Uninstaller.locale.en-US.yaml index fbc592954dab4..997b74d7b7fe5 100644 --- a/manifests/i/IObit/Uninstaller/14.4.0.3/IObit.Uninstaller.locale.en-US.yaml +++ b/manifests/i/IObit/Uninstaller/14.4.0.3/IObit.Uninstaller.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jun/18 +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: IObit.Uninstaller @@ -22,9 +22,9 @@ Tags: - cleaner - uninstaller ReleaseNotes: |- - v14.3 2025-04-10 - - Optimized Bundleware to detect more bundleware more accurately - - Expanded database to remove 18% more malicious/ads plugins for faster and more secure browsing + v14.4 2025-06-18 + - Improved scanning algorithms to detect and clean more leftovers + - Enlarged database to remove more stubborn programs - Fixed all known bugs Documentations: - DocumentLabel: FAQ diff --git a/manifests/i/IObit/Uninstaller/14.4.0.3/IObit.Uninstaller.yaml b/manifests/i/IObit/Uninstaller/14.4.0.3/IObit.Uninstaller.yaml index e30bdfcb67eb2..0fa0911a63a82 100644 --- a/manifests/i/IObit/Uninstaller/14.4.0.3/IObit.Uninstaller.yaml +++ b/manifests/i/IObit/Uninstaller/14.4.0.3/IObit.Uninstaller.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jun/18 +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: IObit.Uninstaller diff --git a/manifests/i/IPEP/Scantailor-Experimental/1.2025.07.07/IPEP.Scantailor-Experimental.installer.yaml b/manifests/i/IPEP/Scantailor-Experimental/1.2025.07.07/IPEP.Scantailor-Experimental.installer.yaml new file mode 100644 index 0000000000000..8d28b07c51c74 --- /dev/null +++ b/manifests/i/IPEP/Scantailor-Experimental/1.2025.07.07/IPEP.Scantailor-Experimental.installer.yaml @@ -0,0 +1,21 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: IPEP.Scantailor-Experimental +PackageVersion: 1.2025.07.07 +FileExtensions: +- ScanTailor +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x86 + InstallerType: nullsoft + InstallerUrl: https://github.com/ImageProcessing-ElectronicPublications/scantailor-experimental/releases/download/1.2025.07.07/scantailor-experimental-1.2025.07.07-X86-32-install.exe + InstallerSha256: 6236b294a618428615657597500aa5fda1823b81cac37173714f05fd2600ddfc +- Architecture: x64 + InstallerType: nullsoft + InstallerUrl: https://github.com/ImageProcessing-ElectronicPublications/scantailor-experimental/releases/download/1.2025.07.07/scantailor-experimental-1.2025.07.07-X86-64-install.exe + InstallerSha256: 835337e61a46b26ae602913820a73b3e7147c7787703b2f1c04251d5a20ef4c3 +- Architecture: arm64 + InstallerType: nullsoft + InstallerUrl: https://github.com/ImageProcessing-ElectronicPublications/scantailor-experimental/releases/download/1.2025.07.07/scantailor-experimental-1.2025.07.07-ARM64-Qt6-install.exe + InstallerSha256: d98486aa686a76fa75e1a4724078a2c4f27644f34bfed294d1e3192927295887 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/IPEP/Scantailor-Experimental/1.2025.07.07/IPEP.Scantailor-Experimental.locale.en-US.yaml b/manifests/i/IPEP/Scantailor-Experimental/1.2025.07.07/IPEP.Scantailor-Experimental.locale.en-US.yaml new file mode 100644 index 0000000000000..4801cd6403a29 --- /dev/null +++ b/manifests/i/IPEP/Scantailor-Experimental/1.2025.07.07/IPEP.Scantailor-Experimental.locale.en-US.yaml @@ -0,0 +1,32 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: IPEP.Scantailor-Experimental +PackageVersion: 1.2025.07.07 +PackageLocale: en-US +Publisher: IPEP +PublisherUrl: https://github.com/ImageProcessing-ElectronicPublications +PackageName: Scantailor-Experimental +PackageUrl: https://github.com/ImageProcessing-ElectronicPublications/scantailor-experimental +License: GPL-3.0 +LicenseUrl: https://github.com/ImageProcessing-ElectronicPublications/scantailor-experimental/blob/HEAD/LICENSE +ShortDescription: Scan Tailor Experimental is an interactive post-processing tool for scanned pages. +Tags: +- despeckle +- ebook +- image +- integral-image +- kmeans +- scanning +- scantailor +- segmentation +- threshold +ReleaseNotes: |- + fly + - threshold: new adjustment method + - threshold: method Singh (Sauvola threshold optimization of memory by Singh) + - threshold: method Fox (Wolf threshold optimization of memory by Singh) + - threshold: Dynamic Window based thresholding method + - threshold: Grad: correct value and adjustment method + - update flatpak info by plzombie +ReleaseNotesUrl: https://github.com/ImageProcessing-ElectronicPublications/scantailor-experimental/releases/tag/1.2025.07.07 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IPEP/Scantailor-Experimental/1.2025.07.07/IPEP.Scantailor-Experimental.yaml b/manifests/i/IPEP/Scantailor-Experimental/1.2025.07.07/IPEP.Scantailor-Experimental.yaml new file mode 100644 index 0000000000000..dbee69a11f48e --- /dev/null +++ b/manifests/i/IPEP/Scantailor-Experimental/1.2025.07.07/IPEP.Scantailor-Experimental.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: IPEP.Scantailor-Experimental +PackageVersion: 1.2025.07.07 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/IPIP/BestTrace/3.9.4.0/IPIP.BestTrace.installer.yaml b/manifests/i/IPIP/BestTrace/3.9.4.0/IPIP.BestTrace.installer.yaml deleted file mode 100644 index 3717594138a48..0000000000000 --- a/manifests/i/IPIP/BestTrace/3.9.4.0/IPIP.BestTrace.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/12 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: IPIP.BestTrace -PackageVersion: 3.9.4.0 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -FileExtensions: -- datx -Installers: -- Architecture: x64 - InstallerUrl: https://cdn.ipip.net/17mon/besttrace.exe - InstallerSha256: D5BCC02229E6D0D2234FBA74B7D5BC3904BCF1C876E711B39C6CF61CD6D6FBEA - ProductCode: '{E13219BC-E3A4-4B47-A581-A3073470DFD5}_is1' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/i/IPIP/BestTrace/3.9.4.0/IPIP.BestTrace.yaml b/manifests/i/IPIP/BestTrace/3.9.4.0/IPIP.BestTrace.yaml deleted file mode 100644 index 9b939d6cd03f1..0000000000000 --- a/manifests/i/IPIP/BestTrace/3.9.4.0/IPIP.BestTrace.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Jun/12 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: IPIP.BestTrace -PackageVersion: 3.9.4.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/i/IPIP/BestTrace/3.9.5.0/IPIP.BestTrace.installer.yaml b/manifests/i/IPIP/BestTrace/3.9.5.0/IPIP.BestTrace.installer.yaml new file mode 100644 index 0000000000000..a87b266337af3 --- /dev/null +++ b/manifests/i/IPIP/BestTrace/3.9.5.0/IPIP.BestTrace.installer.yaml @@ -0,0 +1,17 @@ +# Automatically updated by the winget bot at 2025/Jun/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: IPIP.BestTrace +PackageVersion: 3.9.5.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- datx +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.ipip.net/17mon/besttrace.exe + InstallerSha256: 05AE892E9A71DCB299A1264C2EF471D5C4550DFC4EADD28965C624E0E915FC2B + ProductCode: '{E13219BC-E3A4-4B47-A581-A3073470DFD5}_is1' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/IPIP/BestTrace/3.9.4.0/IPIP.BestTrace.locale.en-US.yaml b/manifests/i/IPIP/BestTrace/3.9.5.0/IPIP.BestTrace.locale.en-US.yaml similarity index 88% rename from manifests/i/IPIP/BestTrace/3.9.4.0/IPIP.BestTrace.locale.en-US.yaml rename to manifests/i/IPIP/BestTrace/3.9.5.0/IPIP.BestTrace.locale.en-US.yaml index aa50d75764654..7ff60a2c8012a 100644 --- a/manifests/i/IPIP/BestTrace/3.9.4.0/IPIP.BestTrace.locale.en-US.yaml +++ b/manifests/i/IPIP/BestTrace/3.9.5.0/IPIP.BestTrace.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jun/12 +# Automatically updated by the winget bot at 2025/Jun/30 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: IPIP.BestTrace -PackageVersion: 3.9.4.0 +PackageVersion: 3.9.5.0 PackageLocale: en-US Publisher: QDXY, Inc. PublisherUrl: https://en.ipip.net/ diff --git a/manifests/i/IPIP/BestTrace/3.9.4.0/IPIP.BestTrace.locale.zh-CN.yaml b/manifests/i/IPIP/BestTrace/3.9.5.0/IPIP.BestTrace.locale.zh-CN.yaml similarity index 88% rename from manifests/i/IPIP/BestTrace/3.9.4.0/IPIP.BestTrace.locale.zh-CN.yaml rename to manifests/i/IPIP/BestTrace/3.9.5.0/IPIP.BestTrace.locale.zh-CN.yaml index 07ebc2e70251b..f3903eafbbe43 100644 --- a/manifests/i/IPIP/BestTrace/3.9.4.0/IPIP.BestTrace.locale.zh-CN.yaml +++ b/manifests/i/IPIP/BestTrace/3.9.5.0/IPIP.BestTrace.locale.zh-CN.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Jun/12 +# Automatically updated by the winget bot at 2025/Jun/30 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: IPIP.BestTrace -PackageVersion: 3.9.4.0 +PackageVersion: 3.9.5.0 PackageLocale: zh-CN Publisher: QDXY, Inc. PublisherUrl: https://www.ipip.net/ diff --git a/manifests/i/IPIP/BestTrace/3.9.5.0/IPIP.BestTrace.yaml b/manifests/i/IPIP/BestTrace/3.9.5.0/IPIP.BestTrace.yaml new file mode 100644 index 0000000000000..f0e650e768cd0 --- /dev/null +++ b/manifests/i/IPIP/BestTrace/3.9.5.0/IPIP.BestTrace.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jun/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: IPIP.BestTrace +PackageVersion: 3.9.5.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/IPMHub/IPM/0.11.0/IPMHub.IPM.installer.yaml b/manifests/i/IPMHub/IPM/0.11.0/IPMHub.IPM.installer.yaml new file mode 100644 index 0000000000000..a06e708491a46 --- /dev/null +++ b/manifests/i/IPMHub/IPM/0.11.0/IPMHub.IPM.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate CLI +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: IPMHub.IPM +PackageVersion: 0.11.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ipm.exe + PortableCommandAlias: ipm +Scope: user +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ipmhubio/ipm/releases/download/0.11.0/ipm-win-x64-full.zip + InstallerSha256: 81c13c2315546ce11f9429f187072ad3dc049f511f9012e13a5e00aa7d160ac9 +- Architecture: x86 + InstallerUrl: https://github.com/ipmhubio/ipm/releases/download/0.11.0/ipm-win-x86-full.zip + InstallerSha256: c25869c495f135a512e9dafd9d8b142756fe124639f23008a075c3a52b4fb776 +- Architecture: arm64 + InstallerUrl: https://github.com/ipmhubio/ipm/releases/download/0.11.0/ipm-win-arm64-full.zip + InstallerSha256: 1d6390291d5300a7328ba89fbdeffce7f76caad609c37390b2a9c676fa81c944 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/IPMHub/IPM/0.11.0/IPMHub.IPM.locale.en-US.yaml b/manifests/i/IPMHub/IPM/0.11.0/IPMHub.IPM.locale.en-US.yaml new file mode 100644 index 0000000000000..0e7c18400592f --- /dev/null +++ b/manifests/i/IPMHub/IPM/0.11.0/IPMHub.IPM.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: IPMHub.IPM +PackageVersion: 0.11.0 +PackageLocale: en-US +Publisher: IPMHub +PublisherUrl: https://ipmhub.io +PrivacyUrl: https://ipmhub.io/privacy +Author: IPMHub +PackageName: IPM +License: Proprietary +LicenseUrl: https://docs.ipmhub.io/docs/about-ipm/license/ +Copyright: (c) 2025 IPMHub +ShortDescription: IPM CLI Tool +Tags: +- CLI +- IPM +- Automation +- DevOps +ReleaseNotesUrl: https://github.com/ipmhubio/ipm/releases/tag/0.11.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IPMHub/IPM/0.11.0/IPMHub.IPM.yaml b/manifests/i/IPMHub/IPM/0.11.0/IPMHub.IPM.yaml new file mode 100644 index 0000000000000..1add518af3788 --- /dev/null +++ b/manifests/i/IPMHub/IPM/0.11.0/IPMHub.IPM.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: IPMHub.IPM +PackageVersion: 0.11.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/IZArc/IZArc/4.5/IZArc.IZArc.installer.yaml b/manifests/i/IZArc/IZArc/4.5/IZArc.IZArc.installer.yaml deleted file mode 100644 index a43fddb599315..0000000000000 --- a/manifests/i/IZArc/IZArc/4.5/IZArc.IZArc.installer.yaml +++ /dev/null @@ -1,58 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: IZArc.IZArc -PackageVersion: "4.5" -InstallerType: inno -Scope: machine -UpgradeBehavior: install -FileExtensions: -- 7z -- 7z.001 -- a -- arc -- arj -- b64 -- bh -- bz2 -- bza -- cab -- cpio -- deb -- enc -- exe -- gca -- gz -- gza -- ha -- ize -- jar -- lha -- lib -- lzh -- mbf -- mim -- pak -- pk_ -- pk3 -- rar -- rc -- rpm -- tar -- taz -- tgz -- tz -- uue -- xpi -- xxe -- yz1 -- z -- zip -- zoo -ProductCode: '{97C82B44-D408-4F14-9252-47FC1636D23E}_is1' -Installers: -- Architecture: x86 - InstallerUrl: https://www.izarc.org/download/IZArc_4.5.exe - InstallerSha256: 557DC67478B7AB0FD71187DE08B3E4164A6D9B8E7D432DBE06713E930DF60FE0 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/i/IZArc/IZArc/4.5/IZArc.IZArc.locale.en-US.yaml b/manifests/i/IZArc/IZArc/4.5/IZArc.IZArc.locale.en-US.yaml deleted file mode 100644 index 4b8c63836c04c..0000000000000 --- a/manifests/i/IZArc/IZArc/4.5/IZArc.IZArc.locale.en-US.yaml +++ /dev/null @@ -1,56 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: IZArc.IZArc -PackageVersion: "4.5" -PackageLocale: en-US -Publisher: Ivan Zahariev -PublisherUrl: https://www.izarc.org/ -PublisherSupportUrl: https://www.izarc.org/contact-us -PrivacyUrl: https://www.izarc.org/privacy-policy -Author: Ivan Zahariev -PackageName: IZArc -PackageUrl: https://www.izarc.org/downloads -License: Freeware -LicenseUrl: https://www.izarc.org/license -Copyright: Copyright © 2022, Ivan Zahariev All rights reserved. -CopyrightUrl: https://www.izarc.org/license -ShortDescription: The easiest way to Zip, Unzip and encrypt files for free -Description: |- - IZArc is the easiest way to Zip, Unzip and encrypt files for free - - Zip and Unzip files - - Password protect archives with strong AES encryption - - Support 7-ZIP, RAR, TAR and many other archives -Moniker: izarc -Tags: -- archive -- archiver -- compress -- compression -- decompress -- decompression -- extract -- extractor -- unachive -- unachiver -- unzip -- zip -ReleaseNotes: |- - - Changed some shortcut combinations in order to avoid default windows actions - * Shift+S -> Alt+S (Virus Scan) - * Shift+V -> Alt+V (Check with VirusTotal) - * Ctrl+C -> Alt+C (Convert Archive) - - - Fixed deleting existing files when extract password protected archive and enter wrong password - - Fixed using the same temp folder when converting multiple archives at once - - Fixed some problems with Unicode filenames - - - Updated translations -ReleaseNotesUrl: https://www.izarc.org/news -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: Tutorials - DocumentUrl: https://www.izarc.org/tutorials -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/i/IZArc/IZArc/4.5/IZArc.IZArc.locale.zh-CN.yaml b/manifests/i/IZArc/IZArc/4.5/IZArc.IZArc.locale.zh-CN.yaml deleted file mode 100644 index f04b545142ae7..0000000000000 --- a/manifests/i/IZArc/IZArc/4.5/IZArc.IZArc.locale.zh-CN.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: IZArc.IZArc -PackageVersion: "4.5" -PackageLocale: zh-CN -# Publisher: -# PublisherUrl: -# PublisherSupportUrl: -# PrivacyUrl: -# Author: -# PackageName: -# PackageUrl: -License: 免费软件 -# LicenseUrl: -# Copyright: -# CopyrightUrl: -ShortDescription: 轻松、免费地压缩、解压和加密文件 -Description: |- - IZArc 是免费进行文件压缩、解压及加密的最简便方式 - - 压缩与解压文件 - - 使用强大的 AES 加密技术为压缩包添加密码保护 - - 支持 7-ZIP、RAR、TAR 等多种压缩格式 -# Moniker: -Tags: -- 压缩 -- 归档 -- 打包 -- 提取 -- 解包 -- 解压 -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: 教程 - DocumentUrl: https://www.izarc.org/tutorials -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/i/IZArc/IZArc/4.5/IZArc.IZArc.yaml b/manifests/i/IZArc/IZArc/4.5/IZArc.IZArc.yaml deleted file mode 100644 index bc75e0980c3c5..0000000000000 --- a/manifests/i/IZArc/IZArc/4.5/IZArc.IZArc.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=AUSU.CRLF.7-5-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: IZArc.IZArc -PackageVersion: "4.5" -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/Icons8/Lunacy/11.4.0.0/Icons8.Lunacy.installer.yaml b/manifests/i/Icons8/Lunacy/11.4.0.0/Icons8.Lunacy.installer.yaml deleted file mode 100644 index 39d5693885ca5..0000000000000 --- a/manifests/i/Icons8/Lunacy/11.4.0.0/Icons8.Lunacy.installer.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Icons8.Lunacy -PackageVersion: 11.4.0.0 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -Protocols: -- i8-lunacy -FileExtensions: -- free -- sketch -ProductCode: '{029D8336-0D3A-4431-B685-416DD91AD2DD}_is1' -ReleaseDate: 2025-04-21 -Installers: -- Architecture: x64 - InstallerUrl: https://lcdn.icons8.com/setup/LunacySetup.exe - InstallerSha256: 8726C0D8340F82B280842AEC66D5B4721773EE39AA08D7F8F54B84803F271797 -- Architecture: arm64 - InstallerUrl: https://lcdn.icons8.com/setup/LunacySetup_arm64.exe - InstallerSha256: 45860EAC79DDE7C24D094D797ECDD16A1135282CD806D89F65DE58926D5A0B6A -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/i/Icons8/Lunacy/11.6.0.0/Icons8.Lunacy.installer.yaml b/manifests/i/Icons8/Lunacy/11.6.0.0/Icons8.Lunacy.installer.yaml new file mode 100644 index 0000000000000..0fb3ef64afe3f --- /dev/null +++ b/manifests/i/Icons8/Lunacy/11.6.0.0/Icons8.Lunacy.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: Icons8.Lunacy +PackageVersion: 11.6.0.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- i8-lunacy +FileExtensions: +- free +- sketch +ProductCode: '{029D8336-0D3A-4431-B685-416DD91AD2DD}_is1' +ReleaseDate: 2025-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://lcdn.icons8.com/setup/LunacySetup.exe + InstallerSha256: BD9228FD16BEE1B5A723EAFBDFF48C57D597E7475C62DDEB4616062B213DB4EB +- Architecture: arm64 + InstallerUrl: https://lcdn.icons8.com/setup/LunacySetup_arm64.exe + InstallerSha256: 33B427F82A994F8E665A445B888CCA1BC6A11A359FC5A4B452696DFC5B129590 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/Icons8/Lunacy/11.4.0.0/Icons8.Lunacy.locale.en-US.yaml b/manifests/i/Icons8/Lunacy/11.6.0.0/Icons8.Lunacy.locale.en-US.yaml similarity index 89% rename from manifests/i/Icons8/Lunacy/11.4.0.0/Icons8.Lunacy.locale.en-US.yaml rename to manifests/i/Icons8/Lunacy/11.6.0.0/Icons8.Lunacy.locale.en-US.yaml index fc3bc665ed0f2..25db2a790feb8 100644 --- a/manifests/i/Icons8/Lunacy/11.4.0.0/Icons8.Lunacy.locale.en-US.yaml +++ b/manifests/i/Icons8/Lunacy/11.6.0.0/Icons8.Lunacy.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Icons8.Lunacy -PackageVersion: 11.4.0.0 +PackageVersion: 11.6.0.0 PackageLocale: en-US Publisher: Icons8 PublisherUrl: https://icons8.com/ @@ -35,7 +35,9 @@ Tags: - user-interface - ux - wireframe -ReleaseNotes: Fixed 10 app crash reasons. +ReleaseNotes: |- + - Now LLM can edit Selection over MCP. + - Fix of Copy/Paste on Windows. ReleaseNotesUrl: https://lunacy.docs.icons8.com/release-notes/ PurchaseUrl: https://icons8.com/lunacy-pricing Documentations: diff --git a/manifests/i/Icons8/Lunacy/11.4.0.0/Icons8.Lunacy.locale.zh-CN.yaml b/manifests/i/Icons8/Lunacy/11.6.0.0/Icons8.Lunacy.locale.zh-CN.yaml similarity index 95% rename from manifests/i/Icons8/Lunacy/11.4.0.0/Icons8.Lunacy.locale.zh-CN.yaml rename to manifests/i/Icons8/Lunacy/11.6.0.0/Icons8.Lunacy.locale.zh-CN.yaml index bdda0f3618c64..025f46d72a479 100644 --- a/manifests/i/Icons8/Lunacy/11.4.0.0/Icons8.Lunacy.locale.zh-CN.yaml +++ b/manifests/i/Icons8/Lunacy/11.6.0.0/Icons8.Lunacy.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: Icons8.Lunacy -PackageVersion: 11.4.0.0 +PackageVersion: 11.6.0.0 PackageLocale: zh-CN Publisher: Icons8 PublisherUrl: https://igoutu.cn/ diff --git a/manifests/i/Icons8/Lunacy/11.4.0.0/Icons8.Lunacy.yaml b/manifests/i/Icons8/Lunacy/11.6.0.0/Icons8.Lunacy.yaml similarity index 87% rename from manifests/i/Icons8/Lunacy/11.4.0.0/Icons8.Lunacy.yaml rename to manifests/i/Icons8/Lunacy/11.6.0.0/Icons8.Lunacy.yaml index a09cad136fac0..466f3da95ef2f 100644 --- a/manifests/i/Icons8/Lunacy/11.4.0.0/Icons8.Lunacy.yaml +++ b/manifests/i/Icons8/Lunacy/11.6.0.0/Icons8.Lunacy.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Icons8.Lunacy -PackageVersion: 11.4.0.0 +PackageVersion: 11.6.0.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.13.25.0/IkiruPeople.VoyagerInfinitySaaSClient.installer.yaml b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.13.25.0/IkiruPeople.VoyagerInfinitySaaSClient.installer.yaml new file mode 100644 index 0000000000000..b7ddccba5d9e2 --- /dev/null +++ b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.13.25.0/IkiruPeople.VoyagerInfinitySaaSClient.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: IkiruPeople.VoyagerInfinitySaaSClient +PackageVersion: 5.13.25.0 +InstallerType: burn +Scope: user # Despite the "Install for all users" option, the installer always writes ARP entries to the current user. +UpgradeBehavior: install +Protocols: +- voyagerinfinitylauncher +Installers: +- Architecture: x86 + InstallerUrl: https://we1infinitylivestorage.blob.core.windows.net/infinityclientdownloads/5.13.25.0/InfinityClientSetupSaaS.exe + InstallerSha256: 574252E01BB2B665507523C814AD5924272A670F6DF63990BF24FDB661EB4C31 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.13.25.0/IkiruPeople.VoyagerInfinitySaaSClient.locale.en-US.yaml b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.13.25.0/IkiruPeople.VoyagerInfinitySaaSClient.locale.en-US.yaml new file mode 100644 index 0000000000000..65ced15e0dd05 --- /dev/null +++ b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.13.25.0/IkiruPeople.VoyagerInfinitySaaSClient.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: IkiruPeople.VoyagerInfinitySaaSClient +PackageVersion: 5.13.25.0 +PackageLocale: en-US +Publisher: Voyager Software +PublisherUrl: https://customers.voyagersoftware.com/ +PublisherSupportUrl: https://www.voyagersoftware.com/contact-us/ +PrivacyUrl: https://customers.voyagersoftware.com/privacy-policy.html +Author: Ikiru People Ltd +PackageName: Voyager Software Infinity SaaS Client +PackageUrl: https://customers.voyagersoftware.com/general/download-infinity.html +License: Proprietary +# LicenseUrl: +Copyright: Copyright © 2025 Voyager Software Ltd +# CopyrightUrl: +ShortDescription: The dedicated recruitment software and CRM for staffing agencies of all sizes. +Description: |- + Voyager Infinity is the dedicated recruitment software and CRM for temporary, permanent, and contract staffing agencies of all sizes – including Infinity Copilot, our ever evolving AI tool to help your recruitment efforts! + From education to health and social care recruitment, construction to hospitality recruitment, driver to technical & engineering recruitment, and many other sectors, our recruitment software helps you get your job done more efficiently and grow your revenue faster. +# Moniker: +Tags: +- recruitment +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.13.25.0/IkiruPeople.VoyagerInfinitySaaSClient.locale.zh-CN.yaml b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.13.25.0/IkiruPeople.VoyagerInfinitySaaSClient.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6019f3b15f55c --- /dev/null +++ b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.13.25.0/IkiruPeople.VoyagerInfinitySaaSClient.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: IkiruPeople.VoyagerInfinitySaaSClient +PackageVersion: 5.13.25.0 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 专为各类规模招聘机构打造的招聘软件与客户关系管理系统。 +Description: |- + Voyager Infinity 是专为各类规模临时工、长期工及合同工招聘机构打造的招聘软件与客户关系管理系统——内含持续进化的 AI 助手 Infinity Copilot,助力您的招聘事业! + 从教育到医疗护理招聘,建筑到酒店业招聘,司机到技术工程招聘乃至更多领域,我们的招聘软件助您高效完成工作,加速营收增长。 +# Moniker: +Tags: +- 招聘 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.13.25.0/IkiruPeople.VoyagerInfinitySaaSClient.yaml b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.13.25.0/IkiruPeople.VoyagerInfinitySaaSClient.yaml new file mode 100644 index 0000000000000..3ad452951d7f6 --- /dev/null +++ b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.13.25.0/IkiruPeople.VoyagerInfinitySaaSClient.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: IkiruPeople.VoyagerInfinitySaaSClient +PackageVersion: 5.13.25.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/ImBox/ImBox/3.6.7/ImBox.ImBox.installer.yaml b/manifests/i/ImBox/ImBox/3.6.7/ImBox.ImBox.installer.yaml new file mode 100644 index 0000000000000..5eb03dcb85502 --- /dev/null +++ b/manifests/i/ImBox/ImBox/3.6.7/ImBox.ImBox.installer.yaml @@ -0,0 +1,57 @@ +# 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: ImBox.ImBox +PackageVersion: 3.6.7 +UpgradeBehavior: install +Protocols: +- imbox +ReleaseDate: 2025-04-28 +Installers: +- Architecture: x86 + InstallerType: nullsoft # electron-builder + Scope: user + InstallerUrl: https://files.imbox.io/client/releases/ImBox%20Setup%203.6.7.exe + InstallerSha256: 74324A78B6478385D118E4F4B56DED586A40ABEE1B462E15A0FF83F878FD5C0C + InstallerSwitches: + Upgrade: --updated + Custom: /currentuser + ProductCode: 319e370e-b65d-51be-99cb-dd32cc470950 +- Architecture: x86 + InstallerType: nullsoft # electron-builder + Scope: machine + InstallerUrl: https://files.imbox.io/client/releases/ImBox%20Setup%203.6.7.exe + InstallerSha256: 74324A78B6478385D118E4F4B56DED586A40ABEE1B462E15A0FF83F878FD5C0C + InstallerSwitches: + Upgrade: --updated + Custom: /allusers + ProductCode: 319e370e-b65d-51be-99cb-dd32cc470950 +- Architecture: x64 + InstallerType: nullsoft # electron-builder + Scope: user + InstallerUrl: https://files.imbox.io/client/releases/ImBox%20Setup%203.6.7.exe + InstallerSha256: 74324A78B6478385D118E4F4B56DED586A40ABEE1B462E15A0FF83F878FD5C0C + InstallerSwitches: + Upgrade: --updated + Custom: /currentuser + ProductCode: 319e370e-b65d-51be-99cb-dd32cc470950 +- Architecture: x64 + InstallerType: nullsoft # electron-builder + Scope: machine + InstallerUrl: https://files.imbox.io/client/releases/ImBox%20Setup%203.6.7.exe + InstallerSha256: 74324A78B6478385D118E4F4B56DED586A40ABEE1B462E15A0FF83F878FD5C0C + InstallerSwitches: + Upgrade: --updated + Custom: /allusers + ProductCode: 319e370e-b65d-51be-99cb-dd32cc470950 +- Architecture: x64 + InstallerType: wix + InstallerUrl: https://files.imbox.io/client/releases/ImBox%203.6.7.msi + InstallerSha256: 560B395BF6FAC874845D603BB9462D8AAA95ED51BA3C2839E5EA3003CD11BD2E + InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" + ProductCode: '{10BBC027-0231-42BA-BE0D-226883A2067D}' + AppsAndFeaturesEntries: + - UpgradeCode: '{C16F3117-CE45-5C00-8402-1A0943A08320}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/ImBox/ImBox/3.6.7/ImBox.ImBox.locale.en-US.yaml b/manifests/i/ImBox/ImBox/3.6.7/ImBox.ImBox.locale.en-US.yaml new file mode 100644 index 0000000000000..f914cf0a8b005 --- /dev/null +++ b/manifests/i/ImBox/ImBox/3.6.7/ImBox.ImBox.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: ImBox.ImBox +PackageVersion: 3.6.7 +PackageLocale: en-US +Publisher: ImBox +PublisherUrl: https://imbox.se/ +PublisherSupportUrl: https://imbox.se/help-center/ +PrivacyUrl: https://imbox.se/integritetspolicy/ +Author: ImBox Sweden AB +PackageName: ImBox +PackageUrl: https://imbox.se/download-imbox/ +License: Proprietary +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: Revolutionize your customer service with ImBox. +Description: Gather all your channels in one single tool! With ImBox, you can easily streamline your customer communication with case management and self-service boosted by the latest AI technology. Discover how easy (and fun) it is to provide world-class service! +# Moniker: +Tags: +- customer-service +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://imbox.se/pricing/ +# InstallationNotes: +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://imbox.se/faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/ImBox/ImBox/3.6.7/ImBox.ImBox.locale.zh-CN.yaml b/manifests/i/ImBox/ImBox/3.6.7/ImBox.ImBox.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c20d14ed0a426 --- /dev/null +++ b/manifests/i/ImBox/ImBox/3.6.7/ImBox.ImBox.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: ImBox.ImBox +PackageVersion: 3.6.7 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +License: 专有软件 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 用 ImBox 革新您的客户服务体验。 +Description: 将所有渠道整合至单一平台!通过 ImBox,您可轻松优化客户沟通流程,结合智能工单管理与 AI 技术赋能的自主服务。体验提供世界级服务竟能如此简单(且充满乐趣)! +# Moniker: +Tags: +- 客户服务 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://imbox.se/faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/ImBox/ImBox/3.6.7/ImBox.ImBox.yaml b/manifests/i/ImBox/ImBox/3.6.7/ImBox.ImBox.yaml new file mode 100644 index 0000000000000..0988bdc695fe3 --- /dev/null +++ b/manifests/i/ImBox/ImBox/3.6.7/ImBox.ImBox.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: ImBox.ImBox +PackageVersion: 3.6.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/IndigoByte/DrExplain/6.10.1348/IndigoByte.DrExplain.installer.yaml b/manifests/i/IndigoByte/DrExplain/6.10.1348/IndigoByte.DrExplain.installer.yaml new file mode 100644 index 0000000000000..9145e3a29aaa1 --- /dev/null +++ b/manifests/i/IndigoByte/DrExplain/6.10.1348/IndigoByte.DrExplain.installer.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: IndigoByte.DrExplain +PackageVersion: 6.10.1348 +Platform: +- Windows.Desktop +MinimumOSVersion: "6.1" +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +FileExtensions: +- gui +- doc +- docx +- rtf +- chm +- hlp +- html +- txt +- xml +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.drexplain.com/drexplain_6_10_1348.exe + InstallerSha256: 5C3DE873A87B07F0D3498F74F92A60E78F6556FB1B683149DE9A860233BDFBCE +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/i/IndigoByte/DrExplain/6.10.1348/IndigoByte.DrExplain.locale.en-US.yaml b/manifests/i/IndigoByte/DrExplain/6.10.1348/IndigoByte.DrExplain.locale.en-US.yaml new file mode 100644 index 0000000000000..d32b5c0257752 --- /dev/null +++ b/manifests/i/IndigoByte/DrExplain/6.10.1348/IndigoByte.DrExplain.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: IndigoByte.DrExplain +PackageVersion: 6.10.1348 +PackageLocale: en-US +Publisher: Indigo Byte Systems, LLC +PublisherSupportUrl: https://www.drexplain.com/support/ +PrivacyUrl: https://www.drexplain.com/privacy.php +Author: Indigo Byte Systems, LLC +PackageName: Dr.Explain +PackageUrl: https://www.drexplain.com/ +License: Proprietary +LicenseUrl: https://www.drexplain.com/help/license.php +Copyright: Copyright (c) Indigo Byte Systems, LLC, 2004-2025. All rights reserved. +ShortDescription: Help authoring tool to quickly create online manuals, help files, user guides and documentation. +Moniker: drexplain +Tags: +- manual +- online-manuals +- help +- help-files +- online-help +- guide +- user-guides +- documentation +- hat +- html +- chm +- pdf +- docx +- rtf +- hlp +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/i/IndigoByte/DrExplain/6.10.1348/IndigoByte.DrExplain.yaml b/manifests/i/IndigoByte/DrExplain/6.10.1348/IndigoByte.DrExplain.yaml new file mode 100644 index 0000000000000..ee26fa4f38825 --- /dev/null +++ b/manifests/i/IndigoByte/DrExplain/6.10.1348/IndigoByte.DrExplain.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: IndigoByte.DrExplain +PackageVersion: 6.10.1348 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/i/IndigoByte/DrExplain/6.10.1349/IndigoByte.DrExplain.installer.yaml b/manifests/i/IndigoByte/DrExplain/6.10.1349/IndigoByte.DrExplain.installer.yaml new file mode 100644 index 0000000000000..0b001a5e69ae2 --- /dev/null +++ b/manifests/i/IndigoByte/DrExplain/6.10.1349/IndigoByte.DrExplain.installer.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: IndigoByte.DrExplain +PackageVersion: 6.10.1349 +Platform: +- Windows.Desktop +MinimumOSVersion: "6.1" +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +FileExtensions: +- gui +- doc +- docx +- rtf +- chm +- hlp +- html +- txt +- xml +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.drexplain.com/drexplain_6_10_1349.exe + InstallerSha256: 98F9D5FB1BE6E6726166B84AF2E1BA5A4585D45232E9EEE0CC8D355494FBEB96 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/i/IndigoByte/DrExplain/6.10.1349/IndigoByte.DrExplain.locale.en-US.yaml b/manifests/i/IndigoByte/DrExplain/6.10.1349/IndigoByte.DrExplain.locale.en-US.yaml new file mode 100644 index 0000000000000..d51adb0bd10af --- /dev/null +++ b/manifests/i/IndigoByte/DrExplain/6.10.1349/IndigoByte.DrExplain.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: IndigoByte.DrExplain +PackageVersion: 6.10.1349 +PackageLocale: en-US +Publisher: Indigo Byte Systems, LLC +PublisherSupportUrl: https://www.drexplain.com/support/ +PrivacyUrl: https://www.drexplain.com/privacy.php +Author: Indigo Byte Systems, LLC +PackageName: Dr.Explain +PackageUrl: https://www.drexplain.com/ +License: Proprietary +LicenseUrl: https://www.drexplain.com/help/license.php +Copyright: Copyright (c) Indigo Byte Systems, LLC, 2004-2025. All rights reserved. +ShortDescription: Help authoring tool to quickly create online manuals, help files, user guides and documentation. +Moniker: drexplain +Tags: +- manual +- online-manuals +- help +- help-files +- online-help +- guide +- user-guides +- documentation +- hat +- html +- chm +- pdf +- docx +- rtf +- hlp +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/i/IndigoByte/DrExplain/6.10.1349/IndigoByte.DrExplain.yaml b/manifests/i/IndigoByte/DrExplain/6.10.1349/IndigoByte.DrExplain.yaml new file mode 100644 index 0000000000000..5da393c656b7e --- /dev/null +++ b/manifests/i/IndigoByte/DrExplain/6.10.1349/IndigoByte.DrExplain.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: IndigoByte.DrExplain +PackageVersion: 6.10.1349 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/i/Insco/PicGuard/3.0.3.451/Insco.PicGuard.installer.yaml b/manifests/i/Insco/PicGuard/3.0.3.451/Insco.PicGuard.installer.yaml new file mode 100644 index 0000000000000..66efc5523252e --- /dev/null +++ b/manifests/i/Insco/PicGuard/3.0.3.451/Insco.PicGuard.installer.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 v2.4.1 $debug=NVS1.CRLF.7-4-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Insco.PicGuard +PackageVersion: 3.0.3.451 +Platform: + - Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +Scope: machine +InstallModes: + - interactive + - silent + - silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2025-06-23 +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/picguard/picguard/releases/download/v3.0.3+451/picguard-3.0.3.451-windows-x64-en-US.msi + InstallerSha256: 2794C8346B2A505264EF889E5E9C50E6CC2850364371803041D88629423FCEEE + InstallerLocale: en-US + ProductCode: '{6D57268F-67BF-49CF-B33D-880B4463C53E}' + AppsAndFeaturesEntries: + - ProductCode: '{6D57268F-67BF-49CF-B33D-880B4463C53E}' + UpgradeCode: '{62EB3032-F9FB-4440-8DEF-B9D7BDFFD9F4}' + - Architecture: x64 + InstallerUrl: https://github.com/picguard/picguard/releases/download/v3.0.3+451/picguard-3.0.3.451-windows-x64-zh-CN.msi + InstallerSha256: 80B3FA98C127B89ACA42CC5452CBA8859D85245EC2599AD98BBBA78A07032F75 + InstallerLocale: zh-CN + ProductCode: '{F2F3E677-EB8F-4019-BEA1-F81DB55DF754}' + AppsAndFeaturesEntries: + - ProductCode: '{F2F3E677-EB8F-4019-BEA1-F81DB55DF754}' + UpgradeCode: '{62EB3032-F9FB-4440-8DEF-B9D7BDFFD9F4}' +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/i/Insco/PicGuard/3.0.3.451/Insco.PicGuard.locale.en-US.yaml b/manifests/i/Insco/PicGuard/3.0.3.451/Insco.PicGuard.locale.en-US.yaml new file mode 100644 index 0000000000000..b88d5d85eeb9c --- /dev/null +++ b/manifests/i/Insco/PicGuard/3.0.3.451/Insco.PicGuard.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.1 $debug=NVS1.CRLF.7-4-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Insco.PicGuard +PackageVersion: 3.0.3.451 +PackageLocale: en-US +Publisher: Insco +PublisherUrl: https://www.insco.io +PublisherSupportUrl: https://www.picguard.app/en/support +PrivacyUrl: https://www.picguard.app/en/legal/privacy +Author: kjxbyz +PackageName: PicGuard +PackageUrl: https://www.picguard.app +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/picguard/picguard/main/LICENSE +Copyright: Copyright (c) 2023 kjxbyz +ShortDescription: Your pictures, your signature. +Description: | + Introducing **PicGuard** - the ultimate solution for securing and customizing your digital photos. With our app, you can easily add watermarks to your images to protect your creative work and maintain your privacy. + + **PicGuard** offers robust privacy protection features, ensuring your personal and sensitive information remains safeguarded. It's highly customizable, allowing you to personalize watermarks with various fonts, styles, and designs to suit your needs. + + Accessible on web, mobile, and desktop, you can seamlessly integrate and manage your watermarking tasks across all your devices. **PicGuard**, as an open-source tool, it's not only free but also continuously improved by a community of developers dedicated to providing the best user experience. + + Download **PicGuard** today and take control of your photo security and personalization like never before! +Tags: + - picguard + - watermark + - watermarkassistant + - watermark-assistant +ReleaseNotesUrl: https://raw.githubusercontent.com/picguard/picguard/v3.0.3+451/CHANGELOG.md +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/i/Insco/PicGuard/3.0.3.451/Insco.PicGuard.locale.zh-CN.yaml b/manifests/i/Insco/PicGuard/3.0.3.451/Insco.PicGuard.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b248e33400524 --- /dev/null +++ b/manifests/i/Insco/PicGuard/3.0.3.451/Insco.PicGuard.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.4.1 $debug=NVS1.CRLF.7-4-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Insco.PicGuard +PackageVersion: 3.0.3.451 +PackageLocale: zh-CN +Publisher: Insco +PublisherUrl: https://www.insco.io +PublisherSupportUrl: https://www.picguard.app/zh/support +PrivacyUrl: https://www.picguard.app/zh/legal/privacy +Author: kjxbyz +PackageName: PicGuard +PackageUrl: https://www.picguard.app +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/picguard/picguard/main/LICENSE +Copyright: Copyright (c) 2023 kjxbyz +ShortDescription: 给图片添加水印, 防止被恶意使用. +Description: | + 介绍 **PicGuard** - 保护和自定义数码照片的终极解决方案。使用我们的应用程序,您可以轻松地在图像上添加水印,以保护您的创意作品并维护您的隐私。 + + **PicGuard** 提供强大的隐私保护功能,确保您的个人和敏感信息得到保护。它具有高度可定制性,允许您使用各种字体、样式和设计个性化水印以满足您的需求。 + + 可在网络、移动设备和桌面上访问,您可以无缝集成和管理所有设备上的水印任务。**PicGuard** 是一种开源工具,它不仅免费,而且还由致力于提供最佳用户体验的开发人员社区不断改进。 + + 立即下载 **PicGuard**,以前所未有的方式控制您的照片安全和个性化! +Tags: + - picguard + - watermark + - watermarkassistant + - watermark-assistant +ReleaseNotesUrl: https://raw.githubusercontent.com/picguard/picguard/v3.0.3+451/CHANGELOG.md +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/i/Insco/PicGuard/3.0.3.451/Insco.PicGuard.yaml b/manifests/i/Insco/PicGuard/3.0.3.451/Insco.PicGuard.yaml new file mode 100644 index 0000000000000..79c05dd3f1d1b --- /dev/null +++ b/manifests/i/Insco/PicGuard/3.0.3.451/Insco.PicGuard.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.1 $debug=NVS1.CRLF.7-4-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Insco.PicGuard +PackageVersion: 3.0.3.451 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 \ No newline at end of file diff --git a/manifests/i/Insco/PicGuard/Pro/3.0.3.451/Insco.PicGuard.Pro.installer.yaml b/manifests/i/Insco/PicGuard/Pro/3.0.3.451/Insco.PicGuard.Pro.installer.yaml new file mode 100644 index 0000000000000..5b3ce49a9149c --- /dev/null +++ b/manifests/i/Insco/PicGuard/Pro/3.0.3.451/Insco.PicGuard.Pro.installer.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 v2.4.1 $debug=NVS1.CRLF.7-4-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Insco.PicGuard.Pro +PackageVersion: 3.0.3.451 +Platform: + - Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +Scope: machine +InstallModes: + - interactive + - silent + - silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2025-06-23 +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/picguard/picguard/releases/download/v3.0.3+451/picguard-pro-3.0.3.451-windows-x64-en-US.msi + InstallerSha256: C9BEEF8EB6F5D1C0E29D6BE1726BFD02921452E58AA9BE2C9642EE10BE3A771B + InstallerLocale: en-US + ProductCode: '{F240EAD4-D183-4199-98B0-8BF27EA28A2C}' + AppsAndFeaturesEntries: + - ProductCode: '{F240EAD4-D183-4199-98B0-8BF27EA28A2C}' + UpgradeCode: '{64BDDE9D-FE72-49E2-ABFB-19CF4D1BA55F}' + - Architecture: x64 + InstallerUrl: https://github.com/picguard/picguard/releases/download/v3.0.3+451/picguard-pro-3.0.3.451-windows-x64-zh-CN.msi + InstallerSha256: 7416ECE293B98C2D4EC14EA0719209C776153B8228372F41FB15668A7FE5010F + InstallerLocale: zh-CN + ProductCode: '{75622541-2650-485B-945B-DDF5ABB92BA3}' + AppsAndFeaturesEntries: + - ProductCode: '{75622541-2650-485B-945B-DDF5ABB92BA3}' + UpgradeCode: '{64BDDE9D-FE72-49E2-ABFB-19CF4D1BA55F}' +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/i/Insco/PicGuard/Pro/3.0.3.451/Insco.PicGuard.Pro.locale.en-US.yaml b/manifests/i/Insco/PicGuard/Pro/3.0.3.451/Insco.PicGuard.Pro.locale.en-US.yaml new file mode 100644 index 0000000000000..c9abcf19b9e66 --- /dev/null +++ b/manifests/i/Insco/PicGuard/Pro/3.0.3.451/Insco.PicGuard.Pro.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 v2.4.1 $debug=NVS1.CRLF.7-4-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Insco.PicGuard.Pro +PackageVersion: 3.0.3.451 +PackageLocale: en-US +Publisher: Insco +PublisherUrl: https://www.insco.io +PublisherSupportUrl: https://www.picguard.app/en/support +PrivacyUrl: https://www.picguard.app/en/legal/privacy +Author: kjxbyz +PackageName: PicGuard Pro +PackageUrl: https://www.picguard.app +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/picguard/picguard/main/LICENSE +Copyright: Copyright (c) 2023 kjxbyz +ShortDescription: Your pictures, your signature. +Description: | + Introducing **PicGuard Pro** - the ultimate solution for securing and customizing your digital photos. With our app, you can easily add watermarks to your images to protect your creative work and maintain your privacy. + + **PicGuard Pro** offers robust privacy protection features, ensuring your personal and sensitive information remains safeguarded. It's highly customizable, allowing you to personalize watermarks with various fonts, styles, and designs to suit your needs. + + Accessible on web, mobile, and desktop, you can seamlessly integrate and manage your watermarking tasks across all your devices. **PicGuard Pro**, as an open-source tool, it's not only free but also continuously improved by a community of developers dedicated to providing the best user experience. + + Download **PicGuard Pro** today and take control of your photo security and personalization like never before! +Tags: + - picguard + - picguard pro + - watermark + - watermarkassistant + - watermark-assistant +ReleaseNotesUrl: https://raw.githubusercontent.com/picguard/picguard/v3.0.3+451/CHANGELOG.md +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/i/Insco/PicGuard/Pro/3.0.3.451/Insco.PicGuard.Pro.locale.zh-CN.yaml b/manifests/i/Insco/PicGuard/Pro/3.0.3.451/Insco.PicGuard.Pro.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4a4e18bc120c4 --- /dev/null +++ b/manifests/i/Insco/PicGuard/Pro/3.0.3.451/Insco.PicGuard.Pro.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 v2.4.1 $debug=NVS1.CRLF.7-4-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Insco.PicGuard.Pro +PackageVersion: 3.0.3.451 +PackageLocale: zh-CN +Publisher: Insco +PublisherUrl: https://www.insco.io +PublisherSupportUrl: https://www.picguard.app/zh/support +PrivacyUrl: https://www.picguard.app/zh/legal/privacy +Author: kjxbyz +PackageName: PicGuard Pro +PackageUrl: https://www.picguard.app +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/picguard/picguard/main/LICENSE +Copyright: Copyright (c) 2023 kjxbyz +ShortDescription: 给图片添加水印, 防止被恶意使用. +Description: | + 介绍 **PicGuard Pro** - 保护和自定义数码照片的终极解决方案。使用我们的应用程序,您可以轻松地在图像上添加水印,以保护您的创意作品并维护您的隐私。 + + **PicGuard Pro** 提供强大的隐私保护功能,确保您的个人和敏感信息得到保护。它具有高度可定制性,允许您使用各种字体、样式和设计个性化水印以满足您的需求。 + + 可在网络、移动设备和桌面上访问,您可以无缝集成和管理所有设备上的水印任务。**PicGuard Pro** 是一种开源工具,它不仅免费,而且还由致力于提供最佳用户体验的开发人员社区不断改进。 + + 立即下载 **PicGuard Pro**,以前所未有的方式控制您的照片安全和个性化! +Tags: + - picguard + - picguard pro + - watermark + - watermarkassistant + - watermark-assistant +ReleaseNotesUrl: https://raw.githubusercontent.com/picguard/picguard/v3.0.3+451/CHANGELOG.md +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/i/Insco/PicGuard/Pro/3.0.3.451/Insco.PicGuard.Pro.yaml b/manifests/i/Insco/PicGuard/Pro/3.0.3.451/Insco.PicGuard.Pro.yaml new file mode 100644 index 0000000000000..ef50089e91362 --- /dev/null +++ b/manifests/i/Insco/PicGuard/Pro/3.0.3.451/Insco.PicGuard.Pro.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.1 $debug=NVS1.CRLF.7-4-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Insco.PicGuard.Pro +PackageVersion: 3.0.3.451 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/i/Instruqt/CLI/2281-573e0ea/Instruqt.CLI.installer.yaml b/manifests/i/Instruqt/CLI/2281-573e0ea/Instruqt.CLI.installer.yaml new file mode 100644 index 0000000000000..f362becf11f0d --- /dev/null +++ b/manifests/i/Instruqt/CLI/2281-573e0ea/Instruqt.CLI.installer.yaml @@ -0,0 +1,19 @@ +# Created with WinGet Updater using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Instruqt.CLI +PackageVersion: 2281-573e0ea +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: instruqt.exe +InstallModes: +- silent +UpgradeBehavior: install +ReleaseDate: 2025-07-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/instruqt/cli/releases/download/2281-573e0ea/instruqt-windows.zip + InstallerSha256: 2F7A64B16A0F04F0E196DF3DBF06427EEC65A9C918B36BC9554C2CD0F507B37D +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/i/Instruqt/CLI/2281-573e0ea/Instruqt.CLI.locale.en-US.yaml b/manifests/i/Instruqt/CLI/2281-573e0ea/Instruqt.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..df54bfd19b2ef --- /dev/null +++ b/manifests/i/Instruqt/CLI/2281-573e0ea/Instruqt.CLI.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with WinGet Updater using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Instruqt.CLI +PackageVersion: 2281-573e0ea +PackageLocale: en-US +Publisher: Instruqt +PublisherUrl: https://instruqt.com/ +PublisherSupportUrl: https://github.com/instruqt/cli/issues +Author: Instruqt +PackageName: Instruqt +License: Proprietary +Copyright: Copyright (c) Instruqt +ShortDescription: Instruqt CLI +Moniker: instruqt +ReleaseNotesUrl: https://github.com/instruqt/cli/releases/tag/2281-573e0ea +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/i/Instruqt/CLI/2281-573e0ea/Instruqt.CLI.yaml b/manifests/i/Instruqt/CLI/2281-573e0ea/Instruqt.CLI.yaml new file mode 100644 index 0000000000000..682da8d8f19f9 --- /dev/null +++ b/manifests/i/Instruqt/CLI/2281-573e0ea/Instruqt.CLI.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Instruqt.CLI +PackageVersion: 2281-573e0ea +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.12.17.0/InterfaceFluidics.Autoanalysis.Beta.installer.yaml b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.12.17.0/InterfaceFluidics.Autoanalysis.Beta.installer.yaml index 92030a4544ea2..7c95347e657d5 100644 --- a/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.12.17.0/InterfaceFluidics.Autoanalysis.Beta.installer.yaml +++ b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.12.17.0/InterfaceFluidics.Autoanalysis.Beta.installer.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.9.4.0 +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json PackageIdentifier: InterfaceFluidics.Autoanalysis.Beta @@ -12,7 +12,7 @@ PackageFamilyName: Autoanalysis-Beta_adgv3mcaarp50 Installers: - Architecture: neutral InstallerUrl: https://apps.interfacefluidics.com/autoanalysis/beta/1.12.17.0/autoanalysis-1.12.17.0.msix - InstallerSha256: 0850AF54A2C2F7E8489D90DDACCD1B30920A2D473884AC452EFC654385358F09 - SignatureSha256: 2D5AC1ADA4673B9736D26E2F6BB3EE2E9A934CF68A2F698EFFBEAC5A74DCA226 + InstallerSha256: 5A6E85C844D00D4156DA322AB16F4F87564D735308C8094E8FE292DCEDABFB9E + SignatureSha256: 3A40C9E074CB7D672B6AEF2C1DC918AF29FA2FD0FC206D579996FECD8F10632A ManifestType: installer ManifestVersion: 1.9.0 diff --git a/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.12.17.0/InterfaceFluidics.Autoanalysis.Beta.locale.en-US.yaml b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.12.17.0/InterfaceFluidics.Autoanalysis.Beta.locale.en-US.yaml index d92befa8067cb..3655713ec5fa1 100644 --- a/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.12.17.0/InterfaceFluidics.Autoanalysis.Beta.locale.en-US.yaml +++ b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.12.17.0/InterfaceFluidics.Autoanalysis.Beta.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.9.4.0 +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json PackageIdentifier: InterfaceFluidics.Autoanalysis.Beta diff --git a/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.12.17.0/InterfaceFluidics.Autoanalysis.Beta.yaml b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.12.17.0/InterfaceFluidics.Autoanalysis.Beta.yaml index 5beb253f5403b..c4da22fcfee74 100644 --- a/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.12.17.0/InterfaceFluidics.Autoanalysis.Beta.yaml +++ b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.12.17.0/InterfaceFluidics.Autoanalysis.Beta.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.9.4.0 +# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json PackageIdentifier: InterfaceFluidics.Autoanalysis.Beta diff --git a/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.0.0/InterfaceFluidics.Autoanalysis.Beta.installer.yaml b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.0.0/InterfaceFluidics.Autoanalysis.Beta.installer.yaml new file mode 100644 index 0000000000000..77f23dc60943a --- /dev/null +++ b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.0.0/InterfaceFluidics.Autoanalysis.Beta.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: InterfaceFluidics.Autoanalysis.Beta +PackageVersion: 1.13.0.0 +Platform: +- Windows.Universal +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: msix +PackageFamilyName: Autoanalysis-Beta_adgv3mcaarp50 +Installers: +- Architecture: neutral + InstallerUrl: https://apps.interfacefluidics.com/autoanalysis/beta/1.13.0.0/autoanalysis-1.13.0.0.msix + InstallerSha256: 45C454056DDF8E69064DEEC849AAB100643C13251929F931CCB52147305D94A0 + SignatureSha256: 128282302F5779C6E777CF4B93E322FC659F708DA66353D7F97CF7FBFE662E34 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.0.0/InterfaceFluidics.Autoanalysis.Beta.locale.en-US.yaml b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.0.0/InterfaceFluidics.Autoanalysis.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..a56de99d28a2d --- /dev/null +++ b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.0.0/InterfaceFluidics.Autoanalysis.Beta.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: InterfaceFluidics.Autoanalysis.Beta +PackageVersion: 1.13.0.0 +PackageLocale: en-US +Publisher: Interface Fluidics +PackageName: Autoanalysis Beta +License: Proprietary +ShortDescription: Autoanalysis +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.0.0/InterfaceFluidics.Autoanalysis.Beta.yaml b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.0.0/InterfaceFluidics.Autoanalysis.Beta.yaml new file mode 100644 index 0000000000000..2f2dc87dbf995 --- /dev/null +++ b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.0.0/InterfaceFluidics.Autoanalysis.Beta.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: InterfaceFluidics.Autoanalysis.Beta +PackageVersion: 1.13.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.1.0/InterfaceFluidics.Autoanalysis.Beta.installer.yaml b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.1.0/InterfaceFluidics.Autoanalysis.Beta.installer.yaml new file mode 100644 index 0000000000000..c30c57ae2ab3e --- /dev/null +++ b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.1.0/InterfaceFluidics.Autoanalysis.Beta.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: InterfaceFluidics.Autoanalysis.Beta +PackageVersion: 1.13.1.0 +Platform: +- Windows.Universal +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: msix +PackageFamilyName: Autoanalysis-Beta_adgv3mcaarp50 +Installers: +- Architecture: neutral + InstallerUrl: https://apps.interfacefluidics.com/autoanalysis/beta/1.13.1.0/autoanalysis-1.13.1.0.msix + InstallerSha256: A6F0C56647DC87419664D0C7BEB595888515DA877005C96F9CB81E0307C37EB8 + SignatureSha256: 9AE8A75A3F82CDAE469E0D007F5DB699C73E369B0228732C40F9A910D5627B79 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.1.0/InterfaceFluidics.Autoanalysis.Beta.locale.en-US.yaml b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.1.0/InterfaceFluidics.Autoanalysis.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..48facf3b566db --- /dev/null +++ b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.1.0/InterfaceFluidics.Autoanalysis.Beta.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: InterfaceFluidics.Autoanalysis.Beta +PackageVersion: 1.13.1.0 +PackageLocale: en-US +Publisher: Interface Fluidics +PackageName: Autoanalysis Beta +License: Proprietary +ShortDescription: Autoanalysis +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.1.0/InterfaceFluidics.Autoanalysis.Beta.yaml b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.1.0/InterfaceFluidics.Autoanalysis.Beta.yaml new file mode 100644 index 0000000000000..39ecd3730d3ee --- /dev/null +++ b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.1.0/InterfaceFluidics.Autoanalysis.Beta.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: InterfaceFluidics.Autoanalysis.Beta +PackageVersion: 1.13.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/i/Ironben/5ire/0.13.0/Ironben.5ire.installer.yaml b/manifests/i/Ironben/5ire/0.13.0/Ironben.5ire.installer.yaml new file mode 100644 index 0000000000000..81b25e4a0360e --- /dev/null +++ b/manifests/i/Ironben/5ire/0.13.0/Ironben.5ire.installer.yaml @@ -0,0 +1,20 @@ +# 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: Ironben.5ire +PackageVersion: 0.13.0 +InstallerType: nullsoft # electron-builder +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- app5ire +ProductCode: c972fd9f-4076-5d33-b55d-296e1bbcfa97 +ReleaseDate: 2025-07-05 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/nanbingxyz/5ire/releases/download/v0.13.0/5ire-Setup-0.13.0.exe + InstallerSha256: B6EC00DC7BA2271429532C0393D174C8D2834BB40DEC243A8CD832DA579B0FD4 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/Ironben/5ire/0.13.0/Ironben.5ire.locale.en-US.yaml b/manifests/i/Ironben/5ire/0.13.0/Ironben.5ire.locale.en-US.yaml new file mode 100644 index 0000000000000..f74aa2b903943 --- /dev/null +++ b/manifests/i/Ironben/5ire/0.13.0/Ironben.5ire.locale.en-US.yaml @@ -0,0 +1,67 @@ +# 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: Ironben.5ire +PackageVersion: 0.13.0 +PackageLocale: en-US +Publisher: Ironben +PublisherUrl: https://5ire.app/ +PublisherSupportUrl: https://github.com/nanbingxyz/5ire/issues +PrivacyUrl: https://5ire.app/privacy-policy +# Author: +PackageName: 5ire +PackageUrl: https://5ire.app/ +License: Apache-2.0 +LicenseUrl: https://github.com/nanbingxyz/5ire/blob/HEAD/LICENSE +Copyright: © 2025 5ire. All rights reserved. +CopyrightUrl: https://5ire.app/terms-of-service +ShortDescription: A Sleek AI Assistant & MCP Client +Description: |- + Simplicity and user-friendliness are at the core of our design. We understand the importance of an intuitive interface and have ensured that even novice can find it extremely easy to harness the power of these large language models. + Key Features + 1. Support Tools via MCP Servers + MCP is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications. Just as USB-C provides a standardized way to connect your devices to various peripherals and accessories, MCP provides a standardized way to connect AI models to different data sources and tools. + With tools, you can access the file system, obtain system information, interact with databases, access remote data, and more, rather than just having a simple conversation. + We have created an open marketplace for MCP Servers. it empowers users to discover exceptional tools while offering a streamlined process for sharing their own MCP server creations. + 2. Local Knowledge Base + We have integrated the bge-m3 as our local embedding model, which excels in multilingual vectorization. 5ire now supports parsing and vectorization of docx, xlsx, pptx, pdf, txt, and csv documents, enabling storage of these vectors to power robust Retrieval-Augmented Generation (RAG) capabilities locally. + 3. Usage Analytics + By keeping track of your API usage and spending, you can gain a better understanding of how much you're spending on the API and make informed decisions to optimize your use of the service. + 4. Prompts Library + The prompt library provides an effective way to create and organize your own prompts. These prompts are highly versatile, thanks to their support for variables. + 5. Bookmarks + You can bookmark each conversation, and even if the original messages are deleted, the saved bookmarked content remains unaffected. +# Moniker: +Tags: +- ai +- chatbot +- chatgpt +- claude +- deepseek +- gemini +- large-language-model +- llama +- llm +- mcp +- mistral +- ollama +- qwen +ReleaseNotes: |- + What's New + New Features + - Added support for setting proxies for providers + - Added built-in provider: 302AI + - Added right-click menu to folder and chat navigation in the sidebar + Improvements + - Window styling adapted for both Windows and Linux systems + Bug Fixes + - Fixed issue where switching conversations mid-reply could cause errors + - Attempted fix for MCP Server not accepting self-signed certificates (requires setting NODE_EXTRA_CA_CERTS on app launch) +ReleaseNotesUrl: https://github.com/nanbingxyz/5ire/releases/tag/v0.13.0 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://5ire.app/docs +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/Ironben/5ire/0.13.0/Ironben.5ire.locale.zh-CN.yaml b/manifests/i/Ironben/5ire/0.13.0/Ironben.5ire.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2a0e119e408de --- /dev/null +++ b/manifests/i/Ironben/5ire/0.13.0/Ironben.5ire.locale.zh-CN.yaml @@ -0,0 +1,57 @@ +# 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: Ironben.5ire +PackageVersion: 0.13.0 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +# License: +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 一款优雅的 AI 助手与 MCP 客户端 +Description: |- + 简洁性和用户友好性是我们设计的核心。我们深知直观界面的重要性,并确保即使是初学者也能轻松利用这些大型语言模型的强大功能。 + 主要功能 + 1. 通过 MCP 服务器支持工具 + MCP 是一种开放协议,用于标准化应用程序向 LLM 提供上下文的方式。可以将 MCP 想象为 AI 应用程序的 USB-C 接口。正如 USB-C 提供了连接设备与各种外设及配件的标准化方式,MCP 为 AI 模型连接不同的数据源和工具提供了标准化的解决方案。 + 通过工具,您不仅可以进行简单的对话,还可以访问文件系统、获取系统信息、操作数据库、访问远程数据等。 + 我们创建了一个开放的 MCP 服务器市场,用户可以发现优秀的工具,同时也可以轻松分享自己创建的 MCP 服务器。 + 2. 本地知识库 + 我们集成了 bge-m3 作为本地嵌入模型,擅长多语言向量化。5ire 现在支持解析和向量化 docx、xlsx、pptx、pdf、txt 和 csv 文档,并能存储这些向量,从而在本地实现强大的检索增强生成(RAG)功能。 + 3. 使用分析 + 通过跟踪您的 API 使用情况和支出,您可以更好地了解 API 的花费,从而做出明智决策来优化服务的使用。 + 4. 提示库 + 提示库为您创建和管理自己的提示提供了一种高效方式。这些提示非常灵活,因为它们支持变量。 + 5. 书签功能 + 您可以为每段对话添加书签,即使原始消息被删除,保存的书签内容也不会受到影响。 +# Moniker: +Tags: +- chatgpt +- claude +- gemini +- llama +- llm +- mcp +- mistral +- ollama +- 人工智能 +- 大语言模型 +- 深度求索 +- 聊天机器人 +- 通义千问 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://5ire.app/docs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/Ironben/5ire/0.13.0/Ironben.5ire.yaml b/manifests/i/Ironben/5ire/0.13.0/Ironben.5ire.yaml new file mode 100644 index 0000000000000..ebabb1186f538 --- /dev/null +++ b/manifests/i/Ironben/5ire/0.13.0/Ironben.5ire.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: Ironben.5ire +PackageVersion: 0.13.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/Iterate/Cyberduck/9.1.7.43306/Iterate.Cyberduck.installer.yaml b/manifests/i/Iterate/Cyberduck/9.1.7.43306/Iterate.Cyberduck.installer.yaml new file mode 100644 index 0000000000000..75d64dea9c443 --- /dev/null +++ b/manifests/i/Iterate/Cyberduck/9.1.7.43306/Iterate.Cyberduck.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: Iterate.Cyberduck +PackageVersion: 9.1.7.43306 +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://update.cyberduck.io//Cyberduck-Installer-9.1.7.43306.exe + InstallerSha256: FC54C390FED8C235138CA3D24314DCFB9319C93BA27D379C3DD125A3C0AFFD1C + ProductCode: '{5689d9a9-3c94-43eb-bca2-0b7533842c26}' + AppsAndFeaturesEntries: + - UpgradeCode: '{69C1D059-4B45-4220-A82C-DAE80C9CD8E0}' +- Architecture: x64 + InstallerType: wix + InstallerUrl: https://update.cyberduck.io//Cyberduck-Installer-9.1.7.43306.msi + InstallerSha256: 91A511C4DCE008F6AF78D5623D340AB75A70B68CFF0F7CFA63CD61DF0AE92155 + InstallerSwitches: + InstallLocation: INSTALLLOCATION="" + ProductCode: '{5A80F026-0DB5-43D6-9EEC-08A198C0D362}' + AppsAndFeaturesEntries: + - UpgradeCode: '{B9C33495-4B77-4863-9A40-4E767388647E}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/Iterate/Cyberduck/9.1.7.43306/Iterate.Cyberduck.locale.en-US.yaml b/manifests/i/Iterate/Cyberduck/9.1.7.43306/Iterate.Cyberduck.locale.en-US.yaml new file mode 100644 index 0000000000000..aba8b5303980f --- /dev/null +++ b/manifests/i/Iterate/Cyberduck/9.1.7.43306/Iterate.Cyberduck.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: Iterate.Cyberduck +PackageVersion: 9.1.7.43306 +PackageLocale: en-US +Publisher: iterate GmbH +PublisherUrl: https://iterate.ch/ +PublisherSupportUrl: https://cyberduck.io/help/ +PrivacyUrl: https://cyberduck.io/privacy/ +Author: iterate GmbH +PackageName: Cyberduck +PackageUrl: https://cyberduck.io/ +License: GPL-3.0 +LicenseUrl: https://cyberduck.io/license/ +Copyright: Copyright 2001-2024 David Kocher. Copyright 2011-2023 Yves Langisch +ShortDescription: A libre server and cloud storage browser for Mac and Windows with support for FTP, SFTP, WebDAV, Amazon S3, OpenStack Swift, Backblaze B2, Microsoft Azure & OneDrive, Google Drive and Dropbox. +Moniker: cyberduck +Tags: +- file +- server +- share +- storage +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.cyberduck.io/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/Iterate/Cyberduck/9.1.7.43306/Iterate.Cyberduck.locale.zh-CN.yaml b/manifests/i/Iterate/Cyberduck/9.1.7.43306/Iterate.Cyberduck.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7f8dec3082054 --- /dev/null +++ b/manifests/i/Iterate/Cyberduck/9.1.7.43306/Iterate.Cyberduck.locale.zh-CN.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Iterate.Cyberduck +PackageVersion: 9.1.7.43306 +PackageLocale: zh-CN +ShortDescription: 一款适用于 Mac 和 Windows 的自由开源服务器及云存储浏览器,支持 FTP、SFTP、WebDAV、Amazon S3、OpenStack Swift、Backblaze B2、Microsoft Azure 和 OneDrive、Google Drive 以及 Dropbox。 +Tags: +- 共享 +- 分享 +- 发送 +- 文件 +- 服务器 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.cyberduck.io/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/Iterate/Cyberduck/9.1.7.43306/Iterate.Cyberduck.yaml b/manifests/i/Iterate/Cyberduck/9.1.7.43306/Iterate.Cyberduck.yaml new file mode 100644 index 0000000000000..174f61900b6d6 --- /dev/null +++ b/manifests/i/Iterate/Cyberduck/9.1.7.43306/Iterate.Cyberduck.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: Iterate.Cyberduck +PackageVersion: 9.1.7.43306 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/Iterate/MountainDuck/4.17.6.22724/Iterate.MountainDuck.installer.yaml b/manifests/i/Iterate/MountainDuck/4.17.6.22724/Iterate.MountainDuck.installer.yaml new file mode 100644 index 0000000000000..4bd7542e41dc9 --- /dev/null +++ b/manifests/i/Iterate/MountainDuck/4.17.6.22724/Iterate.MountainDuck.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: Iterate.MountainDuck +PackageVersion: 4.17.6.22724 +Scope: machine +InstallerSuccessCodes: +- 3010 +UpgradeBehavior: install +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://dist.mountainduck.io/Mountain%20Duck%20Installer-4.17.6.22724.exe + InstallerSha256: 775845BAE98952834160A52339D1254EF192AFF8B9D365C695ECF32B8F87620B + ProductCode: '{dfc0e331-d145-4a1e-addb-404f8f4f4a26}' + AppsAndFeaturesEntries: + - UpgradeCode: '{15139B6C-4B6C-49C4-A3D8-12712767F13F}' +- Architecture: x64 + InstallerType: wix + InstallerUrl: https://dist.mountainduck.io/Mountain%20Duck%20Installer-4.17.6.22724.msi + InstallerSha256: 9D601989CEC4DD7B1CBC8BA49A678AE92ADB5D00C526C7E36D68202544399BA7 + InstallerSwitches: + InstallLocation: INSTALLLOCATION="" + ProductCode: '{64C8D359-4484-4094-954C-7633B75DC021}' + AppsAndFeaturesEntries: + - UpgradeCode: '{FF813E13-BE66-48F5-8C4F-1568C9660323}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/Iterate/MountainDuck/4.17.6.22724/Iterate.MountainDuck.locale.en-US.yaml b/manifests/i/Iterate/MountainDuck/4.17.6.22724/Iterate.MountainDuck.locale.en-US.yaml new file mode 100644 index 0000000000000..159a1213680e3 --- /dev/null +++ b/manifests/i/Iterate/MountainDuck/4.17.6.22724/Iterate.MountainDuck.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Iterate.MountainDuck +PackageVersion: 4.17.6.22724 +PackageLocale: en-US +Publisher: iterate GmbH +PublisherUrl: https://iterate.ch/ +PublisherSupportUrl: https://mountainduck.io/help/ +PrivacyUrl: https://mountainduck.io/privacy/ +Author: iterate GmbH +PackageName: Mountain Duck +PackageUrl: https://mountainduck.io/ +License: Proprietary +Copyright: Copyright 2015-2022 iterate GmbH. +ShortDescription: Cyberduck for mounting volumes in the file explorer. +Description: Mountain Duck lets you mount server and cloud storage as a disk in Finder on macOS and the File Explorer on Windows. Open remote files with any application and work like on a local volume. +Moniker: mountainduck +Tags: +- backup +- cloud +- cloud-drive +- download +- drive +- file +- ftp +- google-drive +- mount +- netdisk +- onedrive +- s3 +- sftp +- sync +- upload +- webdav +ReleaseNotes: |- + - [Bugfix] Timeout error when attempting to connect using public key authentication (SFTP) (Windows) + - [Bugfix] Use SHA-2 thumbprints to save trusted server certificates (Windows) + - [Bugfix] Do not save user trusted server certificates in system (Windows) +ReleaseNotesUrl: https://mountainduck.io/changelog/ +PurchaseUrl: https://mountainduck.io/buy +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.mountainduck.io/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/Iterate/MountainDuck/4.17.6.22724/Iterate.MountainDuck.locale.zh-CN.yaml b/manifests/i/Iterate/MountainDuck/4.17.6.22724/Iterate.MountainDuck.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3c09277d92611 --- /dev/null +++ b/manifests/i/Iterate/MountainDuck/4.17.6.22724/Iterate.MountainDuck.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: Iterate.MountainDuck +PackageVersion: 4.17.6.22724 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 用于在文件资源管理器中挂载存储卷的 Cyberduck。 +Description: Mountain Duck 允许您在 macOS 的 Finder 和 Windows 的文件资源管理器中,将服务器及云存储挂载为本地磁盘。如同操作本地宗卷般,使用任意应用程序打开远程文件。 +Tags: +- ftp +- google-drive +- onedrive +- oss +- sftp +- webdav +- 上传 +- 下载 +- 云 +- 云盘 +- 同步 +- 备份 +- 挂载 +- 文件 +- 网盘 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.mountainduck.io/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/Iterate/MountainDuck/4.17.6.22724/Iterate.MountainDuck.yaml b/manifests/i/Iterate/MountainDuck/4.17.6.22724/Iterate.MountainDuck.yaml new file mode 100644 index 0000000000000..2cccc0f4a7125 --- /dev/null +++ b/manifests/i/Iterate/MountainDuck/4.17.6.22724/Iterate.MountainDuck.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: Iterate.MountainDuck +PackageVersion: 4.17.6.22724 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/Iterative/DVC/3.59.1/Iterative.DVC.installer.yaml b/manifests/i/Iterative/DVC/3.59.1/Iterative.DVC.installer.yaml index 4d06e1f4b4216..36331fa0337f4 100644 --- a/manifests/i/Iterative/DVC/3.59.1/Iterative.DVC.installer.yaml +++ b/manifests/i/Iterative/DVC/3.59.1/Iterative.DVC.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Apr/03 +# Automatically updated by the winget bot at 2025/Jun/23 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Iterative.DVC @@ -16,6 +16,6 @@ ElevationRequirement: elevatesSelf Installers: - Architecture: x86 InstallerUrl: https://dvc.org/download/win/dvc-3.59.1 - InstallerSha256: 3A88E9DAE3530B968671DD42BB74E9ACFD6C765C0E6F3D987BF9BA77E1ECFB70 + InstallerSha256: D58408460778DCBC67DF469AFE50DD422EF45B40C9AF39B8FB6E8A3899662633 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/i/Iterative/DVC/3.59.1/Iterative.DVC.locale.en-US.yaml b/manifests/i/Iterative/DVC/3.59.1/Iterative.DVC.locale.en-US.yaml index 2172187694526..5b7bf41912b6a 100644 --- a/manifests/i/Iterative/DVC/3.59.1/Iterative.DVC.locale.en-US.yaml +++ b/manifests/i/Iterative/DVC/3.59.1/Iterative.DVC.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Apr/03 +# Automatically updated by the winget bot at 2025/Jun/23 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Iterative.DVC diff --git a/manifests/i/Iterative/DVC/3.59.1/Iterative.DVC.yaml b/manifests/i/Iterative/DVC/3.59.1/Iterative.DVC.yaml index f7049ef8625c9..46b14cb593baf 100644 --- a/manifests/i/Iterative/DVC/3.59.1/Iterative.DVC.yaml +++ b/manifests/i/Iterative/DVC/3.59.1/Iterative.DVC.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Apr/03 +# Automatically updated by the winget bot at 2025/Jun/23 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Iterative.DVC diff --git a/manifests/i/Iterative/DVC/3.59.2/Iterative.DVC.installer.yaml b/manifests/i/Iterative/DVC/3.59.2/Iterative.DVC.installer.yaml index e222491b47371..71bf40bab1ed1 100644 --- a/manifests/i/Iterative/DVC/3.59.2/Iterative.DVC.installer.yaml +++ b/manifests/i/Iterative/DVC/3.59.2/Iterative.DVC.installer.yaml @@ -1,5 +1,5 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json +# Automatically updated by the winget bot at 2025/Jun/23 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Iterative.DVC PackageVersion: 3.59.2 @@ -16,6 +16,6 @@ ElevationRequirement: elevatesSelf Installers: - Architecture: x86 InstallerUrl: https://dvc.org/download/win/dvc-3.59.2 - InstallerSha256: D0C5420DE635E3B56DAED16D6705AE0F8EECEC5BF3A2B487B0181BD7892F064B + InstallerSha256: 7AE6624591E911C25C3972793BC1E2CAF6F75FD1CABFA4C375B436997C59A3DA ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/i/Iterative/DVC/3.59.2/Iterative.DVC.locale.en-US.yaml b/manifests/i/Iterative/DVC/3.59.2/Iterative.DVC.locale.en-US.yaml index bfdf23bec58cc..a46afec404336 100644 --- a/manifests/i/Iterative/DVC/3.59.2/Iterative.DVC.locale.en-US.yaml +++ b/manifests/i/Iterative/DVC/3.59.2/Iterative.DVC.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +# Automatically updated by the winget bot at 2025/Jun/23 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Iterative.DVC PackageVersion: 3.59.2 @@ -10,4 +10,4 @@ License: Apache-2.0 ShortDescription: Data & models versioning for ML projects, make them shareable and reproducible Moniker: dvc ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/i/Iterative/DVC/3.59.2/Iterative.DVC.yaml b/manifests/i/Iterative/DVC/3.59.2/Iterative.DVC.yaml index 3ccdaf22e6f4a..968b23ae369d8 100644 --- a/manifests/i/Iterative/DVC/3.59.2/Iterative.DVC.yaml +++ b/manifests/i/Iterative/DVC/3.59.2/Iterative.DVC.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +# Automatically updated by the winget bot at 2025/Jun/23 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Iterative.DVC PackageVersion: 3.59.2 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/i/Iterative/DVC/3.60.0/Iterative.DVC.installer.yaml b/manifests/i/Iterative/DVC/3.60.0/Iterative.DVC.installer.yaml index 988a9d68d3e2e..6b6d595a860cb 100644 --- a/manifests/i/Iterative/DVC/3.60.0/Iterative.DVC.installer.yaml +++ b/manifests/i/Iterative/DVC/3.60.0/Iterative.DVC.installer.yaml @@ -1,5 +1,5 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json +# Automatically updated by the winget bot at 2025/Jun/23 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Iterative.DVC PackageVersion: 3.60.0 @@ -16,6 +16,6 @@ ElevationRequirement: elevatesSelf Installers: - Architecture: x86 InstallerUrl: https://dvc.org/download/win/dvc-3.60.0 - InstallerSha256: D001213AA61E55835BBF88505ED51F4785817EC33FBFC81D842F435AFA128C43 + InstallerSha256: 9FA38A5BF177F8DB2D60CC8DB5D13D80CAEA6495D9DF2DC7B326CAFE30E6C9FF ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/i/Iterative/DVC/3.60.0/Iterative.DVC.locale.en-US.yaml b/manifests/i/Iterative/DVC/3.60.0/Iterative.DVC.locale.en-US.yaml index 0198dfb2384eb..4cb191e9218e3 100644 --- a/manifests/i/Iterative/DVC/3.60.0/Iterative.DVC.locale.en-US.yaml +++ b/manifests/i/Iterative/DVC/3.60.0/Iterative.DVC.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +# Automatically updated by the winget bot at 2025/Jun/23 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: Iterative.DVC PackageVersion: 3.60.0 @@ -11,4 +11,4 @@ ShortDescription: Data & models versioning for ML projects, make them shareable Moniker: dvc ReleaseNotesUrl: https://github.com/iterative/dvc/releases/tag/3.60.0 ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/i/Iterative/DVC/3.60.0/Iterative.DVC.yaml b/manifests/i/Iterative/DVC/3.60.0/Iterative.DVC.yaml index f935bd316063c..a77d31e3c6400 100644 --- a/manifests/i/Iterative/DVC/3.60.0/Iterative.DVC.yaml +++ b/manifests/i/Iterative/DVC/3.60.0/Iterative.DVC.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +# Automatically updated by the winget bot at 2025/Jun/23 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Iterative.DVC PackageVersion: 3.60.0 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.18/IvanCharapanau.Harbor.installer.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.18/IvanCharapanau.Harbor.installer.yaml new file mode 100644 index 0000000000000..280ce948982ce --- /dev/null +++ b/manifests/i/IvanCharapanau/Harbor/0.3.18/IvanCharapanau.Harbor.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: IvanCharapanau.Harbor +PackageVersion: 0.3.18 +UpgradeBehavior: install +ReleaseDate: 2025-07-06 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.18/Harbor_0.3.18_x64-setup.exe + InstallerSha256: BB034E2CF9C8A1A4A6B1F637C19550551413054A4D0EBA18C1033EDD247E9B27 + ProductCode: Harbor +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.18/Harbor_0.3.18_x64_en-US.msi + InstallerSha256: 7955076410B4F9E4FC06FE415CC887BD210B5B0C4755705B5E2B71832908BE03 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{750FF2B7-C3A4-42F9-B707-2F915AF9AF04}' + AppsAndFeaturesEntries: + - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.18/IvanCharapanau.Harbor.locale.en-US.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.18/IvanCharapanau.Harbor.locale.en-US.yaml new file mode 100644 index 0000000000000..696cc782e6c6c --- /dev/null +++ b/manifests/i/IvanCharapanau/Harbor/0.3.18/IvanCharapanau.Harbor.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: IvanCharapanau.Harbor +PackageVersion: 0.3.18 +PackageLocale: en-US +Publisher: harbor +PublisherUrl: https://av.codes/ +PublisherSupportUrl: https://github.com/av/harbor/issues +Author: Ivan Charapanau +PackageName: Harbor +PackageUrl: https://github.com/av/harbor +License: Apache-2.0 +LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE +ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. +Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. +Tags: +- ai +- large-language-model +- llm +- ollama +ReleaseNotes: |- + - boost + - new nbs module + - llm.emit_artifact convenience tweaks + - harbor pull - now pulls Ollama models too: harbor pull gemma3, harbor pull webui + - harbor ollama - now launches Ollama if it's not running yet + - routines migrated to TypeScript + Full Changelog: https://github.com/av/harbor/compare/v0.3.16...v0.3.18 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.18 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.18/IvanCharapanau.Harbor.locale.zh-CN.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.18/IvanCharapanau.Harbor.locale.zh-CN.yaml new file mode 100644 index 0000000000000..15e4f19de97b9 --- /dev/null +++ b/manifests/i/IvanCharapanau/Harbor/0.3.18/IvanCharapanau.Harbor.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: IvanCharapanau.Harbor +PackageVersion: 0.3.18 +PackageLocale: zh-CN +ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 +Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 +Tags: +- llm +- ollama +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.18 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.18/IvanCharapanau.Harbor.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.18/IvanCharapanau.Harbor.yaml new file mode 100644 index 0000000000000..eb96a218b0824 --- /dev/null +++ b/manifests/i/IvanCharapanau/Harbor/0.3.18/IvanCharapanau.Harbor.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: IvanCharapanau.Harbor +PackageVersion: 0.3.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/IvyScience/ivySCI/6.1.0/IvyScience.ivySCI.installer.yaml b/manifests/i/IvyScience/ivySCI/6.1.0/IvyScience.ivySCI.installer.yaml new file mode 100644 index 0000000000000..edc03343cd1db --- /dev/null +++ b/manifests/i/IvyScience/ivySCI/6.1.0/IvyScience.ivySCI.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: IvyScience.ivySCI +PackageVersion: 6.1.0 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- ivysci +ProductCode: 6aed329f-68d0-5b5d-ac92-42fb9e279fb4 +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x64 + InstallerUrl: https://package.cdn.ivysci.com/ivysci-release-updater/ivySCI-6.1.0.exe + InstallerSha256: E0017538CE2AF170186F3D281474DE0B88F5AB2F2B7FD1BAA5A396363B6758F7 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/IvyScience/ivySCI/6.1.0/IvyScience.ivySCI.locale.en-US.yaml b/manifests/i/IvyScience/ivySCI/6.1.0/IvyScience.ivySCI.locale.en-US.yaml new file mode 100644 index 0000000000000..21e30091a1414 --- /dev/null +++ b/manifests/i/IvyScience/ivySCI/6.1.0/IvyScience.ivySCI.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: IvyScience.ivySCI +PackageVersion: 6.1.0 +PackageLocale: en-US +Publisher: ivysci +PublisherUrl: https://www.ivysci.com/en +PublisherSupportUrl: https://www.ivysci.com/en/feedback +PrivacyUrl: https://www.ivysci.com/en/privacy/main +Author: Nanjing IvyScience Information Technology Co., Ltd. +PackageName: ivySCI +PackageUrl: https://www.ivysci.com/en/download +License: Proprietary +Copyright: 'Copyright © 2020-2025 All rights reserved: Nanjing IvyScience Information Technology Co., Ltd.' +ShortDescription: Your Smart Paper Assistant +Tags: +- academics +- article +- citation +- cite +- literature +- paper +- reasearch +- thesis +Documentations: +- DocumentLabel: Guide + DocumentUrl: https://help.ivysci.com/en/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IvyScience/ivySCI/6.1.0/IvyScience.ivySCI.locale.zh-CN.yaml b/manifests/i/IvyScience/ivySCI/6.1.0/IvyScience.ivySCI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..0f71484cdb09f --- /dev/null +++ b/manifests/i/IvyScience/ivySCI/6.1.0/IvyScience.ivySCI.locale.zh-CN.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: IvyScience.ivySCI +PackageVersion: 6.1.0 +PackageLocale: zh-CN +Publisher: ivysci +PublisherUrl: https://www.ivysci.com/ +PublisherSupportUrl: https://www.ivysci.com/feedback +PrivacyUrl: https://www.ivysci.com/privacy/main +Author: 南京青藤格致信息科技有限公司 +PackageName: ivySCI +PackageUrl: https://www.ivysci.com/download +License: 专有软件 +Copyright: Copyright © 2020-2025 版权所有:南京青藤格致信息科技有限公司 +ShortDescription: 你贴心的论文助理 +Tags: +- 学术 +- 引用 +- 文献 +- 研究 +- 研飞 +- 论文 +Documentations: +- DocumentLabel: 指南 + DocumentUrl: https://help.ivysci.com/en/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IvyScience/ivySCI/6.1.0/IvyScience.ivySCI.yaml b/manifests/i/IvyScience/ivySCI/6.1.0/IvyScience.ivySCI.yaml new file mode 100644 index 0000000000000..425fba11a8547 --- /dev/null +++ b/manifests/i/IvyScience/ivySCI/6.1.0/IvyScience.ivySCI.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: IvyScience.ivySCI +PackageVersion: 6.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/i2van/hourglass/1.15.51/i2van.hourglass.installer.yaml b/manifests/i/i2van/hourglass/1.15.51/i2van.hourglass.installer.yaml new file mode 100644 index 0000000000000..5355a00a2f5c0 --- /dev/null +++ b/manifests/i/i2van/hourglass/1.15.51/i2van.hourglass.installer.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: i2van.hourglass +PackageVersion: 1.15.51 +InstallerType: burn +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2025-06-21 +AppsAndFeaturesEntries: +- ProductCode: '{06f0280c-ee14-4db0-b7f7-4d3699897172}' + UpgradeCode: '{F1D002C9-CFC9-40FB-84AF-96E7AEC26E0B}' + InstallerType: burn +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Hourglass' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/i2van/hourglass/releases/download/1.15.51/HourglassInstaller.exe + InstallerSha256: E36DFD3CBF7AF4EAF333ACD37B0922B964E994BA90B5412CD1A150E09EE4B4B8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/i2van/hourglass/1.15.51/i2van.hourglass.locale.en-US.yaml b/manifests/i/i2van/hourglass/1.15.51/i2van.hourglass.locale.en-US.yaml new file mode 100644 index 0000000000000..f92fa95abc0f6 --- /dev/null +++ b/manifests/i/i2van/hourglass/1.15.51/i2van.hourglass.locale.en-US.yaml @@ -0,0 +1,131 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: i2van.hourglass +PackageVersion: 1.15.51 +PackageLocale: en-US +Publisher: 2021 Chris Dziemborowicz, 2024-2025 Ivan Ivon +PublisherUrl: https://github.com/i2van/hourglass +PublisherSupportUrl: https://github.com/i2van/hourglass +Author: Ivan Ivon (ivan.ivon@gmail.com) +PackageName: Hourglass +PackageUrl: https://github.com/i2van/hourglass +License: MIT +LicenseUrl: https://github.com/i2van/hourglass/blob/HEAD/LICENSE.md +Copyright: Copyright (c) 2021 Chris Dziemborowicz, 2024-2025 Ivan Ivon. All rights reserved. +CopyrightUrl: https://raw.githubusercontent.com/i2van/hourglass/refs/heads/main/LICENSE.md +ShortDescription: This project is the modified simple countdown timer for Windows. +Description: This project is the modified simple countdown timer for Windows. +Moniker: hourglass +Tags: +- cli +- cli-app +- cli-tool +- countdown +- desktop +- desktop-app +- gui +- gui-app +- net48 +- notification-area +- timer +- tray-icon +- ui +- windows +- windows-10 +- windows-11 +ReleaseNotes: |- + Hourglass Changes + Installer + - Adds the Hourglass executable path to the Windows App Paths, so the Hourglass command-line is available out of the box. + WinGet + The Hourglass can be managed with WinGet: + Install + winget source update + winget install -e --id i2van.hourglass + Upgrade + winget source update + winget upgrade i2van.hourglass + Uninstall + winget uninstall -e --id i2van.hourglass + Portable + Ngen Support + Processing the Hourglass with the Native Image Generator (Ngen.exe) speeds up the Hourglass startup. + To run script as an Administrator press Win+X and select the Windows PowerShell (Admin) or Command Prompt (Admin). Copy script full path to the console opened and execute one of the following: + - Generate the Hourglass native image and its dependencies and install in the native image cache: + ngen-Hourglass.bat install + - Delete the native images of the Hourglass and its dependencies from the native image cache: + ngen-Hourglass.bat uninstall + Command-line + - New command pause + - New command resume + - New option --digital-clock-time, -c, /c + - New option --multi-timers, -mt, /mt + - New option --activate-next, -an, /an + - New option --show-trigger-time, -st, /st + - New option --pause-after-loop-timer, -pl, /pl + - New option --order-by-title, -ot, /ot + - Renamed option --prompt-on-exit to --prompt-on-close + - New option --save-timer-on-closing, -sc, /sc + See command-line usage for details. + UI + - Uses a Windows Task Dialog instead of a message box (GitHub). + - The Command-line usage dialog can be accessed from the About dialog and vice versa. + - New Accent theme which uses Windows accent color. This theme is a default one. + - The Jump List support (disabled by default, see FAQ). + - The thumbnail toolbar support. + Notification Area + - All the timer windows are arranged by the time left. The order is new, expired, paused, running. Timers can be ordered by the title first using --order-by-title, -ot, /ot command-line option or by the checking Advanced options / Order timers by title first then by time left timer window context menu option. + - The red circle is shown over the notification area icon if at least one timer is expired. + - The pause sign is shown over the notification area icon if at least one timer is paused. + - The digits from 0 to 9 are the hotkeys for the timer windows in the notification area icon context menu. + - The Double Click shows/hides all the timer windows. + - The Ctrl+Click creates a new timer window. + - The Shift+Click shows the first timer window. + - The Shift+Middle Click shows the recently opened timer windo w. + - The Middle Click or Shift+Right Click opens the timer window options menu. + - The Pause all menu command pauses all the running timer windows. + - The Resume all menu command resumes all the paused timer windows. + - The Options menu command opens the timer window options menu. The shortcut is the Middle Click or Shift+Right Click on the notification area icon. + - The Silent mode disables all the timer windows notifications. It is not preserved between runs. + - The Exit menu command prompts for closing all the running timer windows if the Prompt on close option is set. + - ⏺⏸⏹⏏🔁 symbols are used for the New, Paused, Stopped, Expired, Looped. + Timer Windows + Keyboard Shortcuts + - The Esc shortcut minimizes the timer window. + - The F11 shortcut makes the timer window full screen and back. + - The Ctrl+N shortcut creates a new timer window. + - The F2 shortcut edits the timer window title. + - The F4 shortcut edits the timer window time. + Context Menu + - All the timer window commands are available in the timer window context menu. + - The shortcuts are displayed in the timer window context menu. + - The Window title submenu is available directly from the timer window context menu. + - The Reset position and size menu command sets the timer window default position and size. + - The Restore, Minimize and Maximize timer window commands are always present in the timer window context menu. + - The Advanced options / Display time in the digital clock format timer window context menu option toggles the displayed time digital clock time format. The command-line option is --digital-clock-time, -c, /c + - The Advanced options / Show trigger time timer window context menu option shows the trigger time in the timer window and in the notification area context menu. The command-line option is --show-trigger-time, -st, /st + - The Advanced options / Activate next window when minimized or closed timer window context menu option enables the next timer window activation when the current timer window is minimized or closed. The command-line option is --activate-next, -an, /an + - The Advanced options / Order timers by title first then by time left timer window context menu option orders the timers by the title first then by the time left. The command-line option is --order-by-title, -ot, /ot + - The Advanced options / Save timer on closing timer window context menu option enables timer window save on closing. The command-line option is --save-timer-on-closing, -sc, /sc + - The Pause all timer window context menu command pauses all the running timers. Command-line command is pause + - The Resume all timer window context menu command resumes all the paused timers. Command-line command is resume + - The Pause after each loop timer window context menu command pauses the loop timer when it expires. Command-line command is --pause-after-loop-timer, -pl, /pl + Other + - All the timer windows are arranged by the time left. The order of the timer windows is new, expired, paused, running. + - The minimum timer window size is limited by the Windows only. + - The timer tooltip is shown if the timer window size is too small. + - The progress bar changes direction to vertical when the height is more than the width and vice versa. + - When the timer window is minimized or closed the next visible non-minimized timer window is activated. + - The time left is now used for editing instead of the original launch time. + - The timer window pops up on the current virtual desktop. + - The mouse double-click on progress border toggles full screen. + - The sound file can be placed to the %LOCALAPPDATA%\Hourglass or %LOCALAPPDATA%\Hourglass\Sounds directories. It can be the symbolic link created by the mklink system command. + - NAudioHourglassPack can be used for playing sounds on Windows with no Windows Media Player installed. + - The .ogg sound file format is supported. + Misc + - The Hourglass is built deterministically using the GitHub Actions. + Full Changelog: 1.15.50...1.15.51 +ReleaseNotesUrl: https://github.com/i2van/hourglass/releases/tag/1.15.51 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/i2van/hourglass/1.15.51/i2van.hourglass.yaml b/manifests/i/i2van/hourglass/1.15.51/i2van.hourglass.yaml new file mode 100644 index 0000000000000..a7e86da91369b --- /dev/null +++ b/manifests/i/i2van/hourglass/1.15.51/i2van.hourglass.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: i2van.hourglass +PackageVersion: 1.15.51 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/iFlytek/Ets100/5.7.3/iFlytek.Ets100.installer.yaml b/manifests/i/iFlytek/Ets100/5.7.3/iFlytek.Ets100.installer.yaml new file mode 100644 index 0000000000000..6323c9692d683 --- /dev/null +++ b/manifests/i/iFlytek/Ets100/5.7.3/iFlytek.Ets100.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: iFlytek.Ets100 +PackageVersion: 5.7.3 +InstallerType: nullsoft +UpgradeBehavior: uninstallPrevious +Installers: +- Architecture: neutral + InstallerUrl: https://cdnfei.ets100.com/package/EtsSetup5.7.3.exe + InstallerSha256: 0F28F0E2B82E8DBF32A2F787892A477E509F8DA75F1511D9FB721F290059EF3E +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/i/iFlytek/Ets100/5.7.3/iFlytek.Ets100.locale.zh-CN.yaml b/manifests/i/iFlytek/Ets100/5.7.3/iFlytek.Ets100.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3727fb7a9605a --- /dev/null +++ b/manifests/i/iFlytek/Ets100/5.7.3/iFlytek.Ets100.locale.zh-CN.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: iFlytek.Ets100 +PackageVersion: 5.7.3 +PackageLocale: zh-CN +Publisher: iFlytek +PublisherUrl: https://github.com/iflytek +PublisherSupportUrl: https://xffk.iflytek.com/pc/#/ +PrivacyUrl: https://www.ets100.com/home/userPrivacyPolicy-app-h5.html +Author: iFlytek +PackageName: E听说中学 +License: MIT License +Copyright: Copyright © 2016-2025 ETS100 +ShortDescription: 让英语学习更简单 +Moniker: ets100 +Tags: +- ets +- ets100 +PurchaseUrl: https://ets100.com/home/Epurchase.html +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/i/iFlytek/Ets100/5.7.3/iFlytek.Ets100.yaml b/manifests/i/iFlytek/Ets100/5.7.3/iFlytek.Ets100.yaml new file mode 100644 index 0000000000000..a5e0782690f20 --- /dev/null +++ b/manifests/i/iFlytek/Ets100/5.7.3/iFlytek.Ets100.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: iFlytek.Ets100 +PackageVersion: 5.7.3 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.9.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/iFlytek/iFlyNote/5.0.1290/iFlytek.iFlyNote.installer.yaml b/manifests/i/iFlytek/iFlyNote/5.0.1290/iFlytek.iFlyNote.installer.yaml new file mode 100644 index 0000000000000..a7767bf09ec3c --- /dev/null +++ b/manifests/i/iFlytek/iFlyNote/5.0.1290/iFlytek.iFlyNote.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: iFlytek.iFlyNote +PackageVersion: 5.0.1290 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 400acf8a-064b-5b2e-81af-d89bb61fd210 +ReleaseDate: 2025-07-08 +Installers: +- Architecture: x86 + InstallerUrl: https://bjb.openstorage.cn/v1/iflytek/pcdownload/voicenote-5.0.1290.exe + InstallerSha256: 84843BD873B5DA4D5664515FEA8CF5BE0A82C82D083D6B8706EB45FC911F23D4 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iFlytek/iFlyNote/5.0.1290/iFlytek.iFlyNote.locale.en-US.yaml b/manifests/i/iFlytek/iFlyNote/5.0.1290/iFlytek.iFlyNote.locale.en-US.yaml new file mode 100644 index 0000000000000..831d7824a7608 --- /dev/null +++ b/manifests/i/iFlytek/iFlyNote/5.0.1290/iFlytek.iFlyNote.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: iFlytek.iFlyNote +PackageVersion: 5.0.1290 +PackageLocale: en-US +Publisher: 科大讯飞股份有限公司 +PublisherUrl: https://iflynote.com/ +PublisherSupportUrl: https://iflynote.com/h/help.html +PrivacyUrl: https://iflynote.com/h/agreements-privacy.html +Author: Iflytek Co., Ltd. +PackageName: 讯飞语记 +PackageUrl: https://iflynote.com/h/download.html +License: Proprietary +LicenseUrl: https://iflynote.com/h/agreements-user.html +Copyright: Copyright © 2024 Iflytek Co., Ltd. All rights reserved. +ShortDescription: A comprehensive cloud note-taking app by iFlytek focusing on speech input, which supports real-time speech dictation, conference recording transcription, photo recognition, text-and-image layout and reading aloud. +Description: iFlyNote is a cloud note-taking app by iFlytek that converts speech into text. It supports recording for note-taking, text-and-image layout, task reminders, reading notes aloud, synchronization between devices, and category management. It is an essential tool for writing novels, keeping diaries, conducting interviews and taking notes. +Tags: +- extract +- extraction +- extractor +- notes +- ocr +- recognition +- recognize +- speech +- speech-recognition +- voice +PurchaseUrl: https://iflynote.com/h/rights.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iFlytek/iFlyNote/5.0.1290/iFlytek.iFlyNote.locale.zh-CN.yaml b/manifests/i/iFlytek/iFlyNote/5.0.1290/iFlytek.iFlyNote.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8f7fd18c99a6d --- /dev/null +++ b/manifests/i/iFlytek/iFlyNote/5.0.1290/iFlytek.iFlyNote.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: iFlytek.iFlyNote +PackageVersion: 5.0.1290 +PackageLocale: zh-CN +Publisher: 科大讯飞股份有限公司 +PublisherUrl: https://iflynote.com/ +PublisherSupportUrl: https://iflynote.com/h/help.html +PrivacyUrl: https://iflynote.com/h/agreements-privacy.html +Author: 科大讯飞股份有限公司 +PackageName: 讯飞语记 +PackageUrl: https://iflynote.com/h/download.html +License: 专有软件 +LicenseUrl: https://iflynote.com/h/agreements-user.html +Copyright: Copyright © 2024 科大讯飞股份有限公司 版权所有 +ShortDescription: 科大讯飞出品,专注于语音输入的综合类云笔记。支持实时语音听写、会议录音转写,拍照识别、图文编排、发音人朗读等功能。 +Description: 讯飞语记由科大讯飞出品,是一款语音变文字输入的云笔记APP,并支持录音速记、图文编排、任务提醒、朗读笔记、多端同步、分类管理等功能。是您写小说、写日记、采访、记事的必备神器! +Tags: +- ocr +- 提取 +- 笔记 +- 识别 +- 语音 +- 语音识别 +ReleaseNotes: |- + 支持@关联笔记; + 修复部分已知问题,优化体验 +PurchaseUrl: https://iflynote.com/h/rights.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iFlytek/iFlyNote/5.0.1290/iFlytek.iFlyNote.yaml b/manifests/i/iFlytek/iFlyNote/5.0.1290/iFlytek.iFlyNote.yaml new file mode 100644 index 0000000000000..03e7ebe43283d --- /dev/null +++ b/manifests/i/iFlytek/iFlyNote/5.0.1290/iFlytek.iFlyNote.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.iFlyNote +PackageVersion: 5.0.1290 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/iFlytek/iFlyRecSI/5.0.9/iFlytek.iFlyRecSI.installer.yaml b/manifests/i/iFlytek/iFlyRecSI/5.0.9/iFlytek.iFlyRecSI.installer.yaml index 94746f6d3f60c..2ecf1f124d64e 100644 --- a/manifests/i/iFlytek/iFlyRecSI/5.0.9/iFlytek.iFlyRecSI.installer.yaml +++ b/manifests/i/iFlytek/iFlyRecSI/5.0.9/iFlytek.iFlyRecSI.installer.yaml @@ -15,7 +15,7 @@ ProductCode: 28570c1d-6efa-5206-8e03-947b069cec3c ReleaseDate: 2025-06-02 Installers: - Architecture: x64 - InstallerUrl: https://tongchuan.iflyrec.com/download/tjhz/windows/TJTC001/tjtc_TJTC001_setup_5.0.9_2081.exe - InstallerSha256: 541998C9B34936AAAEF4D641E6707AE46D96E2CD5B9FEA1F52F2BDD8569D9469 + InstallerUrl: https://tongchuan.iflyrec.com/download/tjhz/windows/TJTC001/tjtc_TJTC001_setup_5.0.9_2125.exe + InstallerSha256: B2CD2D00BEA5C1217CAE88AE85E7747B2AF3ECC22236293F3C51A8D4CF01BAD8 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/i/iFlytek/iFlyRecSI/5.0.9/iFlytek.iFlyRecSI.locale.zh-CN.yaml b/manifests/i/iFlytek/iFlyRecSI/5.0.9/iFlytek.iFlyRecSI.locale.zh-CN.yaml index 23793fa578f3e..22dc184e9ae1e 100644 --- a/manifests/i/iFlytek/iFlyRecSI/5.0.9/iFlytek.iFlyRecSI.locale.zh-CN.yaml +++ b/manifests/i/iFlytek/iFlyRecSI/5.0.9/iFlytek.iFlyRecSI.locale.zh-CN.yaml @@ -27,6 +27,11 @@ Tags: - 翻译 - 英文 - 英语 +ReleaseNotes: |- + 1. 新增 DeepSeek 翻译模型,支持多语种翻译; + 2. 申请企业版,享 1 小时免费体验权益; + 3. 优化字幕 UI 展示; + 4. 修复已知问题,提升用户体验。 PurchaseUrl: https://tongchuan.iflyrec.com/index/recharge/refill-card-list ManifestType: locale ManifestVersion: 1.10.0 diff --git a/manifests/i/iQIYI/GeePlayer/7.1.0.5770/iQIYI.GeePlayer.installer.yaml b/manifests/i/iQIYI/GeePlayer/7.2.0.5773/iQIYI.GeePlayer.installer.yaml similarity index 83% rename from manifests/i/iQIYI/GeePlayer/7.1.0.5770/iQIYI.GeePlayer.installer.yaml rename to manifests/i/iQIYI/GeePlayer/7.2.0.5773/iQIYI.GeePlayer.installer.yaml index f3547172e6b09..387e324e0709a 100644 --- a/manifests/i/iQIYI/GeePlayer/7.1.0.5770/iQIYI.GeePlayer.installer.yaml +++ b/manifests/i/iQIYI/GeePlayer/7.2.0.5773/iQIYI.GeePlayer.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: iQIYI.GeePlayer -PackageVersion: 7.1.0.5770 +PackageVersion: 7.2.0.5773 InstallerType: nullsoft Scope: machine UpgradeBehavior: install @@ -204,6 +204,6 @@ ProductCode: GeePlayer Installers: - Architecture: x86 InstallerUrl: https://app.iqiyi.com/ext/common/GeePlayerSetup_store.exe - InstallerSha256: 837A8541BF0FE1E75120397C7D57A91D167F241F87F7225D50F4C6468118BE59 + InstallerSha256: 351AE2955343E8C1FE70111413D59AA90E95CB9F05B9C796FDFE8AA1EB03F653 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/i/iQIYI/GeePlayer/7.1.0.5770/iQIYI.GeePlayer.locale.en-US.yaml b/manifests/i/iQIYI/GeePlayer/7.2.0.5773/iQIYI.GeePlayer.locale.en-US.yaml similarity index 95% rename from manifests/i/iQIYI/GeePlayer/7.1.0.5770/iQIYI.GeePlayer.locale.en-US.yaml rename to manifests/i/iQIYI/GeePlayer/7.2.0.5773/iQIYI.GeePlayer.locale.en-US.yaml index cef78547482e2..8680e26d861f5 100644 --- a/manifests/i/iQIYI/GeePlayer/7.1.0.5770/iQIYI.GeePlayer.locale.en-US.yaml +++ b/manifests/i/iQIYI/GeePlayer/7.2.0.5773/iQIYI.GeePlayer.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: iQIYI.GeePlayer -PackageVersion: 7.1.0.5770 +PackageVersion: 7.2.0.5773 PackageLocale: en-US Publisher: 爱奇艺 PublisherUrl: https://www.iqiyi.com/ diff --git a/manifests/i/iQIYI/GeePlayer/7.1.0.5770/iQIYI.GeePlayer.locale.zh-CN.yaml b/manifests/i/iQIYI/GeePlayer/7.2.0.5773/iQIYI.GeePlayer.locale.zh-CN.yaml similarity index 95% rename from manifests/i/iQIYI/GeePlayer/7.1.0.5770/iQIYI.GeePlayer.locale.zh-CN.yaml rename to manifests/i/iQIYI/GeePlayer/7.2.0.5773/iQIYI.GeePlayer.locale.zh-CN.yaml index e9accb22c3ece..430656dcf2d8a 100644 --- a/manifests/i/iQIYI/GeePlayer/7.1.0.5770/iQIYI.GeePlayer.locale.zh-CN.yaml +++ b/manifests/i/iQIYI/GeePlayer/7.2.0.5773/iQIYI.GeePlayer.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: iQIYI.GeePlayer -PackageVersion: 7.1.0.5770 +PackageVersion: 7.2.0.5773 PackageLocale: zh-CN Publisher: 爱奇艺 PublisherUrl: https://www.iqiyi.com/ diff --git a/manifests/i/iQIYI/GeePlayer/7.1.0.5770/iQIYI.GeePlayer.yaml b/manifests/i/iQIYI/GeePlayer/7.2.0.5773/iQIYI.GeePlayer.yaml similarity index 87% rename from manifests/i/iQIYI/GeePlayer/7.1.0.5770/iQIYI.GeePlayer.yaml rename to manifests/i/iQIYI/GeePlayer/7.2.0.5773/iQIYI.GeePlayer.yaml index 737234a9737ea..04b28f1274ad2 100644 --- a/manifests/i/iQIYI/GeePlayer/7.1.0.5770/iQIYI.GeePlayer.yaml +++ b/manifests/i/iQIYI/GeePlayer/7.2.0.5773/iQIYI.GeePlayer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: iQIYI.GeePlayer -PackageVersion: 7.1.0.5770 +PackageVersion: 7.2.0.5773 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.installer.yaml b/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.installer.yaml new file mode 100644 index 0000000000000..6fd9fea4031eb --- /dev/null +++ b/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.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: iQIYI.iQIYI +PackageVersion: 13.6.5.9386 +InstallerType: nullsoft +UpgradeBehavior: install +Protocols: +- qips +- qisu +FileExtensions: +- 3gp +- 3gpp +- asf +- avi +- flac +- flv +- m4v +- mkv +- mov +- mp4 +- mpe +- mpeg +- mpg +- ogm +- ogv +- pgf +- pmv +- qsv +- ts +- webm +- wmv +ProductCode: PPStream +Installers: +- Architecture: x64 + InstallerUrl: https://mesh.if.iqiyi.com/player/upgrade/file/13.6.5.9386/IQIYIsetup_winget.exe + InstallerSha256: 429FDEE119835C60129BE97C42BDB83C2F043C9FFBDFFCC2563AF0221470C278 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.locale.en-US.yaml b/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.locale.en-US.yaml new file mode 100644 index 0000000000000..6d7bac7b0061b --- /dev/null +++ b/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.locale.en-US.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: iQIYI.iQIYI +PackageVersion: 13.6.5.9386 +PackageLocale: en-US +Publisher: 爱奇艺 +PublisherUrl: https://www.iqiyi.com/ +PublisherSupportUrl: https://help.iqiyi.com/ +PrivacyUrl: https://privacy.iqiyi.com/policies +Author: Beijing Qiyi Century Science & Technology Co., Ltd. +PackageName: 爱奇艺 +PackageUrl: https://www.iqiyi.com/appstore.html +License: Proprietary +LicenseUrl: https://www.iqiyi.com/user/register/protocol.html +Copyright: Copyright © 2024 iQIYI All Rights Reserved +ShortDescription: iQIYI Windows client app +Description: iQIYI comes with smooth streaming service, easy to use interface & tons of popular dramas, movies and TV shows! +Tags: +- film +- media +- movie +- multimedia +- player +- serial +- series +- show +- video +PurchaseUrl: https://vip.iqiyi.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.locale.zh-CN.yaml b/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fbb2ec9bfde3f --- /dev/null +++ b/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.locale.zh-CN.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: iQIYI.iQIYI +PackageVersion: 13.6.5.9386 +PackageLocale: zh-CN +Publisher: 爱奇艺 +PublisherUrl: https://www.iqiyi.com/ +PublisherSupportUrl: https://help.iqiyi.com/ +PrivacyUrl: https://privacy.iqiyi.com/policies +Author: 北京奇艺世纪科技有限公司 +PackageName: 爱奇艺 +PackageUrl: https://www.iqiyi.com/appstore.html +License: 专有软件 +LicenseUrl: https://www.iqiyi.com/user/register/protocol.html +Copyright: Copyright © 2024 爱奇艺 All Rights Reserved +ShortDescription: 爱奇艺 Windows 客户端 +Description: 爱奇艺秉承“悦享品质”的品牌口号,坚持“让人们平等便捷地获得更多、更好的视频”的企业愿景,奉行“简单想,简单做”的企业文化,积极推动产品、技术、内容、营销等全方位创新,为用户提供更丰富、高清、流畅的专业视频服务。截至目前,爱奇艺构建了涵盖电影、电视剧、综艺、动漫、纪录片等十余种类型的国内首家正版视频内容库,高清流畅的视频体验成为行业标杆。 +Tags: +- 多媒体 +- 媒体 +- 影音 +- 播放器 +- 电影 +- 电视剧 +- 视频 +- 纪录片 +- 综艺 +- 连续剧 +ReleaseNotes: |- + 1.《书卷一梦》《淬火年代》《新说唱 2025》热播中 + 2. 优化页面和播放器的加载速度 + 3. 优化短视频频道的关注功能体验 + 4. 优化一些功能体验,修复一些已知问题 +PurchaseUrl: https://vip.iqiyi.com/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.locale.zh-HK.yaml b/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.locale.zh-HK.yaml new file mode 100644 index 0000000000000..c94c1d270fb25 --- /dev/null +++ b/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.locale.zh-HK.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iQIYI.iQIYI +PackageVersion: 13.6.5.9386 +PackageLocale: zh-HK +Publisher: 愛奇藝 +PublisherUrl: https://www.iqiyi.com/ +PublisherSupportUrl: https://help.iqiyi.com/ +PrivacyUrl: https://privacy.iqiyi.com/policies +Author: 北京奇藝世紀科技有限公司 +PackageName: 愛奇藝 +PackageUrl: https://www.iqiyi.com/appstore.html +License: 專有軟件 +LicenseUrl: https://www.iqiyi.com/user/register/protocol.html +Copyright: Copyright © 2024 愛奇藝 All Rights Reserved +ShortDescription: 愛奇藝 for Windows +Description: 愛奇藝內容豐富多元,涵蓋電影、電視劇、動漫、紀錄片、綜藝、娛樂等熱門視頻,持續快速更新內容;視頻播放清晰流暢,操作介面簡單友好,真正為用戶帶來“悅享品質”的觀映體驗。 +Tags: +- 多媒體 +- 媒體 +- 影片 +- 影音 +- 播放器 +- 紀錄片 +- 綜藝 +- 連續劇 +- 電影 +- 電視劇 +PurchaseUrl: https://vip.iqiyi.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.locale.zh-TW.yaml b/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.locale.zh-TW.yaml new file mode 100644 index 0000000000000..7b07c63c9055a --- /dev/null +++ b/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.locale.zh-TW.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iQIYI.iQIYI +PackageVersion: 13.6.5.9386 +PackageLocale: zh-TW +Publisher: 愛奇藝 +PublisherUrl: https://www.iqiyi.com/ +PublisherSupportUrl: https://help.iqiyi.com/ +PrivacyUrl: https://privacy.iqiyi.com/policies +Author: 北京奇藝世紀科技有限公司 +PackageName: 愛奇藝 +PackageUrl: https://www.iqiyi.com/appstore.html +License: 專有軟件 +LicenseUrl: https://www.iqiyi.com/user/register/protocol.html +Copyright: Copyright © 2024 愛奇藝 All Rights Reserved +ShortDescription: 愛奇藝 for Windows +Description: 愛奇藝內容豐富多元,涵蓋電影、電視劇、動漫、紀錄片、綜藝、娛樂等熱門視頻,持續快速更新內容;視頻播放清晰流暢,操作介面簡單友好,真正為用戶帶來“悅享品質”的觀映體驗。 +Tags: +- 多媒體 +- 媒體 +- 影片 +- 影音 +- 播放器 +- 紀錄片 +- 綜藝 +- 連續劇 +- 電影 +- 電視劇 +PurchaseUrl: https://vip.iqiyi.com/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.yaml b/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.yaml new file mode 100644 index 0000000000000..d1107260e4462 --- /dev/null +++ b/manifests/i/iQIYI/iQIYI/13.6.5.9386/iQIYI.iQIYI.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: iQIYI.iQIYI +PackageVersion: 13.6.5.9386 +DefaultLocale: zh-CN +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.yaml b/manifests/i/iTop/iTopDataRecovery/5.2.0.832/iTop.iTopDataRecovery.yaml deleted file mode 100644 index ade83453d54fe..0000000000000 --- a/manifests/i/iTop/iTopDataRecovery/5.2.0.832/iTop.iTopDataRecovery.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/May/14 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: iTop.iTopDataRecovery -PackageVersion: 5.2.0.832 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/i/iTop/iTopDataRecovery/5.3.0.835/iTop.iTopDataRecovery.installer.yaml b/manifests/i/iTop/iTopDataRecovery/5.3.0.835/iTop.iTopDataRecovery.installer.yaml new file mode 100644 index 0000000000000..a28bcbd03b454 --- /dev/null +++ b/manifests/i/iTop/iTopDataRecovery/5.3.0.835/iTop.iTopDataRecovery.installer.yaml @@ -0,0 +1,13 @@ +# 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: iTop.iTopDataRecovery +PackageVersion: 5.3.0.835 +InstallerLocale: en-US +InstallerType: inno +Installers: +- Architecture: x86 + InstallerUrl: https://download.itopupdate.com/dl/itop-data-recovery-setup.exe + InstallerSha256: 841EF3232F5B576E765A5A77BECAC6BBDB0E1395D03173A4B8106034BC0E3EAA +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.3.0.835/iTop.iTopDataRecovery.locale.en-US.yaml similarity index 86% rename from manifests/i/iTop/iTopDataRecovery/5.2.0.832/iTop.iTopDataRecovery.locale.en-US.yaml rename to manifests/i/iTop/iTopDataRecovery/5.3.0.835/iTop.iTopDataRecovery.locale.en-US.yaml index e7e686c3f549f..47b5ac05f8c93 100644 --- a/manifests/i/iTop/iTopDataRecovery/5.2.0.832/iTop.iTopDataRecovery.locale.en-US.yaml +++ b/manifests/i/iTop/iTopDataRecovery/5.3.0.835/iTop.iTopDataRecovery.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/May/14 +# 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: iTop.iTopDataRecovery -PackageVersion: 5.2.0.832 +PackageVersion: 5.3.0.835 PackageLocale: en-US Publisher: iTop Inc. PublisherUrl: https://www.itopvpn.com/ diff --git a/manifests/i/iTop/iTopDataRecovery/5.3.0.835/iTop.iTopDataRecovery.yaml b/manifests/i/iTop/iTopDataRecovery/5.3.0.835/iTop.iTopDataRecovery.yaml new file mode 100644 index 0000000000000..4195ff09f6d32 --- /dev/null +++ b/manifests/i/iTop/iTopDataRecovery/5.3.0.835/iTop.iTopDataRecovery.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: iTop.iTopDataRecovery +PackageVersion: 5.3.0.835 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/iTop/iTopScreenRecorder/5.6.0.2972/iTop.iTopScreenRecorder.installer.yaml b/manifests/i/iTop/iTopScreenRecorder/5.6.0.2972/iTop.iTopScreenRecorder.installer.yaml deleted file mode 100644 index fca838dbb65d7..0000000000000 --- a/manifests/i/iTop/iTopScreenRecorder/5.6.0.2972/iTop.iTopScreenRecorder.installer.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically updated by the winget bot at 2025/Apr/30 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: iTop.iTopScreenRecorder -PackageVersion: 5.6.0.2972 -InstallerLocale: en-US -InstallerType: inno -Installers: -- Architecture: x64 - InstallerUrl: https://download.itopupdate.com/dl/itop-screen-recorder-setup.exe - InstallerSha256: 751A5A25670247BE4FA18BAFDEFB792C9FC75297D454E8FB9BBA2D936785A50B -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/i/iTop/iTopScreenRecorder/5.6.0.2972/iTop.iTopScreenRecorder.yaml b/manifests/i/iTop/iTopScreenRecorder/5.6.0.2972/iTop.iTopScreenRecorder.yaml deleted file mode 100644 index 74dca7c34d83f..0000000000000 --- a/manifests/i/iTop/iTopScreenRecorder/5.6.0.2972/iTop.iTopScreenRecorder.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Apr/30 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: iTop.iTopScreenRecorder -PackageVersion: 5.6.0.2972 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/i/iTop/iTopScreenRecorder/6.0.0.3395/iTop.iTopScreenRecorder.installer.yaml b/manifests/i/iTop/iTopScreenRecorder/6.0.0.3395/iTop.iTopScreenRecorder.installer.yaml new file mode 100644 index 0000000000000..bb329a4be15c9 --- /dev/null +++ b/manifests/i/iTop/iTopScreenRecorder/6.0.0.3395/iTop.iTopScreenRecorder.installer.yaml @@ -0,0 +1,13 @@ +# Automatically updated by the winget bot at 2025/Jun/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iTop.iTopScreenRecorder +PackageVersion: 6.0.0.3395 +InstallerLocale: en-US +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://download.itopupdate.com/dl/itop-screen-recorder-setup.exe + InstallerSha256: 24C2AF5C2A272AC18951AF50EA947E88F587CC1C674FF7169EE916619B5866C6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iTop/iTopScreenRecorder/5.6.0.2972/iTop.iTopScreenRecorder.locale.en-US.yaml b/manifests/i/iTop/iTopScreenRecorder/6.0.0.3395/iTop.iTopScreenRecorder.locale.en-US.yaml similarity index 86% rename from manifests/i/iTop/iTopScreenRecorder/5.6.0.2972/iTop.iTopScreenRecorder.locale.en-US.yaml rename to manifests/i/iTop/iTopScreenRecorder/6.0.0.3395/iTop.iTopScreenRecorder.locale.en-US.yaml index 75eb0631bb1cc..da093a24ff974 100644 --- a/manifests/i/iTop/iTopScreenRecorder/5.6.0.2972/iTop.iTopScreenRecorder.locale.en-US.yaml +++ b/manifests/i/iTop/iTopScreenRecorder/6.0.0.3395/iTop.iTopScreenRecorder.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Apr/30 +# Automatically updated by the winget bot at 2025/Jun/30 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: iTop.iTopScreenRecorder -PackageVersion: 5.6.0.2972 +PackageVersion: 6.0.0.3395 PackageLocale: en-US Publisher: iTop Inc. PublisherUrl: https://www.itopvpn.com/ diff --git a/manifests/i/iTop/iTopScreenRecorder/6.0.0.3395/iTop.iTopScreenRecorder.yaml b/manifests/i/iTop/iTopScreenRecorder/6.0.0.3395/iTop.iTopScreenRecorder.yaml new file mode 100644 index 0000000000000..5afe25ba4e7f3 --- /dev/null +++ b/manifests/i/iTop/iTopScreenRecorder/6.0.0.3395/iTop.iTopScreenRecorder.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jun/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iTop.iTopScreenRecorder +PackageVersion: 6.0.0.3395 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/itun2socks/1.28.8/igoogolx.itun2socks.installer.yaml b/manifests/i/igoogolx/itun2socks/1.28.8/igoogolx.itun2socks.installer.yaml deleted file mode 100644 index 53db562bf2d72..0000000000000 --- a/manifests/i/igoogolx/itun2socks/1.28.8/igoogolx.itun2socks.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with WinGet Releaser using komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: igoogolx.itun2socks -PackageVersion: 1.28.8 -InstallerType: zip -NestedInstallerType: portable -NestedInstallerFiles: -- RelativeFilePath: itun2socks.exe -ReleaseDate: 2025-06-10 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/igoogolx/itun2socks/releases/download/v1.28.8/itun2socks_1.28.8_windows_amd64.zip - InstallerSha256: 2F8E519CFAB30801C420A3B6A7CC4BC1F39055CC661ADEBFEC4AC1A3D55DD941 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/i/igoogolx/itun2socks/1.28.8/igoogolx.itun2socks.locale.en-US.yaml b/manifests/i/igoogolx/itun2socks/1.28.8/igoogolx.itun2socks.locale.en-US.yaml deleted file mode 100644 index 32d60bb421e7e..0000000000000 --- a/manifests/i/igoogolx/itun2socks/1.28.8/igoogolx.itun2socks.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with WinGet Releaser using komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: igoogolx.itun2socks -PackageVersion: 1.28.8 -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 - - 831ddb5 v1.28.8 (#90) - 🛡 VirusTotal GitHub Action analysis: - - itun2socks_1.28.8_darwin_amd64.zip - - itun2socks_1.28.8_darwin_arm64.zip - - itun2socks_1.28.8_windows_386.zip - - itun2socks_1.28.8_windows_amd64.zip - - itun2socks_1.28.8_windows_arm64.zip -ReleaseNotesUrl: https://github.com/igoogolx/itun2socks/releases/tag/v1.28.8 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/i/igoogolx/itun2socks/1.28.8/igoogolx.itun2socks.yaml b/manifests/i/igoogolx/itun2socks/1.28.8/igoogolx.itun2socks.yaml deleted file mode 100644 index 9763adeb8f7ab..0000000000000 --- a/manifests/i/igoogolx/itun2socks/1.28.8/igoogolx.itun2socks.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: igoogolx.itun2socks -PackageVersion: 1.28.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/i/igoogolx/itun2socks/1.28.9/igoogolx.itun2socks.installer.yaml b/manifests/i/igoogolx/itun2socks/1.28.9/igoogolx.itun2socks.installer.yaml new file mode 100644 index 0000000000000..6cfabc5145d04 --- /dev/null +++ b/manifests/i/igoogolx/itun2socks/1.28.9/igoogolx.itun2socks.installer.yaml @@ -0,0 +1,16 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: igoogolx.itun2socks +PackageVersion: 1.28.9 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: itun2socks.exe +ReleaseDate: 2025-06-28 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/igoogolx/itun2socks/releases/download/v1.28.9/itun2socks_1.28.9_windows_amd64.zip + InstallerSha256: 4CBAFCB369653B9F298AFC20710D5FAB3C9187BDA22FC763AEC22DAFC862B600 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/itun2socks/1.28.9/igoogolx.itun2socks.locale.en-US.yaml b/manifests/i/igoogolx/itun2socks/1.28.9/igoogolx.itun2socks.locale.en-US.yaml new file mode 100644 index 0000000000000..2a61613d0f993 --- /dev/null +++ b/manifests/i/igoogolx/itun2socks/1.28.9/igoogolx.itun2socks.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: igoogolx.itun2socks +PackageVersion: 1.28.9 +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 + - ee30c63 v1.28.9 (#93) + 🛡 VirusTotal GitHub Action analysis: + - itun2socks_1.28.9_darwin_amd64.zip + - itun2socks_1.28.9_darwin_arm64.zip + - itun2socks_1.28.9_windows_386.zip + - itun2socks_1.28.9_windows_amd64.zip + - itun2socks_1.28.9_windows_arm64.zip +ReleaseNotesUrl: https://github.com/igoogolx/itun2socks/releases/tag/v1.28.9 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/itun2socks/1.28.9/igoogolx.itun2socks.yaml b/manifests/i/igoogolx/itun2socks/1.28.9/igoogolx.itun2socks.yaml new file mode 100644 index 0000000000000..1696143f98824 --- /dev/null +++ b/manifests/i/igoogolx/itun2socks/1.28.9/igoogolx.itun2socks.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: igoogolx.itun2socks +PackageVersion: 1.28.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/itun2socks/1.29.0/igoogolx.itun2socks.installer.yaml b/manifests/i/igoogolx/itun2socks/1.29.0/igoogolx.itun2socks.installer.yaml new file mode 100644 index 0000000000000..605ab4204c3c9 --- /dev/null +++ b/manifests/i/igoogolx/itun2socks/1.29.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.29.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: itun2socks.exe +ReleaseDate: 2025-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/igoogolx/itun2socks/releases/download/v1.29.0/itun2socks_1.29.0_windows_amd64.zip + InstallerSha256: 7424A9F82856A604C46B978C9A8BA647A5C7A12BE92E3F27550B50604CBBD055 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/itun2socks/1.29.0/igoogolx.itun2socks.locale.en-US.yaml b/manifests/i/igoogolx/itun2socks/1.29.0/igoogolx.itun2socks.locale.en-US.yaml new file mode 100644 index 0000000000000..83a1b5afebe53 --- /dev/null +++ b/manifests/i/igoogolx/itun2socks/1.29.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.29.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 + - e8b3cb1 v1.29.0 (#94) + 🛡 VirusTotal GitHub Action analysis: + - itun2socks_1.29.0_darwin_amd64.zip + - itun2socks_1.29.0_darwin_arm64.zip + - itun2socks_1.29.0_windows_386.zip + - itun2socks_1.29.0_windows_amd64.zip + - itun2socks_1.29.0_windows_arm64.zip +ReleaseNotesUrl: https://github.com/igoogolx/itun2socks/releases/tag/v1.29.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/itun2socks/1.29.0/igoogolx.itun2socks.yaml b/manifests/i/igoogolx/itun2socks/1.29.0/igoogolx.itun2socks.yaml new file mode 100644 index 0000000000000..e41ee70389bcb --- /dev/null +++ b/manifests/i/igoogolx/itun2socks/1.29.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.29.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/itun2socks/1.29.1/igoogolx.itun2socks.installer.yaml b/manifests/i/igoogolx/itun2socks/1.29.1/igoogolx.itun2socks.installer.yaml new file mode 100644 index 0000000000000..5b4bf617aeb20 --- /dev/null +++ b/manifests/i/igoogolx/itun2socks/1.29.1/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.29.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: itun2socks.exe +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/igoogolx/itun2socks/releases/download/v1.29.1/itun2socks_1.29.1_windows_amd64.zip + InstallerSha256: 65C1E269F980BA58C3446DD97587D41E3BDD4048CA73A704F2EBC8F011ABFCC8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/itun2socks/1.29.1/igoogolx.itun2socks.locale.en-US.yaml b/manifests/i/igoogolx/itun2socks/1.29.1/igoogolx.itun2socks.locale.en-US.yaml new file mode 100644 index 0000000000000..b65d7f5e66ce7 --- /dev/null +++ b/manifests/i/igoogolx/itun2socks/1.29.1/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.29.1 +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 + - 622e8b4 v1.29.1 (#95) + 🛡 VirusTotal GitHub Action analysis: + - itun2socks_1.29.1_darwin_amd64.zip + - itun2socks_1.29.1_darwin_arm64.zip + - itun2socks_1.29.1_windows_386.zip + - itun2socks_1.29.1_windows_amd64.zip + - itun2socks_1.29.1_windows_arm64.zip +ReleaseNotesUrl: https://github.com/igoogolx/itun2socks/releases/tag/v1.29.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/itun2socks/1.29.1/igoogolx.itun2socks.yaml b/manifests/i/igoogolx/itun2socks/1.29.1/igoogolx.itun2socks.yaml new file mode 100644 index 0000000000000..94ee63ca65b22 --- /dev/null +++ b/manifests/i/igoogolx/itun2socks/1.29.1/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.29.1 +DefaultLocale: en-US +ManifestType: version +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/itun2socks/1.30.1/igoogolx.itun2socks.installer.yaml b/manifests/i/igoogolx/itun2socks/1.30.1/igoogolx.itun2socks.installer.yaml new file mode 100644 index 0000000000000..f8b5024111efa --- /dev/null +++ b/manifests/i/igoogolx/itun2socks/1.30.1/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.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: itun2socks.exe +ReleaseDate: 2025-07-09 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/igoogolx/itun2socks/releases/download/v1.30.1/itun2socks_1.30.1_windows_amd64.zip + InstallerSha256: EAA4F1BC31FB4F2C08A3BBE7B92DECA8371C634FF1641CEFD880F481DC5FF6CE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/itun2socks/1.30.1/igoogolx.itun2socks.locale.en-US.yaml b/manifests/i/igoogolx/itun2socks/1.30.1/igoogolx.itun2socks.locale.en-US.yaml new file mode 100644 index 0000000000000..9b92db7b4f579 --- /dev/null +++ b/manifests/i/igoogolx/itun2socks/1.30.1/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.1 +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 + - 27db87c Merge pull request #97 + 🛡 VirusTotal GitHub Action analysis: + - itun2socks_1.30.1_darwin_amd64.zip + - itun2socks_1.30.1_darwin_arm64.zip + - itun2socks_1.30.1_windows_386.zip + - itun2socks_1.30.1_windows_amd64.zip + - itun2socks_1.30.1_windows_arm64.zip +ReleaseNotesUrl: https://github.com/igoogolx/itun2socks/releases/tag/v1.30.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/itun2socks/1.30.1/igoogolx.itun2socks.yaml b/manifests/i/igoogolx/itun2socks/1.30.1/igoogolx.itun2socks.yaml new file mode 100644 index 0000000000000..2d60a039a6541 --- /dev/null +++ b/manifests/i/igoogolx/itun2socks/1.30.1/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.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/itun2socks/1.7.0/igoogolx.itun2socks.installer.yaml b/manifests/i/igoogolx/itun2socks/1.7.0/igoogolx.itun2socks.installer.yaml deleted file mode 100644 index 9c60a63fa608d..0000000000000 --- a/manifests/i/igoogolx/itun2socks/1.7.0/igoogolx.itun2socks.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: igoogolx.itun2socks -PackageVersion: 1.7.0 -InstallerType: zip -NestedInstallerType: portable -NestedInstallerFiles: -- RelativeFilePath: itun2socks.exe - PortableCommandAlias: itun2socks -ReleaseDate: 2024-06-16 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/igoogolx/itun2socks/releases/download/v1.7.0/itun2socks_1.7.0_windows_amd64.zip - InstallerSha256: 68520C861C7332100F1E71B3872780879FE185AD33CB8A86CD6AEBC7B504BC75 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/itun2socks/1.7.0/igoogolx.itun2socks.locale.en-US.yaml b/manifests/i/igoogolx/itun2socks/1.7.0/igoogolx.itun2socks.locale.en-US.yaml deleted file mode 100644 index 2ad5df2916271..0000000000000 --- a/manifests/i/igoogolx/itun2socks/1.7.0/igoogolx.itun2socks.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: igoogolx.itun2socks -PackageVersion: 1.7.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 License -LicenseUrl: https://github.com/igoogolx/itun2socks/blob/main/LICENSE -ShortDescription: tun proxy tool -ReleaseNotes: |- - Changelog - - 757f1a9 feat(Rule): full types - - 545aa9e feat(Rule): support process - - 1386bc3 feat: upgrade dashboard - - 842c81b fix(Rule): invalid dns for process rules - - b2abd2d fix(Rule): invalid process - - 6914412 fix(distribution): missing error handlers - - fbc52dc fix(log): unformatted logs - - 9143b60 refactor: remove unused code -ReleaseNotesUrl: https://github.com/igoogolx/itun2socks/releases/tag/v1.7.0 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/itun2socks/1.7.0/igoogolx.itun2socks.yaml b/manifests/i/igoogolx/itun2socks/1.7.0/igoogolx.itun2socks.yaml deleted file mode 100644 index d3b18d7cea0d3..0000000000000 --- a/manifests/i/igoogolx/itun2socks/1.7.0/igoogolx.itun2socks.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: igoogolx.itun2socks -PackageVersion: 1.7.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/itun2socks/1.8.2/igoogolx.itun2socks.installer.yaml b/manifests/i/igoogolx/itun2socks/1.8.2/igoogolx.itun2socks.installer.yaml deleted file mode 100644 index 62de3ad1ca4dc..0000000000000 --- a/manifests/i/igoogolx/itun2socks/1.8.2/igoogolx.itun2socks.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: igoogolx.itun2socks -PackageVersion: 1.8.2 -InstallerType: zip -NestedInstallerType: portable -NestedInstallerFiles: -- RelativeFilePath: itun2socks.exe - PortableCommandAlias: itun2socks -ReleaseDate: 2024-07-07 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/igoogolx/itun2socks/releases/download/v1.8.2/itun2socks_1.8.2_windows_amd64.zip - InstallerSha256: 2AB1494A0CF8F8400139DBB41B6C503B3B76DED1FE31B8CA52DB90B2FA166E78 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/itun2socks/1.8.2/igoogolx.itun2socks.locale.en-US.yaml b/manifests/i/igoogolx/itun2socks/1.8.2/igoogolx.itun2socks.locale.en-US.yaml deleted file mode 100644 index 542934d787a7a..0000000000000 --- a/manifests/i/igoogolx/itun2socks/1.8.2/igoogolx.itun2socks.locale.en-US.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: igoogolx.itun2socks -PackageVersion: 1.8.2 -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 License -LicenseUrl: https://github.com/igoogolx/itun2socks/blob/main/LICENSE -ShortDescription: tun proxy tool -ReleaseNotes: |- - Changelog - - 3193c72 feat: set the rule dynamically - - e732943 fix(rule): invalid dns type - - 208c69c fix: the number of connections is too small - - 0f1c7f0 refactor: improve logs - - 0e56c49 refactor: remove unused code - - d2c2d84 refactor: remove unused code - - d8cf7ac refactor: remove unused code - - 8d8665a refactor: remove unused code - - d38414c refactor: remove unused code - - 35453ec refactor: remove unused code -ReleaseNotesUrl: https://github.com/igoogolx/itun2socks/releases/tag/v1.8.2 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/itun2socks/1.8.2/igoogolx.itun2socks.yaml b/manifests/i/igoogolx/itun2socks/1.8.2/igoogolx.itun2socks.yaml deleted file mode 100644 index d69998bc98558..0000000000000 --- a/manifests/i/igoogolx/itun2socks/1.8.2/igoogolx.itun2socks.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: igoogolx.itun2socks -PackageVersion: 1.8.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/itun2socks/1.8.5/igoogolx.itun2socks.installer.yaml b/manifests/i/igoogolx/itun2socks/1.8.5/igoogolx.itun2socks.installer.yaml deleted file mode 100644 index e2bd97e7eee36..0000000000000 --- a/manifests/i/igoogolx/itun2socks/1.8.5/igoogolx.itun2socks.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: igoogolx.itun2socks -PackageVersion: 1.8.5 -InstallerType: zip -NestedInstallerType: portable -NestedInstallerFiles: -- RelativeFilePath: itun2socks.exe - PortableCommandAlias: itun2socks -ReleaseDate: 2024-07-07 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/igoogolx/itun2socks/releases/download/v1.8.5/itun2socks_1.8.5_windows_amd64.zip - InstallerSha256: 027984EA4D25265B74BC36E775BCE41E48F19F58BE40FBA1254CD5BEEEC98463 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/itun2socks/1.8.5/igoogolx.itun2socks.locale.en-US.yaml b/manifests/i/igoogolx/itun2socks/1.8.5/igoogolx.itun2socks.locale.en-US.yaml deleted file mode 100644 index 838179d4e58df..0000000000000 --- a/manifests/i/igoogolx/itun2socks/1.8.5/igoogolx.itun2socks.locale.en-US.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: igoogolx.itun2socks -PackageVersion: 1.8.5 -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 License -LicenseUrl: https://github.com/igoogolx/itun2socks/blob/main/LICENSE -ShortDescription: tun proxy tool -ReleaseNotes: |- - Changelog - - fd1e978 feat: upgrade dashboard -ReleaseNotesUrl: https://github.com/igoogolx/itun2socks/releases/tag/v1.8.5 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/itun2socks/1.8.5/igoogolx.itun2socks.yaml b/manifests/i/igoogolx/itun2socks/1.8.5/igoogolx.itun2socks.yaml deleted file mode 100644 index a661993293476..0000000000000 --- a/manifests/i/igoogolx/itun2socks/1.8.5/igoogolx.itun2socks.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: igoogolx.itun2socks -PackageVersion: 1.8.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/itun2socks/1.8.6/igoogolx.itun2socks.installer.yaml b/manifests/i/igoogolx/itun2socks/1.8.6/igoogolx.itun2socks.installer.yaml deleted file mode 100644 index 13b71f2e432c6..0000000000000 --- a/manifests/i/igoogolx/itun2socks/1.8.6/igoogolx.itun2socks.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: igoogolx.itun2socks -PackageVersion: 1.8.6 -InstallerType: zip -NestedInstallerType: portable -NestedInstallerFiles: -- RelativeFilePath: itun2socks.exe - PortableCommandAlias: itun2socks -ReleaseDate: 2024-07-07 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/igoogolx/itun2socks/releases/download/v1.8.6/itun2socks_1.8.6_windows_amd64.zip - InstallerSha256: 674BA588A97F8314D1DBE4A1550F3479613F47FBA71E8439FDFF92A8CA8719E8 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/itun2socks/1.8.6/igoogolx.itun2socks.locale.en-US.yaml b/manifests/i/igoogolx/itun2socks/1.8.6/igoogolx.itun2socks.locale.en-US.yaml deleted file mode 100644 index 21cbdff1ef296..0000000000000 --- a/manifests/i/igoogolx/itun2socks/1.8.6/igoogolx.itun2socks.locale.en-US.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: igoogolx.itun2socks -PackageVersion: 1.8.6 -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 License -LicenseUrl: https://github.com/igoogolx/itun2socks/blob/main/LICENSE -ShortDescription: tun proxy tool -ReleaseNotes: |- - Changelog - - ed8a453 refactor: improve logs -ReleaseNotesUrl: https://github.com/igoogolx/itun2socks/releases/tag/v1.8.6 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/itun2socks/1.8.6/igoogolx.itun2socks.yaml b/manifests/i/igoogolx/itun2socks/1.8.6/igoogolx.itun2socks.yaml deleted file mode 100644 index fb672a21aef62..0000000000000 --- a/manifests/i/igoogolx/itun2socks/1.8.6/igoogolx.itun2socks.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: igoogolx.itun2socks -PackageVersion: 1.8.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/lux/1.33.0/igoogolx.lux.installer.yaml b/manifests/i/igoogolx/lux/1.33.0/igoogolx.lux.installer.yaml deleted file mode 100644 index 658c682df161c..0000000000000 --- a/manifests/i/igoogolx/lux/1.33.0/igoogolx.lux.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with WinGet Releaser using komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: igoogolx.lux -PackageVersion: 1.33.0 -InstallerLocale: en-US -InstallerType: inno -Scope: machine -ProductCode: 80DF132E-434A-4DAB-9BC8-48A79C8383B9_is1 -ReleaseDate: 2025-05-19 -AppsAndFeaturesEntries: -- ProductCode: 80DF132E-434A-4DAB-9BC8-48A79C8383B9_is1 -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\lux' -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/igoogolx/lux/releases/download/v1.33.0/lux-1.33.0-x64-windows.exe - InstallerSha256: 4B5795A17FE5548DB3CAB9CD5D071927A50D5B02867F3706294ACB936D9E6D73 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/i/igoogolx/lux/1.33.0/igoogolx.lux.locale.en-US.yaml b/manifests/i/igoogolx/lux/1.33.0/igoogolx.lux.locale.en-US.yaml deleted file mode 100644 index f2b5c1cf5be05..0000000000000 --- a/manifests/i/igoogolx/lux/1.33.0/igoogolx.lux.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with WinGet Releaser using komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: igoogolx.lux -PackageVersion: 1.33.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 - Breaking changes - feat: remove system network stack - Bug fixes 🐛 - - fix: core file privilege escalation vulnerability - Other changes - - perf: reduce memory usage on macOS - 🛡 VirusTotal GitHub Action analysis: - - lux-1.33.0-amd64-macos.dmg - - lux-1.33.0-arm64-macos.dmg - - lux-1.33.0-x64-windows.exe -ReleaseNotesUrl: https://github.com/igoogolx/lux/releases/tag/v1.33.0 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/i/igoogolx/lux/1.33.0/igoogolx.lux.yaml b/manifests/i/igoogolx/lux/1.33.0/igoogolx.lux.yaml deleted file mode 100644 index 9b36d040923c3..0000000000000 --- a/manifests/i/igoogolx/lux/1.33.0/igoogolx.lux.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: igoogolx.lux -PackageVersion: 1.33.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/i/igoogolx/lux/1.33.1/igoogolx.lux.installer.yaml b/manifests/i/igoogolx/lux/1.33.1/igoogolx.lux.installer.yaml deleted file mode 100644 index e3b859b1af163..0000000000000 --- a/manifests/i/igoogolx/lux/1.33.1/igoogolx.lux.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with WinGet Releaser using komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: igoogolx.lux -PackageVersion: 1.33.1 -InstallerLocale: en-US -InstallerType: inno -Scope: machine -ProductCode: 80DF132E-434A-4DAB-9BC8-48A79C8383B9_is1 -ReleaseDate: 2025-06-07 -AppsAndFeaturesEntries: -- ProductCode: 80DF132E-434A-4DAB-9BC8-48A79C8383B9_is1 -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\lux' -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/igoogolx/lux/releases/download/v1.33.1/lux-1.33.1-x64-windows.exe - InstallerSha256: 0FFDE3345656082AA4F2D37129F333700040ABC5FBBA9BFEB10A39006959812E -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/i/igoogolx/lux/1.33.1/igoogolx.lux.locale.en-US.yaml b/manifests/i/igoogolx/lux/1.33.1/igoogolx.lux.locale.en-US.yaml deleted file mode 100644 index 3ee9d25d34bfd..0000000000000 --- a/manifests/i/igoogolx/lux/1.33.1/igoogolx.lux.locale.en-US.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Created with WinGet Releaser using komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: igoogolx.lux -PackageVersion: 1.33.1 -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 - Breaking changes - - feat: remove dhcp dns client - Bug fixes 🐛 - - fix: CORS security vulnerability - Other changes - - chore: update dependencies - - perf: reduce memory usage - 🛡 VirusTotal GitHub Action analysis: - - lux-1.33.1-amd64-macos.dmg - - lux-1.33.1-arm64-macos.dmg - - lux-1.33.1-x64-windows.exe -ReleaseNotesUrl: https://github.com/igoogolx/lux/releases/tag/v1.33.1 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/i/igoogolx/lux/1.33.1/igoogolx.lux.yaml b/manifests/i/igoogolx/lux/1.33.1/igoogolx.lux.yaml deleted file mode 100644 index 59d835231e6a5..0000000000000 --- a/manifests/i/igoogolx/lux/1.33.1/igoogolx.lux.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: igoogolx.lux -PackageVersion: 1.33.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/i/igoogolx/lux/1.33.2/igoogolx.lux.installer.yaml b/manifests/i/igoogolx/lux/1.33.2/igoogolx.lux.installer.yaml new file mode 100644 index 0000000000000..3a7479bf1fd6a --- /dev/null +++ b/manifests/i/igoogolx/lux/1.33.2/igoogolx.lux.installer.yaml @@ -0,0 +1,20 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: igoogolx.lux +PackageVersion: 1.33.2 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +ProductCode: 80DF132E-434A-4DAB-9BC8-48A79C8383B9_is1 +ReleaseDate: 2025-06-28 +AppsAndFeaturesEntries: +- ProductCode: 80DF132E-434A-4DAB-9BC8-48A79C8383B9_is1 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\lux' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/igoogolx/lux/releases/download/v1.33.2/lux-1.33.2-x64-windows.exe + InstallerSha256: 7477823D8D3C36064567E7B5D12CCC60E384F906D372F27612686DC0E2568EFE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/lux/1.33.2/igoogolx.lux.locale.en-US.yaml b/manifests/i/igoogolx/lux/1.33.2/igoogolx.lux.locale.en-US.yaml new file mode 100644 index 0000000000000..4e1a0ff3e9f7c --- /dev/null +++ b/manifests/i/igoogolx/lux/1.33.2/igoogolx.lux.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: igoogolx.lux +PackageVersion: 1.33.2 +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 changes + - feat: update UI of nav + Bug fixes 🐛 + - fix: timeout for init core + Other changes + - chore: update dependencies + 🛡 VirusTotal GitHub Action analysis: + - lux-1.33.2-amd64-macos.dmg + - lux-1.33.2-arm64-macos.dmg + - lux-1.33.2-x64-windows.exe +ReleaseNotesUrl: https://github.com/igoogolx/lux/releases/tag/v1.33.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/lux/1.33.2/igoogolx.lux.yaml b/manifests/i/igoogolx/lux/1.33.2/igoogolx.lux.yaml new file mode 100644 index 0000000000000..e2996dbbfb72b --- /dev/null +++ b/manifests/i/igoogolx/lux/1.33.2/igoogolx.lux.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: igoogolx.lux +PackageVersion: 1.33.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/lux/1.34.0/igoogolx.lux.installer.yaml b/manifests/i/igoogolx/lux/1.34.0/igoogolx.lux.installer.yaml new file mode 100644 index 0000000000000..d8db2259e9c51 --- /dev/null +++ b/manifests/i/igoogolx/lux/1.34.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.34.0 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +ProductCode: 80DF132E-434A-4DAB-9BC8-48A79C8383B9_is1 +ReleaseDate: 2025-06-30 +AppsAndFeaturesEntries: +- ProductCode: 80DF132E-434A-4DAB-9BC8-48A79C8383B9_is1 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\lux' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/igoogolx/lux/releases/download/v1.34.0/lux-1.34.0-x64-windows.exe + InstallerSha256: C1E30B0EE29FF5E60D313758266C664500E612BD229BFB65B6EE5C51F31909F8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/lux/1.34.0/igoogolx.lux.locale.en-US.yaml b/manifests/i/igoogolx/lux/1.34.0/igoogolx.lux.locale.en-US.yaml new file mode 100644 index 0000000000000..22a6fd1fe667b --- /dev/null +++ b/manifests/i/igoogolx/lux/1.34.0/igoogolx.lux.locale.en-US.yaml @@ -0,0 +1,36 @@ +# 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.34.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: mixed mode + Other changes + - chore: update dependencies + 🛡 VirusTotal GitHub Action analysis: + - lux-1.34.0-amd64-macos.dmg + - lux-1.34.0-arm64-macos.dmg + - lux-1.34.0-x64-windows.exe +ReleaseNotesUrl: https://github.com/igoogolx/lux/releases/tag/v1.34.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/lux/1.34.0/igoogolx.lux.yaml b/manifests/i/igoogolx/lux/1.34.0/igoogolx.lux.yaml new file mode 100644 index 0000000000000..7c321b61bfa8a --- /dev/null +++ b/manifests/i/igoogolx/lux/1.34.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.34.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/lux/1.34.1/igoogolx.lux.installer.yaml b/manifests/i/igoogolx/lux/1.34.1/igoogolx.lux.installer.yaml new file mode 100644 index 0000000000000..c037618e2fbcb --- /dev/null +++ b/manifests/i/igoogolx/lux/1.34.1/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.34.1 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +ProductCode: 80DF132E-434A-4DAB-9BC8-48A79C8383B9_is1 +ReleaseDate: 2025-07-04 +AppsAndFeaturesEntries: +- ProductCode: 80DF132E-434A-4DAB-9BC8-48A79C8383B9_is1 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\lux' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/igoogolx/lux/releases/download/v1.34.1/lux-1.34.1-x64-windows.exe + InstallerSha256: ED9F7C573BEF2ED008C0DF17D2C0078E44AB957B1C9B5D2E67CADD7431701F3C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/lux/1.34.1/igoogolx.lux.locale.en-US.yaml b/manifests/i/igoogolx/lux/1.34.1/igoogolx.lux.locale.en-US.yaml new file mode 100644 index 0000000000000..92d4c7446a657 --- /dev/null +++ b/manifests/i/igoogolx/lux/1.34.1/igoogolx.lux.locale.en-US.yaml @@ -0,0 +1,36 @@ +# 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.34.1 +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: update default mode to mixed + Other changes + - fix: System Proxy is not reset correctly + 🛡 VirusTotal GitHub Action analysis: + - lux-1.34.1-amd64-macos.dmg + - lux-1.34.1-arm64-macos.dmg + - lux-1.34.1-x64-windows.exe +ReleaseNotesUrl: https://github.com/igoogolx/lux/releases/tag/v1.34.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/lux/1.34.1/igoogolx.lux.yaml b/manifests/i/igoogolx/lux/1.34.1/igoogolx.lux.yaml new file mode 100644 index 0000000000000..062be84ad44d1 --- /dev/null +++ b/manifests/i/igoogolx/lux/1.34.1/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.34.1 +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/i/igoogolx/lux/1.35.1/igoogolx.lux.installer.yaml b/manifests/i/igoogolx/lux/1.35.1/igoogolx.lux.installer.yaml new file mode 100644 index 0000000000000..c973a3040c41b --- /dev/null +++ b/manifests/i/igoogolx/lux/1.35.1/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.1 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +ProductCode: 80DF132E-434A-4DAB-9BC8-48A79C8383B9_is1 +ReleaseDate: 2025-07-09 +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.1/lux-1.35.1-x64-windows.exe + InstallerSha256: AF9B05D7CFD7D4361B204662CE16BD1BF9F51A00579C51A0538064B045C504E0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/lux/1.35.1/igoogolx.lux.locale.en-US.yaml b/manifests/i/igoogolx/lux/1.35.1/igoogolx.lux.locale.en-US.yaml new file mode 100644 index 0000000000000..ea4dde7e140b9 --- /dev/null +++ b/manifests/i/igoogolx/lux/1.35.1/igoogolx.lux.locale.en-US.yaml @@ -0,0 +1,34 @@ +# 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.1 +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 + Bug fixes 🐛 + - fix: fail to check for update + 🛡 VirusTotal GitHub Action analysis: + - lux-1.35.1-amd64-macos.dmg + - lux-1.35.1-arm64-macos.dmg + - lux-1.35.1-x64-windows.exe +ReleaseNotesUrl: https://github.com/igoogolx/lux/releases/tag/v1.35.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/lux/1.35.1/igoogolx.lux.yaml b/manifests/i/igoogolx/lux/1.35.1/igoogolx.lux.yaml new file mode 100644 index 0000000000000..36a4e11a17838 --- /dev/null +++ b/manifests/i/igoogolx/lux/1.35.1/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.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/igoogolx/lux/1.5.3/igoogolx.lux.installer.yaml b/manifests/i/igoogolx/lux/1.5.3/igoogolx.lux.installer.yaml deleted file mode 100644 index 947ce9fcfb153..0000000000000 --- a/manifests/i/igoogolx/lux/1.5.3/igoogolx.lux.installer.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: igoogolx.lux -PackageVersion: 1.5.3 -InstallerType: inno -ReleaseDate: 2024-05-09 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/igoogolx/lux/releases/download/v1.5.3/lux-1.5.3+1.5.3-windows-setup.exe - InstallerSha256: B3B15A3CBC63C85BA05E4FA8594BDDFFDABF25C1F561793D3FEEDE486FB3218D -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/lux/1.5.3/igoogolx.lux.locale.en-US.yaml b/manifests/i/igoogolx/lux/1.5.3/igoogolx.lux.locale.en-US.yaml deleted file mode 100644 index 006f93868d9eb..0000000000000 --- a/manifests/i/igoogolx/lux/1.5.3/igoogolx.lux.locale.en-US.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: igoogolx.lux -PackageVersion: 1.5.3 -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/main/LICENSE -Copyright: Copyright © 2022 igoogolx -ShortDescription: A system network proxy tool -ReleaseNotesUrl: https://github.com/igoogolx/lux/releases/tag/v1.5.3 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/lux/1.5.3/igoogolx.lux.yaml b/manifests/i/igoogolx/lux/1.5.3/igoogolx.lux.yaml deleted file mode 100644 index 53a3fc9374105..0000000000000 --- a/manifests/i/igoogolx/lux/1.5.3/igoogolx.lux.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: igoogolx.lux -PackageVersion: 1.5.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/lux/1.5.4/igoogolx.lux.installer.yaml b/manifests/i/igoogolx/lux/1.5.4/igoogolx.lux.installer.yaml deleted file mode 100644 index 91c12e7702eab..0000000000000 --- a/manifests/i/igoogolx/lux/1.5.4/igoogolx.lux.installer.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: igoogolx.lux -PackageVersion: 1.5.4 -InstallerType: inno -ReleaseDate: 2024-06-12 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/igoogolx/lux/releases/download/v1.5.4/lux-1.5.4+1.5.4-windows-setup.exe - InstallerSha256: 1DB35FB823A8837E09685BD49F674E54BAC21300635E447D7FE2CEAA47C23AE3 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/lux/1.5.4/igoogolx.lux.locale.en-US.yaml b/manifests/i/igoogolx/lux/1.5.4/igoogolx.lux.locale.en-US.yaml deleted file mode 100644 index f1512246d148c..0000000000000 --- a/manifests/i/igoogolx/lux/1.5.4/igoogolx.lux.locale.en-US.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: igoogolx.lux -PackageVersion: 1.5.4 -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/main/LICENSE -Copyright: Copyright © 2022 igoogolx -ShortDescription: A system network proxy tool -ReleaseNotesUrl: https://github.com/igoogolx/lux/releases/tag/v1.5.4 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/lux/1.5.4/igoogolx.lux.yaml b/manifests/i/igoogolx/lux/1.5.4/igoogolx.lux.yaml deleted file mode 100644 index e22a0d101524a..0000000000000 --- a/manifests/i/igoogolx/lux/1.5.4/igoogolx.lux.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: igoogolx.lux -PackageVersion: 1.5.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/lux/1.7.0/igoogolx.lux.installer.yaml b/manifests/i/igoogolx/lux/1.7.0/igoogolx.lux.installer.yaml deleted file mode 100644 index 24b616593ed5c..0000000000000 --- a/manifests/i/igoogolx/lux/1.7.0/igoogolx.lux.installer.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: igoogolx.lux -PackageVersion: 1.7.0 -InstallerType: inno -ReleaseDate: 2024-07-06 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/igoogolx/lux/releases/download/v1.7.0/lux-1.7.0+1.7.0-windows-setup.exe - InstallerSha256: 51B102114916383FF6AB937C73A4881C2FDFD6224EF4B1AC8CEEAC66C10155D8 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/lux/1.7.0/igoogolx.lux.locale.en-US.yaml b/manifests/i/igoogolx/lux/1.7.0/igoogolx.lux.locale.en-US.yaml deleted file mode 100644 index 92b1b1b472957..0000000000000 --- a/manifests/i/igoogolx/lux/1.7.0/igoogolx.lux.locale.en-US.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: igoogolx.lux -PackageVersion: 1.7.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/main/LICENSE -Copyright: Copyright © 2022 igoogolx -ShortDescription: A system network proxy tool -ReleaseNotes: |- - - Fix: blocking dns - - Fix: the max number of connections is too small -ReleaseNotesUrl: https://github.com/igoogolx/lux/releases/tag/v1.7.0 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/i/igoogolx/lux/1.7.0/igoogolx.lux.yaml b/manifests/i/igoogolx/lux/1.7.0/igoogolx.lux.yaml deleted file mode 100644 index 2eccda402ca03..0000000000000 --- a/manifests/i/igoogolx/lux/1.7.0/igoogolx.lux.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: igoogolx.lux -PackageVersion: 1.7.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/i/infisical/infisical/0.41.86/infisical.infisical.installer.yaml b/manifests/i/infisical/infisical/0.41.86/infisical.infisical.installer.yaml new file mode 100644 index 0000000000000..2551c13320b9b --- /dev/null +++ b/manifests/i/infisical/infisical/0.41.86/infisical.infisical.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.6.0.schema.json +PackageIdentifier: infisical.infisical +PackageVersion: 0.41.86 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-06-24" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: infisical.exe + PortableCommandAlias: infisical + InstallerUrl: https://github.com/Infisical/infisical/releases/download/infisical-cli/v0.41.86/infisical_0.41.86_windows_arm64.zip + InstallerSha256: 786c2922a4341d8dedd9f86fe66d51144b31c33c17a03883c12c59b8c0028806 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: infisical.exe + PortableCommandAlias: infisical + InstallerUrl: https://github.com/Infisical/infisical/releases/download/infisical-cli/v0.41.86/infisical_0.41.86_windows_amd64.zip + InstallerSha256: 8c84cac624b6afe1aa772a1406a6a6e3f8b0e4b93fc669cc1e6b8f8950a42ee0 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/i/infisical/infisical/0.41.86/infisical.infisical.locale.en-US.yaml b/manifests/i/infisical/infisical/0.41.86/infisical.infisical.locale.en-US.yaml new file mode 100644 index 0000000000000..3e4cf3ffadc06 --- /dev/null +++ b/manifests/i/infisical/infisical/0.41.86/infisical.infisical.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: infisical.infisical +PackageVersion: 0.41.86 +PackageLocale: en-US +Publisher: infisical +PackageName: infisical +PackageUrl: https://infisical.com +License: MIT +ShortDescription: The official Infisical CLI +Moniker: infisical +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/i/infisical/infisical/0.41.86/infisical.infisical.yaml b/manifests/i/infisical/infisical/0.41.86/infisical.infisical.yaml new file mode 100644 index 0000000000000..176004037f155 --- /dev/null +++ b/manifests/i/infisical/infisical/0.41.86/infisical.infisical.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.6.0.schema.json +PackageIdentifier: infisical.infisical +PackageVersion: 0.41.86 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/i/infisical/infisical/0.41.88/infisical.infisical.installer.yaml b/manifests/i/infisical/infisical/0.41.88/infisical.infisical.installer.yaml new file mode 100644 index 0000000000000..2ab33e706beb8 --- /dev/null +++ b/manifests/i/infisical/infisical/0.41.88/infisical.infisical.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.6.0.schema.json +PackageIdentifier: infisical.infisical +PackageVersion: 0.41.88 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-02" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: infisical.exe + PortableCommandAlias: infisical + InstallerUrl: https://github.com/Infisical/infisical/releases/download/infisical-cli/v0.41.88/infisical_0.41.88_windows_arm64.zip + InstallerSha256: 06dcb448ec6388bf45d128a6e5bc18984016b76c4f0409812960c6d0e925dc45 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: infisical.exe + PortableCommandAlias: infisical + InstallerUrl: https://github.com/Infisical/infisical/releases/download/infisical-cli/v0.41.88/infisical_0.41.88_windows_amd64.zip + InstallerSha256: 416667c596e4ac8a570944cec67533420f3fb44446472faec0af45043e597169 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/i/infisical/infisical/0.41.88/infisical.infisical.locale.en-US.yaml b/manifests/i/infisical/infisical/0.41.88/infisical.infisical.locale.en-US.yaml new file mode 100644 index 0000000000000..89cd74a4f66e8 --- /dev/null +++ b/manifests/i/infisical/infisical/0.41.88/infisical.infisical.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: infisical.infisical +PackageVersion: 0.41.88 +PackageLocale: en-US +Publisher: infisical +PackageName: infisical +PackageUrl: https://infisical.com +License: MIT +ShortDescription: The official Infisical CLI +Moniker: infisical +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/i/infisical/infisical/0.41.88/infisical.infisical.yaml b/manifests/i/infisical/infisical/0.41.88/infisical.infisical.yaml new file mode 100644 index 0000000000000..d31650ab67e52 --- /dev/null +++ b/manifests/i/infisical/infisical/0.41.88/infisical.infisical.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.6.0.schema.json +PackageIdentifier: infisical.infisical +PackageVersion: 0.41.88 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/i/infisical/infisical/0.41.89/infisical.infisical.installer.yaml b/manifests/i/infisical/infisical/0.41.89/infisical.infisical.installer.yaml new file mode 100644 index 0000000000000..08d92a931d37a --- /dev/null +++ b/manifests/i/infisical/infisical/0.41.89/infisical.infisical.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.6.0.schema.json +PackageIdentifier: infisical.infisical +PackageVersion: 0.41.89 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-04" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: infisical.exe + PortableCommandAlias: infisical + InstallerUrl: https://github.com/Infisical/infisical/releases/download/infisical-cli/v0.41.89/infisical_0.41.89_windows_arm64.zip + InstallerSha256: e793e88d14abae49652bca3e9cee54356a9e2b5a5f055911d12c9b0e650c19c5 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: infisical.exe + PortableCommandAlias: infisical + InstallerUrl: https://github.com/Infisical/infisical/releases/download/infisical-cli/v0.41.89/infisical_0.41.89_windows_amd64.zip + InstallerSha256: 495274562c359f2bc5b0eaf93dec0a8afdccb51263229e7c5ebf1ec5072ff026 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/i/infisical/infisical/0.41.89/infisical.infisical.locale.en-US.yaml b/manifests/i/infisical/infisical/0.41.89/infisical.infisical.locale.en-US.yaml new file mode 100644 index 0000000000000..670e2614228ae --- /dev/null +++ b/manifests/i/infisical/infisical/0.41.89/infisical.infisical.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: infisical.infisical +PackageVersion: 0.41.89 +PackageLocale: en-US +Publisher: infisical +PackageName: infisical +PackageUrl: https://infisical.com +License: MIT +ShortDescription: The official Infisical CLI +Moniker: infisical +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/i/infisical/infisical/0.41.89/infisical.infisical.yaml b/manifests/i/infisical/infisical/0.41.89/infisical.infisical.yaml new file mode 100644 index 0000000000000..3794af1848e63 --- /dev/null +++ b/manifests/i/infisical/infisical/0.41.89/infisical.infisical.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.6.0.schema.json +PackageIdentifier: infisical.infisical +PackageVersion: 0.41.89 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/j/JAMSoftware/TreeSize/9.5.1/JAMSoftware.TreeSize.installer.yaml b/manifests/j/JAMSoftware/TreeSize/9.5.1/JAMSoftware.TreeSize.installer.yaml new file mode 100644 index 0000000000000..dc165dd3884ef --- /dev/null +++ b/manifests/j/JAMSoftware/TreeSize/9.5.1/JAMSoftware.TreeSize.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: JAMSoftware.TreeSize +PackageVersion: 9.5.1 +InstallerLocale: en-US +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: TreeSize_is1 +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.jam-software.de/treesize/archive/v9.5.1.2105/TreeSize-Setup.exe + InstallerSha256: 87A4B3181BEE040095FF1F22BEF00DE8C5C9C729C820345A439B063EB92D2816 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/j/JAMSoftware/TreeSize/9.5.1/JAMSoftware.TreeSize.locale.en-US.yaml b/manifests/j/JAMSoftware/TreeSize/9.5.1/JAMSoftware.TreeSize.locale.en-US.yaml new file mode 100644 index 0000000000000..ed3726614d868 --- /dev/null +++ b/manifests/j/JAMSoftware/TreeSize/9.5.1/JAMSoftware.TreeSize.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: JAMSoftware.TreeSize +PackageVersion: 9.5.1 +PackageLocale: en-US +Publisher: JAM Software +PublisherUrl: https://www.jam-software.com +PublisherSupportUrl: https://knowledgebase.jam-software.com +PrivacyUrl: https://www.jam-software.com/company/privacy.shtml +Author: JAM Software +PackageName: TreeSize +PackageUrl: https://www.jam-software.com/treesize +License: Proprietary +LicenseUrl: https://www.jam-software.com/company/license_agreement.shtml +Copyright: © 1996-2025 by Joachim Marder e.K. +CopyrightUrl: https://www.jam-software.com/company/license_agreement.shtml +ShortDescription: With TreeSize, you can analyze your most important storage systems and directly manage and clean up your files. +Description: With TreeSize, you can analyze your most important storage systems and directly manage and clean up your files. +Moniker: treesize +Tags: +- disk-space-available +- harddisk +- harddrive +- system-size-management +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/j/JAMSoftware/TreeSize/9.5.1/JAMSoftware.TreeSize.yaml b/manifests/j/JAMSoftware/TreeSize/9.5.1/JAMSoftware.TreeSize.yaml new file mode 100644 index 0000000000000..d61fe41e5aa88 --- /dev/null +++ b/manifests/j/JAMSoftware/TreeSize/9.5.1/JAMSoftware.TreeSize.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: JAMSoftware.TreeSize +PackageVersion: 9.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/j/JAMSoftware/UltraSearch/4.8/JAMSoftware.UltraSearch.installer.yaml b/manifests/j/JAMSoftware/UltraSearch/4.8/JAMSoftware.UltraSearch.installer.yaml new file mode 100644 index 0000000000000..08f0c82710a75 --- /dev/null +++ b/manifests/j/JAMSoftware/UltraSearch/4.8/JAMSoftware.UltraSearch.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: JAMSoftware.UltraSearch +PackageVersion: "4.8" +InstallerLocale: en-US +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: UltraSearch_is1 +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.jam-software.de/ultrasearch/archive/v4.8.0.1178/UltraSearch-Setup.exe + InstallerSha256: 0F8E7E2C002E4830E947F2EE5D998CDF8DC806BCFF91FFE3761455D09420B053 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/j/JAMSoftware/UltraSearch/4.8/JAMSoftware.UltraSearch.locale.en-US.yaml b/manifests/j/JAMSoftware/UltraSearch/4.8/JAMSoftware.UltraSearch.locale.en-US.yaml new file mode 100644 index 0000000000000..345f899a6e390 --- /dev/null +++ b/manifests/j/JAMSoftware/UltraSearch/4.8/JAMSoftware.UltraSearch.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: JAMSoftware.UltraSearch +PackageVersion: "4.8" +PackageLocale: en-US +Publisher: JAM Software +PublisherUrl: https://www.jam-software.com +PublisherSupportUrl: https://knowledgebase.jam-software.com +PrivacyUrl: https://www.jam-software.com/company/privacy.shtml +Author: JAM Software +PackageName: UltraSearch +PackageUrl: https://www.jam-software.com/ultrasearch_professional +License: Proprietary +LicenseUrl: https://www.jam-software.com/company/license_agreement.shtml +Copyright: © 1996-2025 by Joachim Marder e.K. +CopyrightUrl: https://www.jam-software.com/company/license_agreement.shtml +ShortDescription: UltraSearch Setup +Description: Find what you need in seconds. UltraSearch finds your files and documents on all your connected hard drives and network drives. Search by file type, document content or file properties. Get your valuable time back and let UltraSearch do the searching for you. +Moniker: ultrasearch +Tags: +- search +- file-search +- fast-search +- harddisk +- harddrive +- system-size-management +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/j/JAMSoftware/UltraSearch/4.8/JAMSoftware.UltraSearch.yaml b/manifests/j/JAMSoftware/UltraSearch/4.8/JAMSoftware.UltraSearch.yaml new file mode 100644 index 0000000000000..46b6c93b868c1 --- /dev/null +++ b/manifests/j/JAMSoftware/UltraSearch/4.8/JAMSoftware.UltraSearch.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: JAMSoftware.UltraSearch +PackageVersion: "4.8" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/j/JFrog/Conan/2.18.0/JFrog.Conan.installer.yaml b/manifests/j/JFrog/Conan/2.18.0/JFrog.Conan.installer.yaml new file mode 100644 index 0000000000000..4e6ea0e35648c --- /dev/null +++ b/manifests/j/JFrog/Conan/2.18.0/JFrog.Conan.installer.yaml @@ -0,0 +1,37 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: JFrog.Conan +PackageVersion: 2.18.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Custom: /ALLUSERS +UpgradeBehavior: install +ProductCode: Conan Package Manager_is1 +ReleaseDate: 2025-06-30 +AppsAndFeaturesEntries: +- ProductCode: Conan Package Manager_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '{code:DefDirRoot}\Conan' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/conan-io/conan/releases/download/2.18.0/conan-2.18.0-windows-i686-installer.exe + InstallerSha256: 8ED765045A9E6C95B0A7E8E3903CB481D6B3C53B6D1CAFDA3DB68E3DDE625719 + InstallerSwitches: + Custom: /ALLUSERS +- Architecture: x64 + InstallerUrl: https://github.com/conan-io/conan/releases/download/2.18.0/conan-2.18.0-windows-x86_64-installer.exe + InstallerSha256: 1A182A35D231BDB70D2046DE955BA52135B882198024AFAF41EFCB9F4A7A7952 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JFrog/Conan/2.18.0/JFrog.Conan.locale.en-US.yaml b/manifests/j/JFrog/Conan/2.18.0/JFrog.Conan.locale.en-US.yaml new file mode 100644 index 0000000000000..0e782bd66ea9d --- /dev/null +++ b/manifests/j/JFrog/Conan/2.18.0/JFrog.Conan.locale.en-US.yaml @@ -0,0 +1,80 @@ +# Created with komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: JFrog.Conan +PackageVersion: 2.18.0 +PackageLocale: en-US +Publisher: JFrog +PublisherUrl: https://conan.io/ +PublisherSupportUrl: https://github.com/conan-io/conan/issues +PrivacyUrl: https://conan.io/privacy-policy.html +PackageName: Conan Package Manager +PackageUrl: https://conan.io/ +License: MIT +LicenseUrl: https://github.com/conan-io/conan/blob/HEAD/LICENSE.md +Copyright: Copyright (c) JFrog LTD +CopyrightUrl: https://raw.githubusercontent.com/conan-io/conan/develop/LICENSE.md +ShortDescription: An open source, decentralized package manager, to automate building and sharing of packages +Tags: +- c +- c++ +- cmake +- conan +- multi-platform +- open-source +- package-manager +ReleaseNotes: |- + - Feature: Allow consuming meson libname.a libs in MSBuildDeps. (#18557) + - Feature: Avoid library renames when using Meson + MSVC + static builds. (#18533) + - Feature: Added threads subsetting in emcc compiler model. (#18520). Docs: 📃 + - Feature: New conan cache ref to reverse look the Conan cache, with a path argument will return the reference of the artifact in that folder. Intended exclusively for debugging purposes. (#18518). Docs: 📃 + - Feature: New linker flags autodetected by conan based on profile architecture. (#18498) + - Feature: Changed conanws.yml format. Now, packages is a list of dict-like objects. (#18493). Docs: 📃 + - Feature: Added support for .exe in editables packages in CMakeConfigDeps. (#18489) + - Feature: Add build_folder parameter in basic_layout. (#18442). Docs: 📃 + - Feature: Using pkg_config_name = 'none' to skip the *.pc file creation. (#18439). Docs: 📃 + - Feature: Add support for sbom and lockfiles to conan audit list. (#18437). Docs: 📃 + - Feature: Added first class citizen emscripten support (new wasm64 architecture + emcc). (#18432). Docs: 📃 + - Feature: Replace tools.cmake:install_strip by tools.install:strip. Affect both CMake and Meson tool helpers. (#18429). Docs: 📃 + - Feature: Add open to TestClient to open files locally. (#18399) + - Feature: New conan workspace create orchestrated. (#18390). Docs: 📃 + - Feature: Add context variable to profile jinja2 rendering (can be "build", "host" and None). (#18383). Docs: 📃 + - Feature: Implement cpp_info.sources to support source targets. (#18350). Docs: 📃 + - Feature: Add support for source targets in CMakeConfigDeps generator. (#18350). Docs: 📃 + - Feature: New conan report diff command to inspect diffs between versions and revisions. (#18247). Docs: 📃 + - Feature: Add premake toolchain and improved premake integration in conan with new premake5. (#17898). Docs: 📃 + - Fix: Better error message in CMakeConfigDeps for incorrect component requires. (#18562) + - Fix: Avoid incorrect absolute path inputs in -of for relativize paths in generators. (#18561) + - Fix: Better error message when an incorrect cpp_info.requires is defined. (#18552) + - Fix: Avoid hyphens for msbuild verbosity argument passed to CMake after -- by powershell. (#18548) + - Fix: Improve conan cache check-integrity output. (#18544) + - Fix: Raise an error for incorrect definition of conf_info items. (#18541) + - Fix: Fix qcc cppstd support for latest QNX 8.0 with c++20. (#18538) + - Fix: SBOM component bom-ref should not use has_special_root_node. (#18515) + - Fix: Add a deprecated warning message for Node.dependencies, now renamed to Node.edges. (#18472) + - Fix: Fix issue with missing folder in local-recipes-index. (#18449) + - Fix: Git.get_remote_url now returns only the URL when using treeless repository. (#18444) + - Fix: Improvement over ill-formed graphs with different visible=True/False for the same dependency. (#18440). Docs: 📃 + - Fix: Fixing CMake presets on Windows with backslash. (#18435) + - Fix: Do not output upload-urls on basic text conan upload output. (#18430) + - Fix: Create folders if they don't exist when using --out-file. (#18427) + - Fix: Fix AutotoolsToolchain/GnuToolchain with LLVM/Clang in Windows for dynamic runtime in Debug. (#18422) + - Fix: Test NMake integration with clang-cl. (#18422) + - Fix: Ensure old gcc version are detected up to minor version only. (#18419) + - Fix: Fixing source retrieval when resetting local-index remote. (#18418) + - Fix: Allow minors greater than 9 in detect_api. (#18410) + - Fix: Removed Workspaces product definition and make conan workspace build work computing the right build-order. (#18390). Docs: 📃 + - Fix: Forward ConanInvalidConfiguration when raised in hooks. (#18385) + - Bugfix: Avoid crash when installing packages with tuple generators attribute and requirements to tool requires that provide self.generator_info generators. (#18503) + - Bugfix: Fix detection of riscv64 cpu in Meson toolchain. (#18495) + - Bugfix: Redirected Apple ARC flags to the ObjC/C++ ones. (#18485) + - Bugfix: Fix TestClient mocked HEAD requests. (#18477) + - Bugfix: Avoid leak of global.conf and -cc configuration for core.xxx items in Conan profiles, the core conf is exclusively for Conan internals, not for recipes neither for profiles. (#18474) + - Bugfix: XcodeToolchain sets correct ..._DEPLOYMENT_TARGET for all Apple OSs. (#18471). Docs: 📃 + - Bugfix: conan export-pkg now correctly passes a str as the conanfile version. (#18456) + - Bugfix: Fix conan cache backup-upload ignoring -cc arguments. (#18447) + - Bugfix: Fixed CMakeConfigDeps behavior with multiple find_package in folders and subfolders. (#18407) + - Bugfix: Fixes issue where conanfile's source() method doesn't use folders.root when present. (#18377) +ReleaseNotesUrl: https://github.com/conan-io/conan/releases/tag/2.18.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JFrog/Conan/2.18.0/JFrog.Conan.yaml b/manifests/j/JFrog/Conan/2.18.0/JFrog.Conan.yaml new file mode 100644 index 0000000000000..5fa5ed7d94f3e --- /dev/null +++ b/manifests/j/JFrog/Conan/2.18.0/JFrog.Conan.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: JFrog.Conan +PackageVersion: 2.18.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JLC/EasyEDA/Pro/2.2.40.3/JLC.EasyEDA.Pro.installer.yaml b/manifests/j/JLC/EasyEDA/Pro/2.2.40.3/JLC.EasyEDA.Pro.installer.yaml new file mode 100644 index 0000000000000..652c501e2d8ee --- /dev/null +++ b/manifests/j/JLC/EasyEDA/Pro/2.2.40.3/JLC.EasyEDA.Pro.installer.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: JLC.EasyEDA.Pro +PackageVersion: 2.2.40.3 +InstallerType: inno +InstallerSwitches: + Silent: /VERYSILENT /SP- /NORESTART + SilentWithProgress: /SILENT /SP- /NORESTART +UpgradeBehavior: install +FileExtensions: +- elib +- eprj +ProductCode: '{41EC087A-3D17-410B-B419-FC15A3727EFD}_is1' +ReleaseDate: 2025-06-25 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://image.easyeda.com/files/easyeda-pro-windows-x64-2.2.40.3.exe + InstallerSha256: F6683F5D0BEEA72DFFC221E8C3536FA5EEFBF2941CF21C5E697DB680A88F4FA3 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://image.easyeda.com/files/easyeda-pro-windows-x64-2.2.40.3.exe + InstallerSha256: F6683F5D0BEEA72DFFC221E8C3536FA5EEFBF2941CF21C5E697DB680A88F4FA3 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JLC/EasyEDA/Pro/2.2.40.3/JLC.EasyEDA.Pro.locale.en-US.yaml b/manifests/j/JLC/EasyEDA/Pro/2.2.40.3/JLC.EasyEDA.Pro.locale.en-US.yaml new file mode 100644 index 0000000000000..89b7b7fcd83c9 --- /dev/null +++ b/manifests/j/JLC/EasyEDA/Pro/2.2.40.3/JLC.EasyEDA.Pro.locale.en-US.yaml @@ -0,0 +1,50 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: JLC.EasyEDA.Pro +PackageVersion: 2.2.40.3 +PackageLocale: en-US +Publisher: EasyEDA +PublisherUrl: https://easyeda.com/ +PublisherSupportUrl: https://prodocs.easyeda.com/en/faq/contact-us/index.html +PrivacyUrl: https://easyeda.com/page/privacy +Author: Shenzhen Lichuang E-COMMERCE Co., Ltd. +PackageName: EasyEDA Pro +PackageUrl: https://pro.easyeda.com/ +License: Freeware +LicenseUrl: https://easyeda.com/page/legal +Copyright: Copyright (C) 2024 EASYEDA.com. All rights reserved. +ShortDescription: Professional and powerful PCB design tool +Tags: +- eda +- electronic-design-automation +- pcb +ReleaseNotes: |- + - Fixed the problem of abnormal device attribute data of some special operation binding components after packaging + - Adjust the export step timeout to 30 minutes to reduce the problem of export failure due to large PCB + - Fixed the problem that there was a lot of grooving after the Altium file format was abnormally imported + - Fix the problem that the editor interface will be garbled + - Fixed some bugs in device standardization + - Fixed the issue that the client side cannot be dragged to another display when it is not activated + - Fixed that the PCB lookup function was affected by the bottom page and could not select all objects on the canvas + - Fixed the problem that when editing the device symbol of the project library, the encapsulation of the update binding failed, and the parameter was wrong + - Fixed the problem that the point creation team could not jump when migrating the standard version in batches + - Fixed an issue where the device could not be imported when importing some libraries + - Fixed an issue where editing and saving were not banned immediately after the online exam + - Fixed an issue where the lookup combination was not displayed in the bottom lookup results table + - Fixed some API bugs + - Fixed some format conversion bugs + - Fixed the problem that the memory will crash and the white screen will be drawn for a long time (because there is no limit to the number of undo times, it has been adjusted to a maximum of 50 undo times) + - Fixed the problem that the inner electric layer could not remove the suture hole + - Fixed the problem that the beginning of the differential line of a route becomes a true angle + - Fixed the issue of gaps in color silk screen manufacturing documents + - Fixed when disconnect the internet failed to export step file issue +ReleaseNotesUrl: https://pro.easyeda.com/page/update-record +PurchaseUrl: https://easyeda.com/page/pricing +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://prodocs.easyeda.com/en/faq/editor/index.html +- DocumentLabel: Tutorial + DocumentUrl: https://prodocs.easyeda.com/en/introduction/introduction/index.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JLC/EasyEDA/Pro/2.2.40.3/JLC.EasyEDA.Pro.locale.zh-CN.yaml b/manifests/j/JLC/EasyEDA/Pro/2.2.40.3/JLC.EasyEDA.Pro.locale.zh-CN.yaml new file mode 100644 index 0000000000000..55b45e7e0185a --- /dev/null +++ b/manifests/j/JLC/EasyEDA/Pro/2.2.40.3/JLC.EasyEDA.Pro.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: JLC.EasyEDA.Pro +PackageVersion: 2.2.40.3 +PackageLocale: zh-CN +Publisher: EasyEDA +PublisherUrl: https://easyeda.com/ +PublisherSupportUrl: https://prodocs.easyeda.com/en/faq/contact-us/index.html +PrivacyUrl: https://easyeda.com/page/privacy +Author: 深圳市立创电子商务有限公司 +PackageName: EasyEDA Pro +PackageUrl: https://pro.easyeda.com/ +License: 免费软件 +LicenseUrl: https://easyeda.com/page/legal +Copyright: Copyright (C) 2024 EASYEDA.com. All rights reserved. +ShortDescription: 专业、强大的 PCB 设计工具 +Tags: +- eda +- pcb +- 电子设计自动化 +ReleaseNotesUrl: https://pro.easyeda.com/page/update-record +PurchaseUrl: https://easyeda.com/page/pricing +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://prodocs.easyeda.com/en/faq/editor/index.html +- DocumentLabel: 文档教程 + DocumentUrl: https://prodocs.easyeda.com/en/introduction/introduction/index.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JLC/EasyEDA/Pro/2.2.40.3/JLC.EasyEDA.Pro.yaml b/manifests/j/JLC/EasyEDA/Pro/2.2.40.3/JLC.EasyEDA.Pro.yaml new file mode 100644 index 0000000000000..b7febb5734425 --- /dev/null +++ b/manifests/j/JLC/EasyEDA/Pro/2.2.40.3/JLC.EasyEDA.Pro.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: JLC.EasyEDA.Pro +PackageVersion: 2.2.40.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.installer.yaml b/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.installer.yaml index c022bb48b8b26..8d2e13c46d7d8 100644 --- a/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.installer.yaml +++ b/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.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 +# Automatically updated by the winget bot at 2025/Jul/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: JLC.LCEDA.Pro PackageVersion: 2.2.38.3 @@ -16,14 +16,14 @@ Installers: - Architecture: x64 Scope: user InstallerUrl: https://image.lceda.cn/files/lceda-pro-windows-x64-2.2.38.3.exe - InstallerSha256: 57C730A2053FEF6856D5EC75014AC363BB24450A0A51AF84C142783656D7411B + InstallerSha256: 849584920E9DB4B419817897B5E71524147E9B0937F071D007627ECE5BA3194C InstallerSwitches: Custom: /CURRENTUSER - Architecture: x64 Scope: machine InstallerUrl: https://image.lceda.cn/files/lceda-pro-windows-x64-2.2.38.3.exe - InstallerSha256: 57C730A2053FEF6856D5EC75014AC363BB24450A0A51AF84C142783656D7411B + InstallerSha256: 849584920E9DB4B419817897B5E71524147E9B0937F071D007627ECE5BA3194C InstallerSwitches: Custom: /ALLUSERS ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.locale.en-US.yaml b/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.locale.en-US.yaml index 8f5a0bd228b5b..0cfba211d03b5 100644 --- a/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.locale.en-US.yaml +++ b/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.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 +# Automatically updated by the winget bot at 2025/Jul/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: JLC.LCEDA.Pro PackageVersion: 2.2.38.3 @@ -27,4 +27,4 @@ Documentations: - DocumentLabel: Tutorial DocumentUrl: https://prodocs.lceda.cn/cn/introduction/introduction/index.html ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.locale.zh-CN.yaml b/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.locale.zh-CN.yaml index 283de750b18e0..217909077c146 100644 --- a/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.locale.zh-CN.yaml +++ b/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.locale.zh-CN.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json +# Automatically updated by the winget bot at 2025/Jul/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: JLC.LCEDA.Pro PackageVersion: 2.2.38.3 @@ -27,4 +27,4 @@ Documentations: - DocumentLabel: 文档教程 DocumentUrl: https://prodocs.lceda.cn/cn/introduction/introduction/index.html ManifestType: locale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.yaml b/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.yaml index 6192a4438bd01..32c27bd8a329c 100644 --- a/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.yaml +++ b/manifests/j/JLC/LCEDA/Pro/2.2.38.3/JLC.LCEDA.Pro.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 +# Automatically updated by the winget bot at 2025/Jul/01 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: JLC.LCEDA.Pro PackageVersion: 2.2.38.3 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/j/JPEXS/FFDec/24.0.0/JPEXS.FFDec.installer.yaml b/manifests/j/JPEXS/FFDec/24.0.0/JPEXS.FFDec.installer.yaml new file mode 100644 index 0000000000000..7cb3abf8adb9c --- /dev/null +++ b/manifests/j/JPEXS/FFDec/24.0.0/JPEXS.FFDec.installer.yaml @@ -0,0 +1,25 @@ +PackageIdentifier: JPEXS.FFDec +PackageVersion: 24.0.0 +InstallerType: nullsoft +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S + SilentWithProgress: /S +UpgradeBehavior: install +FileExtensions: +- abc +- gfx +- iggy +- swc +- swf +Dependencies: + PackageDependencies: + - PackageIdentifier: Oracle.JavaRuntimeEnvironment +Installers: +- Architecture: neutral + InstallerUrl: https://github.com/jindrapetrik/jpexs-decompiler/releases/download/version24.0.0/ffdec_24.0.0_setup.exe + InstallerSha256: 5676EC0ACC4ADBB82F967F611BB4C9B5C6F0EE5BEDDCD1ADB94D64CA31DEF9F2 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/JPEXS/FFDec/24.0.0/JPEXS.FFDec.locale.en-US.yaml b/manifests/j/JPEXS/FFDec/24.0.0/JPEXS.FFDec.locale.en-US.yaml new file mode 100644 index 0000000000000..ea0441d2bebab --- /dev/null +++ b/manifests/j/JPEXS/FFDec/24.0.0/JPEXS.FFDec.locale.en-US.yaml @@ -0,0 +1,53 @@ +PackageIdentifier: JPEXS.FFDec +PackageVersion: 24.0.0 +PackageLocale: en-US +Publisher: JPEXS +PublisherUrl: https://www.jpexs.com +# PublisherSupportUrl: +# PrivacyUrl: +Author: JPEXS +PackageName: JPEXS Free Flash Decompiler +PackageUrl: https://github.com/jindrapetrik/jpexs-decompiler +License: GPLv3 +LicenseUrl: https://github.com/jindrapetrik/jpexs-decompiler/blob/master/license.txt +# Copyright: +# CopyrightUrl: +ShortDescription: JPEXS Free Flash Decompiler (FFDec) is opensource flash SWF decompiler and editor. Extract resources, convert SWF to FLA, edit ActionScript, replace images, sounds, texts, fonts and more. Various output formats available. +Description: | + JPEXS Free Flash Decompiler (FFDec) is opensource flash SWF decompiler and editor. Extract resources, convert SWF to FLA, edit ActionScript, replace images, sounds, texts or fonts. Various output formats available. + + Key Features: + - Exporting scripts, images, shapes, movies, sounds, fonts... + - SWF to FLA conversion + - SWF to XML export and import again + - Various output formats like SVG or HTML5 Canvas + - Displaying ActionScript source code. + - Experimental direct editing of ActionScript source + - Editing via assembler source + - Integrated ActionScript debugger - step, breakpoints, set variables + - Both ActionScript 1/2 and AS3 support + - Clicking decompiled source highlights P-code associated instruction and vice-versa + - Replacing images, editing texts, fonts and other tags + - Displaying SWF resources (shapes, sprites, fonts, buttons...) + - Hexadecimal dump view with color hilighting also available + - Java based code which supports multiple platforms + - Multilanguage support (see language list) + - Can decompile some kinds of obfuscated code too +Moniker: ffdec +Tags: +- abc +- actionscript +- decompiler +- disassembler +- editor +- flash +- free +- opensource +- swf +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JPEXS/FFDec/24.0.0/JPEXS.FFDec.yaml b/manifests/j/JPEXS/FFDec/24.0.0/JPEXS.FFDec.yaml new file mode 100644 index 0000000000000..863b4fc4db848 --- /dev/null +++ b/manifests/j/JPEXS/FFDec/24.0.0/JPEXS.FFDec.yaml @@ -0,0 +1,5 @@ +PackageIdentifier: JPEXS.FFDec +PackageVersion: 24.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/JPEXS/FFDec/24.0.1/JPEXS.FFDec.installer.yaml b/manifests/j/JPEXS/FFDec/24.0.1/JPEXS.FFDec.installer.yaml new file mode 100644 index 0000000000000..5b052c1832c33 --- /dev/null +++ b/manifests/j/JPEXS/FFDec/24.0.1/JPEXS.FFDec.installer.yaml @@ -0,0 +1,25 @@ +PackageIdentifier: JPEXS.FFDec +PackageVersion: 24.0.1 +InstallerType: nullsoft +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S + SilentWithProgress: /S +UpgradeBehavior: install +FileExtensions: +- abc +- gfx +- iggy +- swc +- swf +Dependencies: + PackageDependencies: + - PackageIdentifier: Oracle.JavaRuntimeEnvironment +Installers: +- Architecture: neutral + InstallerUrl: https://github.com/jindrapetrik/jpexs-decompiler/releases/download/version24.0.1/ffdec_24.0.1_setup.exe + InstallerSha256: 04E4435155823E08F140C5C4D697BC1EAD2A04C1634530C317E816B6FF367608 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/JPEXS/FFDec/24.0.1/JPEXS.FFDec.locale.en-US.yaml b/manifests/j/JPEXS/FFDec/24.0.1/JPEXS.FFDec.locale.en-US.yaml new file mode 100644 index 0000000000000..fc407689c61e1 --- /dev/null +++ b/manifests/j/JPEXS/FFDec/24.0.1/JPEXS.FFDec.locale.en-US.yaml @@ -0,0 +1,53 @@ +PackageIdentifier: JPEXS.FFDec +PackageVersion: 24.0.1 +PackageLocale: en-US +Publisher: JPEXS +PublisherUrl: https://www.jpexs.com +# PublisherSupportUrl: +# PrivacyUrl: +Author: JPEXS +PackageName: JPEXS Free Flash Decompiler +PackageUrl: https://github.com/jindrapetrik/jpexs-decompiler +License: GPLv3 +LicenseUrl: https://github.com/jindrapetrik/jpexs-decompiler/blob/master/license.txt +# Copyright: +# CopyrightUrl: +ShortDescription: JPEXS Free Flash Decompiler (FFDec) is opensource flash SWF decompiler and editor. Extract resources, convert SWF to FLA, edit ActionScript, replace images, sounds, texts, fonts and more. Various output formats available. +Description: | + JPEXS Free Flash Decompiler (FFDec) is opensource flash SWF decompiler and editor. Extract resources, convert SWF to FLA, edit ActionScript, replace images, sounds, texts or fonts. Various output formats available. + + Key Features: + - Exporting scripts, images, shapes, movies, sounds, fonts... + - SWF to FLA conversion + - SWF to XML export and import again + - Various output formats like SVG or HTML5 Canvas + - Displaying ActionScript source code. + - Experimental direct editing of ActionScript source + - Editing via assembler source + - Integrated ActionScript debugger - step, breakpoints, set variables + - Both ActionScript 1/2 and AS3 support + - Clicking decompiled source highlights P-code associated instruction and vice-versa + - Replacing images, editing texts, fonts and other tags + - Displaying SWF resources (shapes, sprites, fonts, buttons...) + - Hexadecimal dump view with color hilighting also available + - Java based code which supports multiple platforms + - Multilanguage support (see language list) + - Can decompile some kinds of obfuscated code too +Moniker: ffdec +Tags: +- abc +- actionscript +- decompiler +- disassembler +- editor +- flash +- free +- opensource +- swf +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/JPEXS/FFDec/24.0.1/JPEXS.FFDec.yaml b/manifests/j/JPEXS/FFDec/24.0.1/JPEXS.FFDec.yaml new file mode 100644 index 0000000000000..410f7ae14b82b --- /dev/null +++ b/manifests/j/JPEXS/FFDec/24.0.1/JPEXS.FFDec.yaml @@ -0,0 +1,5 @@ +PackageIdentifier: JPEXS.FFDec +PackageVersion: 24.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/JReleaser/jreleaser/1.19.0/JReleaser.jreleaser.installer.yaml b/manifests/j/JReleaser/jreleaser/1.19.0/JReleaser.jreleaser.installer.yaml new file mode 100644 index 0000000000000..a252f0425a86b --- /dev/null +++ b/manifests/j/JReleaser/jreleaser/1.19.0/JReleaser.jreleaser.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: JReleaser.jreleaser +PackageVersion: 1.19.0 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- jreleaser +ProductCode: '{CFFA4B77-F7B7-324A-A98A-3CE0223D8246}' +ReleaseDate: 2025-06-30 +AppsAndFeaturesEntries: +- ProductCode: '{CFFA4B77-F7B7-324A-A98A-3CE0223D8246}' + UpgradeCode: '{3D0E8D15-CF1B-32B1-B479-86F8424F8C46}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\jreleaser' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/jreleaser/jreleaser/releases/download/v1.19.0/jreleaser-installer-1.19.0-windows-x86_64.msi + InstallerSha256: 3B45E3CC7ABC10577108D8ACD31573C52E6CE20A77A1B4FC8C9B36909B44717F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JReleaser/jreleaser/1.19.0/JReleaser.jreleaser.locale.en-US.yaml b/manifests/j/JReleaser/jreleaser/1.19.0/JReleaser.jreleaser.locale.en-US.yaml new file mode 100644 index 0000000000000..9f052b39a6453 --- /dev/null +++ b/manifests/j/JReleaser/jreleaser/1.19.0/JReleaser.jreleaser.locale.en-US.yaml @@ -0,0 +1,100 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: JReleaser.jreleaser +PackageVersion: 1.19.0 +PackageLocale: en-US +Publisher: JReleaser +PublisherUrl: https://jreleaser.org/ +PublisherSupportUrl: https://github.com/jreleaser/jreleaser/issues +Author: Andres Almiray +PackageName: jreleaser +PackageUrl: https://jreleaser.org/ +License: Apache-2.0 +LicenseUrl: https://github.com/jreleaser/jreleaser/blob/HEAD/LICENSE +Copyright: 2020 Andres Almiray +ShortDescription: Release projects quickly and easily with JReleaser +Description: | + JReleaser is a release automation tool. Its goal is to simplify creating releases and + publishing artifacts to multiple package managers while providing customizable options. + + JReleaser takes inputs from popular builds tools (Ant, Maven, Gradle) such as JAR files, + binary distributions (.zip, .tar), JLink images, or any other file that you’d like to + publish as a Git release on popular Git services such as GitHub, GitLab, or Gitea. + Distribution files may additionally be published to be consumed by popular package managers + such as Homebrew, Chocolatey, Snapcraft, or get ready to be launched via JBang. Releases + may be announced in a variety of channels such as Twitter, Zulip, SDKMAN!, and more. +Moniker: jreleaser +Tags: +- git +- java +- jreleaser +- release +- tool +ReleaseNotes: |- + Binaries + https://github.com/jreleaser/jreleaser/wiki/Release-v1.19.0 + Changelog + 🚀 Features + core + - 9d8f7a5 Add a flag to skip non-configured sections. The yolo flag., closes #1840 + gradle + - 0ea6c9b Use RegularFile as input for stagingRepository(), closes #1665 + 🐛 Fixes + core + - ae81484 Do not display empty or blank environment vars, closes #1913 + deploy + - 1f4fa85 Use fake URL on nexus2.url when empty and project is snapshot, closes #1877 + - 5a74e26 Nexus2 should not fail url validation when snapshot is active, closes #1877 + gradle + - ae660b7 Fix type accessor, closes #1665 + - e9deaf8 Support blank gpg passphrase (#1884), closes #1883 #1884 + packagers + - 2070736 Validate docker.password only when required, closes #1881 + release + - 294aefd Do not fail when commeting on locked issues, closes #1871 + unscoped + - 50bfdb2 Do not shade jakarta.mail and jakarta.activation, closes #1867 + 🧰 Tasks + packagers + - a0b6a39 Upddate winget templates + 🛠 Build + - b2f408f Increase retry/tiemout parameters for deployments + - 2395d1e Update release announcements + - 7b8dc53 Update deploy settings + - 4d614b4 Reformat code, closes #1665 + - 919b630 Upgrade to Gradle 8.14.2 + - 4eddcb1 Remove Noticeable from announcers + - 4375cd3 Remove twitter form appimage templates + 📝 Documentation + - 7b4ffb4 Add marcphilipp as a contributor for code + - 6f8c0ec Add ThomasKrieger as a contributor for code + - d96046b Add JonasVautherin as a contributor for code + ⚙️ Dependencies + - 7881a33 Update aws-java-sdk to 2.31.30 + - 674dee0 Update bouncycastle to 1.81 + - bf8ac42 Update byte-buddy to 1.17.6 + - 8ffa475 Update cosign to 2.5.2 + - 17c66fd Update cyclonedx to 0.28.2 + - a100584 Update feign to 13.6 + - e6158ed Update jackson to 2.19.1 + - b44b1df Update jsoup to 1.21.1 + - 8d84c45 Update junit5 to 5.13.2 + - 5c7030b Update syft to 1.27.1 + - ef9fbe3 Update woodstox to 7.1.1 + - c716019 Update zstd-jni to 1.5.7-3 + - 4195d2d Update sshj to 0.40.0 + - ecaef0d Releasing version 1.19.0 + - e29469f Do not fail deployment if timeout is reached during publication + - 59eb417 Add more logging statements to MavenCentral deployer, closes #1907 + - 06f2c35 [announce] Send a message to multiple Slack channels, closes #1889 + - d0c86ca Bump version for next development cycle + Contributors + We'd like to thank the following people for their contributions: + - Andres Almiray (@aalmiray) + - Jonas Vautherin + - Marc Philipp + - ThomasKrieger +ReleaseNotesUrl: https://github.com/jreleaser/jreleaser/releases/tag/v1.19.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JReleaser/jreleaser/1.19.0/JReleaser.jreleaser.yaml b/manifests/j/JReleaser/jreleaser/1.19.0/JReleaser.jreleaser.yaml new file mode 100644 index 0000000000000..90e575650f2e5 --- /dev/null +++ b/manifests/j/JReleaser/jreleaser/1.19.0/JReleaser.jreleaser.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: JReleaser.jreleaser +PackageVersion: 1.19.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JTL/Wawi/1.10.12.0/JTL.Wawi.installer.yaml b/manifests/j/JTL/Wawi/1.10.12.0/JTL.Wawi.installer.yaml new file mode 100644 index 0000000000000..86fc090dd3d46 --- /dev/null +++ b/manifests/j/JTL/Wawi/1.10.12.0/JTL.Wawi.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: JTL.Wawi +PackageVersion: 1.10.12.0 +InstallerType: inno +Scope: machine +Installers: +- Architecture: x86 + InstallerUrl: https://downloads.jtl-software.de/setup-jtl-wawi_1.10.12.0_0611-1240_48114178517.exe + InstallerSha256: F1C09A9B453479855FE6BFF094B9EEE3EBC8E22BA57A8686A851F32628D54E77 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/j/JTL/Wawi/1.10.12.0/JTL.Wawi.locale.de-DE.yaml b/manifests/j/JTL/Wawi/1.10.12.0/JTL.Wawi.locale.de-DE.yaml new file mode 100644 index 0000000000000..25204d050be10 --- /dev/null +++ b/manifests/j/JTL/Wawi/1.10.12.0/JTL.Wawi.locale.de-DE.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: JTL.Wawi +PackageVersion: 1.10.12.0 +PackageLocale: de-DE +Publisher: JTL-Software-GmbH +PackageName: JTL-Wawi +License: Proprietary +ShortDescription: Das kostenlose Warenwirtschaftssystem vereinfacht Ihre Geschäftsprozesse spürbar. Transparenter Warenfluss, bessere Übersicht, volle Kontrolle. +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/j/JTL/Wawi/1.10.12.0/JTL.Wawi.locale.en-US.yaml b/manifests/j/JTL/Wawi/1.10.12.0/JTL.Wawi.locale.en-US.yaml new file mode 100644 index 0000000000000..069a8c43c85db --- /dev/null +++ b/manifests/j/JTL/Wawi/1.10.12.0/JTL.Wawi.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: JTL.Wawi +PackageVersion: 1.10.12.0 +PackageLocale: en-US +Publisher: JTL-Software-GmbH +PackageName: JTL-Wawi +License: Proprietary +ShortDescription: The free inventory management system noticeably simplifies your business processes. Transparent flow of goods, better overview, full control. +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/j/JTL/Wawi/1.10.12.0/JTL.Wawi.yaml b/manifests/j/JTL/Wawi/1.10.12.0/JTL.Wawi.yaml new file mode 100644 index 0000000000000..9989105ca969f --- /dev/null +++ b/manifests/j/JTL/Wawi/1.10.12.0/JTL.Wawi.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: JTL.Wawi +PackageVersion: 1.10.12.0 +DefaultLocale: de-DE +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2052/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2052/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..c6a3aee61524e --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2052/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.22.2052 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2052/Jackett.Installer.Windows.exe + InstallerSha256: 3BAA460962728A17002531CA4C7023D38AA17612DCACF3C00207D07AE840FD50 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2052/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2052/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..634e37873bae7 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2052/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.22.2052 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - ebf518a add magnetdownload a public site. resolves #16032 + - 7969a07 chdbits: fix login block (#16033) + - 58b3eaf polishtorrent: MST 2d -> 5d + - e11f8d1 finvip: removed. resolves #6675 + - fd27efe icc2022: removed. resolves #13898 + - fa8f455 Update rudub.yml + - bfa002a animelovers: bump engine tag + - 6da51eb unit3d: update api docs links + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2052 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2052/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2052/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..38d08ff371bcb --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2052/Jackett.Jackett.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.22.2052 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2054/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2054/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..24aecbd737fd6 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2054/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.22.2054 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-06-24 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2054/Jackett.Installer.Windows.exe + InstallerSha256: 327E29668B83E16A0547FBE9C00959C9F099D3A7849F349E0104C3F129CF62AA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2054/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2054/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..4506f9b65f9d1 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2054/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.22.2054 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - 934ee1e ebook-shares: fix title not found + - 5671c90 Update rudub.yml + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2054 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2054/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2054/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..f40db5da09b68 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2054/Jackett.Jackett.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.22.2054 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2056/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2056/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..1f413f3e41989 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2056/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.22.2056 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-06-25 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2056/Jackett.Installer.Windows.exe + InstallerSha256: AB5BC685B2093E5AEF859555324D086A07916342DFB70B8474AEFFFF52A3359F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2056/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2056/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..c4e132de8b5c5 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2056/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.22.2056 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - b44695e matrix: add useragent. resolves #15888 + - 97a750c torrenttip: bump domain + - 333986c torrentsome: bump domain + - 6f12fb0 torrentqq: bump domains + - 83bcb3d 52bt: bump alternate domain + - 347b3fe Update rudub.yml + - 937ff97 divteam: removed. resolves #4671 + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2056 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2056/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2056/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..0ea6ac09bdc78 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2056/Jackett.Jackett.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.22.2056 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2064/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2064/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..431dd4a26bc61 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2064/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.22.2064 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-06-27 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2064/Jackett.Installer.Windows.exe + InstallerSha256: 5CABD33690F881C509BBF4F5D693C829E99232DEB3AAE8E2DE4471BD40F98F02 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2064/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2064/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..c6ff8bdcdf7e2 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2064/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.22.2064 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - 4017ba8 lint + - b43dddf rutracker: add search by uploader. #16038 + - 516fdc9 TPB: fix duplicate description field + - b7aae9c assorted: add search/filter by uploader. #16038 + - e2997c5 add f1gp a private site. resolves #16039 + - 9b59842 sportscraze: removed. resolves #15935 + - a82203f docspedia: new cat + - 59283b1 Update rudub.yml + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2064 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2064/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2064/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..ed40ae2882bb8 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2064/Jackett.Jackett.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.22.2064 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2072/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2072/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..7d5579360c3de --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2072/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.22.2072 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-06-28 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2072/Jackett.Installer.Windows.exe + InstallerSha256: B41ADCFEDFD14F584DC4998E82C267B6FE21A678EC9D40D98E34392ABB1B2461 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2072/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2072/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..1a7fdedee8504 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2072/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.22.2072 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - eac5ec1 Update Anilibria.cs + - a4eca2a [feature] migrated Anilibria yaml indexer to C# with new domain and API (#16043) + - 09f88b7 oldgreektracker: CA expired + - 4fcc4ec Update rudub.yml + - 2923af4 f1gp: typo fix + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2072 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2072/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2072/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..ab3d77dbe1edd --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2072/Jackett.Jackett.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.12.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.22.2072 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2075/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2075/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..5a7594f45a00f --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2075/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2075 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-06-28 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2075/Jackett.Installer.Windows.exe + InstallerSha256: D6AD5B32FA86ED83567F60EE6708DD95FA4F80AA2A76E7FDACC1599CF77D4B20 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2075/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2075/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..4e11515d353a5 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2075/Jackett.Jackett.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: Jackett.Jackett +PackageVersion: 0.22.2075 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - a3618ad Anilibria: fix guid (#16045) + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2075 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2075/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2075/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..6488ce8094f53 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2075/Jackett.Jackett.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: Jackett.Jackett +PackageVersion: 0.22.2075 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2084/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2084/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..2b56cd55c7cb9 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2084/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2084 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-06-29 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2084/Jackett.Installer.Windows.exe + InstallerSha256: 35D50CFCFA8CC831FE6E417FB6508F218D64E09704753138E1D5827D328A63CF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2084/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2084/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..204d35efba763 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2084/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,46 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2084 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - 04155ca dontorrent: new domain + - c93c36b notdicquality: bump engine tag + - 7ba4034 clearjav: MST 2d -> 7d + - 7213219 fearnopeer: add new inactivity info + - eda7f59 anilibria: add option to append RUS to title #5762 + - fd2d0a9 anilibria: add requestdelay 2.1s to try to avoid DDoS-Guard challenge #5762 + - c2d0c0b pretome: update cats + - db19fd4 Update rudub.yml + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2084 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2084/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2084/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..527c039cbe2c3 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2084/Jackett.Jackett.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: Jackett.Jackett +PackageVersion: 0.22.2084 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2097/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2097/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..61747a0c0a895 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2097/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2097 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-06-30 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2097/Jackett.Installer.Windows.exe + InstallerSha256: 389258B76E38C9754C24329EA2C843D161051574634BA90A88CB982AB647FF21 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2097/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2097/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..6969fd174e9dc --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2097/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,46 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2097 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - 5772385 anilibria: Completed Sonarr compatibility options. Also fetch new releases. (#16048) resolves #5762 + - a75a603 frozenlayer: CA expired + - 3eee38a Update rudub.yml + - 83e3b3e anilibria: add API docs comment and fix my typo + - 5030d25 anilibria: ensure release ids are unique + - ab44e62 anilibria: fix cs + - b959583 anilibria: simplify json parsing + - a3fbe86 anilibria: deafault cat to TV when API category is null #5762 + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2097 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2097/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2097/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..66f4f46109115 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2097/Jackett.Jackett.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: Jackett.Jackett +PackageVersion: 0.22.2097 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2101/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2101/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..8f09a75381e29 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2101/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2101 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-06-30 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2101/Jackett.Installer.Windows.exe + InstallerSha256: 29F63EB63D4C09B8468F966432AABC1444C93D2196403AA6286E9708BCA62B75 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2101/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2101/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..5b42cf13b6bb2 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2101/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,40 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2101 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - 8854701 Update rudub.yml + - 4a14f1e peeratiko: CA expired + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2101 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2101/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2101/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..9715f057a291f --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2101/Jackett.Jackett.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: Jackett.Jackett +PackageVersion: 0.22.2101 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2107/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2107/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..a87979e36d673 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2107/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2107 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-07-02 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2107/Jackett.Installer.Windows.exe + InstallerSha256: 5CFB65B61EAE735D2A09547DB776E53C24A254E0BA5D19D973B77A3EB9DBF24B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2107/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2107/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..33499c7a6c078 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2107/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,45 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2107 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - d442f85 eniahd: removed. resolves #6066 + - ecb4e67 nirvana: removed. resolves #15817 + - 2854b2a add 13city a Chinese private site. resolves #16052 + - 108f4a7 pretome: add new cat + - 216ad2d Update rudub.yml + - 46e3244 oxtorrent: update search path + - 16fcd72 f1gp: new cat + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2107 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2107/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2107/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..f1098e2615f49 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2107/Jackett.Jackett.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: Jackett.Jackett +PackageVersion: 0.22.2107 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2111/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2111/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..359d5dd3f47f4 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2111/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2111 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-07-02 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2111/Jackett.Installer.Windows.exe + InstallerSha256: 22D52BBEAE1475C6B01A08FBDF3822767CD71EDB0EBF2F23E8F57A38C6B9621A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2111/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2111/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..5b35af7cc55a0 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2111/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,46 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2111 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - ab6305b assorted nexus: bump engine tag + - c273092 Update rudub.yml + - 3b333ba Update rudub.yml + - 1d875c2 torrenttip: bump domain + - cbf2109 torrentsome: bump domain + - f345a9b torrentqq: bump domains + - e8f1836 Update rudub.yml + - acbb1e2 xthor: add cats 126 and 127 for AV1. resolves #16051 + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2111 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2111/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2111/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..2336a859bd397 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2111/Jackett.Jackett.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: Jackett.Jackett +PackageVersion: 0.22.2111 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2117/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2117/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..a27d85b481598 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2117/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2117 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-07-04 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2117/Jackett.Installer.Windows.exe + InstallerSha256: E739649AC766FD3EF513466A619C2AF5D9C88DD6E9FF5F792725E3A8AD74F61E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2117/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2117/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..02058c9b40cfc --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2117/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,44 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2117 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - f972e8f dontorrent: new domain + - 181ab27 OGT: update name and descr + - 4c94b16 Update rudub.yml + - 8787057 caishen: switch to cookie method. #15953 + - 63277e0 Revert "oldgreektracker: CA expired" + - a311933 13city: update MR + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2117 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2117/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2117/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..21aa45dd711df --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2117/Jackett.Jackett.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: Jackett.Jackett +PackageVersion: 0.22.2117 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2120/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2120/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..83c16ba6e3fa3 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2120/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2120 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-07-04 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2120/Jackett.Installer.Windows.exe + InstallerSha256: 4292053AD695817F4F5D17A668E46F479F5C18ED9ABDB0FE7F331920F87D8E93 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2120/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2120/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..96fe6aeafe8d1 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2120/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,44 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2120 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - ef03eaf magnetcat: bump alternate domains + - bb40512 Update rudub.yml + - f31b08a OGT: new href selectors + - 9275662 torrent-turk: CA expired + - 8c26c23 Update rudub.yml + - b5c9529 52bt: bump alternate domain + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2120 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2120/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2120/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..c9f86523efa02 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2120/Jackett.Jackett.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: Jackett.Jackett +PackageVersion: 0.22.2120 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2123/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2123/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..7149626127dcb --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2123/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2123 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-07-05 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2123/Jackett.Installer.Windows.exe + InstallerSha256: D51A715272D9431CEE4FDA2DFA8C765FF25B3848E8907B588A1211185FA7028D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2123/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2123/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..671e903c75105 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2123/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,41 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2123 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - 3d3e799 clearjav: MR dropped, must seed 7d + - 57ee7e4 Update rudub.yml + - bca81a5 catorrent: now public. #10577 + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2123 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2123/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2123/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..22701e812de52 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2123/Jackett.Jackett.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: Jackett.Jackett +PackageVersion: 0.22.2123 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2125/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2125/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..87ede1cd42bb9 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2125/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2125 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-07-06 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2125/Jackett.Installer.Windows.exe + InstallerSha256: 6441BBA04CE282E82990E6EF0B4FB51D61D9F825988B064A95ECD538AE611358 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2125/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2125/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..96dda534c4d1f --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2125/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,41 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2125 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - e67750a aither: dropped music + - 02aeb49 f1gp: new cats + - 81a30f1 Update rudub.yml + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2125 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2125/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2125/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..a21e6563224c3 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2125/Jackett.Jackett.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: Jackett.Jackett +PackageVersion: 0.22.2125 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2132/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2132/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..2683307986e73 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2132/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2132 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-07-08 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2132/Jackett.Installer.Windows.exe + InstallerSha256: 34C2B6AE481A61EC0A30432C4CEF5B38255A32CD85FB02F38C2EECD683749565 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2132/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2132/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..470725bf75a33 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2132/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,48 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2132 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - 6cd4498 exttorrents: add imdbid search. resolves #16056 + - 5ba35d2 assorted unit3d: bump engine tag + - 9185201 torrentkitty: .tv domain expired. + - f992f7c oxtorrent-co: switch back to .today.year for keywordless search. resolves #15293 + - 44e73c4 Update rudub.yml + - 7b5055c rain: switch to cookie method. resolves #15842 + - d8d26ed f1gp: new cat + - a810066 bithumen: update & change to cookie login + - a0f0a3c Update README.md + - d6edba3 assorted unit3d: bump engine tag + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2132 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2132/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2132/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..23c7bf3bed5a8 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2132/Jackett.Jackett.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: Jackett.Jackett +PackageVersion: 0.22.2132 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2135/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.22.2135/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..5c403810ec197 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2135/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2135 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2025-07-09 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.22.2135/Jackett.Installer.Windows.exe + InstallerSha256: EDFB196C3016CB0BDD341B3B332DFFC84978DA4D100BC51C6D991CF01CD1410D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2135/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.22.2135/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..68bf1255290aa --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2135/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,45 @@ +# 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: Jackett.Jackett +PackageVersion: 0.22.2135 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - 5e110a9 uploadcx: bump engine tag + - 10b0565 torrenttip: bump domain + - 2b9bbe4 torrentsome: bump domain + - 4596d52 magnetcat: bump alternate domains + - 2d3d51f yuscene: new cat, add book search + - c53565f Update rudub.yml + - 9e739be add qbite a public 3x site. resolves #16057 + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.22.2135 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jackett/Jackett/0.22.2135/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.22.2135/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..17bb778afab7a --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.22.2135/Jackett.Jackett.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: Jackett.Jackett +PackageVersion: 0.22.2135 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jacksta/Instigator/3.0.0/Jacksta.Instigator.installer.yaml b/manifests/j/Jacksta/Instigator/3.0.0/Jacksta.Instigator.installer.yaml new file mode 100644 index 0000000000000..4a65449cc5883 --- /dev/null +++ b/manifests/j/Jacksta/Instigator/3.0.0/Jacksta.Instigator.installer.yaml @@ -0,0 +1,20 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Jacksta.Instigator +PackageVersion: 3.0.0 +InstallerLocale: en-US +InstallerType: inno +Scope: user +ProductCode: Instigator_is1 +ReleaseDate: 2025-05-29 +AppsAndFeaturesEntries: +- Publisher: jacksta + ProductCode: Instigator_is1 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\instigator' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/jwhazy/instigator/releases/download/v3.0.0/InstigatorSetup-3.0.0.exe + InstallerSha256: 20479DDFCD7E8DE1267A129F777D2DC3D8F2FF259BC8A2EA314DE1591FBDF01E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jacksta/Instigator/3.0.0/Jacksta.Instigator.locale.en-US.yaml b/manifests/j/Jacksta/Instigator/3.0.0/Jacksta.Instigator.locale.en-US.yaml new file mode 100644 index 0000000000000..ffa45997e5b22 --- /dev/null +++ b/manifests/j/Jacksta/Instigator/3.0.0/Jacksta.Instigator.locale.en-US.yaml @@ -0,0 +1,27 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Jacksta.Instigator +PackageVersion: 3.0.0 +PackageLocale: en-US +Publisher: Jacksta +PublisherUrl: https://github.com/jwhazy +PublisherSupportUrl: https://github.com/jwhazy/instigator/issues +PackageName: Instigator +PackageUrl: https://github.com/jwhazy/instigator +License: GPL-3.0 +LicenseUrl: https://github.com/jwhazy/instigator/blob/HEAD/LICENSE +ShortDescription: Open-source Fortnite launcher, built in Rust. +Tags: +- fortnite +- fortnite-launcher +- rust +- windows +ReleaseNotes: |- + Instigator is a basic command-line Fortnite launcher. It injects console/game server libraries and a redirect/SSL bypass library automatically presuming you provide it, if they aren't provided you will need to inject them yourself. + What's new? + - You can now add an email domain (the username will be automatically appended e.g. username@example.com) + - Pressing CTRL + C once will kill all Fortnite processes, pressing again will force kill Instigator + - Error handling and bug fixes +ReleaseNotesUrl: https://github.com/jwhazy/instigator/releases/tag/v3.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jacksta/Instigator/3.0.0/Jacksta.Instigator.yaml b/manifests/j/Jacksta/Instigator/3.0.0/Jacksta.Instigator.yaml new file mode 100644 index 0000000000000..f2da4d9facb57 --- /dev/null +++ b/manifests/j/Jacksta/Instigator/3.0.0/Jacksta.Instigator.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Jacksta.Instigator +PackageVersion: 3.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.installer.yaml b/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.installer.yaml index 7d29021b72d7e..5f04987507f81 100644 --- a/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.installer.yaml +++ b/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jun/12 +# 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: Jagex.Runescape @@ -11,6 +11,6 @@ Dependencies: Installers: - Architecture: x64 InstallerUrl: https://content.runescape.com/downloads/windows/RuneScape-Setup.exe - InstallerSha256: 4697F174F86A5C9416BE5DE89E01854BB03D572D0C5A4F11B0D3F26ADB6EB5AB + InstallerSha256: 3217E2A4CB32ADB0A77F29080592B26091C95BC35C9295EEA79ED2BF0E9AF0AA ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.locale.en-US.yaml b/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.locale.en-US.yaml index 4ecce2e3d9030..d3e8f49216db6 100644 --- a/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.locale.en-US.yaml +++ b/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jun/12 +# 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: Jagex.Runescape diff --git a/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.yaml b/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.yaml index c632bd17c2b26..b6764cc1fe52f 100644 --- a/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.yaml +++ b/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jun/12 +# 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: Jagex.Runescape diff --git a/manifests/j/Jan/Jan/0.6.2/Jan.Jan.installer.yaml b/manifests/j/Jan/Jan/0.6.2/Jan.Jan.installer.yaml new file mode 100644 index 0000000000000..a9fd614f95db1 --- /dev/null +++ b/manifests/j/Jan/Jan/0.6.2/Jan.Jan.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: Jan.Jan +PackageVersion: 0.6.2 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- jan +ProductCode: 26e92a45-3e3b-5b43-bb59-04bf3b027b64 +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/menloresearch/jan/releases/download/v0.6.2/Jan_0.6.2_x64-setup.exe + InstallerSha256: 8976DC0FC2D8EA34412EEEFFA03C1D93FAEC156FCB3FA4F73C5A825431D2C29F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jan/Jan/0.6.2/Jan.Jan.locale.en-US.yaml b/manifests/j/Jan/Jan/0.6.2/Jan.Jan.locale.en-US.yaml new file mode 100644 index 0000000000000..0099c7c7b9856 --- /dev/null +++ b/manifests/j/Jan/Jan/0.6.2/Jan.Jan.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: Jan.Jan +PackageVersion: 0.6.2 +PackageLocale: en-US +Publisher: Jan +PublisherUrl: https://jan.ai/ +PublisherSupportUrl: https://github.com/menloresearch/jan/issues +Author: Homebrew Computer Company +PackageName: Jan +PackageUrl: https://jan.ai/ +License: AGPL-3.0 +LicenseUrl: https://github.com/menloresearch/jan/blob/HEAD/LICENSE +Copyright: Copyright © 2024 Jan +ShortDescription: Turn your computer into an AI computer +Description: Run LLMs like Mistral or Llama2 locally and offline on your computer, or connect to remote AI APIs like OpenAI’s GPT-4 or Groq. +Tags: +- ai +- large-language-model +- llama +- llm +- mistral +ReleaseNotes: |- + Changes + - 🔧config: remove MCP and tool use production gate @louis-menlo (#5531) + - 🐛fix: default model settings @louis-menlo (#5528) + - ✨enhancement: adjust placement exp toggle @urmauur (#5525) + - ✨feat: improve local provider connectivity with CORS bypass @samhvw8 (#5458) + - ✨enhancement: experimental feature toggle @urmauur (#5514) + - 🐛fix: delete pre populate remote models @urmauur (#5516) + - ♻️ sync: cherry pick v0.6.2 release @louis-menlo (#5515) + Contributor + @louis-menlo, @samhvw8 and @urmauur +ReleaseNotesUrl: https://github.com/menloresearch/jan/releases/tag/v0.6.2 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://jan.ai/docs +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jan/Jan/0.6.2/Jan.Jan.locale.zh-CN.yaml b/manifests/j/Jan/Jan/0.6.2/Jan.Jan.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f6b33e15974b2 --- /dev/null +++ b/manifests/j/Jan/Jan/0.6.2/Jan.Jan.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: Jan.Jan +PackageVersion: 0.6.2 +PackageLocale: zh-CN +ShortDescription: 为您的电脑赋能 AI +Description: 在电脑上本地离线运行 Mistral 或 Llama2 等 LLM,或者连接 OpenAI 的 GPT-4、Groq 等在线 AI 的 API。 +Tags: +- llama +- llm +- mistral +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/menloresearch/jan/releases/tag/v0.6.2 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://jan.ai/docs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jan/Jan/0.6.2/Jan.Jan.yaml b/manifests/j/Jan/Jan/0.6.2/Jan.Jan.yaml new file mode 100644 index 0000000000000..5b180b30a96d0 --- /dev/null +++ b/manifests/j/Jan/Jan/0.6.2/Jan.Jan.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: Jan.Jan +PackageVersion: 0.6.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jan/Jan/0.6.3/Jan.Jan.installer.yaml b/manifests/j/Jan/Jan/0.6.3/Jan.Jan.installer.yaml new file mode 100644 index 0000000000000..20b01bf08beba --- /dev/null +++ b/manifests/j/Jan/Jan/0.6.3/Jan.Jan.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: Jan.Jan +PackageVersion: 0.6.3 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- jan +ProductCode: 26e92a45-3e3b-5b43-bb59-04bf3b027b64 +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/menloresearch/jan/releases/download/v0.6.3/Jan_0.6.3_x64-setup.exe + InstallerSha256: 45EBB56730BD7D83905EFAC136C7A1D6BF869C65460F0181D4D40CD1E4ED0ED5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jan/Jan/0.6.3/Jan.Jan.locale.en-US.yaml b/manifests/j/Jan/Jan/0.6.3/Jan.Jan.locale.en-US.yaml new file mode 100644 index 0000000000000..bed5a534aca51 --- /dev/null +++ b/manifests/j/Jan/Jan/0.6.3/Jan.Jan.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: Jan.Jan +PackageVersion: 0.6.3 +PackageLocale: en-US +Publisher: Jan +PublisherUrl: https://jan.ai/ +PublisherSupportUrl: https://github.com/menloresearch/jan/issues +Author: Homebrew Computer Company +PackageName: Jan +PackageUrl: https://jan.ai/ +License: AGPL-3.0 +LicenseUrl: https://github.com/menloresearch/jan/blob/HEAD/LICENSE +Copyright: Copyright © 2024 Jan +ShortDescription: Turn your computer into an AI computer +Description: Run LLMs like Mistral or Llama2 locally and offline on your computer, or connect to remote AI APIs like OpenAI’s GPT-4 or Groq. +Tags: +- ai +- large-language-model +- llama +- llm +- mistral +ReleaseNotes: |- + Changes + - fix: handle context shift setting from old app versions @louis-menlo (#5547) + - 🐛fix: modal action light mode @urmauur (#5545) + - hotfix: increase context size window does not popup first time @louis-menlo (#5542) + Contributor + @louis-menlo and @urmauur +ReleaseNotesUrl: https://github.com/menloresearch/jan/releases/tag/v0.6.3 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://jan.ai/docs +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jan/Jan/0.6.3/Jan.Jan.locale.zh-CN.yaml b/manifests/j/Jan/Jan/0.6.3/Jan.Jan.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b3daf656e70a4 --- /dev/null +++ b/manifests/j/Jan/Jan/0.6.3/Jan.Jan.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: Jan.Jan +PackageVersion: 0.6.3 +PackageLocale: zh-CN +ShortDescription: 为您的电脑赋能 AI +Description: 在电脑上本地离线运行 Mistral 或 Llama2 等 LLM,或者连接 OpenAI 的 GPT-4、Groq 等在线 AI 的 API。 +Tags: +- llama +- llm +- mistral +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/menloresearch/jan/releases/tag/v0.6.3 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://jan.ai/docs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jan/Jan/0.6.3/Jan.Jan.yaml b/manifests/j/Jan/Jan/0.6.3/Jan.Jan.yaml new file mode 100644 index 0000000000000..eeb16197f4a8c --- /dev/null +++ b/manifests/j/Jan/Jan/0.6.3/Jan.Jan.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: Jan.Jan +PackageVersion: 0.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jan/Jan/0.6.4/Jan.Jan.installer.yaml b/manifests/j/Jan/Jan/0.6.4/Jan.Jan.installer.yaml new file mode 100644 index 0000000000000..17f5e6536d8bd --- /dev/null +++ b/manifests/j/Jan/Jan/0.6.4/Jan.Jan.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: Jan.Jan +PackageVersion: 0.6.4 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- jan +ProductCode: 26e92a45-3e3b-5b43-bb59-04bf3b027b64 +ReleaseDate: 2025-07-01 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/menloresearch/jan/releases/download/v0.6.4/Jan_0.6.4_x64-setup.exe + InstallerSha256: 931A9335E53049F33E056B6364A4E268A2529AFEECD53673ABF7BF06C6EFB791 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jan/Jan/0.6.4/Jan.Jan.locale.en-US.yaml b/manifests/j/Jan/Jan/0.6.4/Jan.Jan.locale.en-US.yaml new file mode 100644 index 0000000000000..399a064ec5907 --- /dev/null +++ b/manifests/j/Jan/Jan/0.6.4/Jan.Jan.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: Jan.Jan +PackageVersion: 0.6.4 +PackageLocale: en-US +Publisher: Jan +PublisherUrl: https://jan.ai/ +PublisherSupportUrl: https://github.com/menloresearch/jan/issues +Author: Homebrew Computer Company +PackageName: Jan +PackageUrl: https://jan.ai/ +License: AGPL-3.0 +LicenseUrl: https://github.com/menloresearch/jan/blob/HEAD/LICENSE +Copyright: Copyright © 2024 Jan +ShortDescription: Turn your computer into an AI computer +Description: Run LLMs like Mistral or Llama2 locally and offline on your computer, or connect to remote AI APIs like OpenAI’s GPT-4 or Groq. +Tags: +- ai +- large-language-model +- llama +- llm +- mistral +ReleaseNotes: |- + Changes + - fix: top_k validation @louis-menlo (#5650) + - fix: some of the model settings are not applied @louis-menlo (#5644) + - fix: min_p validation on model load @louis-menlo (#5568) + Contributor + @louis-menlo +ReleaseNotesUrl: https://github.com/menloresearch/jan/releases/tag/v0.6.4 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://jan.ai/docs +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jan/Jan/0.6.4/Jan.Jan.locale.zh-CN.yaml b/manifests/j/Jan/Jan/0.6.4/Jan.Jan.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3f4422c85a96d --- /dev/null +++ b/manifests/j/Jan/Jan/0.6.4/Jan.Jan.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: Jan.Jan +PackageVersion: 0.6.4 +PackageLocale: zh-CN +ShortDescription: 为您的电脑赋能 AI +Description: 在电脑上本地离线运行 Mistral 或 Llama2 等 LLM,或者连接 OpenAI 的 GPT-4、Groq 等在线 AI 的 API。 +Tags: +- llama +- llm +- mistral +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/menloresearch/jan/releases/tag/v0.6.4 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://jan.ai/docs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jan/Jan/0.6.4/Jan.Jan.yaml b/manifests/j/Jan/Jan/0.6.4/Jan.Jan.yaml new file mode 100644 index 0000000000000..2e8559bf9026d --- /dev/null +++ b/manifests/j/Jan/Jan/0.6.4/Jan.Jan.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: Jan.Jan +PackageVersion: 0.6.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.0/JanDeDobbeleer.OhMyPosh.installer.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.0/JanDeDobbeleer.OhMyPosh.installer.yaml new file mode 100644 index 0000000000000..eb514cc1e56df --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.0/JanDeDobbeleer.OhMyPosh.installer.yaml @@ -0,0 +1,59 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.10.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: msi +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.10.0/install-x64.msi + InstallerSha256: 88DECCC9703FD42F236135CD8E6F77DC11C07D6EFE29F760533F1531666BE435 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.10.0/install-x64.msi + InstallerSha256: 88DECCC9703FD42F236135CD8E6F77DC11C07D6EFE29F760533F1531666BE435 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.10.0/install-x86.msi + InstallerSha256: E7CEF561599D78AD66DA6B1A1572B21D072A68A9F590CC0199155464BD5B1756 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.10.0/install-x86.msi + InstallerSha256: E7CEF561599D78AD66DA6B1A1572B21D072A68A9F590CC0199155464BD5B1756 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.10.0/install-arm64.msi + InstallerSha256: 5F53F8B53CCA58FEAD64666D9198C11F15B76246AF17D11CBE08E1DDAD28988E + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.10.0/install-arm64.msi + InstallerSha256: 5F53F8B53CCA58FEAD64666D9198C11F15B76246AF17D11CBE08E1DDAD28988E + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2025-06-25 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml new file mode 100644 index 0000000000000..01fb9858344df --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.10.0 +PackageLocale: en-US +Publisher: Jan De Dobbeleer +PublisherUrl: https://github.com/JanDeDobbeleer/oh-my-posh/ +PublisherSupportUrl: https://github.com/JanDeDobbeleer/oh-my-posh/issues +Author: Jan De Dobbeleer +PackageName: Oh My Posh +PackageUrl: https://ohmyposh.dev/ +License: MIT +LicenseUrl: https://github.com/JanDeDobbeleer/oh-my-posh/raw/main/COPYING +ShortDescription: Prompt theme engine for any shell +Moniker: oh-my-posh +Tags: +- console +- command-line +- shell +- command-prompt +- powershell +- wsl +- developer-tools +- utilities +- cli +- cmd +- ps +- terminal +- oh-my-posh +ReleaseNotesUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v26.10.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.0/JanDeDobbeleer.OhMyPosh.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.0/JanDeDobbeleer.OhMyPosh.yaml new file mode 100644 index 0000000000000..2eeaa283c5bab --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.0/JanDeDobbeleer.OhMyPosh.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.1/JanDeDobbeleer.OhMyPosh.installer.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.1/JanDeDobbeleer.OhMyPosh.installer.yaml new file mode 100644 index 0000000000000..d3befd92f177b --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.1/JanDeDobbeleer.OhMyPosh.installer.yaml @@ -0,0 +1,59 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.10.1 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: msi +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.10.1/install-x64.msi + InstallerSha256: 663D7F9A411F5A9724B3F07EF8437B8D39C4B22A08A5C03667E2F24801482E3E + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.10.1/install-x64.msi + InstallerSha256: 663D7F9A411F5A9724B3F07EF8437B8D39C4B22A08A5C03667E2F24801482E3E + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.10.1/install-x86.msi + InstallerSha256: B6E47AB70ABCCA42F4E819A238FE66E3F8BDF8C1F1EDBF16470E7BC7D3F3FF3B + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.10.1/install-x86.msi + InstallerSha256: B6E47AB70ABCCA42F4E819A238FE66E3F8BDF8C1F1EDBF16470E7BC7D3F3FF3B + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.10.1/install-arm64.msi + InstallerSha256: 1B520D1868DEA2826BBDE4FE280C74E14D08E70BA79F0110C7E4A5EBE6F82979 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.10.1/install-arm64.msi + InstallerSha256: 1B520D1868DEA2826BBDE4FE280C74E14D08E70BA79F0110C7E4A5EBE6F82979 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2025-06-25 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.1/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.1/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml new file mode 100644 index 0000000000000..4b5bb217ea6b7 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.1/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.10.1 +PackageLocale: en-US +Publisher: Jan De Dobbeleer +PublisherUrl: https://github.com/JanDeDobbeleer/oh-my-posh/ +PublisherSupportUrl: https://github.com/JanDeDobbeleer/oh-my-posh/issues +Author: Jan De Dobbeleer +PackageName: Oh My Posh +PackageUrl: https://ohmyposh.dev/ +License: MIT +LicenseUrl: https://github.com/JanDeDobbeleer/oh-my-posh/raw/main/COPYING +ShortDescription: Prompt theme engine for any shell +Moniker: oh-my-posh +Tags: +- console +- command-line +- shell +- command-prompt +- powershell +- wsl +- developer-tools +- utilities +- cli +- cmd +- ps +- terminal +- oh-my-posh +ReleaseNotesUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v26.10.1 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.1/JanDeDobbeleer.OhMyPosh.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.1/JanDeDobbeleer.OhMyPosh.yaml new file mode 100644 index 0000000000000..399e831193476 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.10.1/JanDeDobbeleer.OhMyPosh.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.10.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.11.0/JanDeDobbeleer.OhMyPosh.installer.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.11.0/JanDeDobbeleer.OhMyPosh.installer.yaml new file mode 100644 index 0000000000000..a20c612337ceb --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.11.0/JanDeDobbeleer.OhMyPosh.installer.yaml @@ -0,0 +1,59 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.11.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: msi +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.11.0/install-x64.msi + InstallerSha256: 67FF603CAEDECDB0EFEAA23792708A75FB2D6D0D873F7E2BCA3229D1FD68C55E + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.11.0/install-x64.msi + InstallerSha256: 67FF603CAEDECDB0EFEAA23792708A75FB2D6D0D873F7E2BCA3229D1FD68C55E + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.11.0/install-x86.msi + InstallerSha256: F4DD316F330BD5904CE5EC0B6AC0E153A7DA60D8E195BCDBF2F62A564ACB588B + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.11.0/install-x86.msi + InstallerSha256: F4DD316F330BD5904CE5EC0B6AC0E153A7DA60D8E195BCDBF2F62A564ACB588B + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.11.0/install-arm64.msi + InstallerSha256: 9F1651021B9141F12F6E43F8216F43C6227FCD684EE746230FFE1673C13E48E2 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.11.0/install-arm64.msi + InstallerSha256: 9F1651021B9141F12F6E43F8216F43C6227FCD684EE746230FFE1673C13E48E2 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2025-06-25 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.11.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.11.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml new file mode 100644 index 0000000000000..9c51b835e42b9 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.11.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.11.0 +PackageLocale: en-US +Publisher: Jan De Dobbeleer +PublisherUrl: https://github.com/JanDeDobbeleer/oh-my-posh/ +PublisherSupportUrl: https://github.com/JanDeDobbeleer/oh-my-posh/issues +Author: Jan De Dobbeleer +PackageName: Oh My Posh +PackageUrl: https://ohmyposh.dev/ +License: MIT +LicenseUrl: https://github.com/JanDeDobbeleer/oh-my-posh/raw/main/COPYING +ShortDescription: Prompt theme engine for any shell +Moniker: oh-my-posh +Tags: +- console +- command-line +- shell +- command-prompt +- powershell +- wsl +- developer-tools +- utilities +- cli +- cmd +- ps +- terminal +- oh-my-posh +ReleaseNotesUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v26.11.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.11.0/JanDeDobbeleer.OhMyPosh.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.11.0/JanDeDobbeleer.OhMyPosh.yaml new file mode 100644 index 0000000000000..b8ba3794948fd --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.11.0/JanDeDobbeleer.OhMyPosh.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.11.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.12.0/JanDeDobbeleer.OhMyPosh.installer.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.12.0/JanDeDobbeleer.OhMyPosh.installer.yaml new file mode 100644 index 0000000000000..4ed434a27a752 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.12.0/JanDeDobbeleer.OhMyPosh.installer.yaml @@ -0,0 +1,59 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.12.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: msi +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.12.0/install-x64.msi + InstallerSha256: 3E182F7A2666716FF5F736000E0AB604ADFAB7780B125CC69844F228B04106B9 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.12.0/install-x64.msi + InstallerSha256: 3E182F7A2666716FF5F736000E0AB604ADFAB7780B125CC69844F228B04106B9 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.12.0/install-x86.msi + InstallerSha256: C6699D7D41838A838FE3BC9346C8020790E768C27190B5B32DA0CB530ABCE4F6 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.12.0/install-x86.msi + InstallerSha256: C6699D7D41838A838FE3BC9346C8020790E768C27190B5B32DA0CB530ABCE4F6 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.12.0/install-arm64.msi + InstallerSha256: 52305BACDA6410ED86BEEAC5DD4F8DF51F6349C09B48962981CB4A9D31B7D681 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.12.0/install-arm64.msi + InstallerSha256: 52305BACDA6410ED86BEEAC5DD4F8DF51F6349C09B48962981CB4A9D31B7D681 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2025-06-29 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.12.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.12.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml new file mode 100644 index 0000000000000..a24f5bcb51bb3 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.12.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.12.0 +PackageLocale: en-US +Publisher: Jan De Dobbeleer +PublisherUrl: https://github.com/JanDeDobbeleer/oh-my-posh/ +PublisherSupportUrl: https://github.com/JanDeDobbeleer/oh-my-posh/issues +Author: Jan De Dobbeleer +PackageName: Oh My Posh +PackageUrl: https://ohmyposh.dev/ +License: MIT +LicenseUrl: https://github.com/JanDeDobbeleer/oh-my-posh/raw/main/COPYING +ShortDescription: Prompt theme engine for any shell +Moniker: oh-my-posh +Tags: +- console +- command-line +- shell +- command-prompt +- powershell +- wsl +- developer-tools +- utilities +- cli +- cmd +- ps +- terminal +- oh-my-posh +ReleaseNotesUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v26.12.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.12.0/JanDeDobbeleer.OhMyPosh.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.12.0/JanDeDobbeleer.OhMyPosh.yaml new file mode 100644 index 0000000000000..31fdba860fd62 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.12.0/JanDeDobbeleer.OhMyPosh.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.12.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.13.0/JanDeDobbeleer.OhMyPosh.installer.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.13.0/JanDeDobbeleer.OhMyPosh.installer.yaml new file mode 100644 index 0000000000000..f7a3b97c22872 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.13.0/JanDeDobbeleer.OhMyPosh.installer.yaml @@ -0,0 +1,59 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.13.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: msi +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.13.0/install-x64.msi + InstallerSha256: 58813A50B4C4A5BB65F9D44E3ED924974B173F7B0B086617FF7713C40040809C + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.13.0/install-x64.msi + InstallerSha256: 58813A50B4C4A5BB65F9D44E3ED924974B173F7B0B086617FF7713C40040809C + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.13.0/install-x86.msi + InstallerSha256: B5D895B64618C2352FD5D6817CADF0F2527D946F3924A514AFB2C2D0ABBE2219 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.13.0/install-x86.msi + InstallerSha256: B5D895B64618C2352FD5D6817CADF0F2527D946F3924A514AFB2C2D0ABBE2219 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.13.0/install-arm64.msi + InstallerSha256: 2483AE75B30D7024C2B09A7400CB07DB6209709B1348C2D8BD1E8835EDB12570 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.13.0/install-arm64.msi + InstallerSha256: 2483AE75B30D7024C2B09A7400CB07DB6209709B1348C2D8BD1E8835EDB12570 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2025-06-30 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.13.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.13.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml new file mode 100644 index 0000000000000..b07ed4b73e403 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.13.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.13.0 +PackageLocale: en-US +Publisher: Jan De Dobbeleer +PublisherUrl: https://github.com/JanDeDobbeleer/oh-my-posh/ +PublisherSupportUrl: https://github.com/JanDeDobbeleer/oh-my-posh/issues +Author: Jan De Dobbeleer +PackageName: Oh My Posh +PackageUrl: https://ohmyposh.dev/ +License: MIT +LicenseUrl: https://github.com/JanDeDobbeleer/oh-my-posh/raw/main/COPYING +ShortDescription: Prompt theme engine for any shell +Moniker: oh-my-posh +Tags: +- console +- command-line +- shell +- command-prompt +- powershell +- wsl +- developer-tools +- utilities +- cli +- cmd +- ps +- terminal +- oh-my-posh +ReleaseNotesUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v26.13.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.13.0/JanDeDobbeleer.OhMyPosh.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.13.0/JanDeDobbeleer.OhMyPosh.yaml new file mode 100644 index 0000000000000..c6f224c768727 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.13.0/JanDeDobbeleer.OhMyPosh.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.13.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.0/JanDeDobbeleer.OhMyPosh.installer.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.0/JanDeDobbeleer.OhMyPosh.installer.yaml new file mode 100644 index 0000000000000..b1b0bf94211da --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.0/JanDeDobbeleer.OhMyPosh.installer.yaml @@ -0,0 +1,59 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.14.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: msi +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.0/install-x64.msi + InstallerSha256: 016AE7BC733486D4F8B96ADB4BA5B57A485891316D920275155C41F414C4E43D + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.0/install-x64.msi + InstallerSha256: 016AE7BC733486D4F8B96ADB4BA5B57A485891316D920275155C41F414C4E43D + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.0/install-x86.msi + InstallerSha256: E090E71432C86A10791CB11E12D72DB5F1E0342D28A2EBB48A9BB1E5C00A257A + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.0/install-x86.msi + InstallerSha256: E090E71432C86A10791CB11E12D72DB5F1E0342D28A2EBB48A9BB1E5C00A257A + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.0/install-arm64.msi + InstallerSha256: C5FE80148452D03C604FC047CACC666A8D716C7647998F6F2B2E27FD472C0727 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.0/install-arm64.msi + InstallerSha256: C5FE80148452D03C604FC047CACC666A8D716C7647998F6F2B2E27FD472C0727 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2025-07-06 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml new file mode 100644 index 0000000000000..e5223f12c38b0 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.14.0 +PackageLocale: en-US +Publisher: Jan De Dobbeleer +PublisherUrl: https://github.com/JanDeDobbeleer/oh-my-posh/ +PublisherSupportUrl: https://github.com/JanDeDobbeleer/oh-my-posh/issues +Author: Jan De Dobbeleer +PackageName: Oh My Posh +PackageUrl: https://ohmyposh.dev/ +License: MIT +LicenseUrl: https://github.com/JanDeDobbeleer/oh-my-posh/raw/main/COPYING +ShortDescription: Prompt theme engine for any shell +Moniker: oh-my-posh +Tags: +- console +- command-line +- shell +- command-prompt +- powershell +- wsl +- developer-tools +- utilities +- cli +- cmd +- ps +- terminal +- oh-my-posh +ReleaseNotesUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v26.14.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.0/JanDeDobbeleer.OhMyPosh.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.0/JanDeDobbeleer.OhMyPosh.yaml new file mode 100644 index 0000000000000..8e686fc705168 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.0/JanDeDobbeleer.OhMyPosh.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.14.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.1/JanDeDobbeleer.OhMyPosh.installer.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.1/JanDeDobbeleer.OhMyPosh.installer.yaml new file mode 100644 index 0000000000000..94ac22eb09a77 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.1/JanDeDobbeleer.OhMyPosh.installer.yaml @@ -0,0 +1,59 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.14.1 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: msi +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.1/install-x64.msi + InstallerSha256: 394A794304B6147D8D59557F6CC57460C29EA075C34435D7CC9D17A2016AB1E9 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.1/install-x64.msi + InstallerSha256: 394A794304B6147D8D59557F6CC57460C29EA075C34435D7CC9D17A2016AB1E9 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.1/install-x86.msi + InstallerSha256: 64AC7A0D39EEC20DF1370F70AD496E4CC88934C53AC34B74DB3EF8D769350C43 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.1/install-x86.msi + InstallerSha256: 64AC7A0D39EEC20DF1370F70AD496E4CC88934C53AC34B74DB3EF8D769350C43 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.1/install-arm64.msi + InstallerSha256: 3059D2740BCE9C2E841136253F5A979AEB1C680C5779B3FF6945A300E38493CE + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.1/install-arm64.msi + InstallerSha256: 3059D2740BCE9C2E841136253F5A979AEB1C680C5779B3FF6945A300E38493CE + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2025-07-07 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.1/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.1/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml new file mode 100644 index 0000000000000..913346fea4718 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.1/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.14.1 +PackageLocale: en-US +Publisher: Jan De Dobbeleer +PublisherUrl: https://github.com/JanDeDobbeleer/oh-my-posh/ +PublisherSupportUrl: https://github.com/JanDeDobbeleer/oh-my-posh/issues +Author: Jan De Dobbeleer +PackageName: Oh My Posh +PackageUrl: https://ohmyposh.dev/ +License: MIT +LicenseUrl: https://github.com/JanDeDobbeleer/oh-my-posh/raw/main/COPYING +ShortDescription: Prompt theme engine for any shell +Moniker: oh-my-posh +Tags: +- console +- command-line +- shell +- command-prompt +- powershell +- wsl +- developer-tools +- utilities +- cli +- cmd +- ps +- terminal +- oh-my-posh +ReleaseNotesUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v26.14.1 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.1/JanDeDobbeleer.OhMyPosh.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.1/JanDeDobbeleer.OhMyPosh.yaml new file mode 100644 index 0000000000000..3c6c02221e5c2 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.1/JanDeDobbeleer.OhMyPosh.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.14.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.3/JanDeDobbeleer.OhMyPosh.installer.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.3/JanDeDobbeleer.OhMyPosh.installer.yaml new file mode 100644 index 0000000000000..e2d2d9868ab3f --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.3/JanDeDobbeleer.OhMyPosh.installer.yaml @@ -0,0 +1,59 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.14.3 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: msi +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.3/install-x64.msi + InstallerSha256: 0F1687962C3F5206B70AF99E1064C70585857A2CAA0C2C96282561EC8CDB17AC + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.3/install-x64.msi + InstallerSha256: 0F1687962C3F5206B70AF99E1064C70585857A2CAA0C2C96282561EC8CDB17AC + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.3/install-x86.msi + InstallerSha256: F7BAAB9968764CCB887ECCF6A19F55331AA4F92E042977C0A252994140385F06 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.3/install-x86.msi + InstallerSha256: F7BAAB9968764CCB887ECCF6A19F55331AA4F92E042977C0A252994140385F06 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.3/install-arm64.msi + InstallerSha256: 752E682E0C78336F502C6583C7767EBFEEC401B73D751D8E32AC3CE16BC4BAE3 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.14.3/install-arm64.msi + InstallerSha256: 752E682E0C78336F502C6583C7767EBFEEC401B73D751D8E32AC3CE16BC4BAE3 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2025-07-07 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.3/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.3/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml new file mode 100644 index 0000000000000..de662a1093063 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.3/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.14.3 +PackageLocale: en-US +Publisher: Jan De Dobbeleer +PublisherUrl: https://github.com/JanDeDobbeleer/oh-my-posh/ +PublisherSupportUrl: https://github.com/JanDeDobbeleer/oh-my-posh/issues +Author: Jan De Dobbeleer +PackageName: Oh My Posh +PackageUrl: https://ohmyposh.dev/ +License: MIT +LicenseUrl: https://github.com/JanDeDobbeleer/oh-my-posh/raw/main/COPYING +ShortDescription: Prompt theme engine for any shell +Moniker: oh-my-posh +Tags: +- console +- command-line +- shell +- command-prompt +- powershell +- wsl +- developer-tools +- utilities +- cli +- cmd +- ps +- terminal +- oh-my-posh +ReleaseNotesUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v26.14.3 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.3/JanDeDobbeleer.OhMyPosh.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.3/JanDeDobbeleer.OhMyPosh.yaml new file mode 100644 index 0000000000000..feb5fd7738fdf --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.14.3/JanDeDobbeleer.OhMyPosh.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.14.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanProchazka/dbgate/6.5.5/JanProchazka.dbgate.installer.yaml b/manifests/j/JanProchazka/dbgate/6.5.5/JanProchazka.dbgate.installer.yaml new file mode 100644 index 0000000000000..3727aaa053e67 --- /dev/null +++ b/manifests/j/JanProchazka/dbgate/6.5.5/JanProchazka.dbgate.installer.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: JanProchazka.dbgate +PackageVersion: 6.5.5 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: user +InstallModes: +- silent +UpgradeBehavior: install +ProductCode: eabf4847-a999-55ba-aa27-eacddccc1540 +ReleaseDate: 2025-07-04 +AppsAndFeaturesEntries: +- DisplayName: DbGate 6.5.5 + ProductCode: eabf4847-a999-55ba-aa27-eacddccc1540 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/dbgate/dbgate/releases/download/v6.5.5/dbgate-6.5.5-win.exe + InstallerSha256: 144F5F128AB9D0B84EFD5D5672E0CE4EE722A432B63E47664CA86EFC822C38ED +- Architecture: x64 + InstallerUrl: https://github.com/dbgate/dbgate/releases/download/v6.5.5/dbgate-6.5.5-win_x64.exe + InstallerSha256: E93E7EAA3CC10DBF11724F013F9DC8214EF8B1331E4666DDB71286000BDBC72D +- Architecture: arm64 + InstallerUrl: https://github.com/dbgate/dbgate/releases/download/v6.5.5/dbgate-6.5.5-win_arm64.exe + InstallerSha256: 4FDA6D07CB774B995288EDA575E4A7EC379398A01DFEF15CF5B0E9B21BA7EA71 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JanProchazka/dbgate/6.5.5/JanProchazka.dbgate.locale.en-US.yaml b/manifests/j/JanProchazka/dbgate/6.5.5/JanProchazka.dbgate.locale.en-US.yaml new file mode 100644 index 0000000000000..3fea7f58d3cee --- /dev/null +++ b/manifests/j/JanProchazka/dbgate/6.5.5/JanProchazka.dbgate.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: JanProchazka.dbgate +PackageVersion: 6.5.5 +PackageLocale: en-US +Publisher: Jan Prochazka +PublisherUrl: https://github.com/dbgate/dbgate +PublisherSupportUrl: https://github.com/dbgate/dbgate/issues +Author: Jan Prochazka +PackageName: DbGate +PackageUrl: https://github.com/dbgate/dbgate +License: GPL-3.0 +LicenseUrl: https://github.com/dbgate/dbgate/blob/HEAD/LICENSE +Copyright: Copyright (c) Jan Prochazka +CopyrightUrl: https://github.com/dbgate/dbgate/blob/HEAD/LICENSE +ShortDescription: An open-source database administration tool. +Description: |- + Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others. + Runs under Windows, Linux, Mac or as web application +Tags: +- database-gui +- database-manager +- electron +- mongodb +- mysql +- postgresql +- sql +- sql-server +- sqlite +ReleaseNotes: |- + - ADDED: Administer cloud folder window + - CHANGED: Cloud menu redesign + - ADDED: Audit log (for Team Premium edition) + - ADDED: Added new timeline chart type (line chart with time axis) + - ADDED: Chart grouping (more measure determined from data) + - CHANGED: Improved chart autodetection - string X axis (with bar type), COUNT as measure, split different measures + - ADDED: Added chart data type detection + - FIXED: Fixed chart displaying problems + - FIXED: Fixed exporting chart to HTML + - CHANGED: Choose COUNT measure without selecting underlying ID field (use virtual __count) + - FIXED: Problems with authentification administration, especially for Postgres storage + - CHANGED: Anonymous autentification (in Team Premium) is now by default disabled +ReleaseNotesUrl: https://github.com/dbgate/dbgate/releases/tag/v6.5.5 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JanProchazka/dbgate/6.5.5/JanProchazka.dbgate.yaml b/manifests/j/JanProchazka/dbgate/6.5.5/JanProchazka.dbgate.yaml new file mode 100644 index 0000000000000..d1f567a491902 --- /dev/null +++ b/manifests/j/JanProchazka/dbgate/6.5.5/JanProchazka.dbgate.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: JanProchazka.dbgate +PackageVersion: 6.5.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Japplis/AppletRunnerPro/2.18/Japplis.AppletRunnerPro.installer.yaml b/manifests/j/Japplis/AppletRunnerPro/2.18/Japplis.AppletRunnerPro.installer.yaml new file mode 100644 index 0000000000000..d970789abc894 --- /dev/null +++ b/manifests/j/Japplis/AppletRunnerPro/2.18/Japplis.AppletRunnerPro.installer.yaml @@ -0,0 +1,27 @@ +# Created using Apache Ant script from Japplis +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Japplis.AppletRunnerPro +PackageVersion: 2.18 +Platform: +- Windows.Desktop +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x64 + Scope: machine + InstallerUrl: https://www.japplis.com/applet-runner/pro/versions/AppletRunnerPro-2.18.exe + InstallerSha256: 886d10aa7d21efdb46992b578ab37ba7b0ee0385edbc51a48a5c7766dfb5cbdd + InstallerSwitches: + Custom: /ALLUSERS +- Architecture: x64 + Scope: user + InstallerUrl: https://www.japplis.com/applet-runner/pro/versions/AppletRunnerPro-2.18.exe + InstallerSha256: 886d10aa7d21efdb46992b578ab37ba7b0ee0385edbc51a48a5c7766dfb5cbdd + InstallerSwitches: + Custom: /CURRENTUSER +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/Japplis/AppletRunnerPro/2.18/Japplis.AppletRunnerPro.locale.en-US.yaml b/manifests/j/Japplis/AppletRunnerPro/2.18/Japplis.AppletRunnerPro.locale.en-US.yaml new file mode 100644 index 0000000000000..7e3b542cea63d --- /dev/null +++ b/manifests/j/Japplis/AppletRunnerPro/2.18/Japplis.AppletRunnerPro.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using Apache Ant script from Japplis +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Japplis.AppletRunnerPro +PackageVersion: 2.18 +PackageLocale: en-US +Publisher: Japplis +PublisherUrl: https://www.japplis.com +Author: Anthony Goubard +PackageName: Applet Runner Pro +PackageUrl: https://www.japplis.com/applet-runner/pro/ +License: Commercial +LicenseUrl: https://www.japplis.com/applet-runner/pro/license.txt +Copyright: Copyright © 2020 - 2025 Japplis. All rights reserved. +ShortDescription: Run Java Applets as an Application +Description: |- + Applet Runner Pro - Run Java Applets + Applet Runner let you start Java applets as standalone application. Java applet are software that are downloaded and execute by providing a location like a link or local file. +ReleaseNotesUrl: https://www.japplis.com/applet-runner/pro/changes.txt +Moniker: applet-runner-pro +Tags: +- applet +- runner +- viewer +- Java +- online +- IDE +- jnlp +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Japplis/AppletRunnerPro/2.18/Japplis.AppletRunnerPro.yaml b/manifests/j/Japplis/AppletRunnerPro/2.18/Japplis.AppletRunnerPro.yaml new file mode 100644 index 0000000000000..62578be3bd055 --- /dev/null +++ b/manifests/j/Japplis/AppletRunnerPro/2.18/Japplis.AppletRunnerPro.yaml @@ -0,0 +1,8 @@ +# Created using Apache Ant script from Japplis +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Japplis.AppletRunnerPro +PackageVersion: 2.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JesseDuffield/lazygit/0.53.0/JesseDuffield.lazygit.installer.yaml b/manifests/j/JesseDuffield/lazygit/0.53.0/JesseDuffield.lazygit.installer.yaml new file mode 100644 index 0000000000000..c248d71456cf4 --- /dev/null +++ b/manifests/j/JesseDuffield/lazygit/0.53.0/JesseDuffield.lazygit.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: JesseDuffield.lazygit +PackageVersion: 0.53.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: lazygit.exe +ReleaseDate: 2025-07-05 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/jesseduffield/lazygit/releases/download/v0.53.0/lazygit_0.53.0_Windows_32-bit.zip + InstallerSha256: 554B577F8A152C01F7BC029124F4A5633068B06B50D3AD17E99FDEEF131D4794 +- Architecture: x64 + InstallerUrl: https://github.com/jesseduffield/lazygit/releases/download/v0.53.0/lazygit_0.53.0_Windows_x86_64.zip + InstallerSha256: E525C179600A94FC1DCA1B52CA57A281AD25196FF0A2AEE55013E1FE2DAEC943 +- Architecture: arm + InstallerUrl: https://github.com/jesseduffield/lazygit/releases/download/v0.53.0/lazygit_0.53.0_Windows_armv6.zip + InstallerSha256: 1D5CFE1729E7792EA323BD7D4C153EE8887FDA79ABA4E1B3F5823526969C6137 +- Architecture: arm64 + InstallerUrl: https://github.com/jesseduffield/lazygit/releases/download/v0.53.0/lazygit_0.53.0_Windows_arm64.zip + InstallerSha256: 7F87D0E56A3142D39966C0E3B3260FC7F807ABE1673D0C3106310AAD1CCE8BC9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JesseDuffield/lazygit/0.53.0/JesseDuffield.lazygit.locale.en-US.yaml b/manifests/j/JesseDuffield/lazygit/0.53.0/JesseDuffield.lazygit.locale.en-US.yaml new file mode 100644 index 0000000000000..e8afafc24ae92 --- /dev/null +++ b/manifests/j/JesseDuffield/lazygit/0.53.0/JesseDuffield.lazygit.locale.en-US.yaml @@ -0,0 +1,67 @@ +# Created with komac v2.12.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: JesseDuffield.lazygit +PackageVersion: 0.53.0 +PackageLocale: en-US +Publisher: Jesse Duffield +PublisherUrl: https://github.com/jesseduffield +PublisherSupportUrl: https://github.com/jesseduffield/lazygit/issues +Author: Jesse Duffield +PackageName: lazygit +PackageUrl: https://github.com/jesseduffield/lazygit +License: MIT +LicenseUrl: https://github.com/jesseduffield/lazygit/blob/HEAD/LICENSE +Copyright: Copyright (c) 2018 Jesse Duffield +CopyrightUrl: https://raw.githubusercontent.com/jesseduffield/lazygit/master/LICENSE +ShortDescription: Simple terminal UI for git commands. +Moniker: lazygit +Tags: +- cli +- cross-platform +- git +- git-client +- open-source +- terminal-app +ReleaseNotes: |- + What's Changed + Enhancements 🔥 + - Add option to disable warning when amending last commit by @johnhamlin in #4640 + - Add bold style for border by @aidancz in #4644 + - Add credential prompts for PKCS11-based SSH keys by @Jadeiin in #4646 + - Show annotation information for selected tag by @stefanhaller in #4663 + - Show stash name for selected stash by @stefanhaller in #4673 + - Auto-stash modified files when cherry-picking or reverting commits by @stefanhaller in #4683 + - Move to next stageable line when adding a line to a custom patch by @stefanhaller in #4675 + - Improve hunk selection mode in staging view by @stefanhaller in #4684 + - Add user config to use hunk mode by default when entering staging view by @stefanhaller in #4685 + Fixes 🔧 + - Fix stash operations when branch named 'stash' exists by @ChrisMcD1 in #4641 + - Fix moving a custom patch from the very first commit of the history to a later commit by @stefanhaller in #4631 + - Fix DEFAULT_REMOTE_ICON character code by @bedlamzd in #4653 + - Show GPG error before entering commit editor when rewording non-latest commits by @m04f in #4660 + - Fix branch head icon appearing at head commit when a remote or tag exists with the same name as the current branch by @stefanhaller in #4669 + - Fix applying custom patches to a dirty working tree by @stefanhaller in #4674 + - Collapse selection after deleting a range of branches or stashes by @nileric in #4661 + Maintenance ⚙️ + - Instantiate mutexes by value by @stefanhaller in #4632 + - Bump github.com/cloudflare/circl from 1.6.0 to 1.6.1 by @dependabot in #4633 + - Update linter by @stefanhaller in #4671 + - Some code cleanups to the "discard file changes from commit" feature by @stefanhaller in #4679 + - Change Refresh to not return an error by @stefanhaller in #4680 + Docs 📖 + - Fix formatting of a keyboard shortcut in the README.md by @DanOpcode in #4678 + I18n 🌎 + - Update translations from Crowdin by @stefanhaller in #4686 + New Contributors + - @johnhamlin made their first contribution in #4640 + - @aidancz made their first contribution in #4644 + - @bedlamzd made their first contribution in #4653 + - @Jadeiin made their first contribution in #4646 + - @m04f made their first contribution in #4660 + - @DanOpcode made their first contribution in #4678 + - @nileric made their first contribution in #4661 + Full Changelog: v0.52.0...v0.53.0 +ReleaseNotesUrl: https://github.com/jesseduffield/lazygit/releases/tag/v0.53.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JesseDuffield/lazygit/0.53.0/JesseDuffield.lazygit.yaml b/manifests/j/JesseDuffield/lazygit/0.53.0/JesseDuffield.lazygit.yaml new file mode 100644 index 0000000000000..1f875d9cc5c39 --- /dev/null +++ b/manifests/j/JesseDuffield/lazygit/0.53.0/JesseDuffield.lazygit.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: JesseDuffield.lazygit +PackageVersion: 0.53.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/CLion/2025.1.3/JetBrains.CLion.installer.yaml b/manifests/j/JetBrains/CLion/2025.1.3/JetBrains.CLion.installer.yaml new file mode 100644 index 0000000000000..b47e9ebc8aff5 --- /dev/null +++ b/manifests/j/JetBrains/CLion/2025.1.3/JetBrains.CLion.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: JetBrains.CLion +PackageVersion: 2025.1.3 +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- c +- cpp +- cxx +- h +- hpp +- hxx +- ipr +ProductCode: CLion 2025.1.3 +ReleaseDate: 2025-06-23 +AppsAndFeaturesEntries: +- DisplayVersion: 251.26927.39 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/cpp/CLion-2025.1.3.exe + InstallerSha256: 2A7CED05A57871E883111CE243E141A678D70BDD29B13ED6D0CD7150AA7A2D94 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/cpp/CLion-2025.1.3.exe + InstallerSha256: 2A7CED05A57871E883111CE243E141A678D70BDD29B13ED6D0CD7150AA7A2D94 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/cpp/CLion-2025.1.3-aarch64.exe + InstallerSha256: 471B14736D138835B2058BBBB0F27387930427DE6ADD10E75ABAB5AAEA40059A +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/cpp/CLion-2025.1.3-aarch64.exe + InstallerSha256: 471B14736D138835B2058BBBB0F27387930427DE6ADD10E75ABAB5AAEA40059A + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/CLion/2025.1.3/JetBrains.CLion.locale.en-US.yaml b/manifests/j/JetBrains/CLion/2025.1.3/JetBrains.CLion.locale.en-US.yaml new file mode 100644 index 0000000000000..96d11805d9fcf --- /dev/null +++ b/manifests/j/JetBrains/CLion/2025.1.3/JetBrains.CLion.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: JetBrains.CLion +PackageVersion: 2025.1.3 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +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: CLion +PackageUrl: https://www.jetbrains.com/clion/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +ShortDescription: A cross-platform IDE for C and C++ +Description: A powerful IDE from JetBrains helps you develop in C and C++ on Linux, macOS and Windows. +Moniker: clion +Tags: +- c +- c++ +- code +- coding +- cpp +- develop +- development +- ide +- programming +ReleaseNotes: |- + The CLion 2025.1.3 bug-fix update includes the following major improvements: + - The mechanism that prevented the file system root from being added to the header search paths for indexing now works correctly. + - The version of Python shipped with LLDB for Windows has been updated to 3.10.17, which addresses a medium vulnerability. + Please share your feedback and report any issues to our issue tracker. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/CPP-A-230654408 +PurchaseUrl: https://www.jetbrains.com/clion/buy/ +Documentations: +- DocumentLabel: Learn CLion + DocumentUrl: https://www.jetbrains.com/clion/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/CLion/2025.1.3/JetBrains.CLion.locale.zh-CN.yaml b/manifests/j/JetBrains/CLion/2025.1.3/JetBrains.CLion.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cdfb8fa4e8615 --- /dev/null +++ b/manifests/j/JetBrains/CLion/2025.1.3/JetBrains.CLion.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: JetBrains.CLion +PackageVersion: 2025.1.3 +PackageLocale: zh-CN +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PackageUrl: https://www.jetbrains.com/zh-cn/clion/ +License: 专有软件 +ShortDescription: C 和 C++ 跨平台 IDE +Description: JetBrains 出品的强大 IDE 帮助您在 Linux、macOS 和 Windows 上进行 C 和 C++ 开发。 +Tags: +- c +- c++ +- cpp +- 代码 +- 开发 +- 编程 +- 集成开发环境 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/CPP-A-230654408 +PurchaseUrl: https://www.jetbrains.com/zh-cn/clion/buy/ +Documentations: +- DocumentLabel: 学习 CLion + DocumentUrl: https://www.jetbrains.com/zh-cn/clion/learn/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/CLion/2025.1.3/JetBrains.CLion.yaml b/manifests/j/JetBrains/CLion/2025.1.3/JetBrains.CLion.yaml new file mode 100644 index 0000000000000..8ed53eee90213 --- /dev/null +++ b/manifests/j/JetBrains/CLion/2025.1.3/JetBrains.CLion.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.CLion +PackageVersion: 2025.1.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/CLion/EAP/252.23309.24/JetBrains.CLion.EAP.installer.yaml b/manifests/j/JetBrains/CLion/EAP/252.23309.24/JetBrains.CLion.EAP.installer.yaml new file mode 100644 index 0000000000000..5e8342e875900 --- /dev/null +++ b/manifests/j/JetBrains/CLion/EAP/252.23309.24/JetBrains.CLion.EAP.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: JetBrains.CLion.EAP +PackageVersion: 252.23309.24 +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- c +- cpp +- cxx +- h +- hpp +- hxx +- ipr +ProductCode: CLion 252.23309.24 +ReleaseDate: 2025-06-20 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/cpp/CLion-252.23309.24.exe + InstallerSha256: 8B38B4A2F40027B3C9A16E56B3654E3125801FBA9E46A7D42C231701AEC6BE45 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/cpp/CLion-252.23309.24.exe + InstallerSha256: 8B38B4A2F40027B3C9A16E56B3654E3125801FBA9E46A7D42C231701AEC6BE45 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/cpp/CLion-252.23309.24-aarch64.exe + InstallerSha256: AC12F1E60F4BC291CF4FA83B9821DB8A6C9105F17F2EF56900C34501801086F9 +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/cpp/CLion-252.23309.24-aarch64.exe + InstallerSha256: AC12F1E60F4BC291CF4FA83B9821DB8A6C9105F17F2EF56900C34501801086F9 + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/CLion/EAP/252.23309.24/JetBrains.CLion.EAP.locale.en-US.yaml b/manifests/j/JetBrains/CLion/EAP/252.23309.24/JetBrains.CLion.EAP.locale.en-US.yaml new file mode 100644 index 0000000000000..d66a107476db4 --- /dev/null +++ b/manifests/j/JetBrains/CLion/EAP/252.23309.24/JetBrains.CLion.EAP.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: JetBrains.CLion.EAP +PackageVersion: 252.23309.24 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +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: CLion (EAP) +PackageUrl: https://www.jetbrains.com/clion/nextversion/ +License: Freeware +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user_eap/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +ShortDescription: A cross-platform IDE for C and C++ +Description: Intelligent cross-platform C/C++ IDE for every C and C++ developer on Linux, macOS and Windows +Tags: +- c +- c++ +- code +- coding +- cpp +- develop +- development +- ide +- programming +ReleaseNotes: |- + The new 2025.2 EAP build includes the following major updates: + - The ESP-IDF debug server is now available, making it easier to configure and debug ESP-IDF projects. + - CLion Nova can now detect some compilation errors that were previously missed and display the corresponding warnings in the editor. Previously, these errors only appeared in the terminal once the build step was complete. + - Qt signals are no longer incorrectly identified as non-signals. + - CLion Nova now supports С11 atomic types. + - The Move caret down after Comment with Line Comment action now works as expected in CLion Nova. + - The IDE now correctly recognizes the inclusion of the cstddef header, which was previously treated as unused. + Please share your feedback and report any issues to our issue tracker. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/CPP-A-230654407 +Documentations: +- DocumentLabel: Learn CLion + DocumentUrl: https://www.jetbrains.com/clion/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/CLion/EAP/252.23309.24/JetBrains.CLion.EAP.locale.zh-CN.yaml b/manifests/j/JetBrains/CLion/EAP/252.23309.24/JetBrains.CLion.EAP.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c144a49f26c06 --- /dev/null +++ b/manifests/j/JetBrains/CLion/EAP/252.23309.24/JetBrains.CLion.EAP.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: JetBrains.CLion.EAP +PackageVersion: 252.23309.24 +PackageLocale: zh-CN +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PackageName: CLion(抢先体验计划) +PackageUrl: https://www.jetbrains.com/zh-cn/clion/nextversion/ +License: 免费软件 +ShortDescription: C 和 C++ 跨平台 IDE +Description: 为每一位 Linux、macOS 和 Windows 下的 C 和 C++ 开发者提供的智能跨平台 C/C++ IDE +Tags: +- c +- c++ +- cpp +- 代码 +- 开发 +- 编程 +- 集成开发环境 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/CPP-A-230654407 +Documentations: +- DocumentLabel: 学习 CLion + DocumentUrl: https://www.jetbrains.com/zh-cn/clion/learn/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/CLion/EAP/252.23309.24/JetBrains.CLion.EAP.yaml b/manifests/j/JetBrains/CLion/EAP/252.23309.24/JetBrains.CLion.EAP.yaml new file mode 100644 index 0000000000000..845062a03c366 --- /dev/null +++ b/manifests/j/JetBrains/CLion/EAP/252.23309.24/JetBrains.CLion.EAP.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.CLion.EAP +PackageVersion: 252.23309.24 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/DataGrip/EAP/252.23892.52/JetBrains.DataGrip.EAP.installer.yaml b/manifests/j/JetBrains/DataGrip/EAP/252.23892.52/JetBrains.DataGrip.EAP.installer.yaml new file mode 100644 index 0000000000000..b7da6d79430f8 --- /dev/null +++ b/manifests/j/JetBrains/DataGrip/EAP/252.23892.52/JetBrains.DataGrip.EAP.installer.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: JetBrains.DataGrip.EAP +PackageVersion: 252.23892.52 +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- ipr +- sql +ProductCode: DataGrip 252.23892.52 +ReleaseDate: 2025-07-04 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/datagrip/datagrip-252.23892.52.exe + InstallerSha256: 72FBA490C912928DDE80FE85340F38E3D07B99164F4E9AB3FB2A0B3ED61F01D0 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/datagrip/datagrip-252.23892.52.exe + InstallerSha256: 72FBA490C912928DDE80FE85340F38E3D07B99164F4E9AB3FB2A0B3ED61F01D0 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/datagrip/datagrip-252.23892.52-aarch64.exe + InstallerSha256: 5A43B8CB626CB2CA708E3A432898C7D70A6FA9ADA50C0F0F566D53F8C6097EAD +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/datagrip/datagrip-252.23892.52-aarch64.exe + InstallerSha256: 5A43B8CB626CB2CA708E3A432898C7D70A6FA9ADA50C0F0F566D53F8C6097EAD + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/DataGrip/EAP/252.23892.52/JetBrains.DataGrip.EAP.locale.en-US.yaml b/manifests/j/JetBrains/DataGrip/EAP/252.23892.52/JetBrains.DataGrip.EAP.locale.en-US.yaml new file mode 100644 index 0000000000000..fa38b0fda2100 --- /dev/null +++ b/manifests/j/JetBrains/DataGrip/EAP/252.23892.52/JetBrains.DataGrip.EAP.locale.en-US.yaml @@ -0,0 +1,64 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: JetBrains.DataGrip.EAP +PackageVersion: 252.23892.52 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +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: DataGrip (EAP) +PackageUrl: https://www.jetbrains.com/datagrip/nextversion/ +License: Freeware +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user_eap/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +ShortDescription: The Cross-Platform IDE for Databases & SQL by JetBrains +Description: A powerful IDE from JetBrains for SQL on macOS, Windows, and Linux. +Tags: +- database +- db2 +- develop +- development +- ide +- mssql +- mysql +- postgres +- programming +- sql +- sqlite +ReleaseNotes: |- + Ability to attach database objects to the AI chat + The database context you provide to the AI chat can now be more specific. Previously, only the whole schema could be attached. Now, you can attach the database object you need to work with - for example, a table or a view. This can be particularly useful when you're working with larger schemas. + To attach a database object, type @ or # in the input field, select or type dbObject:, then select the object you want to attach from the list. + + Cloud-based code completion + DataGrip now supports cloud-based code completion. It uses cloud resources to offer more precise code completion, leveraging greater computational power than local resources can provide. This feature allows the IDE to autocomplete single lines, blocks of code, and even entire scripts in real time based on the available context. The generated SQL is similar to how you would write your statements, matching your style and naming conventions. + With cloud-based code completion, DataGrip shows suggestions in the editor as you type, and you can also invoke them by pressing Option + Shift + \ (macOS) or Alt + Shift + \ (Windows/Linux). To disable this feature, go to Settings | Editor | General | Inline Completion, and then deselect the Enable cloud completion suggestions checkbox. + To use the cloud-based code completion feature, you need to have the AI Assistant plugin installed in your IDE. Once the plugin is installed, the feature is enabled by default. + + Editable results for SELECT queries with JOIN clauses + After a decade in the works, this long-awaited feature is here! Previously, the result set grid for the SELECT queries with JOIN clauses was read-only. Now, you can run such queries, view the result set, and then edit cell values right in the query results grid. To do this, simply double-click a cell or select it and press Enter. Also, just as in any other grid, you can right-click the cell and select Open in Value Editor to edit the value in a separate pane that opens on the right. + The data editor allows you to edit the values both in the in-editor results and in the Services tool window. Once you edit a cell value, the following buttons become active on the Result tab's toolbar in the Services tool window: Revert Selected, Preview Pending Changes, Submit. + + An additional toolbar with those buttons also appears at the bottom of the in-editor results pane. + + When you submit your changes to the database, DataGrip displays the DML Preview dialog for you to check the generated statements first. To edit your changes, click Cancel and proceed with editing. To submit the changes, click Submit. + + This feature is not supported for the SQL UNION operator, table self-join operation results, result sets with calculation result columns (for example, CONCAT), or NoSQL databases. To ensure proper results, the feature also requires a way to uniquely identify rows. + Grid heatmap + In the data editor, DataGrip now provides grid heatmaps with two color-scheme options, Diverging and Sequential. To enable the heatmap for your grid, click Table Coloring Options on the toolbar and select one of the schemes. + The Diverging color scheme emphasizes variation relative to a norm. It consists of two contrasting colors that deviate from a central value in two opposite directions. + + The Sequential color scheme consists of a single color or a range of closely related colors that vary in intensity. + + You can apply the heatmap color schemes to the whole table or to each column separately, or you can use coloring only for Boolean values. + One action for clearing all local filters in a grid + Now, you can clear the local filter for all columns in your grid using just one action. To do this, invoke the Find Action popup by pressing Cmd + Shift + A (macOS) or Ctrl + Shift + A (Windows/Linux), start typing Clear Local Filter For All Columns, and then select the action from the list. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/DBE-A-83165321/DataGrip-2025.2-252.23892.52-build-Release-Notes +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://www.jetbrains.com/help/datagrip/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/DataGrip/EAP/252.23892.52/JetBrains.DataGrip.EAP.locale.zh-CN.yaml b/manifests/j/JetBrains/DataGrip/EAP/252.23892.52/JetBrains.DataGrip.EAP.locale.zh-CN.yaml new file mode 100644 index 0000000000000..52c2475faf8d6 --- /dev/null +++ b/manifests/j/JetBrains/DataGrip/EAP/252.23892.52/JetBrains.DataGrip.EAP.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: JetBrains.DataGrip.EAP +PackageVersion: 252.23892.52 +PackageLocale: zh-CN +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PackageName: DataGrip(抢先体验计划) +PackageUrl: https://www.jetbrains.com/zh-cn/datagrip/nextversion/ +License: 免费软件 +ShortDescription: 由 JetBrains 开发的数据库和 SQL 跨平台 IDE +Description: JetBrains 为 macOS、Windows 和 Linux 的 SQL 开发的强大 IDE。 +Tags: +- db2 +- mssql +- mysql +- postgres +- sql +- sqlite +- 代码 +- 开发 +- 数据库 +- 编程 +- 集成开发环境 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/DBE-A-83165321/DataGrip-2025.2-252.23892.52-build-Release-Notes +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.jetbrains.com/help/datagrip/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/DataGrip/EAP/252.23892.52/JetBrains.DataGrip.EAP.yaml b/manifests/j/JetBrains/DataGrip/EAP/252.23892.52/JetBrains.DataGrip.EAP.yaml new file mode 100644 index 0000000000000..c512e305d516d --- /dev/null +++ b/manifests/j/JetBrains/DataGrip/EAP/252.23892.52/JetBrains.DataGrip.EAP.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.DataGrip.EAP +PackageVersion: 252.23892.52 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/DataSpell/2025.1.2/JetBrains.DataSpell.installer.yaml b/manifests/j/JetBrains/DataSpell/2025.1.2/JetBrains.DataSpell.installer.yaml new file mode 100644 index 0000000000000..2a1a8dd29c2e4 --- /dev/null +++ b/manifests/j/JetBrains/DataSpell/2025.1.2/JetBrains.DataSpell.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: JetBrains.DataSpell +PackageVersion: 2025.1.2 +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- ipr +- ipynb +- py +ProductCode: DataSpell 2025.1.2 +ReleaseDate: 2025-07-01 +AppsAndFeaturesEntries: +- DisplayVersion: 251.26927.75 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/python/dataspell-2025.1.2.exe + InstallerSha256: 4B146D9A07D0509A4D424096A14C9E86C6A0CD570014039EDA6EBA0277C54C76 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/python/dataspell-2025.1.2.exe + InstallerSha256: 4B146D9A07D0509A4D424096A14C9E86C6A0CD570014039EDA6EBA0277C54C76 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/python/dataspell-2025.1.2-aarch64.exe + InstallerSha256: C3CDF8511D632227C01E9EFCC2A558D0F2A385DFD942121D0630FA5942BF71B2 +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/python/dataspell-2025.1.2-aarch64.exe + InstallerSha256: C3CDF8511D632227C01E9EFCC2A558D0F2A385DFD942121D0630FA5942BF71B2 + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/DataSpell/2025.1.2/JetBrains.DataSpell.locale.en-US.yaml b/manifests/j/JetBrains/DataSpell/2025.1.2/JetBrains.DataSpell.locale.en-US.yaml new file mode 100644 index 0000000000000..300806e8791e5 --- /dev/null +++ b/manifests/j/JetBrains/DataSpell/2025.1.2/JetBrains.DataSpell.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: JetBrains.DataSpell +PackageVersion: 2025.1.2 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +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: DataSpell +PackageUrl: https://www.jetbrains.com/dataspell/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +ShortDescription: IDE for data analysts and analytics engineers +Description: JetBrains DataSpell is an IDE for data analysis with Jupyter notebooks and SQL-cells, interactive Python scripts, dbt Core, SQL databases support, and low-code features. +Moniker: dataspell +Tags: +- chart +- data +- data-analysis +- data-mining +- data-science +- graph +- graphics +- jupyter +- python +- visualization +ReleaseNotes: |- + DataSpell 2025.1.2 is Out! + JetBrains AI Pro is now included for free in DataSpell. + We've also introduced several minor updates and bug fixes. + Please see the release notes for the complete list of fixes and improvements. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/DS-A-216/DataSpell-251.26927.75-Release-Notes +PurchaseUrl: https://www.jetbrains.com/dataspell/buy/ +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://www.jetbrains.com/help/dataspell/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/DataSpell/2025.1.2/JetBrains.DataSpell.locale.zh-CN.yaml b/manifests/j/JetBrains/DataSpell/2025.1.2/JetBrains.DataSpell.locale.zh-CN.yaml new file mode 100644 index 0000000000000..63ae729a370f4 --- /dev/null +++ b/manifests/j/JetBrains/DataSpell/2025.1.2/JetBrains.DataSpell.locale.zh-CN.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: JetBrains.DataSpell +PackageVersion: 2025.1.2 +PackageLocale: zh-CN +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PackageUrl: https://www.jetbrains.com/zh-cn/dataspell/ +License: 专有软件 +ShortDescription: 面向数据分析师和分析工程师的 IDE +Description: JetBrains DataSpell 是适用于数据分析的 IDE,具有 Jupyter Notebook 与 SQL 单元、交互式 Python 脚本、dbt Core、SQL 数据库支持和低代码功能。 +Tags: +- jupyter +- python +- 可视化 +- 图表 +- 数据 +- 数据分析 +- 数据挖掘 +- 数据科学 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/DS-A-216/DataSpell-251.26927.75-Release-Notes +PurchaseUrl: https://www.jetbrains.com/zh-cn/dataspell/buy/ +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.jetbrains.com/help/dataspell/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/DataSpell/2025.1.2/JetBrains.DataSpell.yaml b/manifests/j/JetBrains/DataSpell/2025.1.2/JetBrains.DataSpell.yaml new file mode 100644 index 0000000000000..25cd67178cb67 --- /dev/null +++ b/manifests/j/JetBrains/DataSpell/2025.1.2/JetBrains.DataSpell.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.DataSpell +PackageVersion: 2025.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/GoLand/EAP/252.23591.30/JetBrains.GoLand.EAP.installer.yaml b/manifests/j/JetBrains/GoLand/EAP/252.23591.30/JetBrains.GoLand.EAP.installer.yaml new file mode 100644 index 0000000000000..60d4b53c45650 --- /dev/null +++ b/manifests/j/JetBrains/GoLand/EAP/252.23591.30/JetBrains.GoLand.EAP.installer.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: JetBrains.GoLand.EAP +PackageVersion: 252.23591.30 +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- go +- ipr +ProductCode: GoLand 252.23591.30 +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/go/goland-252.23591.30.exe + InstallerSha256: 6364777B18CAF4D208A62988A4EF35070F72662FCC06B55918C4A5A147249AE3 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/go/goland-252.23591.30.exe + InstallerSha256: 6364777B18CAF4D208A62988A4EF35070F72662FCC06B55918C4A5A147249AE3 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/go/goland-252.23591.30-aarch64.exe + InstallerSha256: 8CBC5076F2145660B62E8D2AE0E0CFC99F93AD257CDEA3F6CCE1F7255F7613EB +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/go/goland-252.23591.30-aarch64.exe + InstallerSha256: 8CBC5076F2145660B62E8D2AE0E0CFC99F93AD257CDEA3F6CCE1F7255F7613EB + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/GoLand/EAP/252.23591.30/JetBrains.GoLand.EAP.locale.en-US.yaml b/manifests/j/JetBrains/GoLand/EAP/252.23591.30/JetBrains.GoLand.EAP.locale.en-US.yaml new file mode 100644 index 0000000000000..df1e0528b5fd5 --- /dev/null +++ b/manifests/j/JetBrains/GoLand/EAP/252.23591.30/JetBrains.GoLand.EAP.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: JetBrains.GoLand.EAP +PackageVersion: 252.23591.30 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +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: GoLand (EAP) +PackageUrl: https://www.jetbrains.com/go/nextversion/ +License: Freeware +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user_eap/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +ShortDescription: The complete IDE crafted for Gophers +Tags: +- code +- coding +- develop +- development +- go +- golang +- ide +- programming +ReleaseNotes: |- + GoLand 2025.2 EAP 7 is now available! + In this EAP, we’ve introduced a bunch of minor updates and bug fixes. Please see the release notes for the complete list of fixes and improvements. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/GO-A-231735974 +Documentations: +- DocumentLabel: Quick Start + DocumentUrl: https://www.jetbrains.com/go/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/GoLand/EAP/252.23591.30/JetBrains.GoLand.EAP.locale.zh-CN.yaml b/manifests/j/JetBrains/GoLand/EAP/252.23591.30/JetBrains.GoLand.EAP.locale.zh-CN.yaml new file mode 100644 index 0000000000000..96e59af660bde --- /dev/null +++ b/manifests/j/JetBrains/GoLand/EAP/252.23591.30/JetBrains.GoLand.EAP.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: JetBrains.GoLand.EAP +PackageVersion: 252.23591.30 +PackageLocale: zh-CN +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PackageName: GoLand(抢先体验计划) +PackageUrl: https://www.jetbrains.com/zh-cn/go/nextversion/ +License: 免费软件 +ShortDescription: 为 Go 开发者打造的完整 IDE +Tags: +- go +- golang +- 代码 +- 开发 +- 编程 +- 集成开发环境 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/GO-A-231735974 +Documentations: +- DocumentLabel: 快速入门 + DocumentUrl: https://www.jetbrains.com/zh-cn/go/learn/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/GoLand/EAP/252.23591.30/JetBrains.GoLand.EAP.yaml b/manifests/j/JetBrains/GoLand/EAP/252.23591.30/JetBrains.GoLand.EAP.yaml new file mode 100644 index 0000000000000..4ec6c147975df --- /dev/null +++ b/manifests/j/JetBrains/GoLand/EAP/252.23591.30/JetBrains.GoLand.EAP.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.GoLand.EAP +PackageVersion: 252.23591.30 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/IntelliJIDEA/Community/EAP/252.23591.19/JetBrains.IntelliJIDEA.Community.EAP.installer.yaml b/manifests/j/JetBrains/IntelliJIDEA/Community/EAP/252.23591.19/JetBrains.IntelliJIDEA.Community.EAP.installer.yaml new file mode 100644 index 0000000000000..e9a3224bf7f30 --- /dev/null +++ b/manifests/j/JetBrains/IntelliJIDEA/Community/EAP/252.23591.19/JetBrains.IntelliJIDEA.Community.EAP.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: JetBrains.IntelliJIDEA.Community.EAP +PackageVersion: 252.23591.19 +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- groovy +- ipr +- java +- kt +- kts +ProductCode: IntelliJ IDEA Community Edition 252.23591.19 +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/idea/ideaIC-252.23591.19.exe + InstallerSha256: 673FA08503B60E59ECD7A3159FB5C88FFA0CA8294A0BC489AC0A362AD1674F50 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/idea/ideaIC-252.23591.19.exe + InstallerSha256: 673FA08503B60E59ECD7A3159FB5C88FFA0CA8294A0BC489AC0A362AD1674F50 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/idea/ideaIC-252.23591.19-aarch64.exe + InstallerSha256: 37CF4B86369A26D681CD37015483EB14E73EBEF8B664446AA03400E4178ADD14 +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/idea/ideaIC-252.23591.19-aarch64.exe + InstallerSha256: 37CF4B86369A26D681CD37015483EB14E73EBEF8B664446AA03400E4178ADD14 + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/IntelliJIDEA/Community/EAP/252.23591.19/JetBrains.IntelliJIDEA.Community.EAP.locale.en-US.yaml b/manifests/j/JetBrains/IntelliJIDEA/Community/EAP/252.23591.19/JetBrains.IntelliJIDEA.Community.EAP.locale.en-US.yaml new file mode 100644 index 0000000000000..1df655601119e --- /dev/null +++ b/manifests/j/JetBrains/IntelliJIDEA/Community/EAP/252.23591.19/JetBrains.IntelliJIDEA.Community.EAP.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.IntelliJIDEA.Community.EAP +PackageVersion: 252.23591.19 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +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: IntelliJ IDEA Community Edition (EAP) +PackageUrl: https://www.jetbrains.com/idea/nextversion +License: Apache-2.0 +LicenseUrl: https://github.com/JetBrains/intellij-community/blob/master/LICENSE.txt +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +ShortDescription: The Leading Java and Kotlin IDE +Description: Code-centric IDE, focused on your productivity. Full Java EE support, deep code understanding, best debugger, refactorings, everything right out of the box... +Tags: +- code +- coding +- develop +- development +- java +- kotlin +- programming +ReleaseNotes: IntelliJ IDEA 2025.2 EAP 7 is out! For the list of changes included in this build, refer to the release notes. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/IDEA-A-2100662463/IntelliJ-IDEA-2025.2-EAP-7-252.23591.19-build-Release-Notes +Documentations: +- DocumentLabel: Resources + DocumentUrl: https://www.jetbrains.com/idea/resources +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/IntelliJIDEA/Community/EAP/252.23591.19/JetBrains.IntelliJIDEA.Community.EAP.locale.zh-CN.yaml b/manifests/j/JetBrains/IntelliJIDEA/Community/EAP/252.23591.19/JetBrains.IntelliJIDEA.Community.EAP.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2cf309847268a --- /dev/null +++ b/manifests/j/JetBrains/IntelliJIDEA/Community/EAP/252.23591.19/JetBrains.IntelliJIDEA.Community.EAP.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: JetBrains.IntelliJIDEA.Community.EAP +PackageVersion: 252.23591.19 +PackageLocale: zh-CN +PublisherUrl: https://www.jetbrains.com/zh-cn +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support +PackageName: IntelliJ IDEA Community Edition(抢先体验计划) +PackageUrl: https://www.jetbrains.com/zh-cn/idea/nextversion +ShortDescription: 领先的 Java 和 Kotlin IDE +Description: 以代码为中心的 IDE,致力于提高您的生产力。全面支持 Java EE、深入的代码理解、最好的调试器、重构、一切都立即可用…… +Tags: +- java +- kotlin +- 代码 +- 开发 +- 编程 +- 集成开发环境 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/IDEA-A-2100662463/IntelliJ-IDEA-2025.2-EAP-7-252.23591.19-build-Release-Notes +Documentations: +- DocumentLabel: 资源 + DocumentUrl: https://www.jetbrains.com/zh-cn/idea/resources +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/IntelliJIDEA/Community/EAP/252.23591.19/JetBrains.IntelliJIDEA.Community.EAP.yaml b/manifests/j/JetBrains/IntelliJIDEA/Community/EAP/252.23591.19/JetBrains.IntelliJIDEA.Community.EAP.yaml new file mode 100644 index 0000000000000..93319b45f5c9c --- /dev/null +++ b/manifests/j/JetBrains/IntelliJIDEA/Community/EAP/252.23591.19/JetBrains.IntelliJIDEA.Community.EAP.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.IntelliJIDEA.Community.EAP +PackageVersion: 252.23591.19 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/IntelliJIDEA/Ultimate/EAP/252.23591.19/JetBrains.IntelliJIDEA.Ultimate.EAP.installer.yaml b/manifests/j/JetBrains/IntelliJIDEA/Ultimate/EAP/252.23591.19/JetBrains.IntelliJIDEA.Ultimate.EAP.installer.yaml new file mode 100644 index 0000000000000..98bf48091fa8f --- /dev/null +++ b/manifests/j/JetBrains/IntelliJIDEA/Ultimate/EAP/252.23591.19/JetBrains.IntelliJIDEA.Ultimate.EAP.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: JetBrains.IntelliJIDEA.Ultimate.EAP +PackageVersion: 252.23591.19 +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- groovy +- ipr +- java +- kt +- kts +ProductCode: IntelliJ IDEA 252.23591.19 +ReleaseDate: 2025-06-26 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/idea/ideaIU-252.23591.19.exe + InstallerSha256: 717B3D3CA195148EF3DC59FCC018653547D78CB45425D495D32E23FF83D93684 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/idea/ideaIU-252.23591.19.exe + InstallerSha256: 717B3D3CA195148EF3DC59FCC018653547D78CB45425D495D32E23FF83D93684 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/idea/ideaIU-252.23591.19-aarch64.exe + InstallerSha256: FB4CC35B69D735709682116A0101E35B53BC98597B8115A0B5E7AE85FA73655E +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/idea/ideaIU-252.23591.19-aarch64.exe + InstallerSha256: FB4CC35B69D735709682116A0101E35B53BC98597B8115A0B5E7AE85FA73655E + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/IntelliJIDEA/Ultimate/EAP/252.23591.19/JetBrains.IntelliJIDEA.Ultimate.EAP.locale.en-US.yaml b/manifests/j/JetBrains/IntelliJIDEA/Ultimate/EAP/252.23591.19/JetBrains.IntelliJIDEA.Ultimate.EAP.locale.en-US.yaml new file mode 100644 index 0000000000000..73ee3c0be816b --- /dev/null +++ b/manifests/j/JetBrains/IntelliJIDEA/Ultimate/EAP/252.23591.19/JetBrains.IntelliJIDEA.Ultimate.EAP.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.IntelliJIDEA.Ultimate.EAP +PackageVersion: 252.23591.19 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +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: IntelliJ IDEA Ultimate Edition (EAP) +PackageUrl: https://www.jetbrains.com/idea/nextversion/ +License: Freeware +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user_eap/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +ShortDescription: The Leading Java and Kotlin IDE +Description: IntelliJ IDEA is undoubtedly the top-choice IDE for software developers. It makes Java and Kotlin development a more productive and enjoyable experience. +Tags: +- code +- coding +- develop +- development +- java +- kotlin +- programming +ReleaseNotes: IntelliJ IDEA 2025.2 EAP 7 is out! For the list of changes included in this build, refer to the release notes. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/IDEA-A-2100662463/IntelliJ-IDEA-2025.2-EAP-7-252.23591.19-build-Release-Notes +Documentations: +- DocumentLabel: Resources + DocumentUrl: https://www.jetbrains.com/idea/resources/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/IntelliJIDEA/Ultimate/EAP/252.23591.19/JetBrains.IntelliJIDEA.Ultimate.EAP.locale.zh-CN.yaml b/manifests/j/JetBrains/IntelliJIDEA/Ultimate/EAP/252.23591.19/JetBrains.IntelliJIDEA.Ultimate.EAP.locale.zh-CN.yaml new file mode 100644 index 0000000000000..84a57c7af8fab --- /dev/null +++ b/manifests/j/JetBrains/IntelliJIDEA/Ultimate/EAP/252.23591.19/JetBrains.IntelliJIDEA.Ultimate.EAP.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.IntelliJIDEA.Ultimate.EAP +PackageVersion: 252.23591.19 +PackageLocale: zh-CN +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PackageName: IntelliJ IDEA Ultimate Edition(抢先体验计划) +PackageUrl: https://www.jetbrains.com/zh-cn/idea/nextversion/ +License: 免费软件 +ShortDescription: 领先的 Java 和 Kotlin IDE +Description: IntelliJ IDEA 毫无疑问是软件开发者的首选 IDE,让 Java 和 Kotlin 开发更高效、更愉快。 +Tags: +- java +- kotlin +- 代码 +- 开发 +- 编程 +- 集成开发环境 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/IDEA-A-2100662463/IntelliJ-IDEA-2025.2-EAP-7-252.23591.19-build-Release-Notes +Documentations: +- DocumentLabel: 资源 + DocumentUrl: https://www.jetbrains.com/zh-cn/idea/resources +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/IntelliJIDEA/Ultimate/EAP/252.23591.19/JetBrains.IntelliJIDEA.Ultimate.EAP.yaml b/manifests/j/JetBrains/IntelliJIDEA/Ultimate/EAP/252.23591.19/JetBrains.IntelliJIDEA.Ultimate.EAP.yaml new file mode 100644 index 0000000000000..b63ae901266a8 --- /dev/null +++ b/manifests/j/JetBrains/IntelliJIDEA/Ultimate/EAP/252.23591.19/JetBrains.IntelliJIDEA.Ultimate.EAP.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.IntelliJIDEA.Ultimate.EAP +PackageVersion: 252.23591.19 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/LicenseService/1.0.39687/JetBrains.LicenseService.installer.yaml b/manifests/j/JetBrains/LicenseService/1.0.39687/JetBrains.LicenseService.installer.yaml deleted file mode 100644 index 2c30f3771591a..0000000000000 --- a/manifests/j/JetBrains/LicenseService/1.0.39687/JetBrains.LicenseService.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with YamlCreate.ps1 v2.3.5 $debug=NVS1.CRLF.7-4-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: JetBrains.LicenseService -PackageVersion: 1.0.39687 -InstallerType: wix -InstallerSwitches: - InstallLocation: APPLICATIONFOLDER="" -UpgradeBehavior: install -ReleaseDate: 2023-12-06 -AppsAndFeaturesEntries: -- ProductCode: '{894C0E46-1887-448E-8E4B-2BA46BE7E1B5}' - UpgradeCode: '{A3AE2790-0035-4268-94C1-EAC07BEFDCDD}' -Installers: -- Architecture: x64 - InstallerUrl: https://download.jetbrains.com/lcsrv/license-server-installer.msi - InstallerSha256: 8E084C03E59E98C24D4AEB997F7DB61CEC115A0EC9034BA77A9854629E74C6A2 - ProductCode: '{894C0E46-1887-448E-8E4B-2BA46BE7E1B5}' -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/j/JetBrains/LicenseService/1.0.39687/JetBrains.LicenseService.locale.en-US.yaml b/manifests/j/JetBrains/LicenseService/1.0.39687/JetBrains.LicenseService.locale.en-US.yaml deleted file mode 100644 index 7619f2efebc5c..0000000000000 --- a/manifests/j/JetBrains/LicenseService/1.0.39687/JetBrains.LicenseService.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.3.5 $debug=NVS1.CRLF.7-4-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: JetBrains.LicenseService -PackageVersion: 1.0.39687 -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 License Service -PackageUrl: https://www.jetbrains.com/help/license_server/getting_started.html -License: Proprietary -LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ -Copyright: Copyright © 2000-2023 JetBrains s.r.o. -# CopyrightUrl: -ShortDescription: License Server (FLS) is a Java-based application to manage JetBrains product licenses within your company network. -# Description: -# Moniker: -Tags: -- jetbrains -ReleaseNotes: |- - FLS now supports the option in JetBrains Account to enable or disable the AI Assistant plugin. - If enabled for your organization, the AI Assistant plugin will be available to use in all IDEs activated with a license from your FLS. Disabling the AI Assistant in your JetBrains Account will make it unavailable. - If you continue to use a previous version of FLS that does not support this option, the AI Assistant will be disabled in your organization regardless of your JetBrains Account settings. -ReleaseNotesUrl: https://www.jetbrains.com/help/license_server/release_notes.html -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: Frequently Asked Questions - DocumentUrl: https://www.jetbrains.com/help/license_server/faq.html -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/j/JetBrains/LicenseService/1.0.39687/JetBrains.LicenseService.yaml b/manifests/j/JetBrains/LicenseService/1.0.39687/JetBrains.LicenseService.yaml deleted file mode 100644 index 07090414121ac..0000000000000 --- a/manifests/j/JetBrains/LicenseService/1.0.39687/JetBrains.LicenseService.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.3.5 $debug=NVS1.CRLF.7-4-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: JetBrains.LicenseService -PackageVersion: 1.0.39687 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 diff --git a/manifests/j/JetBrains/LicenseService/1.0.53616/JetBrains.LicenseService.installer.yaml b/manifests/j/JetBrains/LicenseService/1.0.53616/JetBrains.LicenseService.installer.yaml new file mode 100644 index 0000000000000..4c144204710b3 --- /dev/null +++ b/manifests/j/JetBrains/LicenseService/1.0.53616/JetBrains.LicenseService.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: JetBrains.LicenseService +PackageVersion: 1.0.53616 +InstallerType: wix +InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" +UpgradeBehavior: install +ProductCode: '{77E34EB8-FA0A-4E4E-9086-092AB03BA92C}' +ReleaseDate: 2025-06-26 +AppsAndFeaturesEntries: +- ProductCode: '{77E34EB8-FA0A-4E4E-9086-092AB03BA92C}' + UpgradeCode: '{A3AE2790-0035-4268-94C1-EAC07BEFDCDD}' +Installers: +- Architecture: x64 + InstallerUrl: https://download.jetbrains.com/lcsrv/license-server-installer.msi + InstallerSha256: 2F5412A164177ECD0758A66D88B8FED8FAFEFE15E0B10B89CAAA5011A72CF136 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/LicenseService/1.0.53616/JetBrains.LicenseService.locale.en-US.yaml b/manifests/j/JetBrains/LicenseService/1.0.53616/JetBrains.LicenseService.locale.en-US.yaml new file mode 100644 index 0000000000000..664fa347f4c77 --- /dev/null +++ b/manifests/j/JetBrains/LicenseService/1.0.53616/JetBrains.LicenseService.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: JetBrains.LicenseService +PackageVersion: 1.0.53616 +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 License Service +PackageUrl: https://www.jetbrains.com/help/license_server/getting_started.html +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2023 JetBrains s.r.o. +ShortDescription: License Server (FLS) is a Java-based application to manage JetBrains product licenses within your company network. +Tags: +- jetbrains +ReleaseNotes: |- + This is the maintenance release before the product is discontinued. + Back up your current installation and empty the installation folder before upgrading. Leftover files from a previous installation can cause problems with FLS due to conflicting libraries. See upgrade instructions + Changelog + - License Server now requires Java 17. + - The MSI installer comes with Amazon Corretto 17.0.12.7.1 bundled. + - The following vulnerabilities are fixed: CVE-2023-36478, CVE-2024-7254, CVE-2024-22201, CVE-2024-25710, CVE-2024-47554. +ReleaseNotesUrl: https://www.jetbrains.com/help/license_server/release_notes.html +Documentations: +- DocumentLabel: Frequently Asked Questions + DocumentUrl: https://www.jetbrains.com/help/license_server/faq.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/LicenseService/1.0.39687/JetBrains.LicenseService.locale.zh-CN.yaml b/manifests/j/JetBrains/LicenseService/1.0.53616/JetBrains.LicenseService.locale.zh-CN.yaml similarity index 80% rename from manifests/j/JetBrains/LicenseService/1.0.39687/JetBrains.LicenseService.locale.zh-CN.yaml rename to manifests/j/JetBrains/LicenseService/1.0.53616/JetBrains.LicenseService.locale.zh-CN.yaml index be89de8b12b69..e7214a4c2d190 100644 --- a/manifests/j/JetBrains/LicenseService/1.0.39687/JetBrains.LicenseService.locale.zh-CN.yaml +++ b/manifests/j/JetBrains/LicenseService/1.0.53616/JetBrains.LicenseService.locale.zh-CN.yaml @@ -1,31 +1,25 @@ -# Created with YamlCreate.ps1 v2.3.5 $debug=NVS1.CRLF.7-4-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json - -PackageIdentifier: JetBrains.LicenseService -PackageVersion: 1.0.39687 -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 License Service -PackageUrl: https://www.jetbrains.com/help/license_server/getting_started.html -License: 专有软件 -LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ -Copyright: Copyright © 2000-2023 JetBrains s.r.o. -# CopyrightUrl: -ShortDescription: License Server(FLS)是一款基于 Java 的应用程序,用于管理公司网络内部的 JetBrains 产品许可证。 -# Description: -# Moniker: -Tags: -- jetbrains -# ReleaseNotes: -ReleaseNotesUrl: https://www.jetbrains.com/help/license_server/release_notes.html -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: 常见问题 - DocumentUrl: https://www.jetbrains.com/help/license_server/faq.html -ManifestType: locale -ManifestVersion: 1.6.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: JetBrains.LicenseService +PackageVersion: 1.0.53616 +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 License Service +PackageUrl: https://www.jetbrains.com/help/license_server/getting_started.html +License: 专有软件 +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2023 JetBrains s.r.o. +ShortDescription: License Server(FLS)是一款基于 Java 的应用程序,用于管理公司网络内部的 JetBrains 产品许可证。 +Tags: +- jetbrains +ReleaseNotesUrl: https://www.jetbrains.com/help/license_server/release_notes.html +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://www.jetbrains.com/help/license_server/faq.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/LicenseService/1.0.53616/JetBrains.LicenseService.yaml b/manifests/j/JetBrains/LicenseService/1.0.53616/JetBrains.LicenseService.yaml new file mode 100644 index 0000000000000..8501258d9b2ab --- /dev/null +++ b/manifests/j/JetBrains/LicenseService/1.0.53616/JetBrains.LicenseService.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.LicenseService +PackageVersion: 1.0.53616 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/MPS/EAP/MPS-252.18003.138/JetBrains.MPS.EAP.installer.yaml b/manifests/j/JetBrains/MPS/EAP/MPS-252.18003.138/JetBrains.MPS.EAP.installer.yaml new file mode 100644 index 0000000000000..7f55ac840efb4 --- /dev/null +++ b/manifests/j/JetBrains/MPS/EAP/MPS-252.18003.138/JetBrains.MPS.EAP.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: JetBrains.MPS.EAP +PackageVersion: MPS-252.18003.138 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: uninstallPrevious +ProductCode: JetBrains MPS 2025.2 +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://download.jetbrains.com/mps/2025.2/MPS-2025.2-EAP1.exe + InstallerSha256: F82C416F8C738A04D6D84D28D1B82366BE973BED8373990F595C3865A7438930 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/MPS/EAP/MPS-252.18003.138/JetBrains.MPS.EAP.locale.en-US.yaml b/manifests/j/JetBrains/MPS/EAP/MPS-252.18003.138/JetBrains.MPS.EAP.locale.en-US.yaml new file mode 100644 index 0000000000000..fc3daa3ef5645 --- /dev/null +++ b/manifests/j/JetBrains/MPS/EAP/MPS-252.18003.138/JetBrains.MPS.EAP.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: JetBrains.MPS.EAP +PackageVersion: MPS-252.18003.138 +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 MPS (EAP) +PackageUrl: https://www.jetbrains.com/mps/nextversion/ +License: Freeware +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user_eap/ +Copyright: Copyright © 2009–2024 JetBrains s.r.o. +ShortDescription: The Domain-Specific Language Creator by JetBrains +Description: Use the MPS platform to create your own domain-specific language that speaks to your business needs. +Tags: +- code +- coding +- develop +- development +- programming +ReleaseNotes: If you want to learn more, please check our issue tracker. +ReleaseNotesUrl: https://youtrack.jetbrains.com/releaseNotes/MPS?q=Fix versions:{2025.2 EAP1} State:Fixed&title=MPS 2025.2-EAP1 Release Notes +Documentations: +- DocumentLabel: Learn MPS + DocumentUrl: https://www.jetbrains.com/mps/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/MPS/EAP/MPS-252.18003.138/JetBrains.MPS.EAP.locale.zh-CN.yaml b/manifests/j/JetBrains/MPS/EAP/MPS-252.18003.138/JetBrains.MPS.EAP.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6509ae9fb4a11 --- /dev/null +++ b/manifests/j/JetBrains/MPS/EAP/MPS-252.18003.138/JetBrains.MPS.EAP.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: JetBrains.MPS.EAP +PackageVersion: MPS-252.18003.138 +PackageLocale: zh-CN +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PackageName: JetBrains MPS(抢先体验计划) +PackageUrl: https://www.jetbrains.com/zh-cn/mps/nextversion/ +License: 免费软件 +ShortDescription: JetBrains 出品的领域专用语言创建器 +Description: 使用 MPS 平台创建您自己的领域专用语言,以满足业务需求。 +Tags: +- 代码 +- 开发 +- 编程 +ReleaseNotesUrl: https://youtrack.jetbrains.com/releaseNotes/MPS?q=Fix versions:{2025.2 EAP1} State:Fixed&title=MPS 2025.2-EAP1 Release Notes +Documentations: +- DocumentLabel: 学习 MPS + DocumentUrl: https://www.jetbrains.com/zh-cn/mps/learn/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/MPS/EAP/MPS-252.18003.138/JetBrains.MPS.EAP.yaml b/manifests/j/JetBrains/MPS/EAP/MPS-252.18003.138/JetBrains.MPS.EAP.yaml new file mode 100644 index 0000000000000..4eb66a4bb2ce3 --- /dev/null +++ b/manifests/j/JetBrains/MPS/EAP/MPS-252.18003.138/JetBrains.MPS.EAP.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.MPS.EAP +PackageVersion: MPS-252.18003.138 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/PhpStorm/2025.1.3/JetBrains.PhpStorm.installer.yaml b/manifests/j/JetBrains/PhpStorm/2025.1.3/JetBrains.PhpStorm.installer.yaml new file mode 100644 index 0000000000000..6357a77998e9e --- /dev/null +++ b/manifests/j/JetBrains/PhpStorm/2025.1.3/JetBrains.PhpStorm.installer.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: JetBrains.PhpStorm +PackageVersion: 2025.1.3 +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- css +- html +- ipr +- js +- php +- phtml +ProductCode: PhpStorm 2025.1.3 +ReleaseDate: 2025-06-25 +AppsAndFeaturesEntries: +- DisplayVersion: 251.26927.60 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/webide/PhpStorm-2025.1.3.exe + InstallerSha256: 71E656BC6CBCE9DE6B95D9925DA75DAB18F6762363151971C1FA725849778B49 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/webide/PhpStorm-2025.1.3.exe + InstallerSha256: 71E656BC6CBCE9DE6B95D9925DA75DAB18F6762363151971C1FA725849778B49 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/webide/PhpStorm-2025.1.3-aarch64.exe + InstallerSha256: A92277215DCD94E8F14C05A506D589698926ABB1D1767E4BC48C9D0A782C752E +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/webide/PhpStorm-2025.1.3-aarch64.exe + InstallerSha256: A92277215DCD94E8F14C05A506D589698926ABB1D1767E4BC48C9D0A782C752E + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/PhpStorm/2025.1.3/JetBrains.PhpStorm.locale.en-US.yaml b/manifests/j/JetBrains/PhpStorm/2025.1.3/JetBrains.PhpStorm.locale.en-US.yaml new file mode 100644 index 0000000000000..f2ceac7c6d063 --- /dev/null +++ b/manifests/j/JetBrains/PhpStorm/2025.1.3/JetBrains.PhpStorm.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: JetBrains.PhpStorm +PackageVersion: 2025.1.3 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +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: PhpStorm +PackageUrl: https://www.jetbrains.com/phpstorm/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +ShortDescription: Lightning-smart PHP IDE +Description: PhpStorm is a development tool for PHP and Web projects. It’s a perfect PHP IDE for working with Laravel, Symfony, Drupal, WordPress, and other frameworks. +Moniker: phpstorm +Tags: +- code +- coding +- css +- develop +- development +- htm +- html +- ide +- javascript +- js +- php +- programming +- web +- webpage +ReleaseNotes: |- + PhpStorm 2025.1.3 is now available + PhpStorm 2025.1.3 is a minor update, and it includes a host of bug fixes and quality-of-life improvements. + Here are the most notable changes and bug fixes in this build: + + - Fix: Comment in array shape is parsed as a part of type [WI-80584] + - Fix: Tags placed after "