diff --git a/Tools/Modules/VirtualTerminal/VirtualTerminal.psd1 b/Tools/Modules/VirtualTerminal/VirtualTerminal.psd1 new file mode 100644 index 0000000000000..b7f5880151dc1 --- /dev/null +++ b/Tools/Modules/VirtualTerminal/VirtualTerminal.psd1 @@ -0,0 +1,134 @@ +# +# Module manifest for module 'VirtualTerminal' +# +# Generated by: Trenly +# +# Generated on: 7/7/2025 +# + +@{ + + # Script module or binary module file associated with this manifest. + RootModule = 'VirtualTerminal.psm1' + + # Version number of this module. + ModuleVersion = '0.0.1' + + # Supported PSEditions + # CompatiblePSEditions = @() + + # ID used to uniquely identify this module + GUID = 'bb4887b3-c05a-448a-983b-c61114dfd1c0' + + # Author of this module + Author = 'Microsoft Open Source Community' + + # Company or vendor of this module + CompanyName = 'Microsoft Corporation' + + # Copyright statement for this module + Copyright = 'Copyright (c) Microsoft Corporation. All rights reserved.' + + # Description of the functionality provided by this module + # Description = '' + + # Minimum version of the PowerShell engine required by this module + # PowerShellVersion = '' + + # Name of the PowerShell host required by this module + # PowerShellHostName = '' + + # Minimum version of the PowerShell host required by this module + # PowerShellHostVersion = '' + + # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + # DotNetFrameworkVersion = '' + + # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + # ClrVersion = '' + + # Processor architecture (None, X86, Amd64) required by this module + # ProcessorArchitecture = '' + + # Modules that must be imported into the global environment prior to importing this module + # RequiredModules = @() + + # Assemblies that must be loaded prior to importing this module + # RequiredAssemblies = @() + + # Script files (.ps1) that are run in the caller's environment prior to importing this module. + # ScriptsToProcess = @() + + # Type files (.ps1xml) to be loaded when importing this module + # TypesToProcess = @() + + # Format files (.ps1xml) to be loaded when importing this module + # FormatsToProcess = @() + + # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess + # NestedModules = @() + + # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. + FunctionsToExport = @( + 'Initialize-VirtualTerminalSequence' + ) + + # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. + CmdletsToExport = @() + + # Variables to export from this module + VariablesToExport = '*' + + # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. + AliasesToExport = @() + + # DSC resources to export from this module + # DscResourcesToExport = @() + + # List of all modules packaged with this module + # ModuleList = @() + + # List of all files packaged with this module + # FileList = @() + + # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. + PrivateData = @{ + + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. + # Tags = @() + + # A URL to the license for this module. + LicenseUri = 'https://github.com/microsoft/winget-pkgs/blob/master/LICENSE' + + # A URL to the main website for this project. + ProjectUri = 'https://github.com/microsoft/winget-pkgs' + + # A URL to an icon representing this module. + # IconUri = '' + + # ReleaseNotes of this module + # ReleaseNotes = '' + + # Prerelease string of this module + # Prerelease = '' + + # Flag to indicate whether the module requires explicit user acceptance for install/update/save + # RequireLicenseAcceptance = $false + + # External dependent modules of this module + # ExternalModuleDependencies = @() + + } # End of PSData hashtable + + } # End of PrivateData hashtable + + # HelpInfo URI of this module + # HelpInfoURI = '' + + # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. + # DefaultCommandPrefix = '' + +} + diff --git a/Tools/Modules/VirtualTerminal/VirtualTerminal.psm1 b/Tools/Modules/VirtualTerminal/VirtualTerminal.psm1 new file mode 100644 index 0000000000000..98970314f4e45 --- /dev/null +++ b/Tools/Modules/VirtualTerminal/VirtualTerminal.psm1 @@ -0,0 +1,55 @@ +$vtSupported = (Get-Host).UI.SupportsVirtualTerminal + +#### +# Deglobalion: If Virtual Terminal is supported, convert the operation code to its virtual terminal sequence +# Inputs: Integer. Operation Code +# Outputs: Nullable Virtual Terminal Sequence String +#### +filter Initialize-VirtualTerminalSequence { + if ($vtSupported) { + "$([char]0x001B)[${_}m" + } +} + +$vtBold = 1 | Initialize-VirtualTerminalSequence; $vtBold | Out-Null +$vtNotBold = 22 | Initialize-VirtualTerminalSequence; $vtNotBold | Out-Null +$vtUnderline = 4 | Initialize-VirtualTerminalSequence; $vtUnderline | Out-Null +$vtNotUnderline = 24 | Initialize-VirtualTerminalSequence; $vtNotUnderline | Out-Null +$vtNegative = 7 | Initialize-VirtualTerminalSequence; $vtNegative | Out-Null +$vtPositive = 27 | Initialize-VirtualTerminalSequence; $vtPositive | Out-Null +$vtForegroundBlack = 30 | Initialize-VirtualTerminalSequence; $vtForegroundBlack | Out-Null +$vtForegroundRed = 31 | Initialize-VirtualTerminalSequence; $vtForegroundRed | Out-Null +$vtForegroundGreen = 32 | Initialize-VirtualTerminalSequence; $vtForegroundGreen | Out-Null +$vtForegroundYellow = 33 | Initialize-VirtualTerminalSequence; $vtForegroundYellow | Out-Null +$vtForegroundBlue = 34 | Initialize-VirtualTerminalSequence; $vtForegroundBlue | Out-Null +$vtForegroundMagenta = 35 | Initialize-VirtualTerminalSequence; $vtForegroundMagenta | Out-Null +$vtForegroundCyan = 36 | Initialize-VirtualTerminalSequence; $vtForegroundCyan | Out-Null +$vtForegroundWhite = 37 | Initialize-VirtualTerminalSequence; $vtForegroundWhite | Out-Null +$vtForegroundDefault = 39 | Initialize-VirtualTerminalSequence; $vtForegroundDefault | Out-Null +$vtBackgroundBlack = 40 | Initialize-VirtualTerminalSequence; $vtBackgroundBlack | Out-Null +$vtBackgroundRed = 41 | Initialize-VirtualTerminalSequence; $vtBackgroundRed | Out-Null +$vtBackgroundGreen = 42 | Initialize-VirtualTerminalSequence; $vtBackgroundGreen | Out-Null +$vtBackgroundYellow = 43 | Initialize-VirtualTerminalSequence; $vtBackgroundYellow | Out-Null +$vtBackgroundBlue = 44 | Initialize-VirtualTerminalSequence; $vtBackgroundBlue | Out-Null +$vtBackgroundMagenta = 45 | Initialize-VirtualTerminalSequence; $vtBackgroundMagenta | Out-Null +$vtBackgroundCyan = 46 | Initialize-VirtualTerminalSequence; $vtBackgroundCyan | Out-Null +$vtBackgroundWhite = 47 | Initialize-VirtualTerminalSequence; $vtBackgroundWhite | Out-Null +$vtBackgroundDefault = 49 | Initialize-VirtualTerminalSequence; $vtBackgroundDefault | Out-Null +$vtForegroundBrightBlack = 90 | Initialize-VirtualTerminalSequence; $vtForegroundBrightBlack | Out-Null +$vtForegroundBrightRed = 91 | Initialize-VirtualTerminalSequence; $vtForegroundBrightRed | Out-Null +$vtForegroundBrightGreen = 92 | Initialize-VirtualTerminalSequence; $vtForegroundBrightGreen | Out-Null +$vtForegroundBrightYellow = 93 | Initialize-VirtualTerminalSequence; $vtForegroundBrightYellow | Out-Null +$vtForegroundBrightBlue = 94 | Initialize-VirtualTerminalSequence; $vtForegroundBrightBlue | Out-Null +$vtForegroundBrightMagenta = 95 | Initialize-VirtualTerminalSequence; $vtForegroundBrightMagenta | Out-Null +$vtForegroundBrightCyan = 96 | Initialize-VirtualTerminalSequence; $vtForegroundBrightCyan | Out-Null +$vtForegroundBrightWhite = 97 | Initialize-VirtualTerminalSequence; $vtForegroundBrightWhite | Out-Null +$vtBackgroundBrightRed = 101 | Initialize-VirtualTerminalSequence; $vtBackgroundBrightRed | Out-Null +$vtBackgroundBrightGreen = 102 | Initialize-VirtualTerminalSequence; $vtBackgroundBrightGreen | Out-Null +$vtBackgroundBrightYellow = 103 | Initialize-VirtualTerminalSequence; $vtBackgroundBrightYellow | Out-Null +$vtBackgroundBrightBlue = 104 | Initialize-VirtualTerminalSequence; $vtBackgroundBrightBlue | Out-Null +$vtBackgroundBrightMagenta = 105 | Initialize-VirtualTerminalSequence; $vtBackgroundBrightMagenta | Out-Null +$vtBackgroundBrightCyan = 106 | Initialize-VirtualTerminalSequence; $vtBackgroundBrightCyan | Out-Null +$vtBackgroundBrightWhite = 107 | Initialize-VirtualTerminalSequence; $vtBackgroundBrightWhite | Out-Null + +Export-ModuleMember -Function Initialize-VirtualTerminalSequence +Export-ModuleMember -Variable * diff --git a/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.psd1 b/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.psd1 new file mode 100644 index 0000000000000..9cb811af8a132 --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.psd1 @@ -0,0 +1,144 @@ +# +# Module manifest for module 'YamlCreate.InstallerDetection' +# +# Generated by: Trenly +# +# Generated on: 7/7/2025 +# + +@{ + + # Script module or binary module file associated with this manifest. + RootModule = 'YamlCreate.InstallerDetection.psm1' + + # Version number of this module. + ModuleVersion = '0.0.1' + + # Supported PSEditions + # CompatiblePSEditions = @() + + # ID used to uniquely identify this module + GUID = 'ec62867e-32ba-40c8-89c4-802639209b03' + + # Author of this module + Author = 'Microsoft Open Source Community' + + # Company or vendor of this module + CompanyName = 'Microsoft Corporation' + + # Copyright statement for this module + Copyright = 'Copyright (c) Microsoft Corporation. All rights reserved.' + + # Description of the functionality provided by this module + # Description = '' + + # Minimum version of the PowerShell engine required by this module + # PowerShellVersion = '' + + # Name of the PowerShell host required by this module + # PowerShellHostName = '' + + # Minimum version of the PowerShell host required by this module + # PowerShellHostVersion = '' + + # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + # DotNetFrameworkVersion = '' + + # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + # ClrVersion = '' + + # Processor architecture (None, X86, Amd64) required by this module + # ProcessorArchitecture = '' + + # Modules that must be imported into the global environment prior to importing this module + # RequiredModules = @() + + # Assemblies that must be loaded prior to importing this module + # RequiredAssemblies = @() + + # Script files (.ps1) that are run in the caller's environment prior to importing this module. + # ScriptsToProcess = @() + + # Type files (.ps1xml) to be loaded when importing this module + # TypesToProcess = @() + + # Format files (.ps1xml) to be loaded when importing this module + # FormatsToProcess = @() + + # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess + # NestedModules = @() + + # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. + FunctionsToExport = @( + 'Get-OffsetBytes' + 'Get-PESectionTable' + 'Test-IsZip' + 'Test-IsMsix' + 'Test-IsMsi' + 'Test-IsWix' + 'Test-IsNullsoft' + 'Test-IsInno' + 'Test-IsBurn' + 'Test-IsFont' + 'Resolve-InstallerType' + ) + + # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. + CmdletsToExport = @() + + # Variables to export from this module + VariablesToExport = '*' + + # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. + AliasesToExport = @() + + # DSC resources to export from this module + # DscResourcesToExport = @() + + # List of all modules packaged with this module + # ModuleList = @() + + # List of all files packaged with this module + # FileList = @() + + # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. + PrivateData = @{ + + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. + # Tags = @() + + # A URL to the license for this module. + LicenseUri = 'https://github.com/microsoft/winget-pkgs/blob/master/LICENSE' + + # A URL to the main website for this project. + ProjectUri = 'https://github.com/microsoft/winget-pkgs' + + # A URL to an icon representing this module. + # IconUri = '' + + # ReleaseNotes of this module + # ReleaseNotes = '' + + # Prerelease string of this module + # Prerelease = '' + + # Flag to indicate whether the module requires explicit user acceptance for install/update/save + # RequireLicenseAcceptance = $false + + # External dependent modules of this module + # ExternalModuleDependencies = @() + + } # End of PSData hashtable + + } # End of PrivateData hashtable + + # HelpInfo URI of this module + # HelpInfoURI = '' + + # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. + # DefaultCommandPrefix = '' + +} + diff --git a/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.psm1 b/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.psm1 new file mode 100644 index 0000000000000..712c050e118e3 --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.psm1 @@ -0,0 +1,411 @@ +#### +# Description: Returns the values from the Properties menu of a file +# Inputs: Path to file +# Outputs: Dictonary of properties +#### +function Get-FileMetadata { + param ( + [Parameter(Mandatory = $true)] + [string]$FilePath + ) + + if (-not (Test-Path $FilePath)) { + Write-Error "File not found: $FilePath" + return + } + + $shell = New-Object -ComObject Shell.Application + $folder = $shell.Namespace((Split-Path $FilePath)) + $file = $folder.ParseName((Split-Path $FilePath -Leaf)) + + [PSCustomObject] $metadata = @{} + + for ($i = 0; $i -lt 400; $i++) { + $key = $folder.GetDetailsOf($folder.Items, $i) + $value = $folder.GetDetailsOf($file, $i) + + if ($key -and $value) { + $metadata[$key] = $value + } + } + + # Clean up COM objects + [System.Runtime.Interopservices.Marshal]::ReleaseComObject($file) | Out-Null + [System.Runtime.Interopservices.Marshal]::ReleaseComObject($folder) | Out-Null + [System.Runtime.Interopservices.Marshal]::ReleaseComObject($shell) | Out-Null + + return $metadata +} + +#### +# 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] $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] $Path + ) + + # 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) +} + +#### +# 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] $Path + ) + 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 + + # 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') + $returnValue = $false + foreach ($filename in $msixIndicators) { + if (Get-ChildItem -Path $expandedArchivePath -Recurse -Depth 3 -Filter $filename) { $returnValue = $true } # If any of the files is found, it is an msix + } + + # Cleanup the temporary files right away + Write-Debug 'Removing extracted files' + if (Test-Path $temporaryFilePath) { Remove-Item -Path $temporaryFilePath -Recurse } + if (Test-Path $expandedArchivePath) { Remove-Item -Path $expandedArchivePath -Recurse } + + return $returnValue +} + +#### +# 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 +} + +#### +# 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] $Path + ) + + $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 + + # If we reach here, the metadata has to be checked to see if it is a WIX installer + $FileMetadata = Get-FileMetadata -FilePath $Path + + # Check the created by program name matches WIX or XML, it is likely a WIX installer + if ($FileMetadata.ContainsKey('Program Name') -and $FileMetadata.'Program Name' -match 'WIX|XML') { + return $true + } + + return $false # If none of the checks matched, it is not a WIX installer +} + +#### +# 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() } + } + 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 +} + +#### +# 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)] + [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)] + [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 Burn + # https://github.com/wixtoolset/wix/blob/main/src/burn/engine/inc/engine.h#L8 + if ($SectionTable.SectionName -contains '.wixburn') { return $true } + return $false +} + +#### +# 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 + ) + + # 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 + ) + + # 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 + +} + +#### +# Description: Attempts to identify the type of installer from a file path +# Inputs: Path to File +# Outputs: Null if unknown type. String if known type +#### +function Resolve-InstallerType { + param + ( + [Parameter(Mandatory = $true)] + [String] $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 +} + +Export-ModuleMember -Function Get-OffsetBytes +Export-ModuleMember -Function Get-PESectionTable +Export-ModuleMember -Function Test-IsZip +Export-ModuleMember -Function Test-IsMsix +Export-ModuleMember -Function Test-IsMsi +Export-ModuleMember -Function Test-IsWix +Export-ModuleMember -Function Test-IsNullsoft +Export-ModuleMember -Function Test-IsInno +Export-ModuleMember -Function Test-IsBurn +Export-ModuleMember -Function Test-IsFont +Export-ModuleMember -Function Resolve-InstallerType diff --git a/Tools/Modules/YamlCreate/YamlCreate.Menuing/YamlCreate.Menuing.psd1 b/Tools/Modules/YamlCreate/YamlCreate.Menuing/YamlCreate.Menuing.psd1 new file mode 100644 index 0000000000000..c3e301679a362 --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.Menuing/YamlCreate.Menuing.psd1 @@ -0,0 +1,137 @@ +# +# Module manifest for module 'YamlCreate.Menuing' +# +# Generated by: Trenly +# +# Generated on: 7/7/2025 +# + +@{ + + # Script module or binary module file associated with this manifest. + RootModule = 'YamlCreate.Menuing.psm1' + + # Version number of this module. + ModuleVersion = '0.0.1' + + # Supported PSEditions + # CompatiblePSEditions = @() + + # ID used to uniquely identify this module + GUID = '51d2182f-5eca-494a-9ddb-64ff39dedb3c' + + # Author of this module + Author = 'Microsoft Open Source Community' + + # Company or vendor of this module + CompanyName = 'Microsoft Corporation' + + # Copyright statement for this module + Copyright = 'Copyright (c) Microsoft Corporation. All rights reserved.' + + # Description of the functionality provided by this module + # Description = '' + + # Minimum version of the PowerShell engine required by this module + # PowerShellVersion = '' + + # Name of the PowerShell host required by this module + # PowerShellHostName = '' + + # Minimum version of the PowerShell host required by this module + # PowerShellHostVersion = '' + + # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + # DotNetFrameworkVersion = '' + + # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + # ClrVersion = '' + + # Processor architecture (None, X86, Amd64) required by this module + # ProcessorArchitecture = '' + + # Modules that must be imported into the global environment prior to importing this module + RequiredModules = @( + 'VirtualTerminal' # Required for virtual terminal support + ) + + # Assemblies that must be loaded prior to importing this module + # RequiredAssemblies = @() + + # Script files (.ps1) that are run in the caller's environment prior to importing this module. + # ScriptsToProcess = @() + + # Type files (.ps1xml) to be loaded when importing this module + # TypesToProcess = @() + + # Format files (.ps1xml) to be loaded when importing this module + # FormatsToProcess = @() + + # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess + # NestedModules = @() + + # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. + FunctionsToExport = @( + 'Get-Keypress', + 'Resolve-Keypress' + ) + + # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. + CmdletsToExport = @() + + # Variables to export from this module + VariablesToExport = '*' + + # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. + AliasesToExport = @() + + # DSC resources to export from this module + # DscResourcesToExport = @() + + # List of all modules packaged with this module + # ModuleList = @() + + # List of all files packaged with this module + # FileList = @() + + # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. + PrivateData = @{ + + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. + # Tags = @() + + # A URL to the license for this module. + LicenseUri = 'https://github.com/microsoft/winget-pkgs/blob/master/LICENSE' + + # A URL to the main website for this project. + ProjectUri = 'https://github.com/microsoft/winget-pkgs' + + # A URL to an icon representing this module. + # IconUri = '' + + # ReleaseNotes of this module + # ReleaseNotes = '' + + # Prerelease string of this module + # Prerelease = '' + + # Flag to indicate whether the module requires explicit user acceptance for install/update/save + # RequireLicenseAcceptance = $false + + # External dependent modules of this module + # ExternalModuleDependencies = @() + + } # End of PSData hashtable + + } # End of PrivateData hashtable + + # HelpInfo URI of this module + # HelpInfoURI = '' + + # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. + # DefaultCommandPrefix = '' + +} + diff --git a/Tools/Modules/YamlCreate/YamlCreate.Menuing/YamlCreate.Menuing.psm1 b/Tools/Modules/YamlCreate/YamlCreate.Menuing/YamlCreate.Menuing.psm1 new file mode 100644 index 0000000000000..96d90b6dfbe0d --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.Menuing/YamlCreate.Menuing.psm1 @@ -0,0 +1,78 @@ +[ConsoleKey[]] $Numeric0 = @( [System.ConsoleKey]::D0; [System.ConsoleKey]::NumPad0 ); $Numeric0 | Out-Null +[ConsoleKey[]] $Numeric1 = @( [System.ConsoleKey]::D1; [System.ConsoleKey]::NumPad1 ); $Numeric1 | Out-Null +[ConsoleKey[]] $Numeric2 = @( [System.ConsoleKey]::D2; [System.ConsoleKey]::NumPad2 ); $Numeric2 | Out-Null +[ConsoleKey[]] $Numeric3 = @( [System.ConsoleKey]::D3; [System.ConsoleKey]::NumPad3 ); $Numeric3 | Out-Null +[ConsoleKey[]] $Numeric4 = @( [System.ConsoleKey]::D4; [System.ConsoleKey]::NumPad4 ); $Numeric4 | Out-Null +[ConsoleKey[]] $Numeric5 = @( [System.ConsoleKey]::D5; [System.ConsoleKey]::NumPad5 ); $Numeric5 | Out-Null +[ConsoleKey[]] $Numeric6 = @( [System.ConsoleKey]::D6; [System.ConsoleKey]::NumPad6 ); $Numeric6 | Out-Null +[ConsoleKey[]] $Numeric7 = @( [System.ConsoleKey]::D7; [System.ConsoleKey]::NumPad7 ); $Numeric7 | Out-Null +[ConsoleKey[]] $Numeric8 = @( [System.ConsoleKey]::D8; [System.ConsoleKey]::NumPad8 ); $Numeric8 | Out-Null +[ConsoleKey[]] $Numeric9 = @( [System.ConsoleKey]::D9; [System.ConsoleKey]::NumPad9 ); $Numeric9 | Out-Null + +#### +# Description: Waits for the user to press a key +# Inputs: Boolean for whether to echo the key value to the console +# Outputs: Key which was pressed +#### +function Get-Keypress { + param ( + [Parameter(Mandatory = $false)] + [bool] $EchoKey = $false + ) + + do { + $keyInfo = [Console]::ReadKey(!$EchoKey) + } until ($keyInfo.Key) + return $keyInfo.Key +} + +#### +# Description: Waits for a valid keypress from the user +# Inputs: List of valid keys, Default key to return, Boolean for strict mode +# Outputs: Key which was pressed +#### +function Resolve-Keypress { + param ( + [Parameter(Mandatory = $true)] + [System.ConsoleKey[]] $ValidKeys, + [Parameter(Mandatory = $true)] + [System.ConsoleKey] $DefaultKey, + [Parameter(Mandatory = $false)] + [bool] $UseStrict = $false + ) + + do { + # Get a keypress + $key = Get-Keypress -EchoKey $false + + # If the key pressed is in the valid keys, it doesn't matter if strict mode is enabled or not + if ($ValidKeys -contains $key) { + return $key + } + + # If the key pressed is the default key, it doesn't matter if strict mode is enabled or not + if ($key -eq $DefaultKey) { + return $key + } + + if (!$UseStrict) { + # The key pressed is not in the valid keys, is not the default key, and strict mode is not enabled + # Since strict mode is not enabled, we will return the default key + return $DefaultKey + } + + # If we reach here, the key pressed is not in the valid keys, is not the default key, and strict mode is enabled + # We will inform the user that the key pressed is invalid and prompt them to press a valid key + Write-Information @" +${vtForegroundRed}Invalid key pressed. Please press one of the valid keys: $($ValidKeys -join ', ') +${vtForegroundDefault} +"@ + + } while ( $true ) # Loop until a valid key is pressed + + return $DefaultKey # This line is never reached, but it's here for completeness +} + +Export-ModuleMember -Function Get-Keypress +Export-ModuleMember -Function Resolve-Keypress +Export-ModuleMember -Variable Numeric* diff --git a/Tools/Modules/YamlCreate/YamlCreate.psd1 b/Tools/Modules/YamlCreate/YamlCreate.psd1 new file mode 100644 index 0000000000000..2db8ff8c50d89 --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.psd1 @@ -0,0 +1,140 @@ +# +# Module manifest for module 'YamlCreate.Menuing' +# +# Generated by: Trenly +# +# Generated on: 7/7/2025 +# + +@{ + + # Script module or binary module file associated with this manifest. + RootModule = 'YamlCreate.psm1' + + # Version number of this module. + ModuleVersion = '0.0.1' + + # Supported PSEditions + # CompatiblePSEditions = @() + + # ID used to uniquely identify this module + GUID = '7e3c36ac-436b-41fa-a89d-1deb466096cc' + + # Author of this module + Author = 'Microsoft Open Source Community' + + # Company or vendor of this module + CompanyName = 'Microsoft Corporation' + + # Copyright statement for this module + Copyright = 'Copyright (c) Microsoft Corporation. All rights reserved.' + + # Description of the functionality provided by this module + # Description = '' + + # Minimum version of the PowerShell engine required by this module + # PowerShellVersion = '' + + # Name of the PowerShell host required by this module + # PowerShellHostName = '' + + # Minimum version of the PowerShell host required by this module + # PowerShellHostVersion = '' + + # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + # DotNetFrameworkVersion = '' + + # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. + # ClrVersion = '' + + # Processor architecture (None, X86, Amd64) required by this module + # ProcessorArchitecture = '' + + # Modules that must be imported into the global environment prior to importing this module + RequiredModules = @( + 'VirtualTerminal' # Required for virtual terminal support + ) + + # Assemblies that must be loaded prior to importing this module + # RequiredAssemblies = @() + + # Script files (.ps1) that are run in the caller's environment prior to importing this module. + # ScriptsToProcess = @() + + # Type files (.ps1xml) to be loaded when importing this module + # TypesToProcess = @() + + # Format files (.ps1xml) to be loaded when importing this module + # FormatsToProcess = @() + + # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess + NestedModules = @( + 'YamlCreate.InstallerDetection' + 'YamlCreate.Menuing' + ) + + # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. + FunctionsToExport = @() + + # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. + CmdletsToExport = @() + + # Variables to export from this module + VariablesToExport = '*' + + # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. + AliasesToExport = @() + + # DSC resources to export from this module + # DscResourcesToExport = @() + + # List of all modules packaged with this module + ModuleList = @( + 'YamlCreate.InstallerDetection' + 'YamlCreate.Menuing' + ) + + # List of all files packaged with this module + # FileList = @() + + # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. + PrivateData = @{ + + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. + # Tags = @() + + # A URL to the license for this module. + LicenseUri = 'https://github.com/microsoft/winget-pkgs/blob/master/LICENSE' + + # A URL to the main website for this project. + ProjectUri = 'https://github.com/microsoft/winget-pkgs' + + # A URL to an icon representing this module. + # IconUri = '' + + # ReleaseNotes of this module + # ReleaseNotes = '' + + # Prerelease string of this module + # Prerelease = '' + + # Flag to indicate whether the module requires explicit user acceptance for install/update/save + # RequireLicenseAcceptance = $false + + # External dependent modules of this module + # ExternalModuleDependencies = @() + + } # End of PSData hashtable + + } # End of PrivateData hashtable + + # HelpInfo URI of this module + # HelpInfoURI = '' + + # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. + # DefaultCommandPrefix = '' + +} + diff --git a/Tools/Modules/YamlCreate/YamlCreate.psm1 b/Tools/Modules/YamlCreate/YamlCreate.psm1 new file mode 100644 index 0000000000000..c0e3115b2d4c7 --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.psm1 @@ -0,0 +1,13 @@ + +# Import all sub-modules +$script:moduleRoot = Split-Path -Parent $MyInvocation.MyCommand.Path + +Get-ChildItem -Path $script:moduleRoot -Recurse -Depth 1 -Filter '*.psd1'| ForEach-Object { + if ($_.Name -eq 'YamlCreate.psd1') { + # Skip the main module manifest as it is already handled + return + } + $moduleFolder = Join-Path -Path $script:moduleRoot -ChildPath $_.Directory.Name + $moduleFile = Join-Path -Path $moduleFolder -ChildPath $_.Name + Import-Module $moduleFile -Force -Scope Global -ErrorAction 'Stop' +} diff --git a/Tools/YamlCreate.ps1 b/Tools/YamlCreate.ps1 index 7b93af93fe878..718be04d37919 100644 --- a/Tools/YamlCreate.ps1 +++ b/Tools/YamlCreate.ps1 @@ -27,8 +27,6 @@ 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 ( @@ -238,7 +236,7 @@ if ($Settings) { exit } -$ScriptHeader = '# Created with YamlCreate.ps1 v2.4.7' +$ScriptHeader = '# Created with YamlCreate.ps1 v2.5.0' $ManifestVersion = '1.10.0' $PSDefaultParameterValues = @{ '*:Encoding' = 'UTF8' } $Utf8NoBomEncoding = New-Object System.Text.UTF8Encoding $False @@ -253,6 +251,13 @@ $RunHash = $(Get-FileHash -InputStream $([IO.MemoryStream]::new([byte[]][char[]] $script:UserAgent = 'Microsoft-Delivery-Optimization/10.1' $script:CleanupPaths = @() +$script:OriginalPSModulePath = $env:PSModulePath +Write-Debug 'Setting up module paths for YamlCreate' +Write-Debug "Adding $(Join-Path -Path $PSScriptRoot -ChildPath 'Modules') to PSModulePath" +$env:PSModulePath = $env:PSModulePath + ';' + (Join-Path -Path $PSScriptRoot -ChildPath 'Modules') # Add the local modules to the PSModulePath + +Import-Module -Name 'YamlCreate' -Scope Global -Force -ErrorAction 'Stop' # Parent module that loads the rest of the modules required for the script + $_wingetVersion = 1.0.0 $_appInstallerVersion = (Get-AppxPackage Microsoft.DesktopAppInstaller).version if (Get-Command 'winget' -ErrorAction SilentlyContinue) { $_wingetVersion = (winget -v).TrimStart('v') } @@ -416,6 +421,7 @@ Function Invoke-CleanExit { Write-Host [Threading.Thread]::CurrentThread.CurrentUICulture = $callingUICulture [Threading.Thread]::CurrentThread.CurrentCulture = $callingCulture + $env:PSModulePath = $script:OriginalPSModulePath exit } @@ -485,25 +491,6 @@ Function Get-EffectiveInstallerType { return $Installer.NestedInstallerType } -# Takes an array of strings and an array of colors then writes one line of text composed of each string being its respective color -Function Write-MulticolorLine { - Param - ( - [Parameter(Mandatory = $true, Position = 0)] - [string[]] $TextStrings, - [Parameter(Mandatory = $true, Position = 1)] - [string[]] $Colors - ) - If ($TextStrings.Count -ne $Colors.Count) { - throw [System.ArgumentException]::new('Invalid Function Parameters. Arguments must be of equal length') - } - $_index = 0 - Foreach ($String in $TextStrings) { - Write-Host -ForegroundColor $Colors[$_index] -NoNewline $String - $_index++ - } -} - # Checks a URL and returns the status code received from the URL Function Test-Url { Param @@ -655,349 +642,6 @@ Function Get-UserSavePreference { 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] $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] $Path - ) - - # 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) -} - -#### -# 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] $Path - ) - 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 -} - -#### -# 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 -} - -#### -# 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] $Path - ) - - $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() } - } - 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 -} - -#### -# 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)] - [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)] - [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 Burn - # https://github.com/wixtoolset/wix/blob/main/src/burn/engine/inc/engine.h#L8 - if ($SectionTable.SectionName -contains '.wixburn') { return $true } - return $false -} - -#### -# 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 - ) - - # 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 - ) - - # 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-PathInstallerType { - param - ( - [Parameter(Mandatory = $true)] - [String] $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 -} - Function Get-UriArchitecture { Param ( @@ -1354,7 +998,7 @@ Function Read-InstallerEntry { } Write-Host "Time taken: $((Get-Date).Subtract($start_time).Seconds) second(s)" -ForegroundColor Green $_Installer['InstallerSha256'] = (Get-FileHash -Path $script:dest -Algorithm SHA256).Hash - Get-PathInstallerType -Path $script:dest -OutVariable _ | Out-Null + Resolve-InstallerType -Path $script:dest -OutVariable _ | Out-Null if ($_) { $_Installer['InstallerType'] = $_ | Select-Object -First 1 } Get-UriArchitecture -URI $_Installer['InstallerUrl'] -OutVariable _ | Out-Null if ($_) { $_Installer['Architecture'] = $_ | Select-Object -First 1 } @@ -1633,7 +1277,7 @@ Function Read-InstallerEntry { $_Installer['AppsAndFeaturesEntries'] = @($AppsAndFeaturesEntries) } - if ($script:SaveOption -eq '1' -and (Test-Path -Path $script:dest)) { Remove-Item -Path $script:dest } + if ($script:SaveOption -eq '1' -and (Test-Path -Path $script:dest)) { $script:CleanupPaths += $script:dest } # If the installers array is empty, create it if (!$script:Installers) { @@ -1719,7 +1363,7 @@ Function Read-QuickInstallerEntry { # Check that MSI's aren't actually WIX, and EXE's aren't NSIS, INNO or BURN Write-Host -ForegroundColor 'Green' "Installer Downloaded!`nProcessing installer data. . . " if ($_NewInstaller['InstallerType'] -in @('msi'; 'exe')) { - $DetectedType = Get-PathInstallerType $script:dest + $DetectedType = Resolve-InstallerType $script:dest if ($DetectedType -in @('msi'; 'wix'; 'nullsoft'; 'inno'; 'burn')) { $_NewInstaller['InstallerType'] = $DetectedType } } # Get the Sha256 @@ -2802,15 +2446,18 @@ if (!$script:UsingAdvancedOption) { if ($Mode -in 1..6) { $UserChoice = $Mode } else { - Write-Host -ForegroundColor 'Yellow' "Select Mode:`n" - Write-MulticolorLine ' [', '1', "] New Manifest or Package Version`n" 'DarkCyan', 'White', 'DarkCyan' - Write-MulticolorLine ' [', '2', '] Quick Update Package Version ', "(Note: Must be used only when previous version`'s metadata is complete.)`n" 'DarkCyan', 'White', 'DarkCyan', 'Green' - Write-MulticolorLine ' [', '3', "] Update Package Metadata`n" 'DarkCyan', 'White', 'DarkCyan' - Write-MulticolorLine ' [', '4', "] New Locale`n" 'DarkCyan', 'White', 'DarkCyan' - Write-MulticolorLine ' [', '5', "] Remove a manifest`n" 'DarkCyan', 'White', 'DarkCyan' - Write-MulticolorLine ' [', '6', "] Move package to a new identifier`n" 'DarkCyan', 'White', 'DarkCyan' - Write-MulticolorLine ' [', 'Q', ']', " Any key to quit`n" 'DarkCyan', 'White', 'DarkCyan', 'Red' - Write-MulticolorLine "`nSelection: " 'White' + Write-Host @" +${vtForegroundYellow} Select Mode: + ${vtForegroundCyan}[${vtForegroundWhite}1${vtForegroundCyan}] New Manifest or Package Version + ${vtForegroundCyan}[${vtForegroundWhite}2${vtForegroundCyan}] Quick Update Package Version + ${vtForegroundCyan}[${vtForegroundWhite}3${vtForegroundCyan}] Update Package Metadata ${vtForegroundGreen}(Note: Must be used only when previous version's metadata is complete.) + ${vtForegroundCyan}[${vtForegroundWhite}4${vtForegroundCyan}] New Locale + ${vtForegroundCyan}[${vtForegroundWhite}5${vtForegroundCyan}] Remove a manifest + ${vtForegroundCyan}[${vtForegroundWhite}6${vtForegroundCyan}] Move package to a new identifier + ${vtForegroundCyan}[${vtForegroundWhite}Q${vtForegroundCyan}] ${vtForegroundRed}Any key to quit + ${vtForegroundDefault} +"@ + Write-Host "Selection: " -NoNewLine # Listen for keypress and set operation mode based on keypress $Keys = @{ @@ -3317,7 +2964,7 @@ Switch ($script:Option) { } # Check that MSI's aren't actually WIX, and EXE's aren't NSIS, INNO or BURN if ($_Installer['InstallerType'] -in @('msi'; 'exe')) { - $DetectedType = Get-PathInstallerType $script:dest + $DetectedType = Resolve-InstallerType $script:dest if ($DetectedType -in @('msi'; 'wix'; 'nullsoft'; 'inno'; 'burn')) { $_Installer['InstallerType'] = $DetectedType } } # Get the Sha256 diff --git a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.installer.yaml b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.installer.yaml index 6ee6826b63abd..6d29928c8a137 100644 --- a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.installer.yaml +++ b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: AGTEK.Gradework @@ -24,6 +24,6 @@ ReleaseDate: 2025-07-01 Installers: - Architecture: x64 InstallerUrl: https://agtek.s3.amazonaws.com/Agtek/w9S1Pt7Av1mm - InstallerSha256: 060767F6AB358CD59D68CFF17B79518F40BFFC96FBF1CC58BF1D3EB488F49CE4 + InstallerSha256: 598A1A8D6B2500B20BE6B67B2B5D009A39D0CA8C70A08F8598D017333B88E0BE ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.en-US.yaml b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.en-US.yaml index b24384f0ce037..de24516cecfd9 100644 --- a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.en-US.yaml +++ b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: AGTEK.Gradework diff --git a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.zh-CN.yaml b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.zh-CN.yaml index a3082c03a393d..469290d79afdc 100644 --- a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.zh-CN.yaml +++ b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: AGTEK.Gradework diff --git a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.yaml b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.yaml index 01ef3cc30a79c..5f519d7d07cd7 100644 --- a/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.yaml +++ b/manifests/a/AGTEK/Gradework/12.0.0.5/AGTEK.Gradework.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: AGTEK.Gradework diff --git a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.installer.yaml b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.installer.yaml index e8c72bf8636d4..558c3200c31ca 100644 --- a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.installer.yaml +++ b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: AGTEK.MaterialsSA @@ -20,6 +20,6 @@ ReleaseDate: 2025-07-01 Installers: - Architecture: x64 InstallerUrl: https://agtek.s3.amazonaws.com/Agtek/OSrEkdiUCWNd - InstallerSha256: 549E0115B1AA1BC9BAEE6EC87F515F9D1717A8C87D0CD43AC5CB0CB1BB999C0F + InstallerSha256: 921DBEEAF3F2484F6C00406EA8DF2940E7E996B554090E63160AC5ADC6BD36D0 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.en-US.yaml b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.en-US.yaml index 50671dfdf54b0..97e30c1070519 100644 --- a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.en-US.yaml +++ b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: AGTEK.MaterialsSA diff --git a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.zh-CN.yaml b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.zh-CN.yaml index d5bc7f19a162e..ab208927006aa 100644 --- a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.zh-CN.yaml +++ b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: AGTEK.MaterialsSA diff --git a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.yaml b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.yaml index 9ebfdecfc6084..139ee4f88dcad 100644 --- a/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.yaml +++ b/manifests/a/AGTEK/MaterialsSA/12.0.0.5/AGTEK.MaterialsSA.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: AGTEK.MaterialsSA 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 index 57e1130359ed6..fd5b6e4a39be1 100644 --- 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 @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: AGTEK.Trackwork @@ -18,6 +18,6 @@ ReleaseDate: 2025-07-01 Installers: - Architecture: x64 InstallerUrl: https://agtek.s3.amazonaws.com/Agtek/ikpzGj7tsvNe - InstallerSha256: 3984242066C58201A7619DE8FE2254E48818F80A1D61B79C9F2688B52078C426 + InstallerSha256: AB95AD15FEC939D417C51237D1E5B6F4D5C79313B22DD1B5DE860EFA002EDAFC 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 index eecb8bfd2fd8e..db28cf1c80a96 100644 --- 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 @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: AGTEK.Trackwork 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 index 59bd5844fc42a..fb61569107900 100644 --- 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 @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: AGTEK.Trackwork 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 index 23f84d39fa314..b2cb93c94da99 100644 --- a/manifests/a/AGTEK/Trackwork/12.0.0.5/AGTEK.Trackwork.yaml +++ b/manifests/a/AGTEK/Trackwork/12.0.0.5/AGTEK.Trackwork.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: AGTEK.Trackwork diff --git a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.installer.yaml b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.installer.yaml index fbf7368363520..0397174da8309 100644 --- a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.installer.yaml +++ b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: AGTEK.UndergroundSA @@ -20,6 +20,6 @@ ReleaseDate: 2025-07-01 Installers: - Architecture: x64 InstallerUrl: https://agtek.s3.amazonaws.com/Agtek/CWM10lfSal6j - InstallerSha256: BCA70A3228151AB2FCA5CB4CC8AD42D5C587CCF6466FE337F966989F55F5C0D8 + InstallerSha256: 23FD3A533A406749C7BD029D22965CFE4CA20373CC46619D82E5605DD50A0D28 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.en-US.yaml b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.en-US.yaml index 7f9ebea5712b1..aee77eaef6c9d 100644 --- a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.en-US.yaml +++ b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: AGTEK.UndergroundSA diff --git a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.zh-CN.yaml b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.zh-CN.yaml index 6eeab66d7cf53..76def971d311d 100644 --- a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.zh-CN.yaml +++ b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json PackageIdentifier: AGTEK.UndergroundSA diff --git a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.yaml b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.yaml index da1cf1b596f98..70036b6f38cf9 100644 --- a/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.yaml +++ b/manifests/a/AGTEK/UndergroundSA/12.0.0.5/AGTEK.UndergroundSA.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2025/Jul/11 +# Automatically updated by the winget bot at 2025/Jul/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: AGTEK.UndergroundSA diff --git a/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.installer.yaml b/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.installer.yaml index 4a950f2089957..1a0201742f70e 100644 --- a/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.installer.yaml +++ b/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.installer.yaml @@ -1,5 +1,5 @@ -# Created with YamlCreate.ps1 v2.4.1 $debug=NVS1.CRLF.7-4-5.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: AList.AListDesktop PackageVersion: 3.37.4 @@ -9,19 +9,19 @@ Installers: - Architecture: x64 InstallerType: nullsoft Scope: user - InstallerUrl: https://github.com/alist-org/desktop-release/releases/download/v3.37.4/alist-desktop_3.37.4_x64-setup.exe + InstallerUrl: https://github.com/AlistGo/desktop-release/releases/download/v3.37.4/alist-desktop_3.37.4_x64-setup.exe InstallerSha256: 53E0ECC523D91C8CE3D615C1D212F741920C6ECE6764C331AEEAF0EC342EC70B ProductCode: alist-desktop - Architecture: arm64 InstallerType: nullsoft Scope: user - InstallerUrl: https://github.com/alist-org/desktop-release/releases/download/v3.37.4/alist-desktop_3.37.4_arm64-setup.exe + InstallerUrl: https://github.com/AlistGo/desktop-release/releases/download/v3.37.4/alist-desktop_3.37.4_arm64-setup.exe InstallerSha256: 4639CE2B036D83F7A5DE31056A857D06305A3CD3BDA04B94D414EF14E3B4F84C ProductCode: alist-desktop - Architecture: x64 InstallerType: wix Scope: machine - InstallerUrl: https://github.com/alist-org/desktop-release/releases/download/v3.37.4/alist-desktop_3.37.4_x64_en-US.msi + InstallerUrl: https://github.com/AlistGo/desktop-release/releases/download/v3.37.4/alist-desktop_3.37.4_x64_en-US.msi InstallerSha256: AA9C1D76B61D41CFA3854B599C7FACC420C8C9E89B798DE6FD94E74FA229ABB7 InstallerSwitches: InstallLocation: INSTALLDIR="" @@ -30,4 +30,4 @@ Installers: - ProductCode: '{6CE79728-2E80-48BC-AC06-54FC8003DA08}' UpgradeCode: '{35D0EA96-CF42-529B-9122-220745E50D7A}' ManifestType: installer -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.locale.en-US.yaml b/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.locale.en-US.yaml index 14405701486c3..a9c9bba70fc43 100644 --- a/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.locale.en-US.yaml +++ b/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.locale.en-US.yaml @@ -1,12 +1,12 @@ -# Created with YamlCreate.ps1 v2.4.1 $debug=NVS1.CRLF.7-4-5.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: AList.AListDesktop PackageVersion: 3.37.4 PackageLocale: en-US Publisher: nn PublisherUrl: https://alist.nn.ci/ -PublisherSupportUrl: https://github.com/alist-org/desktop-release/issues +PublisherSupportUrl: https://github.com/AlistGo/desktop-release/issues # PrivacyUrl: Author: Andy Hsu PackageName: alist-desktop @@ -19,20 +19,20 @@ 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 # Moniker: Tags: -- file -- server -- share -- storage + - file + - server + - share + - storage # ReleaseNotes: -ReleaseNotesUrl: https://github.com/alist-org/desktop-release/releases/tag/v3.37.4 +ReleaseNotesUrl: https://github.com/AlistGo/desktop-release/releases/tag/v3.37.4 # PurchaseUrl: # InstallationNotes: 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 + - 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.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.locale.zh-CN.yaml b/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.locale.zh-CN.yaml index af0abbbc19f6c..1eff56313c3eb 100644 --- a/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.locale.zh-CN.yaml +++ b/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.locale.zh-CN.yaml @@ -1,12 +1,12 @@ -# Created with YamlCreate.ps1 v2.4.1 $debug=NVS1.CRLF.7-4-5.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: AList.AListDesktop PackageVersion: 3.37.4 PackageLocale: zh-CN Publisher: nn PublisherUrl: https://alist.nn.ci/zh -PublisherSupportUrl: https://github.com/alist-org/desktop-release/issues +PublisherSupportUrl: https://github.com/AlistGo/desktop-release/issues # PrivacyUrl: Author: Andy Hsu PackageName: alist-desktop @@ -25,7 +25,7 @@ Tags: - 文件 - 服务器 # ReleaseNotes: -ReleaseNotesUrl: https://github.com/alist-org/desktop-release/releases/tag/v3.37.4 +ReleaseNotesUrl: https://github.com/AlistGo/desktop-release/releases/tag/v3.37.4 # PurchaseUrl: # InstallationNotes: Documentations: @@ -36,4 +36,4 @@ Documentations: - DocumentLabel: 配置 DocumentUrl: https://alist.nn.ci/zh/config ManifestType: locale -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.yaml b/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.yaml index 7d609f1d9c2db..90c36e9225dfb 100644 --- a/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.yaml +++ b/manifests/a/AList/AListDesktop/3.37.4/AList.AListDesktop.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.1 $debug=NVS1.CRLF.7-4-5.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: AList.AListDesktop PackageVersion: 3.37.4 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.6.0 +ManifestVersion: 1.10.0 diff --git a/manifests/a/Actifile/ActifileAgent/3.0.1.6/Actifile.ActifileAgent.installer.yaml b/manifests/a/Actifile/ActifileAgent/3.0.1.6/Actifile.ActifileAgent.installer.yaml new file mode 100644 index 0000000000000..2d1b529459a84 --- /dev/null +++ b/manifests/a/Actifile/ActifileAgent/3.0.1.6/Actifile.ActifileAgent.installer.yaml @@ -0,0 +1,14 @@ +# Automatically updated by the winget bot at 2025/Jul/15 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Actifile.ActifileAgent +PackageVersion: 3.0.1.6 +Installers: +- Architecture: x86 + InstallerType: msi + InstallerUrl: https://app.actifile.com/Home/DownloadAgentMsi + InstallerSha256: 328602EADC46C8C5B74695A20D994CA7C522D90919C2A42A79B3AF1FECF178C4 + ProductCode: "{0D13F554-E542-4590-AACB-AA60CAE75A64}" + Scope: machine +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Actifile/ActifileAgent/3.0.1.6/Actifile.ActifileAgent.locale.en-US.yaml b/manifests/a/Actifile/ActifileAgent/3.0.1.6/Actifile.ActifileAgent.locale.en-US.yaml new file mode 100644 index 0000000000000..100779c0d7f6a --- /dev/null +++ b/manifests/a/Actifile/ActifileAgent/3.0.1.6/Actifile.ActifileAgent.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Automatically updated by the winget bot at 2025/Jul/15 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Actifile.ActifileAgent +PackageVersion: 3.0.1.6 +PackageLocale: en-US +Publisher: Actifile +PackageName: Actifile Agent +License: Copyright (c) Actifile +ShortDescription: Actifile’s SaaS platform automates sensitive data discovery, monitoring and protection for zero-trust endpoints. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Actifile/ActifileAgent/3.0.1.6/Actifile.ActifileAgent.yaml b/manifests/a/Actifile/ActifileAgent/3.0.1.6/Actifile.ActifileAgent.yaml new file mode 100644 index 0000000000000..96691b79e9abc --- /dev/null +++ b/manifests/a/Actifile/ActifileAgent/3.0.1.6/Actifile.ActifileAgent.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/15 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Actifile.ActifileAgent +PackageVersion: 3.0.1.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AdGuard/AdGuard/Beta/7.21.5073.0/AdGuard.AdGuard.Beta.installer.yaml b/manifests/a/AdGuard/AdGuard/Beta/7.21.5073.0/AdGuard.AdGuard.Beta.installer.yaml new file mode 100644 index 0000000000000..9910fd49d2025 --- /dev/null +++ b/manifests/a/AdGuard/AdGuard/Beta/7.21.5073.0/AdGuard.AdGuard.Beta.installer.yaml @@ -0,0 +1,20 @@ +# Automatically updated by the winget bot at 2025/Jul/15 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AdGuard.AdGuard.Beta +PackageVersion: 7.21.5073.0 +InstallerType: burn +Installers: +- Architecture: x86 + InstallerUrl: https://agrd.io/windows_beta + InstallerSha256: 1C272B759954AD32EFD2C022968F160F94EB71F364C1D3F60FC1CF136072317B +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.5073.0/AdGuard.AdGuard.Beta.locale.en-US.yaml b/manifests/a/AdGuard/AdGuard/Beta/7.21.5073.0/AdGuard.AdGuard.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..d7c2d2f6e746e --- /dev/null +++ b/manifests/a/AdGuard/AdGuard/Beta/7.21.5073.0/AdGuard.AdGuard.Beta.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Automatically updated by the winget bot at 2025/Jul/15 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AdGuard.AdGuard.Beta +PackageVersion: 7.21.5073.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.5073.0/AdGuard.AdGuard.Beta.yaml b/manifests/a/AdGuard/AdGuard/Beta/7.21.5073.0/AdGuard.AdGuard.Beta.yaml new file mode 100644 index 0000000000000..69d4b95cf632e --- /dev/null +++ b/manifests/a/AdGuard/AdGuard/Beta/7.21.5073.0/AdGuard.AdGuard.Beta.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2025/Jul/15 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: AdGuard.AdGuard.Beta +PackageVersion: 7.21.5073.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.51/Amazon.AWSCLI.installer.yaml b/manifests/a/Amazon/AWSCLI/2.27.51/Amazon.AWSCLI.installer.yaml new file mode 100644 index 0000000000000..29180675ae6fd --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.51/Amazon.AWSCLI.installer.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.27.51 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- aws +ProductCode: '{4CDE339E-2DC1-447F-8187-055EF92E70D6}' +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.51.msi + InstallerSha256: AE2D65241EAD13F08E7B208D5A8ABED694CF55F01EF54C56DB3FA883C1EAC837 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/AWSCLI/2.27.51/Amazon.AWSCLI.locale.en-US.yaml b/manifests/a/Amazon/AWSCLI/2.27.51/Amazon.AWSCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..9a550866c2dc8 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.27.51/Amazon.AWSCLI.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.27.51 +PackageLocale: en-US +Publisher: Amazon Web Services +PublisherUrl: https://github.com/aws/aws-cli +PublisherSupportUrl: https://github.com/aws/aws-cli/issues +Author: Amazon Web Services +PackageName: AWS Command Line Interface +PackageUrl: https://aws.amazon.com/cli +License: Apache 2.0 license +LicenseUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +Copyright: Copyright 2012-2020 Amazon.com, Inc. +CopyrightUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt +ShortDescription: Universal Command Line Interface for Amazon Web Services +Description: |- + The AWS CLI is an open source tool built on top of the AWS SDK for Python (Boto) that provides commands for interacting with AWS services. + With minimal configuration, you can start using all of the functionality provided by the AWS Management Console from your favorite terminal program. +Tags: +- aws +- awscli +- cli +- cloud +- foss +- open-source +- s3 +- services +- web +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/mikf/gallery-dl/Nightly/2025.06.25/mikf.gallery-dl.Nightly.yaml b/manifests/a/Amazon/AWSCLI/2.27.51/Amazon.AWSCLI.yaml similarity index 59% rename from manifests/m/mikf/gallery-dl/Nightly/2025.06.25/mikf.gallery-dl.Nightly.yaml rename to manifests/a/Amazon/AWSCLI/2.27.51/Amazon.AWSCLI.yaml index f4f591742a138..821e66147cf4f 100644 --- a/manifests/m/mikf/gallery-dl/Nightly/2025.06.25/mikf.gallery-dl.Nightly.yaml +++ b/manifests/a/Amazon/AWSCLI/2.27.51/Amazon.AWSCLI.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.12.0 +# Created using wingetcreate 1.10.2.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json -PackageIdentifier: mikf.gallery-dl.Nightly -PackageVersion: 2025.06.25 +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.27.51 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/b/BelledonneCommunications/Linphone/6.0.17/BelledonneCommunications.Linphone.installer.yaml b/manifests/b/BelledonneCommunications/Linphone/6.0.17/BelledonneCommunications.Linphone.installer.yaml new file mode 100644 index 0000000000000..d8c4f572136c7 --- /dev/null +++ b/manifests/b/BelledonneCommunications/Linphone/6.0.17/BelledonneCommunications.Linphone.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: BelledonneCommunications.Linphone +PackageVersion: 6.0.17 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: uninstallPrevious +ProductCode: Linphone +ReleaseDate: 2025-05-26 +AppsAndFeaturesEntries: +- Publisher: Belledonne Communications + ProductCode: Linphone +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Linphone' +Installers: +- Architecture: x64 + InstallerUrl: https://download.linphone.org/releases/windows/app/Linphone-6.0.0-CallEdition-win64.exe + InstallerSha256: B6FB6AB7DD3A567C9E7FBDAD27191B29B0D597A3D700268D6D71D9568B7C938D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BelledonneCommunications/Linphone/6.0.17/BelledonneCommunications.Linphone.locale.en-US.yaml b/manifests/b/BelledonneCommunications/Linphone/6.0.17/BelledonneCommunications.Linphone.locale.en-US.yaml new file mode 100644 index 0000000000000..fbfadfe9a56e5 --- /dev/null +++ b/manifests/b/BelledonneCommunications/Linphone/6.0.17/BelledonneCommunications.Linphone.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: BelledonneCommunications.Linphone +PackageVersion: 6.0.17 +PackageLocale: en-US +Publisher: Belledonne Communications SARL +PublisherUrl: https://linphone.org/ +PublisherSupportUrl: https://linphone.org/contact +Author: Belledonne Communications SARL +PackageName: Linphone +License: GNU General Public License version 3 +LicenseUrl: https://www.gnu.org/licenses/gpl-3.0.en.html +ShortDescription: An open source SIP phone for voice/video calls, instant messaging and conference calling. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BelledonneCommunications/Linphone/6.0.17/BelledonneCommunications.Linphone.yaml b/manifests/b/BelledonneCommunications/Linphone/6.0.17/BelledonneCommunications.Linphone.yaml new file mode 100644 index 0000000000000..c4b625a7dba69 --- /dev/null +++ b/manifests/b/BelledonneCommunications/Linphone/6.0.17/BelledonneCommunications.Linphone.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: BelledonneCommunications.Linphone +PackageVersion: 6.0.17 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BioSilico/IdeaMapper/4.2.0005/BioSilico.IdeaMapper.installer.yaml b/manifests/b/BioSilico/IdeaMapper/4.2.0005/BioSilico.IdeaMapper.installer.yaml new file mode 100644 index 0000000000000..23f7b6ff7f771 --- /dev/null +++ b/manifests/b/BioSilico/IdeaMapper/4.2.0005/BioSilico.IdeaMapper.installer.yaml @@ -0,0 +1,77 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BioSilico.IdeaMapper +PackageVersion: 4.2.0005 +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 +FileExtensions: +- iimd +- iimdx +- iimt +- iimtx +ProductCode: '{4ABE8387-EAF8-4783-88CB-99F2F66A1B5C}' +ReleaseDate: 2025-07-15 +AppsAndFeaturesEntries: +- UpgradeCode: '{A959A9CB-A369-4B6F-873D-FDF97F76CCEF}' + InstallerType: msi +Installers: +- Architecture: x64 + InstallerUrl: https://download.ideamapper.com/4.2.0005/windows/setup_ideamapper_4_2_0005.exe + InstallerSha256: 0538495B0C3A72811C7CA757DD3D3D959A9C024C307107B40F9478EFDD10630E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BioSilico/IdeaMapper/4.2.0005/BioSilico.IdeaMapper.locale.en-US.yaml b/manifests/b/BioSilico/IdeaMapper/4.2.0005/BioSilico.IdeaMapper.locale.en-US.yaml new file mode 100644 index 0000000000000..d9f26908320c0 --- /dev/null +++ b/manifests/b/BioSilico/IdeaMapper/4.2.0005/BioSilico.IdeaMapper.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: BioSilico.IdeaMapper +PackageVersion: 4.2.0005 +PackageLocale: en-US +Publisher: BioSilico Limited +PublisherUrl: https://www.biosilico.com/ +PublisherSupportUrl: https://support.biosilico.com/ +PrivacyUrl: https://www.biosilico.com/privacy-policy/ +Author: BioSilico Limited +PackageName: Idea Mapper +PackageUrl: https://support.biosilico.com/portal/kb/articles/ideamapper +License: Proprietary +LicenseUrl: https://www.biosilico.com/wp-content/uploads/2023/12/End-User-Agreement.pdf +Copyright: Copyright © 2025, BioSilico Limited. All rights reserved. +CopyrightUrl: https://www.biosilico.com/wp-content/uploads/2023/12/End-User-Agreement.pdf +ShortDescription: ideamapper is a powerful mind mapping, visual learning, and writing tool designed to produce well-structured documents. +Tags: +- mind-map +- mind-mapping +- mindmap +- writing +ReleaseNotes: |- + Which editions are affected? + 1. All editions: IdeaMapper Desktop Cloud, IdeaMapperPro, IdeaMapperK12, IdeaMapperHigherEd and EssayWriter. + How to get this release? + 1. For desktop installations: Go to https://ideamapper.com, follow HelpDesk and download links for your platform, download the installer file, then install. The previous version will be upgraded. + 2. For the webapp: Clear the browser cache, then go to https://webapp.ideamapper.com, and log in with the same credentials. + What’s New? + - Improve processing of files which contain invalid characters + - Improve importing of MindView files with inconsistent data + Bug Fixes? + - On macOS, clipart library missing. + - On macOS, certain clipboard data could lead to the application becoming unstable. +ReleaseNotesUrl: https://support.biosilico.com/portal/kb/articles/version-4-2-0005 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BioSilico/IdeaMapper/4.2.0005/BioSilico.IdeaMapper.locale.zh-CN.yaml b/manifests/b/BioSilico/IdeaMapper/4.2.0005/BioSilico.IdeaMapper.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3c3194721b4a1 --- /dev/null +++ b/manifests/b/BioSilico/IdeaMapper/4.2.0005/BioSilico.IdeaMapper.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: BioSilico.IdeaMapper +PackageVersion: 4.2.0005 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: ideamapper 是一款功能强大的思维导图、可视化学习及写作工具,旨在帮助用户生成结构清晰的文档。 +Tags: +- 写作 +- 思维导图 +- 脑图 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7195.0/Google.Chrome.Canary.yaml b/manifests/b/BioSilico/IdeaMapper/4.2.0005/BioSilico.IdeaMapper.yaml similarity index 72% rename from manifests/g/Google/Chrome/Canary/138.0.7195.0/Google.Chrome.Canary.yaml rename to manifests/b/BioSilico/IdeaMapper/4.2.0005/BioSilico.IdeaMapper.yaml index 560e341b15d65..9281c455d22d1 100644 --- a/manifests/g/Google/Chrome/Canary/138.0.7195.0/Google.Chrome.Canary.yaml +++ b/manifests/b/BioSilico/IdeaMapper/4.2.0005/BioSilico.IdeaMapper.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7195.0 +PackageIdentifier: BioSilico.IdeaMapper +PackageVersion: 4.2.0005 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/b/BioSilico/IdeaMapper/HigherEd/4.2.0005/BioSilico.IdeaMapper.HigherEd.installer.yaml b/manifests/b/BioSilico/IdeaMapper/HigherEd/4.2.0005/BioSilico.IdeaMapper.HigherEd.installer.yaml new file mode 100644 index 0000000000000..a7ebb6421992b --- /dev/null +++ b/manifests/b/BioSilico/IdeaMapper/HigherEd/4.2.0005/BioSilico.IdeaMapper.HigherEd.installer.yaml @@ -0,0 +1,77 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BioSilico.IdeaMapper.HigherEd +PackageVersion: 4.2.0005 +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 +FileExtensions: +- iimd +- iimdx +- iimt +- iimtx +ProductCode: '{3628598D-7664-4022-94B3-431D61BAAA13}' +ReleaseDate: 2025-07-15 +AppsAndFeaturesEntries: +- UpgradeCode: '{213219D3-CEB5-4EA1-B902-053C6E12F8CA}' + InstallerType: msi +Installers: +- Architecture: x64 + InstallerUrl: https://download.ideamapperhighered.com/4.2.0005/windows/setup_ideamapperhighered_4_2_0005.exe + InstallerSha256: F77450B74F98EC0A953EBB541ACC2FBE3212403AC907AC37C160EFD172C406E2 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BioSilico/IdeaMapper/HigherEd/4.2.0005/BioSilico.IdeaMapper.HigherEd.locale.en-US.yaml b/manifests/b/BioSilico/IdeaMapper/HigherEd/4.2.0005/BioSilico.IdeaMapper.HigherEd.locale.en-US.yaml new file mode 100644 index 0000000000000..671e73257db8d --- /dev/null +++ b/manifests/b/BioSilico/IdeaMapper/HigherEd/4.2.0005/BioSilico.IdeaMapper.HigherEd.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: BioSilico.IdeaMapper.HigherEd +PackageVersion: 4.2.0005 +PackageLocale: en-US +Publisher: BioSilico Limited +PublisherUrl: https://www.biosilico.com/ +PublisherSupportUrl: https://support.biosilico.com/ +PrivacyUrl: https://www.biosilico.com/privacy-policy/ +Author: BioSilico Limited +PackageName: Idea Mapper Higher Ed +PackageUrl: https://support.biosilico.com/portal/kb/articles/ideamapper-higher-ed +License: Proprietary +LicenseUrl: https://www.biosilico.com/wp-content/uploads/2023/12/End-User-Agreement.pdf +Copyright: Copyright © 2025, BioSilico Limited. All rights reserved. +CopyrightUrl: https://www.biosilico.com/wp-content/uploads/2023/12/End-User-Agreement.pdf +ShortDescription: ideamapper is a powerful mind mapping, visual learning, and writing tool designed to produce well-structured documents. +Tags: +- mind-map +- mind-mapping +- mindmap +- writing +ReleaseNotes: |- + Which editions are affected? + 1. All editions: IdeaMapper Desktop Cloud, IdeaMapperPro, IdeaMapperK12, IdeaMapperHigherEd and EssayWriter. + How to get this release? + 1. For desktop installations: Go to https://ideamapper.com, follow HelpDesk and download links for your platform, download the installer file, then install. The previous version will be upgraded. + 2. For the webapp: Clear the browser cache, then go to https://webapp.ideamapper.com, and log in with the same credentials. + What’s New? + - Improve processing of files which contain invalid characters + - Improve importing of MindView files with inconsistent data + Bug Fixes? + - On macOS, clipart library missing. + - On macOS, certain clipboard data could lead to the application becoming unstable. +ReleaseNotesUrl: https://support.biosilico.com/portal/kb/articles/version-4-2-0005 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BioSilico/IdeaMapper/HigherEd/4.2.0005/BioSilico.IdeaMapper.HigherEd.locale.zh-CN.yaml b/manifests/b/BioSilico/IdeaMapper/HigherEd/4.2.0005/BioSilico.IdeaMapper.HigherEd.locale.zh-CN.yaml new file mode 100644 index 0000000000000..07639464c23b2 --- /dev/null +++ b/manifests/b/BioSilico/IdeaMapper/HigherEd/4.2.0005/BioSilico.IdeaMapper.HigherEd.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: BioSilico.IdeaMapper.HigherEd +PackageVersion: 4.2.0005 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: ideamapper 是一款功能强大的思维导图、可视化学习及写作工具,旨在帮助用户生成结构清晰的文档。 +Tags: +- 写作 +- 思维导图 +- 脑图 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BioSilico/IdeaMapper/HigherEd/4.2.0005/BioSilico.IdeaMapper.HigherEd.yaml b/manifests/b/BioSilico/IdeaMapper/HigherEd/4.2.0005/BioSilico.IdeaMapper.HigherEd.yaml new file mode 100644 index 0000000000000..51be2c81c1a3f --- /dev/null +++ b/manifests/b/BioSilico/IdeaMapper/HigherEd/4.2.0005/BioSilico.IdeaMapper.HigherEd.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: BioSilico.IdeaMapper.HigherEd +PackageVersion: 4.2.0005 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BioSilico/IdeaMapper/K12/4.2.0005/BioSilico.IdeaMapper.K12.installer.yaml b/manifests/b/BioSilico/IdeaMapper/K12/4.2.0005/BioSilico.IdeaMapper.K12.installer.yaml new file mode 100644 index 0000000000000..21a947c0b1a1b --- /dev/null +++ b/manifests/b/BioSilico/IdeaMapper/K12/4.2.0005/BioSilico.IdeaMapper.K12.installer.yaml @@ -0,0 +1,77 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BioSilico.IdeaMapper.K12 +PackageVersion: 4.2.0005 +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 +FileExtensions: +- iimd +- iimdx +- iimt +- iimtx +ProductCode: '{532932EC-9EBE-40FE-9E71-A5E7485A27CD}' +ReleaseDate: 2025-07-15 +AppsAndFeaturesEntries: +- UpgradeCode: '{C60465A6-F6AF-42A7-97D5-C047D022EDA3}' + InstallerType: msi +Installers: +- Architecture: x64 + InstallerUrl: https://download.ideamapperk12.com/4.2.0005/windows/setup_ideamapperk12_4_2_0005.exe + InstallerSha256: 9CC696DDBCE1B889DFDC258DFEF408EE52F96FC408E30FEFC2AB3B987A3A4D6C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BioSilico/IdeaMapper/K12/4.2.0005/BioSilico.IdeaMapper.K12.locale.en-US.yaml b/manifests/b/BioSilico/IdeaMapper/K12/4.2.0005/BioSilico.IdeaMapper.K12.locale.en-US.yaml new file mode 100644 index 0000000000000..972148dbad662 --- /dev/null +++ b/manifests/b/BioSilico/IdeaMapper/K12/4.2.0005/BioSilico.IdeaMapper.K12.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: BioSilico.IdeaMapper.K12 +PackageVersion: 4.2.0005 +PackageLocale: en-US +Publisher: BioSilico Limited +PublisherUrl: https://www.biosilico.com/ +PublisherSupportUrl: https://support.biosilico.com/ +PrivacyUrl: https://www.biosilico.com/privacy-policy/ +Author: BioSilico Limited +PackageName: Idea Mapper K12 +PackageUrl: https://support.biosilico.com/portal/kb/articles/ideamapper-k12 +License: Proprietary +LicenseUrl: https://www.biosilico.com/wp-content/uploads/2023/12/End-User-Agreement.pdf +Copyright: Copyright © 2025, BioSilico Limited. All rights reserved. +CopyrightUrl: https://www.biosilico.com/wp-content/uploads/2023/12/End-User-Agreement.pdf +ShortDescription: ideamapper is a powerful mind mapping, visual learning, and writing tool designed to produce well-structured documents. +Tags: +- mind-map +- mind-mapping +- mindmap +- writing +ReleaseNotes: |- + Which editions are affected? + 1. All editions: IdeaMapper Desktop Cloud, IdeaMapperPro, IdeaMapperK12, IdeaMapperHigherEd and EssayWriter. + How to get this release? + 1. For desktop installations: Go to https://ideamapper.com, follow HelpDesk and download links for your platform, download the installer file, then install. The previous version will be upgraded. + 2. For the webapp: Clear the browser cache, then go to https://webapp.ideamapper.com, and log in with the same credentials. + What’s New? + - Improve processing of files which contain invalid characters + - Improve importing of MindView files with inconsistent data + Bug Fixes? + - On macOS, clipart library missing. + - On macOS, certain clipboard data could lead to the application becoming unstable. +ReleaseNotesUrl: https://support.biosilico.com/portal/kb/articles/version-4-2-0005 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BioSilico/IdeaMapper/K12/4.2.0005/BioSilico.IdeaMapper.K12.locale.zh-CN.yaml b/manifests/b/BioSilico/IdeaMapper/K12/4.2.0005/BioSilico.IdeaMapper.K12.locale.zh-CN.yaml new file mode 100644 index 0000000000000..009100e5dc860 --- /dev/null +++ b/manifests/b/BioSilico/IdeaMapper/K12/4.2.0005/BioSilico.IdeaMapper.K12.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: BioSilico.IdeaMapper.K12 +PackageVersion: 4.2.0005 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: ideamapper 是一款功能强大的思维导图、可视化学习及写作工具,旨在帮助用户生成结构清晰的文档。 +Tags: +- 写作 +- 思维导图 +- 脑图 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7191.0/Google.Chrome.Canary.yaml b/manifests/b/BioSilico/IdeaMapper/K12/4.2.0005/BioSilico.IdeaMapper.K12.yaml similarity index 72% rename from manifests/g/Google/Chrome/Canary/138.0.7191.0/Google.Chrome.Canary.yaml rename to manifests/b/BioSilico/IdeaMapper/K12/4.2.0005/BioSilico.IdeaMapper.K12.yaml index 96e1fb5fea97e..e3d1eed6c2abc 100644 --- a/manifests/g/Google/Chrome/Canary/138.0.7191.0/Google.Chrome.Canary.yaml +++ b/manifests/b/BioSilico/IdeaMapper/K12/4.2.0005/BioSilico.IdeaMapper.K12.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7191.0 +PackageIdentifier: BioSilico.IdeaMapper.K12 +PackageVersion: 4.2.0005 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/b/BioSilico/IdeaMapper/Pro/4.2.0005/BioSilico.IdeaMapper.Pro.installer.yaml b/manifests/b/BioSilico/IdeaMapper/Pro/4.2.0005/BioSilico.IdeaMapper.Pro.installer.yaml new file mode 100644 index 0000000000000..ff54364ad9805 --- /dev/null +++ b/manifests/b/BioSilico/IdeaMapper/Pro/4.2.0005/BioSilico.IdeaMapper.Pro.installer.yaml @@ -0,0 +1,77 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BioSilico.IdeaMapper.Pro +PackageVersion: 4.2.0005 +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 +FileExtensions: +- iimd +- iimdx +- iimt +- iimtx +ProductCode: '{346E47A7-BA16-4E0D-A85F-1EC256CE2ED7}' +ReleaseDate: 2025-07-15 +AppsAndFeaturesEntries: +- UpgradeCode: '{A121DC0A-6593-4B82-8A44-FAD58D813227}' + InstallerType: msi +Installers: +- Architecture: x64 + InstallerUrl: https://download.ideamapperpro.com/4.2.0005/windows/setup_ideamapperpro_4_2_0005.exe + InstallerSha256: 8267C583B0E2CDB6C44CE935A7E760D03BE8D1D8EB870773245B2F2473F2CB9B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BioSilico/IdeaMapper/Pro/4.2.0005/BioSilico.IdeaMapper.Pro.locale.en-US.yaml b/manifests/b/BioSilico/IdeaMapper/Pro/4.2.0005/BioSilico.IdeaMapper.Pro.locale.en-US.yaml new file mode 100644 index 0000000000000..7e3e8a4d411a0 --- /dev/null +++ b/manifests/b/BioSilico/IdeaMapper/Pro/4.2.0005/BioSilico.IdeaMapper.Pro.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: BioSilico.IdeaMapper.Pro +PackageVersion: 4.2.0005 +PackageLocale: en-US +Publisher: BioSilico Limited +PublisherUrl: https://www.biosilico.com/ +PublisherSupportUrl: https://support.biosilico.com/ +PrivacyUrl: https://www.biosilico.com/privacy-policy/ +Author: BioSilico Limited +PackageName: Idea Mapper Pro +PackageUrl: https://support.biosilico.com/portal/kb/articles/download-ideamapper-pro +License: Proprietary +LicenseUrl: https://www.biosilico.com/wp-content/uploads/2023/12/End-User-Agreement.pdf +Copyright: Copyright © 2025, BioSilico Limited. All rights reserved. +CopyrightUrl: https://www.biosilico.com/wp-content/uploads/2023/12/End-User-Agreement.pdf +ShortDescription: ideamapper is a powerful mind mapping, visual learning, and writing tool designed to produce well-structured documents. +Tags: +- mind-map +- mind-mapping +- mindmap +- writing +ReleaseNotes: |- + Which editions are affected? + 1. All editions: IdeaMapper Desktop Cloud, IdeaMapperPro, IdeaMapperK12, IdeaMapperHigherEd and EssayWriter. + How to get this release? + 1. For desktop installations: Go to https://ideamapper.com, follow HelpDesk and download links for your platform, download the installer file, then install. The previous version will be upgraded. + 2. For the webapp: Clear the browser cache, then go to https://webapp.ideamapper.com, and log in with the same credentials. + What’s New? + - Improve processing of files which contain invalid characters + - Improve importing of MindView files with inconsistent data + Bug Fixes? + - On macOS, clipart library missing. + - On macOS, certain clipboard data could lead to the application becoming unstable. +ReleaseNotesUrl: https://support.biosilico.com/portal/kb/articles/version-4-2-0005 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BioSilico/IdeaMapper/Pro/4.2.0005/BioSilico.IdeaMapper.Pro.locale.zh-CN.yaml b/manifests/b/BioSilico/IdeaMapper/Pro/4.2.0005/BioSilico.IdeaMapper.Pro.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7a2d42b971612 --- /dev/null +++ b/manifests/b/BioSilico/IdeaMapper/Pro/4.2.0005/BioSilico.IdeaMapper.Pro.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: BioSilico.IdeaMapper.Pro +PackageVersion: 4.2.0005 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: ideamapper 是一款功能强大的思维导图、可视化学习及写作工具,旨在帮助用户生成结构清晰的文档。 +Tags: +- 写作 +- 思维导图 +- 脑图 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7194.0/Google.Chrome.Canary.yaml b/manifests/b/BioSilico/IdeaMapper/Pro/4.2.0005/BioSilico.IdeaMapper.Pro.yaml similarity index 72% rename from manifests/g/Google/Chrome/Canary/138.0.7194.0/Google.Chrome.Canary.yaml rename to manifests/b/BioSilico/IdeaMapper/Pro/4.2.0005/BioSilico.IdeaMapper.Pro.yaml index ababa0804108d..4b8807bcee0be 100644 --- a/manifests/g/Google/Chrome/Canary/138.0.7194.0/Google.Chrome.Canary.yaml +++ b/manifests/b/BioSilico/IdeaMapper/Pro/4.2.0005/BioSilico.IdeaMapper.Pro.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7194.0 +PackageIdentifier: BioSilico.IdeaMapper.Pro +PackageVersion: 4.2.0005 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/b/Brave/Brave/Nightly/138.1.82.84/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.84/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 0000000000000..9ad51a529f0f7 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.84/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.84 +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.84/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: 48625C25C92BF076CD0E617AFF4DD6D286C010D75F9282747A10CB951893C20F + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.84/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: 70ECE4F74357EFBD291B8C723058B3A11FF6EF1AA66ADF402A6503D7FA099294 + 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.84/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: EF1E7FB21844BF61C286FBDD9D0B7FEB75995148FB7FB718A2C7BA00F96811AA + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.84/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: 87E2CC83A247127FD237958CE50E2A35263A0AF1173D3E03737C2064CF5D838E + 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.84/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: 5BAB458B67E340A42FACC65A08CFD868FC3E048CCB07A9E0ECD0D689EF9827DB + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.82.84/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: 9CC544A596F887BFB304BFBBC3D756B7C30E40716E50F78E51902CDC85395F77 + 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.84/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.84/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..30a9c212f4b05 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.84/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.84 +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.84/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.84/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6654c5e3437cc --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.84/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.84 +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/g/Google/Chrome/Canary/138.0.7193.0/Google.Chrome.Canary.yaml b/manifests/b/Brave/Brave/Nightly/138.1.82.84/Brave.Brave.Nightly.yaml similarity index 72% rename from manifests/g/Google/Chrome/Canary/138.0.7193.0/Google.Chrome.Canary.yaml rename to manifests/b/Brave/Brave/Nightly/138.1.82.84/Brave.Brave.Nightly.yaml index fb865bcc713c3..9becd56a0cbdf 100644 --- a/manifests/g/Google/Chrome/Canary/138.0.7193.0/Google.Chrome.Canary.yaml +++ b/manifests/b/Brave/Brave/Nightly/138.1.82.84/Brave.Brave.Nightly.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7193.0 +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 138.1.82.84 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/c/Chromium/ChromeDriver/138.0.7204.157/Chromium.ChromeDriver.installer.yaml b/manifests/c/Chromium/ChromeDriver/138.0.7204.157/Chromium.ChromeDriver.installer.yaml new file mode 100644 index 0000000000000..1efc10293abb3 --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/138.0.7204.157/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.157 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2025-07-14 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: chromedriver-win32/chromedriver.exe + InstallerUrl: https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.157/win32/chromedriver-win32.zip + InstallerSha256: ED96075D0A54DB23B030D91A030AB14E6F142BFF06F9495707AB15DE13B3BCAA +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: chromedriver-win64/chromedriver.exe + InstallerUrl: https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.157/win64/chromedriver-win64.zip + InstallerSha256: A99E7576B35F48D7AA3CE36215A3427269D7F03EF9CBA18E362F10653847F876 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Chromium/ChromeDriver/138.0.7204.157/Chromium.ChromeDriver.locale.en-US.yaml b/manifests/c/Chromium/ChromeDriver/138.0.7204.157/Chromium.ChromeDriver.locale.en-US.yaml new file mode 100644 index 0000000000000..bf803d303f9b0 --- /dev/null +++ b/manifests/c/Chromium/ChromeDriver/138.0.7204.157/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.157 +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/g/GaetanSencie/AnnualAccounting/1.9.0.0/GaetanSencie.AnnualAccounting.yaml b/manifests/c/Chromium/ChromeDriver/138.0.7204.157/Chromium.ChromeDriver.yaml similarity index 58% rename from manifests/g/GaetanSencie/AnnualAccounting/1.9.0.0/GaetanSencie.AnnualAccounting.yaml rename to manifests/c/Chromium/ChromeDriver/138.0.7204.157/Chromium.ChromeDriver.yaml index d2fba02009481..0bfe0211186f5 100644 --- a/manifests/g/GaetanSencie/AnnualAccounting/1.9.0.0/GaetanSencie.AnnualAccounting.yaml +++ b/manifests/c/Chromium/ChromeDriver/138.0.7204.157/Chromium.ChromeDriver.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: GaetanSencie.AnnualAccounting -PackageVersion: 1.9.0.0 +PackageIdentifier: Chromium.ChromeDriver +PackageVersion: 138.0.7204.157 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/c/Coder/Coder/2.23.4/Coder.Coder.installer.yaml b/manifests/c/Coder/Coder/2.23.4/Coder.Coder.installer.yaml new file mode 100644 index 0000000000000..395dbd4570dd2 --- /dev/null +++ b/manifests/c/Coder/Coder/2.23.4/Coder.Coder.installer.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Coder.Coder +PackageVersion: 2.23.4 +Commands: +- coder +Installers: +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: coder.exe + InstallerUrl: https://github.com/coder/coder/releases/download/v2.23.4/coder_2.23.4_windows_amd64.zip + InstallerSha256: 0A8FEE04F1E60C95B87DC08F4A668936A74D34B4529BF968F2BDDBCB9F14E432 +- Architecture: x64 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://github.com/coder/coder/releases/download/v2.23.4/coder_2.23.4_windows_amd64_installer.exe + InstallerSha256: CCD205870E4C26B1D4897C528B3476EF8ADD627FE8D3399338E967CF129240CE + ProductCode: Coder + ElevationRequirement: elevatesSelf +- Architecture: arm64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: coder.exe + InstallerUrl: https://github.com/coder/coder/releases/download/v2.23.4/coder_2.23.4_windows_arm64.zip + InstallerSha256: 3AA0C1FAD06F5954681AB6E0609EA45A542C771646B9482C62EAF56F0767AFA4 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-07-15 diff --git a/manifests/c/Coder/Coder/2.23.4/Coder.Coder.locale.en-US.yaml b/manifests/c/Coder/Coder/2.23.4/Coder.Coder.locale.en-US.yaml new file mode 100644 index 0000000000000..1028a7e2ce0da --- /dev/null +++ b/manifests/c/Coder/Coder/2.23.4/Coder.Coder.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Coder.Coder +PackageVersion: 2.23.4 +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.4 +PurchaseUrl: https://coder.com/pricing +Documentations: +- DocumentUrl: https://coder.com/docs/coder-oss/latest +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Coder/Coder/2.23.4/Coder.Coder.yaml b/manifests/c/Coder/Coder/2.23.4/Coder.Coder.yaml new file mode 100644 index 0000000000000..f795c36d3d578 --- /dev/null +++ b/manifests/c/Coder/Coder/2.23.4/Coder.Coder.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Coder.Coder +PackageVersion: 2.23.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/calibre/calibre/portable/8.3.0.0/calibre.calibre.portable.installer.yaml b/manifests/c/calibre/calibre/portable/8.3.0.0/calibre.calibre.portable.installer.yaml new file mode 100644 index 0000000000000..ca87a995ee90e --- /dev/null +++ b/manifests/c/calibre/calibre/portable/8.3.0.0/calibre.calibre.portable.installer.yaml @@ -0,0 +1,18 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: calibre.calibre.portable +PackageVersion: 8.3.0.0 +InstallerLocale: en-US +InstallerType: exe +Scope: user +ReleaseDate: 2025-04-18 +InstallerSwitches: + Silent: /CalibrePortable/ + SilentWithProgress: /CalibrePortable/ +UpgradeBehavior: uninstallPrevious +Installers: + - Architecture: x64 + InstallerUrl: https://download.calibre-ebook.com/8.3.0/calibre-portable-installer-8.3.0.exe + InstallerSha256: 807AA858FCA65486952ED25E73D3D5A4E6072DDB108F9470162590704408ECB1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/calibre/calibre/portable/8.3.0.0/calibre.calibre.portable.locale.en-US.yaml b/manifests/c/calibre/calibre/portable/8.3.0.0/calibre.calibre.portable.locale.en-US.yaml new file mode 100644 index 0000000000000..0ec0789c5da8b --- /dev/null +++ b/manifests/c/calibre/calibre/portable/8.3.0.0/calibre.calibre.portable.locale.en-US.yaml @@ -0,0 +1,34 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: calibre.calibre.portable +PackageVersion: 8.3.0.0 +PackageLocale: en-US +Publisher: calibre-ebook.com +PublisherUrl: https://github.com/kovidgoyal/calibre +PublisherSupportUrl: https://calibre-ebook.com/help +Author: Kovid Goyal +PackageName: calibre portable +PackageUrl: https://github.com/kovidgoyal/calibre +License: GPL-3.0 +LicenseUrl: https://github.com/kovidgoyal/calibre/raw/master/LICENSE +CopyrightUrl: https://github.com/kovidgoyal/calibre/blob/master/LICENSE +ShortDescription: Portable version of Calibre, a powerful and easy to use e-book manager +Description: |- + Calibre is an e-book manager. + It can view, convert, edit and catalog e-books in all of the major e-book formats. + It can also talk to e-book reader devices. + It can go out to the internet and fetch metadata for your books. + It can download newspapers and convert them into e-books for convenient reading. + It is cross platform, running on Linux, Windows and macOS. +Moniker: calibre-portable +Tags: + - calibre + - ebook + - epub + - kindle + - kobo + - library + - mobi +ReleaseNotesUrl: https://github.com/kovidgoyal/calibre/releases/tag/v8.3.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/calibre/calibre/portable/8.3.0.0/calibre.calibre.portable.yaml b/manifests/c/calibre/calibre/portable/8.3.0.0/calibre.calibre.portable.yaml new file mode 100644 index 0000000000000..26ad7e7c5be22 --- /dev/null +++ b/manifests/c/calibre/calibre/portable/8.3.0.0/calibre.calibre.portable.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: calibre.calibre.portable +PackageVersion: 8.3.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/calibre/calibre/portable/8.4.0.0/calibre.calibre.portable.installer.yaml b/manifests/c/calibre/calibre/portable/8.4.0.0/calibre.calibre.portable.installer.yaml index 06ce749e956b5..d710f9f6e9ce9 100644 --- a/manifests/c/calibre/calibre/portable/8.4.0.0/calibre.calibre.portable.installer.yaml +++ b/manifests/c/calibre/calibre/portable/8.4.0.0/calibre.calibre.portable.installer.yaml @@ -1,19 +1,19 @@ -# Created using wingetcreate 1.9.4.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: calibre.calibre.portable PackageVersion: 8.4.0.0 InstallerLocale: en-US InstallerType: exe Scope: user +ReleaseDate: 2025-05-09 InstallerSwitches: Silent: /CalibrePortable/ SilentWithProgress: /CalibrePortable/ UpgradeBehavior: uninstallPrevious Installers: -- Architecture: x64 - InstallerUrl: https://github.com/kovidgoyal/calibre/releases/download/v8.4.0/calibre-portable-installer-8.4.0.exe - InstallerSha256: D3CD728C6F6E5EB661B26C4BAD7DF1C5F27EE74A9B676B32B97BBEE4BA4EC386 + - Architecture: x64 + InstallerUrl: https://download.calibre-ebook.com/8.4.0/calibre-portable-installer-8.4.0.exe + InstallerSha256: D3CD728C6F6E5EB661B26C4BAD7DF1C5F27EE74A9B676B32B97BBEE4BA4EC386 ManifestType: installer -ManifestVersion: 1.9.0 -ReleaseDate: 2025-05-09 +ManifestVersion: 1.10.0 diff --git a/manifests/c/calibre/calibre/portable/8.4.0.0/calibre.calibre.portable.locale.en-US.yaml b/manifests/c/calibre/calibre/portable/8.4.0.0/calibre.calibre.portable.locale.en-US.yaml index 8bda180cba6dd..7a0cc04cd9ac7 100644 --- a/manifests/c/calibre/calibre/portable/8.4.0.0/calibre.calibre.portable.locale.en-US.yaml +++ b/manifests/c/calibre/calibre/portable/8.4.0.0/calibre.calibre.portable.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 +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: calibre.calibre.portable PackageVersion: 8.4.0.0 @@ -23,13 +23,13 @@ Description: |- It is cross platform, running on Linux, Windows and macOS. Moniker: calibre-portable Tags: -- calibre -- ebook -- epub -- kindle -- kobo -- library -- mobi + - calibre + - ebook + - epub + - kindle + - kobo + - library + - mobi ReleaseNotesUrl: https://github.com/kovidgoyal/calibre/releases/tag/v8.4.0 ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/calibre/calibre/portable/8.4.0.0/calibre.calibre.portable.yaml b/manifests/c/calibre/calibre/portable/8.4.0.0/calibre.calibre.portable.yaml index 2c0f32b722fb0..dc51e8fce14e6 100644 --- a/manifests/c/calibre/calibre/portable/8.4.0.0/calibre.calibre.portable.yaml +++ b/manifests/c/calibre/calibre/portable/8.4.0.0/calibre.calibre.portable.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 +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: calibre.calibre.portable PackageVersion: 8.4.0.0 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/calibre/calibre/portable/8.5.0.0/calibre.calibre.portable.installer.yaml b/manifests/c/calibre/calibre/portable/8.5.0.0/calibre.calibre.portable.installer.yaml index 21bc9ee2890b7..2081d02d22417 100644 --- a/manifests/c/calibre/calibre/portable/8.5.0.0/calibre.calibre.portable.installer.yaml +++ b/manifests/c/calibre/calibre/portable/8.5.0.0/calibre.calibre.portable.installer.yaml @@ -1,19 +1,19 @@ -# Created using wingetcreate 1.9.14.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: calibre.calibre.portable PackageVersion: 8.5.0.0 InstallerLocale: en-US InstallerType: exe Scope: user +ReleaseDate: 2025-06-20 InstallerSwitches: Silent: /CalibrePortable/ SilentWithProgress: /CalibrePortable/ UpgradeBehavior: uninstallPrevious Installers: -- Architecture: x64 - InstallerUrl: https://github.com/kovidgoyal/calibre/releases/download/v8.5.0/calibre-portable-installer-8.5.0.exe - InstallerSha256: 352B4A1C0BFEDDDEFCFF1FDFFD7ECF93995D9D2D5FA8FBCE0BD84C5639B5C342 + - Architecture: x64 + InstallerUrl: https://download.calibre-ebook.com/8.5.0/calibre-portable-installer-8.5.0.exe + InstallerSha256: 352B4A1C0BFEDDDEFCFF1FDFFD7ECF93995D9D2D5FA8FBCE0BD84C5639B5C342 ManifestType: installer -ManifestVersion: 1.9.0 -ReleaseDate: 2025-06-20 +ManifestVersion: 1.10.0 diff --git a/manifests/c/calibre/calibre/portable/8.5.0.0/calibre.calibre.portable.locale.en-US.yaml b/manifests/c/calibre/calibre/portable/8.5.0.0/calibre.calibre.portable.locale.en-US.yaml index 1f07d93dcdbf8..256e2ec22087b 100644 --- a/manifests/c/calibre/calibre/portable/8.5.0.0/calibre.calibre.portable.locale.en-US.yaml +++ b/manifests/c/calibre/calibre/portable/8.5.0.0/calibre.calibre.portable.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 +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: calibre.calibre.portable PackageVersion: 8.5.0.0 @@ -23,13 +23,13 @@ Description: |- It is cross platform, running on Linux, Windows and macOS. Moniker: calibre-portable Tags: -- calibre -- ebook -- epub -- kindle -- kobo -- library -- mobi + - calibre + - ebook + - epub + - kindle + - kobo + - library + - mobi ReleaseNotesUrl: https://github.com/kovidgoyal/calibre/releases/tag/v8.5.0 ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/calibre/calibre/portable/8.5.0.0/calibre.calibre.portable.yaml b/manifests/c/calibre/calibre/portable/8.5.0.0/calibre.calibre.portable.yaml index be9a2961427e9..86fdcbbbf7a80 100644 --- a/manifests/c/calibre/calibre/portable/8.5.0.0/calibre.calibre.portable.yaml +++ b/manifests/c/calibre/calibre/portable/8.5.0.0/calibre.calibre.portable.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 +# Modified with Sundry. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: calibre.calibre.portable PackageVersion: 8.5.0.0 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/c/calibre/calibre/portable/8.6.0.0/calibre.calibre.portable.installer.yaml b/manifests/c/calibre/calibre/portable/8.6.0.0/calibre.calibre.portable.installer.yaml index 9aab39cbbf4e8..75252ef2a48e8 100644 --- a/manifests/c/calibre/calibre/portable/8.6.0.0/calibre.calibre.portable.installer.yaml +++ b/manifests/c/calibre/calibre/portable/8.6.0.0/calibre.calibre.portable.installer.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.10.2.0 +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: calibre.calibre.portable @@ -6,14 +6,14 @@ PackageVersion: 8.6.0.0 InstallerLocale: en-US InstallerType: exe Scope: user +ReleaseDate: 2025-07-11 InstallerSwitches: Silent: /CalibrePortable/ SilentWithProgress: /CalibrePortable/ UpgradeBehavior: uninstallPrevious Installers: -- Architecture: x64 - InstallerUrl: https://github.com/kovidgoyal/calibre/releases/download/v8.6.0/calibre-portable-installer-8.6.0.exe - InstallerSha256: 1C01F62A5B709746F2EAB489D1991E0B76DFA581B157ED162C581398DB197060 + - Architecture: x64 + InstallerUrl: https://download.calibre-ebook.com/8.6.0/calibre-portable-installer-8.6.0.exe + InstallerSha256: 1C01F62A5B709746F2EAB489D1991E0B76DFA581B157ED162C581398DB197060 ManifestType: installer ManifestVersion: 1.10.0 -ReleaseDate: 2025-07-11 diff --git a/manifests/c/calibre/calibre/portable/8.6.0.0/calibre.calibre.portable.locale.en-US.yaml b/manifests/c/calibre/calibre/portable/8.6.0.0/calibre.calibre.portable.locale.en-US.yaml index 12bcd635ec13c..06724fbc99a01 100644 --- a/manifests/c/calibre/calibre/portable/8.6.0.0/calibre.calibre.portable.locale.en-US.yaml +++ b/manifests/c/calibre/calibre/portable/8.6.0.0/calibre.calibre.portable.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.10.2.0 +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: calibre.calibre.portable @@ -23,13 +23,13 @@ Description: |- It is cross platform, running on Linux, Windows and macOS. Moniker: calibre-portable Tags: -- calibre -- ebook -- epub -- kindle -- kobo -- library -- mobi + - calibre + - ebook + - epub + - kindle + - kobo + - library + - mobi ReleaseNotesUrl: https://github.com/kovidgoyal/calibre/releases/tag/v8.6.0 ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/c/calibre/calibre/portable/8.6.0.0/calibre.calibre.portable.yaml b/manifests/c/calibre/calibre/portable/8.6.0.0/calibre.calibre.portable.yaml index b8aa99c963593..321b04f8522f5 100644 --- a/manifests/c/calibre/calibre/portable/8.6.0.0/calibre.calibre.portable.yaml +++ b/manifests/c/calibre/calibre/portable/8.6.0.0/calibre.calibre.portable.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.10.2.0 +# Modified with Sundry. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: calibre.calibre.portable diff --git a/manifests/c/chrox/Readest/0.9.64/chrox.Readest.installer.yaml b/manifests/c/chrox/Readest/0.9.64/chrox.Readest.installer.yaml new file mode 100644 index 0000000000000..7f99766ec1b0b --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.64/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.64 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +Protocols: +- readest +FileExtensions: +- azw +- azw3 +- cbz +- epub +- fb2 +- mobi +- pdf +ProductCode: Readest +ReleaseDate: 2025-07-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/readest/readest/releases/download/v0.9.64/Readest_0.9.64_x64-setup.exe + InstallerSha256: 64A9026A733D810A79507EF6ADB775997F500AEBCBD4FE6FBA2118748741BE3D +- Architecture: arm64 + InstallerUrl: https://github.com/readest/readest/releases/download/v0.9.64/Readest_0.9.64_arm64-setup.exe + InstallerSha256: B18D5EEABB7D68FD6C8FFAFA7ECFF5CE26E041948A8F5C36A90D7B89834EC521 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/chrox/Readest/0.9.64/chrox.Readest.locale.en-US.yaml b/manifests/c/chrox/Readest/0.9.64/chrox.Readest.locale.en-US.yaml new file mode 100644 index 0000000000000..dcf25b92544a5 --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.64/chrox.Readest.locale.en-US.yaml @@ -0,0 +1,51 @@ +# 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.64 +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 + - updater: show update notes for new releases by @chrox in https://github.com/readest/readest/pull/1552 + - chore: add fastlane action to release to Google Play by @chrox in https://github.com/readest/readest/pull/1554 + - layout: add window border on Windows 10, closes #1551 by @chrox in https://github.com/readest/readest/pull/1556 + - fix: invalid href handling in EPUB by @chrox in https://github.com/readest/readest/pull/1557 + - layout: fix dimension of inline images, closes #1555 by @chrox in https://github.com/readest/readest/pull/1560 + - css: lighten the highlight color in dark mode, closes #1489 by @chrox in https://github.com/readest/readest/pull/1561 + - search: more responsive full-text search, closes #1558 by @chrox in https://github.com/readest/readest/pull/1562 + - fix: pull down to refresh is now more smoother and responsive by @chrox in https://github.com/readest/readest/pull/1564 + - fix: bookmark ribbon is now placed correctly when sidebar is pinned by @chrox in https://github.com/readest/readest/pull/1565 + - css: remove unintended indent for images, closes #1567 by @chrox in https://github.com/readest/readest/pull/1568 + - doc: add appdata metainfo for Flathub by @chrox in https://github.com/readest/readest/pull/1569 + - chore: flatpak with custom oauth by @chrox in https://github.com/readest/readest/pull/1574 + - Fixed bad Ukrainian translation. by @StepanSad in https://github.com/readest/readest/pull/1576 + - Update translation.json by @StepanSad in https://github.com/readest/readest/pull/1581 + - feat: support to edit book metadata, closes #753 by @chrox in https://github.com/readest/readest/pull/1583 + - fix: save custom cover images in apps by @chrox in https://github.com/readest/readest/pull/1588 + - release: version 0.9.64 by @chrox in https://github.com/readest/readest/pull/1589 + New Contributors + - @StepanSad made their first contribution in https://github.com/readest/readest/pull/1576 + Full Changelog: https://github.com/readest/readest/compare/v0.9.63...v0.9.64 +ReleaseNotesUrl: https://github.com/readest/readest/releases/tag/v0.9.64 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/chrox/Readest/0.9.64/chrox.Readest.locale.zh-CN.yaml b/manifests/c/chrox/Readest/0.9.64/chrox.Readest.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cc266567806aa --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.64/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.64 +PackageLocale: zh-CN +ShortDescription: 一款注重沉浸式深度阅读体验的开源电子书阅读器。 +Description: Readest 是一款多功能的现代电子书阅读器,专为书迷设计,提供无缝跨平台访问、强大的工具和直观的界面,提升您的阅读体验。 +Tags: +- epub +- mobi +- pdf +- 电子书 +- 阅读器 +ReleaseNotesUrl: https://github.com/readest/readest/releases/tag/v0.9.64 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/chrox/Readest/0.9.64/chrox.Readest.yaml b/manifests/c/chrox/Readest/0.9.64/chrox.Readest.yaml new file mode 100644 index 0000000000000..d33568ea7b394 --- /dev/null +++ b/manifests/c/chrox/Readest/0.9.64/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.64 +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 4e6996e8b602f..52bffd5471d36 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,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 using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: DJSweder.MetaRekordFixer PackageVersion: 1.0.0 @@ -7,7 +7,7 @@ InstallerType: inno Installers: - Architecture: x64 InstallerUrl: https://github.com/DJSweder/MetaRekordFixer/releases/download/v1.0.0/metarekordfixer-1.0.0-win64-setup.exe - InstallerSha256: 188683C675133D2609E56C148BA47D798C7CED2E36431000CA1C0D815AEBCCA4 + InstallerSha256: 6DDE6FD27F63C50080E4AB49D9D7A26DF62B3E328A880224A2887FE083C8ADDF ManifestType: installer -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.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 9bbad4f0f4b4f..aa30d713fe305 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 @@ -# Created using wingetcreate 1.9.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: DJSweder.MetaRekordFixer PackageVersion: 1.0.0 @@ -33,4 +33,4 @@ Documentations: - DocumentLabel: Wiki DocumentUrl: https://github.com/DJSweder/MetaRekordFixer/wiki ManifestType: defaultLocale -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.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 b537d9fbdf944..1b2e756befa83 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 @@ -# Created using wingetcreate 1.9.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: DJSweder.MetaRekordFixer PackageVersion: 1.0.0 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.9.0 +ManifestVersion: 1.10.0 diff --git a/manifests/d/Datadog/dd-trace-dotnet/3.21.0/Datadog.dd-trace-dotnet.installer.yaml b/manifests/d/Datadog/dd-trace-dotnet/3.21.0/Datadog.dd-trace-dotnet.installer.yaml new file mode 100644 index 0000000000000..9bbb1ffb4e66a --- /dev/null +++ b/manifests/d/Datadog/dd-trace-dotnet/3.21.0/Datadog.dd-trace-dotnet.installer.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Datadog.dd-trace-dotnet +PackageVersion: 3.21.0 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{6599BCAE-9DD7-445F-B584-2A71E5E58651}' +AppsAndFeaturesEntries: +- DisplayName: Datadog .NET Tracer 64-bit + ProductCode: '{6599BCAE-9DD7-445F-B584-2A71E5E58651}' + 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.21.0/datadog-dotnet-apm-3.21.0-x64.msi + InstallerSha256: 7D6058401E327FFD1FFFE0D06301AA0CE1784CD05B26777DBA3E7C69A1A77E17 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-07-14 diff --git a/manifests/d/Datadog/dd-trace-dotnet/3.21.0/Datadog.dd-trace-dotnet.locale.en-US.yaml b/manifests/d/Datadog/dd-trace-dotnet/3.21.0/Datadog.dd-trace-dotnet.locale.en-US.yaml new file mode 100644 index 0000000000000..375e0b05adc32 --- /dev/null +++ b/manifests/d/Datadog/dd-trace-dotnet/3.21.0/Datadog.dd-trace-dotnet.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Datadog.dd-trace-dotnet +PackageVersion: 3.21.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.21.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/DataDog/dd-trace-dotnet/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Datadog/dd-trace-dotnet/3.21.0/Datadog.dd-trace-dotnet.yaml b/manifests/d/Datadog/dd-trace-dotnet/3.21.0/Datadog.dd-trace-dotnet.yaml new file mode 100644 index 0000000000000..80f22b31bfc00 --- /dev/null +++ b/manifests/d/Datadog/dd-trace-dotnet/3.21.0/Datadog.dd-trace-dotnet.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Datadog.dd-trace-dotnet +PackageVersion: 3.21.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Derailed/k9s/0.50.8/Derailed.k9s.installer.yaml b/manifests/d/Derailed/k9s/0.50.8/Derailed.k9s.installer.yaml new file mode 100644 index 0000000000000..e2cafba4d4c69 --- /dev/null +++ b/manifests/d/Derailed/k9s/0.50.8/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.8 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: k9s.exe +ReleaseDate: 2025-07-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/derailed/k9s/releases/download/v0.50.8/k9s_Windows_amd64.zip + InstallerSha256: 891A5050FBEA7AAD526E77C6973D757CB2D215317420FC072E8E503584E42CD7 +- Architecture: arm64 + InstallerUrl: https://github.com/derailed/k9s/releases/download/v0.50.8/k9s_Windows_arm64.zip + InstallerSha256: 061C918EF098E121D74F98DD289A0C020B227A361E7CD28B48EB9BE6003E32EA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Derailed/k9s/0.50.8/Derailed.k9s.locale.en-US.yaml b/manifests/d/Derailed/k9s/0.50.8/Derailed.k9s.locale.en-US.yaml new file mode 100644 index 0000000000000..809492733477e --- /dev/null +++ b/manifests/d/Derailed/k9s/0.50.8/Derailed.k9s.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: Derailed.k9s +PackageVersion: 0.50.8 +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.8 + 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 + - #3453 [Feature Request] Add GPU column to pod/container view + - #3451 Weirdness when filtering namespaces + - #3439 Allow KnownGPUVendors customization + 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!! + - #3437 feat: Add GPU usage to pod view + - #3421 Fix #3421 - can't switch namespaces in helm view + - #3356 allow skin to be selected via K9S_SKIN env var + © 2025 Imhotep Software LLC. All materials licensed under Apache v2.0# +ReleaseNotesUrl: https://github.com/derailed/k9s/releases/tag/v0.50.8 +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.8/Derailed.k9s.yaml b/manifests/d/Derailed/k9s/0.50.8/Derailed.k9s.yaml new file mode 100644 index 0000000000000..580207820d0fe --- /dev/null +++ b/manifests/d/Derailed/k9s/0.50.8/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.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/HubImporter/2025.2.21.0/Devolutions.HubImporter.installer.yaml b/manifests/d/Devolutions/HubImporter/2025.2.21.0/Devolutions.HubImporter.installer.yaml new file mode 100644 index 0000000000000..9e5b01608334d --- /dev/null +++ b/manifests/d/Devolutions/HubImporter/2025.2.21.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.21.0 +InstallerType: msi +Scope: machine +InstallerSwitches: + InstallLocation: APPDIR="" +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.9 +ProductCode: '{4A989445-257A-4119-ACA8-602E1F944187}' +ReleaseDate: 2025-07-15 +AppsAndFeaturesEntries: +- UpgradeCode: '{238A506E-1BC1-4749-8656-48C76582E8C7}' +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.devolutions.net/download/Setup.Hub.Importer.2025.2.21.0.msi + InstallerSha256: 1C88C82517B4D20F3DBC94B8E062FD0095BFDCAA0D78B49A331F40F36A06B100 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/HubImporter/2025.2.21.0/Devolutions.HubImporter.locale.en-US.yaml b/manifests/d/Devolutions/HubImporter/2025.2.21.0/Devolutions.HubImporter.locale.en-US.yaml new file mode 100644 index 0000000000000..8f6e273045c33 --- /dev/null +++ b/manifests/d/Devolutions/HubImporter/2025.2.21.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.21.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.21.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/HubImporter/2025.2.21.0/Devolutions.HubImporter.locale.zh-CN.yaml b/manifests/d/Devolutions/HubImporter/2025.2.21.0/Devolutions.HubImporter.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6087b2aaf5cfe --- /dev/null +++ b/manifests/d/Devolutions/HubImporter/2025.2.21.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.21.0 +PackageLocale: zh-CN +ShortDescription: 专为轻松快速将凭证从多个第三方应用或服务导入至 Devolutions Hub 而设计的核心工具。 +ReleaseNotesUrl: https://devolutions.net/password-hub-importer/release-notes/#v2025.2.21.0 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Devolutions/HubImporter/2025.2.21.0/Devolutions.HubImporter.yaml b/manifests/d/Devolutions/HubImporter/2025.2.21.0/Devolutions.HubImporter.yaml new file mode 100644 index 0000000000000..e2977f8e87690 --- /dev/null +++ b/manifests/d/Devolutions/HubImporter/2025.2.21.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.21.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Duplicati/Duplicati/Canary/2.1.0.125/Duplicati.Duplicati.Canary.installer.yaml b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.125/Duplicati.Duplicati.Canary.installer.yaml new file mode 100644 index 0000000000000..62d44ac1f45a9 --- /dev/null +++ b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.125/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.125 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Protocols: +- http +- https +ReleaseDate: 2025-07-15 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/duplicati/duplicati/releases/download/v2.1.0.125_canary_2025-07-15/duplicati-2.1.0.125_canary_2025-07-15-win-x86-gui.msi + InstallerSha256: 6A330C1C1A4ACF42D96CF1853FD9841CB65ABE86C3E07ACD6B4D60874C06E790 + ProductCode: '{ED4BBC6D-A56C-4432-890B-C5F1E7B492A1}' + AppsAndFeaturesEntries: + - DisplayName: Duplicati + ProductCode: '{ED4BBC6D-A56C-4432-890B-C5F1E7B492A1}' + 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.125_canary_2025-07-15/duplicati-2.1.0.125_canary_2025-07-15-win-x64-gui.msi + InstallerSha256: 37998B103ADA70B7FFBFB30221A6A52C5A7F5F8C04368DAFFFD88F1CDECEE466 + ProductCode: '{B55BF811-7F2E-4F32-8C2D-906B76F1BCF4}' + AppsAndFeaturesEntries: + - DisplayName: Duplicati + ProductCode: '{B55BF811-7F2E-4F32-8C2D-906B76F1BCF4}' + UpgradeCode: '{1C94BC5A-2BF2-4273-9D8F-2CB30E780D16}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Duplicati 2' +- Architecture: arm64 + InstallerUrl: https://github.com/duplicati/duplicati/releases/download/v2.1.0.125_canary_2025-07-15/duplicati-2.1.0.125_canary_2025-07-15-win-arm64-gui.msi + InstallerSha256: 1D80D620FEDC8B4F019607FA328DBCB75888CAAD523A2A71574C138A7DCDEF5F + ProductCode: '{B0BF4557-9FBD-4FF9-9E38-089133CBF288}' + AppsAndFeaturesEntries: + - DisplayName: Duplicati + ProductCode: '{B0BF4557-9FBD-4FF9-9E38-089133CBF288}' + 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.125/Duplicati.Duplicati.Canary.locale.en-US.yaml b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.125/Duplicati.Duplicati.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..24d65daf06cd6 --- /dev/null +++ b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.125/Duplicati.Duplicati.Canary.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: Duplicati.Duplicati.Canary +PackageVersion: 2.1.0.125 +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. + Changes in this versions + This is almost identical to 2.1.0.124, but adds some destination URL parsing fixes. + Detailed list of changes: + - Fixed wrong SQLite environment variable name + - Don't show stack if stopping a backup due to missing sources + - Update logic for probing for an access method in ServerUtil + - Fixed ngax not supporting --use-ssl + - Use template icons on macOS + - Fixed an error when loading log data + - Avoid floods of notifications + - Corrected encode/decode of URLs + - Fixed issue with recreated index files not reporting deleted blocks + New in 2.1.0.125 + - Fixed parsing of correctly encoded file-based URLs on Windows + ngclient changes + - Fixed SMB editor handling paths incorrectly + - Fixed source editor not inserting empty paths + - Fixed an issue with selecting paths with a space + - Fixed some dialogs not updating UI after clicking cancelable + - Removed an extra leading slash for Windows destination paths + - Recalculate file existing on database move + - Show correct date and format in logs + New in 2.1.0.125 + - Fixed URL for bugreport in ngclient + - Fixed incorrect encoding/decoding of Windows file-paths for destination + - Fixed logic for removing source paths to no create empty entries + - Added a partial marker for fileset version that are partial +ReleaseNotesUrl: https://github.com/duplicati/duplicati/releases/tag/v2.1.0.125_canary_2025-07-15 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Duplicati/Duplicati/Canary/2.1.0.125/Duplicati.Duplicati.Canary.yaml b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.125/Duplicati.Duplicati.Canary.yaml new file mode 100644 index 0000000000000..5aa32a08a3bf3 --- /dev/null +++ b/manifests/d/Duplicati/Duplicati/Canary/2.1.0.125/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.125 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/digitalghost-dev/poke-cli/1.4.0/digitalghost-dev.poke-cli.installer.yaml b/manifests/d/digitalghost-dev/poke-cli/1.4.0/digitalghost-dev.poke-cli.installer.yaml new file mode 100644 index 0000000000000..c4b1079a051d7 --- /dev/null +++ b/manifests/d/digitalghost-dev/poke-cli/1.4.0/digitalghost-dev.poke-cli.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: digitalghost-dev.poke-cli +PackageVersion: 1.4.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: poke-cli.exe + PortableCommandAlias: poke-cli +Installers: +- Architecture: arm64 + InstallerUrl: https://github.com/digitalghost-dev/poke-cli/releases/download/v1.4.0/poke-cli_Windows_arm64.zip + InstallerSha256: 066F04D4424F87E8D47DE4F6B57ED2E41C5B9DBCF447E6F1A9DDF414C012C1BA +- Architecture: x86 + InstallerUrl: https://github.com/digitalghost-dev/poke-cli/releases/download/v1.4.0/poke-cli_Windows_i386.zip + InstallerSha256: 7F230388A18C6F7AF1C5837E95FCEDEBC89DA034B6EC791CC9DBC0511FB40243 +- Architecture: x64 + InstallerUrl: https://github.com/digitalghost-dev/poke-cli/releases/download/v1.4.0/poke-cli_Windows_x86_64.zip + InstallerSha256: F6F255901A5FE78DD2CECF3FFEFA887397E88F289F656CD4DF1F7C9F6D6FBCB8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/digitalghost-dev/poke-cli/1.4.0/digitalghost-dev.poke-cli.locale.en-US.yaml b/manifests/d/digitalghost-dev/poke-cli/1.4.0/digitalghost-dev.poke-cli.locale.en-US.yaml new file mode 100644 index 0000000000000..037f510be0d27 --- /dev/null +++ b/manifests/d/digitalghost-dev/poke-cli/1.4.0/digitalghost-dev.poke-cli.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: digitalghost-dev.poke-cli +PackageVersion: 1.4.0 +PackageLocale: en-US +Publisher: digitalghost-dev +PackageName: poke-cli +License: MIT License +ShortDescription: A hybrid CLI/TUI tool written in Go for viewing Pokemon data from the terminal! +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/digitalghost-dev/poke-cli/1.4.0/digitalghost-dev.poke-cli.yaml b/manifests/d/digitalghost-dev/poke-cli/1.4.0/digitalghost-dev.poke-cli.yaml new file mode 100644 index 0000000000000..221bc7b005c5c --- /dev/null +++ b/manifests/d/digitalghost-dev/poke-cli/1.4.0/digitalghost-dev.poke-cli.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: digitalghost-dev.poke-cli +PackageVersion: 1.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/Elcomsoft/IntuitPassword/3.15.651.8150/Elcomsoft.IntuitPassword.installer.yaml b/manifests/e/Elcomsoft/IntuitPassword/3.15.651.8150/Elcomsoft.IntuitPassword.installer.yaml deleted file mode 100644 index 56ea4a5cad4b8..0000000000000 --- a/manifests/e/Elcomsoft/IntuitPassword/3.15.651.8150/Elcomsoft.IntuitPassword.installer.yaml +++ /dev/null @@ -1,14 +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: Elcomsoft.IntuitPassword -PackageVersion: 3.15.651.8150 -Installers: -- InstallerUrl: https://www.elcomsoft.com/download/ainpr_setup_en.msi - InstallerLocale: en-US - Architecture: x86 - InstallerType: wix - InstallerSha256: F26619EB06D2EEDB018C0DF174396DA17DD775B03A5B4FBF4EE298B0C22BC0E2 - ProductCode: '{FB070DB7-C2A0-423D-942C-5FFF150CFC35}' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/e/Elcomsoft/IntuitPassword/3.15.651.8150/Elcomsoft.IntuitPassword.locale.en-US.yaml b/manifests/e/Elcomsoft/IntuitPassword/3.15.651.8150/Elcomsoft.IntuitPassword.locale.en-US.yaml deleted file mode 100644 index e14cb48091b4b..0000000000000 --- a/manifests/e/Elcomsoft/IntuitPassword/3.15.651.8150/Elcomsoft.IntuitPassword.locale.en-US.yaml +++ /dev/null @@ -1,12 +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: Elcomsoft.IntuitPassword -PackageVersion: 3.15.651.8150 -PackageLocale: en-US -Publisher: Elcomsoft Co. Ltd. -PackageName: Advanced Intuit Password Recovery -License: Trial -ShortDescription: Unlock password-protected Intuit Quicken and QuickBooks documents. -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/e/Elcomsoft/IntuitPassword/3.15.651.8150/Elcomsoft.IntuitPassword.yaml b/manifests/e/Elcomsoft/IntuitPassword/3.15.651.8150/Elcomsoft.IntuitPassword.yaml deleted file mode 100644 index 1c86bd39a8e04..0000000000000 --- a/manifests/e/Elcomsoft/IntuitPassword/3.15.651.8150/Elcomsoft.IntuitPassword.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: Elcomsoft.IntuitPassword -PackageVersion: 3.15.651.8150 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/e/Element/Element/1.11.106/Element.Element.installer.yaml b/manifests/e/Element/Element/1.11.106/Element.Element.installer.yaml new file mode 100644 index 0000000000000..ad3df53081407 --- /dev/null +++ b/manifests/e/Element/Element/1.11.106/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.106 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- element +ProductCode: element-desktop +ReleaseDate: 2025-07-15 +Installers: +- Architecture: x64 + InstallerUrl: https://packages.element.io/desktop/install/win32/x64/Element%20Setup%201.11.106.exe + InstallerSha256: 08091816A9A37EFB30DC5C11CD537369AFF2746C9F9E93E35B856C78B0A55F09 +- Architecture: arm64 + InstallerUrl: https://packages.element.io/desktop/install/win32/arm64/Element%20Setup%201.11.106.exe + InstallerSha256: 67ADDD67346376DE8A683A12E7BA3994D2ADB33E4BA09D66B30EE7D939F7CEC9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/Element/Element/1.11.106/Element.Element.locale.en-US.yaml b/manifests/e/Element/Element/1.11.106/Element.Element.locale.en-US.yaml new file mode 100644 index 0000000000000..68a98adab1dd1 --- /dev/null +++ b/manifests/e/Element/Element/1.11.106/Element.Element.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: Element.Element +PackageVersion: 1.11.106 +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 + - [Backport staging] Fix e2e icon colour (#30304). Contributed by @RiotRobot. + - Add support for module message hint allowDownloadingMedia (#30252). Contributed by @Half-Shot. + - Update the mobile_guide page to the new design and link out to Element X by default. (#30172). Contributed by @pixlwave. + - Filter settings exported when rageshaking (#30236). Contributed by @Half-Shot. + - Allow Element Call to learn the room name (#30213). Contributed by @robintown. + 🐛 Bug Fixes + - [Backport staging] Fix missing image download button (#30322). Contributed by @RiotRobot. + - Fix transparent verification checkmark in dark mode (#30235). Contributed by @Banbuii. + - Fix logic in DeviceListener (#30230). Contributed by @uhoreg. + - Disable file drag-and-drop if insufficient permissions (#30186). Contributed by @t3chguy. +ReleaseNotesUrl: https://github.com/element-hq/element-desktop/releases/tag/v1.11.106 +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.106/Element.Element.locale.zh-CN.yaml b/manifests/e/Element/Element/1.11.106/Element.Element.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a42d0781e1c6d --- /dev/null +++ b/manifests/e/Element/Element/1.11.106/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.106 +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.106 +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.106/Element.Element.yaml b/manifests/e/Element/Element/1.11.106/Element.Element.yaml new file mode 100644 index 0000000000000..871fbdc94838e --- /dev/null +++ b/manifests/e/Element/Element/1.11.106/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.106 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/ForgQi/biliup-rs/0.2.4/ForgQi.biliup-rs.installer.yaml b/manifests/f/ForgQi/biliup-rs/0.2.4/ForgQi.biliup-rs.installer.yaml new file mode 100644 index 0000000000000..0e317367100fc --- /dev/null +++ b/manifests/f/ForgQi/biliup-rs/0.2.4/ForgQi.biliup-rs.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: ForgQi.biliup-rs +PackageVersion: 0.2.4 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: biliupR-v0.2.4-x86_64-windows\biliup.exe + PortableCommandAlias: biliup +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-07-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/biliup/biliup-rs/releases/download/v0.2.4/biliupR-v0.2.4-x86_64-windows.zip + InstallerSha256: BDD3D7A56F00AEA580CD3E609FD4B1748085E68EA2F1527D4AA8FF06B9796365 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/ForgQi/biliup-rs/0.2.4/ForgQi.biliup-rs.locale.en-US.yaml b/manifests/f/ForgQi/biliup-rs/0.2.4/ForgQi.biliup-rs.locale.en-US.yaml new file mode 100644 index 0000000000000..6959add26fa3f --- /dev/null +++ b/manifests/f/ForgQi/biliup-rs/0.2.4/ForgQi.biliup-rs.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: ForgQi.biliup-rs +PackageVersion: 0.2.4 +PackageLocale: en-US +Publisher: ForgQi +PublisherUrl: https://github.com/ForgQi +PublisherSupportUrl: https://github.com/ForgQi/biliup-rs/issues +Author: ForgQi +PackageName: biliup-rs +PackageUrl: https://biliup.github.io/biliup-rs +License: MIT +LicenseUrl: https://github.com/ForgQi/biliup-rs/blob/master/LICENSE +Copyright: Copyright (c) 2024 ForgQi +ShortDescription: A command-line tool for uploading videos to Bilibili +Description: biliup-rs is a command-line tool for uploading videos to Bilibili with multiple pages. It supports selecting upload servers and setting max connections number to ensure that uploading to foreign servers can run at full speed. It supports SMS login, password login, QR code login and browser login, and stores the cookie and token returned after login in cookie.json for use in other projects. +Tags: +- bilibili +ReleaseNotesUrl: https://github.com/biliup/biliup-rs/releases/tag/v0.2.4 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/ForgQi/biliup-rs/0.2.4/ForgQi.biliup-rs.locale.zh-CN.yaml b/manifests/f/ForgQi/biliup-rs/0.2.4/ForgQi.biliup-rs.locale.zh-CN.yaml new file mode 100644 index 0000000000000..da773c9e0b7e6 --- /dev/null +++ b/manifests/f/ForgQi/biliup-rs/0.2.4/ForgQi.biliup-rs.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: ForgQi.biliup-rs +PackageVersion: 0.2.4 +PackageLocale: zh-CN +Publisher: ForgQi +PublisherUrl: https://github.com/ForgQi +PublisherSupportUrl: https://github.com/ForgQi/biliup-rs/issues +Author: ForgQi +PackageName: biliup-rs +PackageUrl: https://biliup.github.io/biliup-rs +License: MIT +LicenseUrl: https://github.com/ForgQi/biliup-rs/blob/master/LICENSE +Copyright: Copyright (c) 2024 ForgQi +ShortDescription: B 站命令行投稿工具 +Description: biliup-rs 是一个 B 站命令行投稿工具,支持多 P 投稿,支持上传线路选择、并发数设置,保证国外服务器上传速度可跑满带宽。支持短信登录、账号密码登录、扫码登录、浏览器登录,并将登录后返回的 cookie 和 token 保存在 cookie.json 中,可用于其它项目。 +Tags: +- bilibili +- b站 +- 哔哩哔哩 +ReleaseNotesUrl: https://github.com/biliup/biliup-rs/releases/tag/v0.2.4 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/f/ForgQi/biliup-rs/0.2.4/ForgQi.biliup-rs.yaml b/manifests/f/ForgQi/biliup-rs/0.2.4/ForgQi.biliup-rs.yaml new file mode 100644 index 0000000000000..18104b167c133 --- /dev/null +++ b/manifests/f/ForgQi/biliup-rs/0.2.4/ForgQi.biliup-rs.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: ForgQi.biliup-rs +PackageVersion: 0.2.4 +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 deleted file mode 100644 index 1297b75796aa9..0000000000000 --- a/manifests/g/GaetanSencie/AnnualAccounting/1.9.0.0/GaetanSencie.AnnualAccounting.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# 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 deleted file mode 100644 index 3a5df0741fcf9..0000000000000 --- a/manifests/g/GaetanSencie/AnnualAccounting/1.9.0.0/GaetanSencie.AnnualAccounting.locale.en-US.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# 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/ContabilidadAnual/1.8.0.0/GaetanSencie.ContabilidadAnual.installer.yaml b/manifests/g/GaetanSencie/ContabilidadAnual/1.8.0.0/GaetanSencie.ContabilidadAnual.installer.yaml deleted file mode 100644 index c6c59b8fa75cc..0000000000000 --- a/manifests/g/GaetanSencie/ContabilidadAnual/1.8.0.0/GaetanSencie.ContabilidadAnual.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.ContabilidadAnual -PackageVersion: 1.8.0.0 -InstallerType: inno -InstallModes: -- interactive -- silentWithProgress -FileExtensions: -- exe -- md -- dat -Scope: user -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/STENS66/Contabilidad-anual/releases/download/V1.8.0.0/installer_contabilidad_anual_V1.8.exe - InstallerSha256: 41F2173C9E6EEF6D9C6D86687AB3D8C6A2AF88CE24842AC0423258A7EDAFBA13 -ManifestType: installer -ManifestVersion: 1.9.0 -ReleaseDate: 2025-02-04 -Agreements: -- AgreementLabel: License Agreement - AgreementUrl: https://github.com/STENS66/Contabilidad-anual/releases/download/V1.8.0.0/License.txt diff --git a/manifests/g/GaetanSencie/ContabilidadAnual/1.8.0.0/GaetanSencie.ContabilidadAnual.locale.es-ES.yaml b/manifests/g/GaetanSencie/ContabilidadAnual/1.8.0.0/GaetanSencie.ContabilidadAnual.locale.es-ES.yaml deleted file mode 100644 index d948754f8ab21..0000000000000 --- a/manifests/g/GaetanSencie/ContabilidadAnual/1.8.0.0/GaetanSencie.ContabilidadAnual.locale.es-ES.yaml +++ /dev/null @@ -1,20 +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.ContabilidadAnual -PackageVersion: 1.8.0.0 -PackageLocale: es-ES -Publisher: Gaëtan Sencie -PublisherUrl: https://github.com/STENS66 -PublisherSupportUrl: https://github.com/STENS66/Contabilidad-anual/issues -PackageName: Contabilidad anual -PackageUrl: https://github.com/STENS66/Contabilidad-anual -License: Proprietary -Copyright: © Gaëtan Sencie 2023 Todos los derechos reservados -ShortDescription: Contabilidad anual Setup es un software de contabilidad sencillo y ligero codificado en Python. -ReleaseNotesUrl: https://github.com/STENS66/Contabilidad-anual/releases/tag/V1.8.0.0 -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/STENS66/Contabilidad-anual/wiki -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/g/GaetanSencie/ContabilidadAnual/1.8.0.0/GaetanSencie.ContabilidadAnual.yaml b/manifests/g/GaetanSencie/ContabilidadAnual/1.8.0.0/GaetanSencie.ContabilidadAnual.yaml deleted file mode 100644 index 6fcb3b6feb021..0000000000000 --- a/manifests/g/GaetanSencie/ContabilidadAnual/1.8.0.0/GaetanSencie.ContabilidadAnual.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.ContabilidadAnual -PackageVersion: 1.8.0.0 -DefaultLocale: es-ES -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/g/Google/Chrome/138.0.7204.158/Google.Chrome.installer.yaml b/manifests/g/Google/Chrome/138.0.7204.158/Google.Chrome.installer.yaml new file mode 100644 index 0000000000000..2009edd76d15c --- /dev/null +++ b/manifests/g/Google/Chrome/138.0.7204.158/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.158 +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: 184D2D56A25EA4D65A90EA3A81FD8D75644DD4B5D6B843DB272066689ED63AA1 + ProductCode: '{272F5166-0E88-34E2-BA1B-AAF4C2DAF7A9}' + AppsAndFeaturesEntries: + - ProductCode: '{272F5166-0E88-34E2-BA1B-AAF4C2DAF7A9}' + UpgradeCode: '{C1DFDF69-5945-32F2-A35E-EE94C99C7CF4}' +- Architecture: arm64 + InstallerUrl: https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise_arm64.msi + InstallerSha256: CBE28C7C08816AD5FEEEE505ED1E45B84E4DD4A9BA107CE9561D4B0AE874FC09 + ProductCode: '{AC7EB78F-8C23-3612-B0A3-3BE65FA35E8E}' + AppsAndFeaturesEntries: + - ProductCode: '{AC7EB78F-8C23-3612-B0A3-3BE65FA35E8E}' + UpgradeCode: '{C1DFDF69-5945-32F2-A35E-EE94C99C7CF4}' +- Architecture: x86 + InstallerUrl: https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise.msi + InstallerSha256: 6F087F52A51FFACA25928E240B0D8EFD94B65FB1FD325E4238A159B4E2AFF816 + ProductCode: '{DF9AC4FF-A775-3CFA-8031-16381BC3A045}' + AppsAndFeaturesEntries: + - ProductCode: '{DF9AC4FF-A775-3CFA-8031-16381BC3A045}' + UpgradeCode: '{C1DFDF69-5945-32F2-A35E-EE94C99C7CF4}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/138.0.7204.158/Google.Chrome.locale.en-US.yaml b/manifests/g/Google/Chrome/138.0.7204.158/Google.Chrome.locale.en-US.yaml new file mode 100644 index 0000000000000..af818b6f55795 --- /dev/null +++ b/manifests/g/Google/Chrome/138.0.7204.158/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.158 +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.158/Google.Chrome.locale.nb-NO.yaml b/manifests/g/Google/Chrome/138.0.7204.158/Google.Chrome.locale.nb-NO.yaml new file mode 100644 index 0000000000000..6ed16697f5086 --- /dev/null +++ b/manifests/g/Google/Chrome/138.0.7204.158/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.158 +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.158/Google.Chrome.locale.zh-CN.yaml b/manifests/g/Google/Chrome/138.0.7204.158/Google.Chrome.locale.zh-CN.yaml new file mode 100644 index 0000000000000..450aaca68fccc --- /dev/null +++ b/manifests/g/Google/Chrome/138.0.7204.158/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.158 +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.158/Google.Chrome.yaml b/manifests/g/Google/Chrome/138.0.7204.158/Google.Chrome.yaml new file mode 100644 index 0000000000000..25b6821149000 --- /dev/null +++ b/manifests/g/Google/Chrome/138.0.7204.158/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.158 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7191.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/138.0.7191.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 13eef355fcd01..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7191.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7191.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/adw4oc2q6ue6ecy4txuzkd5xotda_138.0.7191.0/138.0.7191.0_chrome_installer.exe - InstallerSha256: 21AA4CC52ABAAE24E54E01E9EB447F8D768EB7D6BC3D2AF431199E3BE109CB58 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/goo5rwausdw6lfdvgurp6cghbq_138.0.7191.0/138.0.7191.0_chrome_installer.exe - InstallerSha256: 8E93781AD5180AC715CEF4AAC749A49F25FBDF4266744513943877080F71E9EC -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acayz6swm2ehqrsghfqvx7tymwga_138.0.7191.0/138.0.7191.0_chrome_installer.exe - InstallerSha256: D109E6E1657BC79B3122FDE6D3CA455D26824BA0B323AE8A330A479A0CC7E414 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7191.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/138.0.7191.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index f0374395b6d76..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7191.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7191.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/138.0.7193.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/138.0.7193.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index da8b215296181..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7193.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7193.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/li3p557veevi7kmpbi2pgpczjy_138.0.7193.0/138.0.7193.0_chrome_installer.exe - InstallerSha256: FC87831A43C99CB01E25F6174A904CEC6FC8EA77F8FC0D914BE081980AD0CF91 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/da4z6w2hmctg5npsdtzrh65fnq_138.0.7193.0/138.0.7193.0_chrome_installer.exe - InstallerSha256: D61C46726843B1415CD5BFA0CD46B1ACE2273A75AE4DE41EE97790331328C5CB -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/f2w67jobew33k7r7rq5g5ovhse_138.0.7193.0/138.0.7193.0_chrome_installer.exe - InstallerSha256: C256E5091690A4F2A094BF85C75811425788CA44375954CA37C6B9ABF5AE41B3 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7193.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/138.0.7193.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index beff551ab315c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7193.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 138.0.7193.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/138.0.7193.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/138.0.7193.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index be6914b374800..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7193.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7193.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/138.0.7193.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/138.0.7193.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 7a5b1b38bd68b..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7193.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7193.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/138.0.7194.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/138.0.7194.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 90919b5cf65a3..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7194.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7194.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/acknfvbvvbxkv3xrwofhhycoqz6a_138.0.7194.0/138.0.7194.0_chrome_installer.exe - InstallerSha256: 8336FCE180EA0FA9D300F57187F7F8175FB7DBD7422216CF8985600B3086BF0F -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/adp2vc3v5l5rafo4nypvcoykrtvq_138.0.7194.0/138.0.7194.0_chrome_installer.exe - InstallerSha256: 58EEB24B55EE1B1C2123ADE2E269F57DF436A1934EE99C1F5E27877FE7BDA19B -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acommahzslmabvnlcroibo4nifhq_138.0.7194.0/138.0.7194.0_chrome_installer.exe - InstallerSha256: CA39A3F7DEBFF1D8AD18415FD57C974B06AABB03357173B7F8B594A45A3ED8BD -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7194.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/138.0.7194.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index ff6f2615b1c93..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7194.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 138.0.7194.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/138.0.7194.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/138.0.7194.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index b198d634a2804..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7194.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7194.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/138.0.7195.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/138.0.7195.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index b6940dbf594a2..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7195.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7195.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/d4tdbvlouydd52yaem2wnsokpq_138.0.7195.0/138.0.7195.0_chrome_installer.exe - InstallerSha256: 04E31A0883CD8C291C6DE48B5B73BB3923B4365C660076AC2873A0B692F836D2 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/lzdcit6giz3voi6y6c7o4i3wdq_138.0.7195.0/138.0.7195.0_chrome_installer.exe - InstallerSha256: 4F7D632A35F734EFD2F0974619C79A823CC9F7A1CAE9393E57F0A150DF6BAB8B -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acuzifew4hvk4np7c7vatbdln2hq_138.0.7195.0/138.0.7195.0_chrome_installer.exe - InstallerSha256: CA6760B7DFB545D3A99F522C6617D84108FD30C35389AE54DC4AD7D6C0DB9E2A -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7195.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/138.0.7195.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 5a12079e7bf12..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7195.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 138.0.7195.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/138.0.7195.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/138.0.7195.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 708ab4debd292..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7195.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7195.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/138.0.7195.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/138.0.7195.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 610b3eb00d7e1..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7195.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7195.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/138.0.7196.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/138.0.7196.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 3c7316da726b2..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7196.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7196.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/inm7s3kaixgeqgzjvb26h4obhq_138.0.7196.0/138.0.7196.0_chrome_installer.exe - InstallerSha256: 24C312F69639EBA070F86297D46578C97B55EA06EA5DCB23B9E725A7B0E2072B -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acofpgo2tbqusqi3gt6dgljgs5ea_138.0.7196.0/138.0.7196.0_chrome_installer.exe - InstallerSha256: F65CC68E362A1B01D3799C054346D547651BE6BF5D18A551C356297D8DD6460C -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/l4fkql6vu5bj2yuruoxhlg2qza_138.0.7196.0/138.0.7196.0_chrome_installer.exe - InstallerSha256: 7ACB3D803D5CFBF352572AED494DFA1208C7129682F16431F200BFF1200268F3 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7196.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/138.0.7196.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index bde11e089ceda..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7196.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 138.0.7196.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/138.0.7196.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/138.0.7196.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 080aba8ed234c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7196.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7196.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/138.0.7196.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/138.0.7196.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index e40f2f1d5408a..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7196.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7196.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/138.0.7196.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/138.0.7196.0/Google.Chrome.Canary.yaml deleted file mode 100644 index f6f216c38b422..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7196.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7196.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7197.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/138.0.7197.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index bb27c9af7d104..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7197.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7197.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/g7vanxs2znoww5lysfoa32za3u_138.0.7197.0/138.0.7197.0_chrome_installer.exe - InstallerSha256: 06F8999A4CF7A9D136AD49966E08EDED17F9ADC0D3326C65556E9EDE65ED1297 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/adtjjcb3gemrqdv77upl2nnsebdq_138.0.7197.0/138.0.7197.0_chrome_installer.exe - InstallerSha256: 0C85DC1055579F500B0520B2C18D808A64473FF703E3CC352ACCF55AD204BD66 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/c45dcopnv2msy5n6gc4abezrqa_138.0.7197.0/138.0.7197.0_chrome_installer.exe - InstallerSha256: E8F9E4A6ED692602F513A43E085431EAA102152D16D185C1E5226E6D38616E0D -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7197.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/138.0.7197.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index d8b10d25e407e..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7197.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 138.0.7197.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/138.0.7197.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/138.0.7197.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index e81625a1c6e25..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7197.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7197.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/138.0.7197.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/138.0.7197.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 6971417213f99..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7197.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7197.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/138.0.7197.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/138.0.7197.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 54b10221ed152..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7197.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7197.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7198.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/138.0.7198.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index f417a6b444356..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7198.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7198.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/by3uup6abkeagbfxrw5ztbuu4i_138.0.7198.0/138.0.7198.0_chrome_installer.exe - InstallerSha256: 4669F56D2D02D02C36F1506457D4E82F0BF2485C169B8C643D4B18E16D1EE370 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/pffkpgew6aayv52clfwgqjzdxa_138.0.7198.0/138.0.7198.0_chrome_installer.exe - InstallerSha256: 4A6CD878F3C81D1C3DB2281B853EB1138A2C8E59E45D4A216B8C5BE5469DE48A -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/lfl35vb23nf5ukpyxoe5pjrs6e_138.0.7198.0/138.0.7198.0_chrome_installer.exe - InstallerSha256: BFECC08050F56ACB6023F0FD6D805C94D327A49608B29EEE58DA1126895EC3B3 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7198.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/138.0.7198.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 0bcda86e25d34..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7198.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 138.0.7198.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/138.0.7198.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/138.0.7198.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 8c508ff1bdb73..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7198.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7198.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/138.0.7198.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/138.0.7198.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 4621e6db3b45c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7198.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7198.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/138.0.7198.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/138.0.7198.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 24e1bfaac2c10..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7198.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7198.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7199.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/138.0.7199.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index d04e27967148f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7199.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7199.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/acrefwe3ts6cwwzfo4dbvsowptwq_138.0.7199.0/138.0.7199.0_chrome_installer.exe - InstallerSha256: 2310DEA86D9BE12C7276E79C6B51A9FF1E18770D7A93C0CD1D42C223DFCCF75B -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/adgr6rmy6fbn5rcfvphagohgw2bq_138.0.7199.0/138.0.7199.0_chrome_installer.exe - InstallerSha256: 7E8D9904F433027CECCFE56B6238FE5398B1DCF487F8888D9C9A3AF49C2322B3 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/jlcsscbrcawf2442rvraktepey_138.0.7199.0/138.0.7199.0_chrome_installer.exe - InstallerSha256: EB47F4BF7E2AC391FC941FF342F69AED2AB7C9CF5D289AC8E831167A0E937551 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7199.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/138.0.7199.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 74fc77dc3fa6c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7199.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 138.0.7199.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/138.0.7199.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/138.0.7199.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index f6ff1dcc632ad..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7199.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7199.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/138.0.7199.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/138.0.7199.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 360ab25754ee5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7199.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7199.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/138.0.7199.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/138.0.7199.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 2aa90f825b037..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7199.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7199.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7200.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/138.0.7200.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index e17ec6a2ee367..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7200.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7200.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/guurbmzqas4ohixepjzkej4xlu_138.0.7200.0/138.0.7200.0_chrome_installer.exe - InstallerSha256: 2073E8DB81D4745DFA928AD5217EC124AEC7284B1E036FB9EFEAC2E1BE999D2A -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/oir3e2ewbitdaxf6ox6wtnvxsm_138.0.7200.0/138.0.7200.0_chrome_installer.exe - InstallerSha256: 5189440F2D39A68D06E71CFAD7C44411C11E68AD507EF0BC90C43C814B69AA74 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/bo5o25vw4dkzwmn5xlrnfdwsiy_138.0.7200.0/138.0.7200.0_chrome_installer.exe - InstallerSha256: F19F88FD9B086CE965F5D73743358E1A276BCAA7207411E9FFB589937B9AA481 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7200.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/138.0.7200.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 29e9ee0804a39..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7200.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 138.0.7200.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/138.0.7200.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/138.0.7200.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index c5941fe51c8af..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7200.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7200.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/138.0.7200.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/138.0.7200.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index a06c22fdd33f9..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7200.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7200.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/138.0.7200.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/138.0.7200.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 96ce20a496045..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7200.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7200.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7201.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/138.0.7201.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 74e1bdb2d402f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7201.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7201.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/h7lms55q2fvstnz6mzekvqhdgm_138.0.7201.0/138.0.7201.0_chrome_installer.exe - InstallerSha256: 8FB8423A66019F2E373831E06ACFBE8D920339DC8DD16997ED7D79FC4D93AE61 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/adogj2ftag5iooho5kvo7yftjmla_138.0.7201.0/138.0.7201.0_chrome_installer.exe - InstallerSha256: E7CBEC3A393EB6BAB902E35DAAEBA48E2D58B333A8C20664F8CE52DD1B270755 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/ink5eklmz7csuyhxssbtst2cma_138.0.7201.0/138.0.7201.0_chrome_installer.exe - InstallerSha256: A27B604C60CA5BA951BA930379F3C7B22A2282BDECF7E403279A45B7036203AE -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7201.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/138.0.7201.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 7851aef6a25e9..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7201.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 138.0.7201.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/138.0.7201.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/138.0.7201.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index cb64ea9e88a49..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7201.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7201.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/138.0.7201.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/138.0.7201.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index e28d178f884f4..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7201.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7201.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/138.0.7201.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/138.0.7201.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 5d69f09e184e1..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7201.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7201.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7203.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/138.0.7203.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 68e356d867179..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7203.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7203.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/ffgfjxs4xxsr4phhadhwqri4by_138.0.7203.0/138.0.7203.0_chrome_installer.exe - InstallerSha256: F69C89062D1A3FB5991CA769523FFD6A14961FFA961972300B978A8C46CBC4E7 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/b3br6owy6vfzahd4563jb2wunm_138.0.7203.0/138.0.7203.0_chrome_installer.exe - InstallerSha256: E5E04AA98BAD4AA71954BD13DAC8E2B7386506ACB799092F94C9FCEB5890EE7A -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acogr27y4s3dcejsuzx2srcmhjyq_138.0.7203.0/138.0.7203.0_chrome_installer.exe - InstallerSha256: 8220BD22F62B4FA7683BF46FC6C91B857CD2005B2637127CD7CE35EEB1886A13 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7203.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/138.0.7203.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index ba5f030c23d03..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7203.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 138.0.7203.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/138.0.7203.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/138.0.7203.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index a6c5e584e971d..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7203.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7203.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/138.0.7203.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/138.0.7203.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index b005116ef734c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7203.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7203.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/138.0.7203.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/138.0.7203.0/Google.Chrome.Canary.yaml deleted file mode 100644 index fc84935c4269a..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7203.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7203.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7204.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index cef4f314596a4..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7204.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/okodosqpetoo6na6dykz2k2fle_138.0.7204.0/138.0.7204.0_chrome_installer.exe - InstallerSha256: 1D7E9C4C9BA586BC4B5D23DD7A01BCCC238E4B1EED0F463DDD8D2CD48298C73B -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/adgwwmde75upvfytop2ncieebdka_138.0.7204.0/138.0.7204.0_chrome_installer.exe - InstallerSha256: CA26B2BCE114928064497772444A660A1C900BCD00367D4236D58B4926C322B2 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/a7ul2kk6n5g34f24va7pjl357u_138.0.7204.0/138.0.7204.0_chrome_installer.exe - InstallerSha256: 3FE0AA9B0A59A1279D98699DE0CAA501AB5DC2891A7FA128C191A36FD28453FA -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7204.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 23a2b1ef99b50..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 138.0.7204.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/138.0.7204.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index ad9d84a6ca31c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7204.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/138.0.7204.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 731d4d2a00e2b..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7204.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/138.0.7204.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.0/Google.Chrome.Canary.yaml deleted file mode 100644 index f5660475ae475..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.0/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7204.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7204.2/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.2/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 61fae43a7a3f4..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.2/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7204.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/adqhuqxmevys5zteq2qm47nkfyza_138.0.7204.2/138.0.7204.2_chrome_installer.exe - InstallerSha256: D7C08866FC614781FE5E2376A15F78C5FA46FC4BF7A636453FD51E86BCE4FEBB -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/my2xc5eachxiv6lwvuetvduh2e_138.0.7204.2/138.0.7204.2_chrome_installer.exe - InstallerSha256: 77EF26636B0BF7077CA76383D50653B9F152E8FCB2C6DF0112B18E22A13DAB7C -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/pr2nnz26b5rr6jaa2ra63b7iie_138.0.7204.2/138.0.7204.2_chrome_installer.exe - InstallerSha256: 2B9BB3D8E75F8B10ADF644E4E92F333A87B72EC86251E43657825B7AF87E23C9 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7204.2/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.2/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 7350fc5bd4783..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.2/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 138.0.7204.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/138.0.7204.2/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.2/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 88b3f14563ed6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.2/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7204.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/138.0.7204.2/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.2/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 89158752cbca5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.2/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7204.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/138.0.7204.2/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.2/Google.Chrome.Canary.yaml deleted file mode 100644 index 22a1d8fb79334..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.2/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7204.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7204.4/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.4/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 15fd20d350818..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.4/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7204.4 -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/accvctpyzi4znubyp4i3bwmvba4q_138.0.7204.4/138.0.7204.4_chrome_installer.exe - InstallerSha256: 041973358A187687151A800FE97787FE2C95C76AFEBD58BD88968B8EEA7E2061 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/actb43xcrszk2vmsdf4a2dx7esua_138.0.7204.4/138.0.7204.4_chrome_installer.exe - InstallerSha256: 1F03DE431FD72CDBD90FAEBF6F70719FDAA40978B8EF5D48FA1E3CC5826BFB3B -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acw4e6fxa5zcaxp6gpjf3vkgromq_138.0.7204.4/138.0.7204.4_chrome_installer.exe - InstallerSha256: E69B4D32B7067B7D6B1BD3EAB1F2A0B5F16FB5715D9246D1F2CC8DBE1D9D4FE1 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7204.4/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.4/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 18eca0cad0d26..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.4/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 138.0.7204.4 -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/138.0.7204.4/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.4/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index d50404062e413..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.4/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7204.4 -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/138.0.7204.4/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.4/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index f8f9afe8a1f7d..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.4/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7204.4 -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/138.0.7204.4/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.4/Google.Chrome.Canary.yaml deleted file mode 100644 index 9509420ba8991..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.4/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7204.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7204.5/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.5/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 9f8ae0893916d..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.5/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7204.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/n4hgr7fy336ac57aewoyahp6oi_138.0.7204.5/138.0.7204.5_chrome_installer.exe - InstallerSha256: 100EC940CDF3315A5247B9DDFA405ED9499335B5DAA2517FE4960A72D615A1CD -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/ns5eruubrsdlcal6fgj2kg6phq_138.0.7204.5/138.0.7204.5_chrome_installer.exe - InstallerSha256: 3D9362B369EC20C3015A173796ADA39D222E631776B1FA19E6A39474ED036FFB -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/adg5vvpkkr4w3majmxqqgqb6zf3q_138.0.7204.5/138.0.7204.5_chrome_installer.exe - InstallerSha256: 57948D54FA658D6C16BF73D9C9001FB408C080A740E24A49818233A441C80CA6 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7204.5/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.5/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 5df5176540282..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.5/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 138.0.7204.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/138.0.7204.5/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.5/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 72d602a2ddad1..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.5/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7204.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/138.0.7204.5/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.5/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 336141c620bff..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.5/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 138.0.7204.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/138.0.7204.5/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/138.0.7204.5/Google.Chrome.Canary.yaml deleted file mode 100644 index 38f792ddbc2b6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/138.0.7204.5/Google.Chrome.Canary.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.Canary -PackageVersion: 138.0.7204.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7205.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7205.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index a8aaa6a985ca5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7205.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7205.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/psntcsjx65ss3zts73tfvejbcu_139.0.7205.0/139.0.7205.0_chrome_installer.exe - InstallerSha256: 20A201DC39064329AAFFEBFC78782F2DF73A4B7F39D55D45BC3CC7CCEC89E14A -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acrsmyvj6zhy72tkwkvbxicasnka_139.0.7205.0/139.0.7205.0_chrome_installer.exe - InstallerSha256: C9DC5F7960B80FD244B385DE05880CC8403FDC06A9EE36FFC28A8F110AAF15CC -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acrziciifmo7oro63f3eybo43yla_139.0.7205.0/139.0.7205.0_chrome_installer.exe - InstallerSha256: 40E5A97A9AC56FCD28F2EDE8FE979A2560B39AD47BD2FAE3C89B7BE145609195 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7205.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7205.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 6926cea1bd514..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7205.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7205.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.7205.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7205.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 12501bd239396..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7205.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7205.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.7205.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7205.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index a750fbde53286..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7205.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7205.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.7205.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7205.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 76cd18b67b53d..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7205.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7205.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7206.2/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7206.2/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 32a1d1a1fb350..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7206.2/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7206.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/ad5inkj54ojboxp3ymmyalqfsomq_139.0.7206.2/139.0.7206.2_chrome_installer.exe - InstallerSha256: 42630F1B73DB5DFB5736185A4FA63F16BFC5BA62460E426008394FFDB4FBEE0A -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acn2vmefa2zr7gk5j5ojxxgevxwa_139.0.7206.2/139.0.7206.2_chrome_installer.exe - InstallerSha256: 6D9833B3A2CF5E3E4E8D85B29800561A412C235BC5A579CCBE07CA3E381CFF5B -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/javok5xrsx6hy4npj7ywshgvua_139.0.7206.2/139.0.7206.2_chrome_installer.exe - InstallerSha256: F0CB4A555348B721DBE149C9B72C263AF4632971E6CC8661535F06DA67DBFEDB -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7206.2/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7206.2/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index c832ac062a2e6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7206.2/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7206.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.7206.2/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7206.2/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 31a4228e9e20a..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7206.2/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7206.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.7206.2/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7206.2/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 5385e8b5f7622..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7206.2/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7206.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.7206.2/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7206.2/Google.Chrome.Canary.yaml deleted file mode 100644 index 9a6de6f8a3c59..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7206.2/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7206.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7207.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7207.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 21f9ede1053e5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7207.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7207.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/acr2n7mjau33f5aelkjy44t7cita_139.0.7207.0/139.0.7207.0_chrome_installer.exe - InstallerSha256: 305FF545542F12431C948ED984C8DE1FC1AB5B6CB48EF0140809A2379290586C -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/edj74do3tlqjqivy3vnjnntbmm_139.0.7207.0/139.0.7207.0_chrome_installer.exe - InstallerSha256: 2FF2464E3B6CFB8A3381BBA1F131A50380C037D7F0C56D63FEE48F6F610198A2 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/dgdg4kao3krfu64qvfoxhsy4zi_139.0.7207.0/139.0.7207.0_chrome_installer.exe - InstallerSha256: C5BEA7776C98D2B951EA2DCD132B1EF07C799B78D62359061E48C6D62FA93D96 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7207.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7207.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 67ff876f40d46..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7207.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7207.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.7207.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7207.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 00668ff5e418d..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7207.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7207.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.7207.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7207.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 450282ab91c9a..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7207.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7207.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.7207.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7207.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 7c4035989c6e1..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7207.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7207.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7208.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7208.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 582657ba8c63b..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7208.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7208.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/acqc4gmygjlislghepbcdy2gweuq_139.0.7208.0/139.0.7208.0_chrome_installer.exe - InstallerSha256: 97BEF9EFC4BCC8D4C58852890FCFD65B38D1A68A1346DEEFAE154CF00B49FA8C -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/ow5q2muftryzcr6nofmyf6ef44_139.0.7208.0/139.0.7208.0_chrome_installer.exe - InstallerSha256: D723AAB9CF8BCA1563904204E9874AF7FC14E8DA64BF6802F99E04199CF7E71D -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/ad4iuqdabqe23proqlpvnwcurmka_139.0.7208.0/139.0.7208.0_chrome_installer.exe - InstallerSha256: C6A7454A269D3EDB03EB9D99D5A0F6325EF04D330ADDD8EBC740C2F2CDF3AEDB -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7208.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7208.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index da51d348e088c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7208.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7208.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.7208.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7208.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index c54737df47aeb..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7208.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7208.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.7208.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7208.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 5104ac87f002d..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7208.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7208.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.7208.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7208.0/Google.Chrome.Canary.yaml deleted file mode 100644 index ee193dc057b3b..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7208.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7208.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7210.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7210.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index c0d243f4321d1..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7210.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7210.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/ad6g5mgscdftgvzdf45tbsigdbsa_139.0.7210.0/139.0.7210.0_chrome_installer.exe - InstallerSha256: 2D81956640FD1B970281B3F6F71B7317702D7924FDBAF83A6115F52B743FAEFE -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/fvlkoxxmwtwuixlzsfnzq6bxle_139.0.7210.0/139.0.7210.0_chrome_installer.exe - InstallerSha256: 43F2EEACA94FF03C5225ADB6757636CBF20B0FFA19136E1CF965397D30DCDB98 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/k5yvo7xgtsa7ygulvytzpq7t2a_139.0.7210.0/139.0.7210.0_chrome_installer.exe - InstallerSha256: 49753771ECA735DB543214F05F10EBA4E856CBD0B757AB2E995E8B5833324F32 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7210.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7210.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 2010b06dbafdb..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7210.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7210.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.7210.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7210.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index fe0ec80737690..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7210.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7210.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.7210.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7210.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 27aa64bbaec06..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7210.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7210.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.7210.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7210.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 764f5af8c8d31..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7210.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7210.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7211.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7211.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 3da37929b69c6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7211.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7211.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/adzjihnxmmej4rgjf4qqzylhsdna_139.0.7211.0/139.0.7211.0_chrome_installer.exe - InstallerSha256: 61012ADCFD6F1AC53870540D56C341959BD8612F5F7FD2BD67FC6EB3556A583E -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/advp5rsnavrjse3h76lvkvlqsfmq_139.0.7211.0/139.0.7211.0_chrome_installer.exe - InstallerSha256: FC7E36FC4312F71A6F701DBC212558B8C09DCC344169807A9CC7A6B8E8B1EA15 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/ehcxwggyy7itf4h2zma4xad2dy_139.0.7211.0/139.0.7211.0_chrome_installer.exe - InstallerSha256: F02B67C7B132250366241C89C07E21E504FFD13B87056074868EAED0D7DB5577 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7211.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7211.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index d862ed1edcd21..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7211.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7211.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.7211.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7211.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 6736d25bab7f5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7211.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7211.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.7211.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7211.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 1cfea8b01b215..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7211.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7211.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.7211.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7211.0/Google.Chrome.Canary.yaml deleted file mode 100644 index adf1b82bad0fb..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7211.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7211.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7212.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7212.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index e273205f59692..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7212.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7212.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/kfnqidqovthxq4injwhq4igrli_139.0.7212.0/139.0.7212.0_chrome_installer.exe - InstallerSha256: 523B68BD35B1ED563594D657C70ED5CB0C43657AF5D29CC23E4E2D998C3293F9 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/ny2lmshjd3pza2todc2qffmec4_139.0.7212.0/139.0.7212.0_chrome_installer.exe - InstallerSha256: 45888C479FF00D4123A804882DD95E682F51F7651F3D11BA20F768A0EBA85554 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/ad6x3qf4gg75c76vyqmt44eymboq_139.0.7212.0/139.0.7212.0_chrome_installer.exe - InstallerSha256: EAB2FC0ADA23B52C122C107508B39D622B7AEF2674AD363B70E2A70786A37621 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7212.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7212.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index f2befc268b7c3..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7212.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7212.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.7212.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7212.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 65e387fcc5419..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7212.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7212.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.7212.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7212.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index be77b2181c5c5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7212.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7212.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.7212.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7212.0/Google.Chrome.Canary.yaml deleted file mode 100644 index aaa035743ce29..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7212.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7212.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7213.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7213.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 682f2c51966db..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7213.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7213.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/ofuokef6hf4gv5inuarnvribj4_139.0.7213.0/139.0.7213.0_chrome_installer.exe - InstallerSha256: C1F1BAFD25E17F5044CBBA379EA6235F02D4BFF3047324223F8CA92FE984C561 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/ipm2eaav22uqeb3yteym7dhfhu_139.0.7213.0/139.0.7213.0_chrome_installer.exe - InstallerSha256: 07233C2C46D0A54F15DF0B783C90AF6237AA23FFB41805A8998A7C7F047BD31D -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/dzyqakgpvd5jcdjxqjrfhpsewa_139.0.7213.0/139.0.7213.0_chrome_installer.exe - InstallerSha256: 20F0723C46860DE41873B796B1DE5FF8184C227AC05A5AA2E54F435F8C8D5077 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7213.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7213.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 6d936a234652f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7213.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7213.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.7213.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7213.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 0bf306db23d22..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7213.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7213.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.7213.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7213.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 561e099e23821..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7213.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7213.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.7213.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7213.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 575e0e3fa56b2..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7213.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7213.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7214.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7214.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 72ab01108e86e..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7214.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7214.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/o5ilefncexqq4qtixx2vplqejq_139.0.7214.0/139.0.7214.0_chrome_installer.exe - InstallerSha256: 273833AB5E209A4236A55533223AB2526ED0A307174AD246879EFEC750BCC1FC -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/adgvotqbbsr7hcozhfav7wbff5da_139.0.7214.0/139.0.7214.0_chrome_installer.exe - InstallerSha256: 7BA929C651CE52C2AFA77762E84D71DD78BB6B36D0CF089EF9ADCC2322EF7363 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/ach7chsp67zlew2v2aurschgacfa_139.0.7214.0/139.0.7214.0_chrome_installer.exe - InstallerSha256: EDCF51CFD64B5E5EC3AFB75AE8D5E7A018FFA11D64C8D03F8C81756D3E6316AC -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7214.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7214.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index a7901a9613471..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7214.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7214.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.7214.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7214.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index d9ff6791164fc..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7214.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7214.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.7214.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7214.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 05ea93dc64665..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7214.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7214.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.7214.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7214.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 9d7a08c727ab5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7214.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7214.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7215.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7215.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 1dc90abbe8695..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7215.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7215.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/acezrcdgdpknulchf3heqeugfvaq_139.0.7215.0/139.0.7215.0_chrome_installer.exe - InstallerSha256: BF6FBCDAC89B4DEA4FDB2FAF00A3D1BDF8396595179F630E74D5135E49BF9677 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/jvvzqktbv77v34jou5zicsp3ka_139.0.7215.0/139.0.7215.0_chrome_installer.exe - InstallerSha256: D9336E8FCE7BEC03E7D4AF79FB47E96D7D9F5EBA6FD63D1DFB99BCEF0E53ADFE -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/hu4wzubt7typivdmnphbajgcju_139.0.7215.0/139.0.7215.0_chrome_installer.exe - InstallerSha256: 9F0385452DE696703F95A7459A05A6B993B2BF2E6F3FEA92E827C9CCB3A1BE3B -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7215.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7215.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 7b95dc0f28653..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7215.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7215.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.7215.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7215.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 4c9f2d6098995..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7215.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7215.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.7215.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7215.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index dc6aeb2c01c94..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7215.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7215.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.7215.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7215.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 6a114308c8327..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7215.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7215.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7216.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7216.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 034dd7710b352..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7216.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7216.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/adwg4fchxdat7lrzcxyxo4xyxfpa_139.0.7216.0/139.0.7216.0_chrome_installer.exe - InstallerSha256: 69B99AA36C73DCF31FAEEDF0BCC932ACAEEE7280A40227CC17908D5084831783 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/pw7secnsvjpymnz276nbldxv3i_139.0.7216.0/139.0.7216.0_chrome_installer.exe - InstallerSha256: AF76516D045F436E647D2DA86ECAD7C1FD6930EECC701A43EAF304ADF53675E9 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acoessvs3igko63omuwupmjbbybq_139.0.7216.0/139.0.7216.0_chrome_installer.exe - InstallerSha256: 152B16F9F45E20DE00F280C2345F53FBB95FB1F1CF8576AE55786197D87D00DB -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7216.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7216.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index d3f05b6e91240..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7216.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7216.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.7216.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7216.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index f923f99e6ffc0..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7216.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7216.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.7216.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7216.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 01b1845b6eff9..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7216.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7216.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.7216.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7216.0/Google.Chrome.Canary.yaml deleted file mode 100644 index ad4ff9235e80d..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7216.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7216.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7217.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7217.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 1c758310e1cd2..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7217.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7217.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/acoutc6bptqrrihotpud2j7ediiq_139.0.7217.0/139.0.7217.0_chrome_installer.exe - InstallerSha256: 40D05924F6311D84BEE594085AD5850C2C00A8EE043A962380EE92FB504061FB -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/adzc6swoanuepkurggfcnbhk3jiq_139.0.7217.0/139.0.7217.0_chrome_installer.exe - InstallerSha256: 8A00F137974A8F71C751B544F704F14625C567666EE44F1E4826C02DF5A55038 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acfubiy7vw2quc3pvqkmygvidoha_139.0.7217.0/139.0.7217.0_chrome_installer.exe - InstallerSha256: 4587C66989AF2F828859A07A6DB38E1C1089BD0C1B3CFF55346E060EE094630B -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7217.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7217.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index cf10c27feb9f8..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7217.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7217.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.7217.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7217.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 16b9052ee9ab3..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7217.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7217.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.7217.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7217.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 4ac550980a634..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7217.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7217.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.7217.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7217.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 325e0288bf783..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7217.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7217.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7218.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7218.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 7e34f2a4d15ff..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7218.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7218.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/ge2yvuxokasmydas4cdjlkfkl4_139.0.7218.0/139.0.7218.0_chrome_installer_uncompressed.exe - InstallerSha256: 4716AF29C727C055D3B0ECD0FFC1EE02FB372087F0EA627CE2241234983CCA2F -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/ackgmuzs3sdk4vuo22sbsi6yvuvq_139.0.7218.0/139.0.7218.0_chrome_installer_uncompressed.exe - InstallerSha256: E13C51E15A5E344DFE166F1595AD30711C783FCB49AB2279816AADD9DB0DD0B2 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/adlioj2i7zcxr2pr7npbp2p7v64q_139.0.7218.0/139.0.7218.0_chrome_installer_uncompressed.exe - InstallerSha256: 8FCABC451DAD9D9CE29C1D6DC460CC6A3E031039312C876B632AC8D257A384FA -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7218.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7218.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 0f69da0f44435..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7218.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7218.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.7218.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7218.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 37e3bf5b33281..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7218.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7218.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.7218.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7218.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 262a8cd973e29..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7218.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7218.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.7218.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7218.0/Google.Chrome.Canary.yaml deleted file mode 100644 index deb256903ecd7..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7218.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7218.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7219.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7219.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index dd356eac4b068..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7219.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7219.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/pk3e3k44luabgvytsuyccr3ayi_139.0.7219.0/139.0.7219.0_chrome_installer_uncompressed.exe - InstallerSha256: 6F28AB553DD521917CBDC97309F4AAE842B90D4EEE5ECF29E7AA71660D81BC33 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/adzdeheope3dw6et5d42gvl3277a_139.0.7219.0/139.0.7219.0_chrome_installer_uncompressed.exe - InstallerSha256: 2E90FAF8B0FCCD14904E92C16C7F0F2402B520BF6636794C909D449F0E706F62 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/adjn5chwp6tbywzrj4ecycwi4a4q_139.0.7219.0/139.0.7219.0_chrome_installer_uncompressed.exe - InstallerSha256: 5D0311F0AF47D68D2ECC49D443AEC796D54ECF41513A981068ABED371D67C331 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7219.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7219.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 8383c5f2048f9..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7219.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7219.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.7219.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7219.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index c019d7e566282..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7219.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7219.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.7219.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7219.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index c7f83203cce83..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7219.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7219.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.7219.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7219.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 6d35e45695265..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7219.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7219.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7219.3/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7219.3/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 88e1a2aa2c162..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7219.3/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7219.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/jmhd7dbtrvid33igwhqq6bki4q_139.0.7219.3/139.0.7219.3_chrome_installer_uncompressed.exe - InstallerSha256: 4123006914FBE5DB26C3C3C6934AE54CF00F98EB67AECB991B2EAD8C8DB17636 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/achri224y6yin2jaw4yswfbw47jq_139.0.7219.3/139.0.7219.3_chrome_installer_uncompressed.exe - InstallerSha256: 662CDECF709302394FAC06ABDDEEFC377C2C5D12ACA6CFBA8F76584428720655 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/kmqeihirgct33s4yvek223pjui_139.0.7219.3/139.0.7219.3_chrome_installer_uncompressed.exe - InstallerSha256: 75C1B9629AB3A1F6153470B78161E76CF11255964D3DADA83C0FC127197EC57D -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7219.3/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7219.3/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index d133da4d17a14..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7219.3/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7219.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/139.0.7219.3/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7219.3/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 996d1fb3272e6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7219.3/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7219.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/139.0.7219.3/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7219.3/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 5c5bbb9fbf0a5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7219.3/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7219.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/139.0.7219.3/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7219.3/Google.Chrome.Canary.yaml deleted file mode 100644 index 50e97cfff0995..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7219.3/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7219.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7220.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7220.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index cd4a36148ac0c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7220.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7220.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/acbitxab4abeahqxmejbd6rm5orq_139.0.7220.0/139.0.7220.0_chrome_installer_uncompressed.exe - InstallerSha256: 2ACB89A3F3C8A79F5A60DD87E7D70F20E1AFE165462B00C32A688FC5544A9926 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/adv3ivgi6es7qs6dnp6solv5jwgq_139.0.7220.0/139.0.7220.0_chrome_installer_uncompressed.exe - InstallerSha256: 77C60E2E2D52D7EAE25C490AD81312CEB1177ED225CFE477A6CB744B89C46532 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/ac4d6hi7c3iig75tmlt5anixld7q_139.0.7220.0/139.0.7220.0_chrome_installer_uncompressed.exe - InstallerSha256: 313B3C37853A2B00B52BEC6BD23C0F472DD276B8BA5EB4BEF59D96642F0BFCF8 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7220.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7220.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 3a75ad1749a39..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7220.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7220.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.7220.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7220.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 5cd69e2a00673..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7220.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7220.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.7220.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7220.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 949b6331b1bdf..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7220.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7220.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.7220.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7220.0/Google.Chrome.Canary.yaml deleted file mode 100644 index d971d0fae65f6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7220.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7220.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7221.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7221.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 9015264c0211a..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7221.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7221.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/adwgvieako4nckhzasn5urhjavxq_139.0.7221.0/139.0.7221.0_chrome_installer_uncompressed.exe - InstallerSha256: 67C04798548154F242AEA78D814F9D81E2EA5CA1ABCE3D33942025C145C975FA -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/adlejfjsas4nafqkn4eco3lwxo7q_139.0.7221.0/139.0.7221.0_chrome_installer_uncompressed.exe - InstallerSha256: 5094B837A0D8C17993D236BCA5538BE3D9A5A43CC67335C60411D0FC4C4868C3 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acmys37oc47mw3zrfbdfnxqq24kq_139.0.7221.0/139.0.7221.0_chrome_installer_uncompressed.exe - InstallerSha256: EFD161B504166220BC12376C6C86D1EE2825DB2A72B821F239664462C0528F8A -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7221.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7221.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 8a31e579da123..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7221.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7221.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.7221.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7221.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 8ff3491a2f4af..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7221.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7221.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.7221.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7221.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 45d1d829bf609..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7221.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7221.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.7221.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7221.0/Google.Chrome.Canary.yaml deleted file mode 100644 index d5606f32f770f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7221.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7221.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7222.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7222.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 3b8e8622e76b1..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7222.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7222.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/j4hfltly2yxngflh753l7atn2e_139.0.7222.0/139.0.7222.0_chrome_installer_uncompressed.exe - InstallerSha256: 6991DDEB6D44149F2C698745F528D1F58FAF71D7A2057208C5FE50CE2862C3B0 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acuazyy2vtxvts6oc6zniiabwsyq_139.0.7222.0/139.0.7222.0_chrome_installer_uncompressed.exe - InstallerSha256: 97FB1E753B4E2F2DC68B95078E93FE5BDD7606C397090DDB94CF0EBB32B73414 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acsbkuxqsztkfiipvxmabz4qh7aq_139.0.7222.0/139.0.7222.0_chrome_installer_uncompressed.exe - InstallerSha256: 68FCF216C732684946D46610E7041B38A230B7734DA71346D1EB8CBAD34EACD3 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7222.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7222.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 2b7904aa3767a..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7222.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7222.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.7222.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7222.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 4272ce4a85520..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7222.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7222.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.7222.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7222.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index a58a8866bcb45..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7222.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7222.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.7222.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7222.0/Google.Chrome.Canary.yaml deleted file mode 100644 index dea19e035c8bf..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7222.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7222.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7223.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7223.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index ce745a7fa4244..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7223.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7223.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/adcn7nl3z2ghcpwjpone7wvbl2rq_139.0.7223.0/139.0.7223.0_chrome_installer_uncompressed.exe - InstallerSha256: 7C4478F3A2228DC9EBCE22377BEA72C05E891E525DA8BE11FE9AED12DC7EBA8B -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acyzk2mpqbbwhobegdumthyl66fa_139.0.7223.0/139.0.7223.0_chrome_installer_uncompressed.exe - InstallerSha256: 4589477BE50DCAD964B4631B8ABDF50E191D6AB5620753AEA496DF9AD00DE145 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/pbe3gn4lcbja4oyxdls6nat6mi_139.0.7223.0/139.0.7223.0_chrome_installer_uncompressed.exe - InstallerSha256: 2CFD8C8F8AF4526F376C76AD1412EE70FFCD3F8D8BB4BF75036B87C74735332D -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7223.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7223.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index db80c0c503a16..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7223.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7223.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.7223.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7223.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 9162fbe6cacf0..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7223.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7223.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.7223.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7223.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 3f458b11e0e71..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7223.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7223.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.7223.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7223.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 75da1ea524b40..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7223.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7223.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7224.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7224.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index d77635de44593..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7224.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7224.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/pzp6bp3risul5rtigipl6uekom_139.0.7224.0/139.0.7224.0_chrome_installer_uncompressed.exe - InstallerSha256: F13304250E98E27A09CAE9C432A4182D8B3D7BE31D1688BF6E00A71042CA307E -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acjokjk7jtyf6zamfwofcepuk5lq_139.0.7224.0/139.0.7224.0_chrome_installer_uncompressed.exe - InstallerSha256: F174B0911F7E781AC3836E48CE521170C559EEC3D43A4C830E170898F25CB9A6 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/ac6bra7bndfbksbhqqtpk54sn3jq_139.0.7224.0/139.0.7224.0_chrome_installer_uncompressed.exe - InstallerSha256: C6C701E5C652B7A899E7B0CDC87D21028550136D01B846B5E7409B3884EF25BA -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7224.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7224.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 637655d9e5e7d..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7224.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7224.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.7224.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7224.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 1d50d240160b4..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7224.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7224.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.7224.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7224.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index e89118cbe2657..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7224.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7224.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.7224.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7224.0/Google.Chrome.Canary.yaml deleted file mode 100644 index a54e3105e9052..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7224.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7224.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7225.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7225.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 976ef9aa3938f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7225.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7225.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/acynjfrttwbc44bth2usnf3yuura_139.0.7225.0/139.0.7225.0_chrome_installer_uncompressed.exe - InstallerSha256: D075A8A8E947C8B17629DCED22029482B274B891674329A50F29A8F05F55A6A5 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/dzqxuwmck3prgnol7hvidjkkdu_139.0.7225.0/139.0.7225.0_chrome_installer_uncompressed.exe - InstallerSha256: 92191D12B3EBD09F0E6BAC557F7A17B44FF65092D994B9A0675E36EF7BADE88E -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/kihcgastuxmzfru52mbyj5qycq_139.0.7225.0/139.0.7225.0_chrome_installer_uncompressed.exe - InstallerSha256: BCBC2E4447260BD1BA49D3069F9A310C654FC0B31E59E7DBC66455393EA3055C -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7225.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7225.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 9f70592b03784..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7225.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7225.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.7225.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7225.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index d0b42eaa1e575..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7225.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7225.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.7225.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7225.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index d7be7bdf56841..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7225.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7225.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.7225.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7225.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 1c453cf5510a9..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7225.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7225.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7226.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7226.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 3d2f7aa5ec000..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7226.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7226.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/akakcx3csstwlq3siyc3oconky_139.0.7226.0/139.0.7226.0_chrome_installer_uncompressed.exe - InstallerSha256: D31DFFC2480F7A291E6519C5E6726B525316CA22F66249B7D58E651701E58A34 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acba37lamwjaszxxr2uuuk4frjwa_139.0.7226.0/139.0.7226.0_chrome_installer_uncompressed.exe - InstallerSha256: 0C49E34E90EA78FEF87E3C2C1AE0969C982C5538A734CAE00F5C41C6B244B9CA -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/pw4j5uyths4rdtlrrjb33cbiie_139.0.7226.0/139.0.7226.0_chrome_installer_uncompressed.exe - InstallerSha256: EAD8A48216A1AA02E431D4BFD9F9A2277CB1F59AE99078EB308A4960A38F2F2E -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7226.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7226.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 16262502e11d7..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7226.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7226.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.7226.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7226.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 7f17412aabc00..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7226.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7226.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.7226.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7226.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index a20c349aeaa88..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7226.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7226.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.7226.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7226.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 593018623c385..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7226.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7226.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7227.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7227.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 8368a84899db2..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7227.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7227.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/edvt6a42rntmi4ume5poy6madi_139.0.7227.0/139.0.7227.0_chrome_installer_uncompressed.exe - InstallerSha256: 174A85541961C42C4C825BB1D01F6D95BFE2CE9BC0AEA6074EB888DD9FE8E847 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/l2nembofpzca4q6z6zarqafogq_139.0.7227.0/139.0.7227.0_chrome_installer_uncompressed.exe - InstallerSha256: C604D319FBE11E42386555AA8823619D03F9B73F94FC7EE2BA7DF3A8B38BC460 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/k244uaphkghkuf7sc7gpmmofi4_139.0.7227.0/139.0.7227.0_chrome_installer_uncompressed.exe - InstallerSha256: EA754C5FBDDB52090EC354BBA90E59281F6B8C33AD9109F72BF42F75BE44604D -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7227.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7227.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index fe74b576f1283..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7227.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7227.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.7227.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7227.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index a898fc7aa99f5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7227.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7227.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.7227.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7227.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 3de555608c848..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7227.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7227.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.7227.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7227.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 31f539f5693d2..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7227.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7227.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7228.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7228.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 75eadcbb33b5a..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7228.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7228.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/acy6zeax47bhb5qalcle6fl6r3lq_139.0.7228.0/139.0.7228.0_chrome_installer_uncompressed.exe - InstallerSha256: D4CD265D03328A9FF2DB666560DD31BEE5675ABE2493432D383FC2996FB37337 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/adynnvn3hiiphymhuqsjirofcssq_139.0.7228.0/139.0.7228.0_chrome_installer_uncompressed.exe - InstallerSha256: 65E624B89136206C7CDCCEA2C1522AF2378DD1FBF01DC98D5F44D5A99FD0A13F -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acs3xglk6dq4qk3hxu2ukf7ona5q_139.0.7228.0/139.0.7228.0_chrome_installer_uncompressed.exe - InstallerSha256: 7359D96F14BC500EEB1CD1E03946D733F37BEF6DA81AC7458D1749BD24160EED -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7228.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7228.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 1c050abba65fd..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7228.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7228.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.7228.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7228.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 3c1f9fdc8ec8e..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7228.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7228.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.7228.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7228.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index a5c351efc1969..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7228.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7228.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.7228.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7228.0/Google.Chrome.Canary.yaml deleted file mode 100644 index f774b750e2818..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7228.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7228.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7229.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7229.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 908a927cc40d2..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7229.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7229.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/gca4ufh7osagbbpdlwrs6le2ea_139.0.7229.0/139.0.7229.0_chrome_installer_uncompressed.exe - InstallerSha256: 8642E3CC54D597B19832C6EF0C0E09422B265D99BEBE9930B119D1A11B0A83C6 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/ct7o5nzcyxokmu3ywbqcpinal4_139.0.7229.0/139.0.7229.0_chrome_installer_uncompressed.exe - InstallerSha256: 09FFF8EAEE754FE1A894C709FE30ABFD4B1CDBFEA84F5ACCB5D4199B06F7EB0B -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/ni3s5n2t5cz7virin3rbspw5va_139.0.7229.0/139.0.7229.0_chrome_installer_uncompressed.exe - InstallerSha256: CFEBAA59B1534ECB06315C5BD3C0E7FCF8F2ED898DEA9A78DC420D8AB7E5647F -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7229.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7229.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 950e75ca6c995..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7229.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7229.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.7229.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7229.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index ffcbb847e2360..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7229.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7229.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.7229.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7229.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index a737a46cedd7c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7229.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7229.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.7229.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7229.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 0b20eb1db8918..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7229.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7229.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7230.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7230.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 16ece7314d104..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7230.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7230.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/ad2lmq4i6cvitya6io7lmdulw6eq_139.0.7230.0/139.0.7230.0_chrome_installer_uncompressed.exe - InstallerSha256: 5EB1F9D80EB28409979A451D3C66AC6EA4967E46D7E3D5A85C62D990A2C4C15E -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acnynpfbsz2izelbr2fnoclm25ca_139.0.7230.0/139.0.7230.0_chrome_installer_uncompressed.exe - InstallerSha256: CDAC8187DFE04381DCF2D5C5196898F390EFD4BE16BABA16DE0D3DE01D2C45DE -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/nlnwtf3rms4w7vuapvgixd25gq_139.0.7230.0/139.0.7230.0_chrome_installer_uncompressed.exe - InstallerSha256: 817D6E8C474FA4148A856FEE502AFB931E983D4C18D8B73A3F60BAF8B4380161 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7230.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7230.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 882fd1ba608d6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7230.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7230.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.7230.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7230.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index ead2addc5056c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7230.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7230.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.7230.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7230.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index d6da0b957da85..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7230.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7230.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.7230.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7230.0/Google.Chrome.Canary.yaml deleted file mode 100644 index f786f2886fdf9..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7230.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7230.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7231.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7231.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index d8a6eadca8c69..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7231.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7231.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/acj6p47fkj3ktodfkpwg5pulxuyq_139.0.7231.0/139.0.7231.0_chrome_installer_uncompressed.exe - InstallerSha256: 2E5F63400863D8891A004B2932DFFB168307F42C7F202F132D4C8295F8DDDB53 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/eglkm4bjbrenpk2hso4gvhihv4_139.0.7231.0/139.0.7231.0_chrome_installer_uncompressed.exe - InstallerSha256: 15C858CA048E4957A7723AEF5D3D66C608B43FECF4A88FE9C646BC2ACDD5F1E5 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/iqs7iosvtzb3av53zn5gxckvui_139.0.7231.0/139.0.7231.0_chrome_installer_uncompressed.exe - InstallerSha256: B1F4AE2A106502BBF4346967268D543BFA5A816FC87029FFC2F41744DA38D5F5 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7231.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7231.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index f46687e77200a..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7231.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7231.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.7231.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7231.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index cb58d194e13c4..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7231.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7231.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.7231.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7231.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index bc012843887ec..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7231.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7231.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.7231.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7231.0/Google.Chrome.Canary.yaml deleted file mode 100644 index b938ed82a44f5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7231.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7231.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7232.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7232.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 80c7187e58310..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7232.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7232.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/o5d3goxg3gvmbwhewjdoyk5hlu_139.0.7232.0/139.0.7232.0_chrome_installer_uncompressed.exe - InstallerSha256: 74BA20E091C1D8CECBC119AADE2AE4D0719BFF368EA573D1D7E9237623CE5524 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acavyjhz5s6alrmwq4sy4afp7evq_139.0.7232.0/139.0.7232.0_chrome_installer_uncompressed.exe - InstallerSha256: 695D868A1B341A2FD932144371C1DCCDB7657431D926AB8ABE533EC1BC2A4A34 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/ac3xpao7mb3hhbkfl56iiva6nogq_139.0.7232.0/139.0.7232.0_chrome_installer_uncompressed.exe - InstallerSha256: A9C9F2AA5AE82E929CE300B5635C9376ED469D47CD47C8AE090B1C1BB7817A77 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7232.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7232.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index db923e12728a0..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7232.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7232.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.7232.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7232.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 9912ec597968c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7232.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7232.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.7232.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7232.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 31fd963ac4bb0..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7232.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7232.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.7232.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7232.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 7dfa8e41e33a8..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7232.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7232.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7233.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7233.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 007e71dfc4ed4..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7233.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7233.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/fe43thwkmjpej2wlg4kpflr7tu_139.0.7233.0/139.0.7233.0_chrome_installer_uncompressed.exe - InstallerSha256: 47F064D98BBDB97CCCDD4F7E0AAAC16E1B5A29E2A223491CFD99B5E9E5D131AF -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acvflyx5kjr4ysfrd7ktui56g67q_139.0.7233.0/139.0.7233.0_chrome_installer_uncompressed.exe - InstallerSha256: 1B20E7340D7709761A87D031E4798BD4486F0174264F13B980809D13E1CA78B9 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/clr3nha6gfzqft5eup6fu4gxey_139.0.7233.0/139.0.7233.0_chrome_installer_uncompressed.exe - InstallerSha256: FFCB52E87C52C2C461290F7C198D270C7DF111BEA039C40EB31FFB4AD4D9F639 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7233.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7233.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 85b2271eb8b21..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7233.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7233.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.7233.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7233.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index b66e39feddeda..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7233.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7233.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.7233.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7233.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 09fbd1863f513..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7233.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7233.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.7233.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7233.0/Google.Chrome.Canary.yaml deleted file mode 100644 index c9c987f26da89..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7233.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7233.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7234.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7234.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index ac29c79ec1e8d..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7234.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7234.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/kb4jpeiqieiysn3e42fdizj4eq_139.0.7234.0/139.0.7234.0_chrome_installer_uncompressed.exe - InstallerSha256: 7010CE77924527D894A4EE4F5EC2BE61D77A5E91A5E0C5A31D7B41647E8A55D7 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acpqyyipfshgf3iaapfg3rekjofa_139.0.7234.0/139.0.7234.0_chrome_installer_uncompressed.exe - InstallerSha256: 9B509F74E69EA75BF03767AF230E86DAC69DD9A5D0AF40AA9F9528897EF48012 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/e543io6oueocdmqtoe4iwv32xe_139.0.7234.0/139.0.7234.0_chrome_installer_uncompressed.exe - InstallerSha256: A7DF95EA968590FCA9B3FCEF9B8478A6A29D8928499850B61A2269143C98474E -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7234.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7234.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 383546fbfbe15..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7234.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7234.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.7234.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7234.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 6f6d03fe48af2..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7234.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7234.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.7234.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7234.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 6bfe555ab0a16..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7234.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7234.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.7234.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7234.0/Google.Chrome.Canary.yaml deleted file mode 100644 index c8955c56d0106..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7234.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7234.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7235.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7235.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 9c27f2aebacca..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7235.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7235.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/adwbpk7ljdnw4dyjg5axz7tjv6hq_139.0.7235.0/139.0.7235.0_chrome_installer_uncompressed.exe - InstallerSha256: A66C7D65D5AABE6C88420E173768DC7B0B318DD51C5CB268E70614933FFF8BAE -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/adllxm2yhoie6ajugrtmxd7ikuna_139.0.7235.0/139.0.7235.0_chrome_installer_uncompressed.exe - InstallerSha256: 7371965765DD49996564FE1893878B06C8E04C58C03B9C1D087C0DC9D062F7F0 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/l2jujr5c4slot35gani5wrj2gq_139.0.7235.0/139.0.7235.0_chrome_installer_uncompressed.exe - InstallerSha256: 296F9B9928E02659A5D646936A4E474160DBD8670913DFC8F0285FA443B84621 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7235.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7235.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 62471ce4e2ef8..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7235.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7235.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.7235.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7235.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 0d0a4b39dd463..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7235.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7235.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.7235.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7235.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 619eee89c5508..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7235.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7235.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.7235.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7235.0/Google.Chrome.Canary.yaml deleted file mode 100644 index d957b35c6b229..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7235.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7235.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7236.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7236.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 7fb2449a45c70..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7236.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7236.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/gvbozgub5fwpwijhsqvvhufmey_139.0.7236.0/139.0.7236.0_chrome_installer_uncompressed.exe - InstallerSha256: 5590E7DAC63BF71F976D22776EF5548DEF5412185D481EC4C21A6A5A2439405B -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acblbxiuecpsqfwlmo5rgctqhfzq_139.0.7236.0/139.0.7236.0_chrome_installer_uncompressed.exe - InstallerSha256: 789AACC2C2A5F2057E116693DBDA513089CD0F855A39938226083987F45C2891 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/adg62ehhn5go2ryivah56lz2mcfa_139.0.7236.0/139.0.7236.0_chrome_installer_uncompressed.exe - InstallerSha256: 7B7F062DCA08EE63B7379670A9DBF156B137FA119D89B1BC6D569C049686E058 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7236.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7236.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 3b6c53b0b51fc..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7236.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7236.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.7236.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7236.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 138490e908c57..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7236.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7236.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.7236.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7236.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 4dc9315f0a79f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7236.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7236.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.7236.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7236.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 2ae4e42c023ff..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7236.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7236.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7237.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7237.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index e7da121be9e51..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7237.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7237.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/givjgdyynha6cg6hxpgsblbiqq_139.0.7237.0/139.0.7237.0_chrome_installer_uncompressed.exe - InstallerSha256: 67E3A3B1220D06827CF403A881161A566A53D91B814D9E720458B2A2DB112812 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/iyz67mzhpljejbinjoqiaohjb4_139.0.7237.0/139.0.7237.0_chrome_installer_uncompressed.exe - InstallerSha256: C9959D7BE1BBD5846D258AD81908E3F567CA44038B952687596C008EC60F5963 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acie434nim2ytnywzrz3w6yhavsa_139.0.7237.0/139.0.7237.0_chrome_installer_uncompressed.exe - InstallerSha256: 084CD82DC2CBF0D056F32013A162EFB9476068CC80ABE0AF5FAD35E37A206D01 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7237.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7237.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 50d10f5a0fd5d..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7237.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7237.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.7237.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7237.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index cb50d00a14d80..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7237.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7237.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.7237.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7237.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 635c902bb1bfe..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7237.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7237.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.7237.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7237.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 182cd786863fe..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7237.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7237.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7238.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7238.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index adf0449dc60f8..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7238.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7238.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/afm4n6ma4mqxgu4gryrqnkw7sm_139.0.7238.0/139.0.7238.0_chrome_installer_uncompressed.exe - InstallerSha256: 8B3685090897E169678066996E3B87431A278861B32CC8469E8AEF2369FA0534 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/adi3zujl72t23qluzwds6o57l7cq_139.0.7238.0/139.0.7238.0_chrome_installer_uncompressed.exe - InstallerSha256: 7BB90ECBBE40744E5CD19E8FF8BCF9482CF811DD088C295D136C30CBA34564CD -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/ek56m635jzzkhppw6xyygrwenm_139.0.7238.0/139.0.7238.0_chrome_installer_uncompressed.exe - InstallerSha256: D3C7CE9681BF6438478BEDD18D9B4BB503A70B3DE4457C7C7D4F70C51B11BD67 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7238.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7238.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 061b4c7f886c6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7238.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7238.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.7238.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7238.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 80b0baa9f2a1f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7238.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7238.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.7238.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7238.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index ae422c2fbf7bf..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7238.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7238.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.7238.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7238.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 3e12ac60c682c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7238.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7238.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7240.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7240.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 265087997f017..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7240.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7240.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/adi2zxnjhj4td7mzjdgwmsjpzuna_139.0.7240.0/139.0.7240.0_chrome_installer_uncompressed.exe - InstallerSha256: 03BA63D5491D4FC1450CF82E81070300C1B038FF215995F9342A1591EF885450 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acuopksjzebjfjl7hhjwmhxgymsq_139.0.7240.0/139.0.7240.0_chrome_installer_uncompressed.exe - InstallerSha256: A5C758393BC212C48297E4E358D636E53B2342CEA7EE4A60685D8DD2642E1C90 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/ac6ygtm7nleoaanw3dgrq45bkyna_139.0.7240.0/139.0.7240.0_chrome_installer_uncompressed.exe - InstallerSha256: 1EAB0CC296D6426583BA72ABD5E2CA3DA038E8C001CF994F7075AF7A7A84C504 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7240.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7240.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index c9f4f7c509b68..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7240.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7240.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.7240.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7240.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index ebeab15124de1..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7240.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7240.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.7240.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7240.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 2827f4a4afb29..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7240.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7240.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.7240.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7240.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 87df4089c9b68..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7240.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7240.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7241.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7241.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 211d3de6ee798..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7241.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7241.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/curax54mphh2w43absn34y5lcm_139.0.7241.0/139.0.7241.0_chrome_installer_uncompressed.exe - InstallerSha256: F4AEC221B760EDF0C2D5056E7C29E850362CD0EE714DFA41D01D5BAA9E2C119B -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/be3nf37nrsijnnmcaj6xwy5fse_139.0.7241.0/139.0.7241.0_chrome_installer_uncompressed.exe - InstallerSha256: 38275D2DE7297A446D4D5C89314C4B781A9CC5F46E3D1B2429F01D526828D85E -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/ew6sbbbzgei63zdy5vwxfjpm34_139.0.7241.0/139.0.7241.0_chrome_installer_uncompressed.exe - InstallerSha256: 31998527C3DD65EDE79C7F13750DF204687DF15E7D6593AF7469F941A6A203B9 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7241.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7241.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 4206aeb203875..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7241.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7241.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.7241.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7241.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 4a256b511fc49..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7241.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7241.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.7241.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7241.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 790ded4ea50b8..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7241.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7241.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.7241.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7241.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 0d2619f09df34..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7241.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7241.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7242.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7242.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 3102808ceade8..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7242.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7242.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/adf5zfxs2yfqa3nwdyc3ttvxar6a_139.0.7242.0/139.0.7242.0_chrome_installer_uncompressed.exe - InstallerSha256: A439DC42DF2A7A095DEDC5DE192890A53748C70269E5A07A6719A1979108D712 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/gg2knfes2nxlskur3d5kgcclxi_139.0.7242.0/139.0.7242.0_chrome_installer_uncompressed.exe - InstallerSha256: B02215EFF0A6D3CCC940F7E52CB662E1B9DC34E036CF053E104C795084AFFAE3 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/adewhkftal3zeiwzbpbn7tl7l7ua_139.0.7242.0/139.0.7242.0_chrome_installer_uncompressed.exe - InstallerSha256: 97AAE237E849A4CDEB9816D5FEC872B4DF8EC9BB8F64FC1F682F990E61F6668F -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7242.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7242.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 06e822eab9763..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7242.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7242.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.7242.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7242.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index c2adfc5f37f1d..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7242.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7242.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.7242.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7242.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index f48742829776c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7242.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7242.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.7242.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7242.0/Google.Chrome.Canary.yaml deleted file mode 100644 index e35fc3d91ede6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7242.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7242.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7243.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7243.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 619e24f5ca91e..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7243.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7243.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/aozfx77mm23hzh6gbwawyw2k5q_139.0.7243.0/139.0.7243.0_chrome_installer_uncompressed.exe - InstallerSha256: 430D956C5253C071619AEDE5CB5A97347D2F1AEF871DE78FACE622D58F9B5738 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/edulenf5sm2qom5lpf44qjpwzi_139.0.7243.0/139.0.7243.0_chrome_installer_uncompressed.exe - InstallerSha256: C45C59BE713D832DD26A0A35EFDF413E3A759C4771CF7163CD5170D742A78E68 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/agupbr5vd6kltpgy26ac3jxfzy_139.0.7243.0/139.0.7243.0_chrome_installer_uncompressed.exe - InstallerSha256: DDA3B0554E896E0B3D758A6B26AACA572277DDFAF9D0CF246029CE0B6E30017F -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7243.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7243.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 96ecc05a6895f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7243.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7243.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.7243.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7243.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 2c8a86599ad7e..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7243.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7243.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.7243.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7243.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 75b1f6ca08d26..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7243.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7243.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.7243.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7243.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 002aaa4fd2ba0..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7243.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7243.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7244.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7244.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 27b3eb3526966..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7244.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7244.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/acgizcgnbpkhbwcax6weoemkbk4a_139.0.7244.0/139.0.7244.0_chrome_installer_uncompressed.exe - InstallerSha256: ED721B967A3D3BCB5E5CAA5A573283EA4443A18E308596C03E94E87630A8AC72 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/obtkmdyaqmjdtocaufjwsxnjz4_139.0.7244.0/139.0.7244.0_chrome_installer_uncompressed.exe - InstallerSha256: 18BBC3BDEE0BB7805EC99E0184B3BD7B1F5F1C5DB6A84756E55BF79DB3D2B7D6 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/mrmaaaohyjkckoynpokjklihja_139.0.7244.0/139.0.7244.0_chrome_installer_uncompressed.exe - InstallerSha256: 1C37BAA58D6094BAE9E09FB52415AF62E30A848B8C0EB4619A6B47EB3A561682 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7244.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7244.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index b7d9ba8b49107..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7244.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7244.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.7244.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7244.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index d2cd16eb19cc6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7244.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7244.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.7244.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7244.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 5dc630d8e4211..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7244.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7244.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.7244.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7244.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 094073f6cf95a..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7244.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7244.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7245.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7245.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index ccd5591551aab..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7245.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7245.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/ado3d3idghemjlpaeiwx3uyatsxa_139.0.7245.0/139.0.7245.0_chrome_installer_uncompressed.exe - InstallerSha256: 32F497CFC183AAB3AFE6C92355E369F2D21F22B5F745F936535E8BC89D7A8995 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/moakwa7dggoeovqbamnu7b57d4_139.0.7245.0/139.0.7245.0_chrome_installer_uncompressed.exe - InstallerSha256: 05CFFE81BADE7ACFA192C9580EFBF68875BE0F2CBA6E206EFA4805F6B4CB4176 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acarwqnfg2kuujfz5zfcqtqhv2kq_139.0.7245.0/139.0.7245.0_chrome_installer_uncompressed.exe - InstallerSha256: 246E1E1619675D64974A3113EC99CCC086966659229DC43FBE0AB4188AAD4212 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7245.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7245.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 95d22efed699f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7245.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7245.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.7245.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7245.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 640d64a36eb00..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7245.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7245.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.7245.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7245.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 1a0c4b95f61de..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7245.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7245.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.7245.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7245.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 74bbb147dcf3c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7245.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7245.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7246.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7246.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index c51570f0e8004..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7246.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7246.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/pt3ud5fqm2rpvl5o2fq3av6kum_139.0.7246.0/139.0.7246.0_chrome_installer_uncompressed.exe - InstallerSha256: 7C1E0CE6720A27385B410650EC128AFDCB60EFDEB8ED330475F4E772FF067FC5 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acrb7oqfssr55n23iveisa3e3xhq_139.0.7246.0/139.0.7246.0_chrome_installer_uncompressed.exe - InstallerSha256: EE51EDF37EDC7B84F734E2A9CD556917E0409D315B6EC80D827F5ECF0C46D28C -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/ad4wc3weqkdwt6ez4ko7mz5uzaaa_139.0.7246.0/139.0.7246.0_chrome_installer_uncompressed.exe - InstallerSha256: F711A1E33360AA248E10201AA405E351FA60CB9F8E791A0F4A5EE032BC47EBAB -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7246.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7246.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index a825026e5d33f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7246.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7246.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.7246.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7246.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 51d266c6fb4dc..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7246.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7246.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.7246.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7246.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 400325da23b03..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7246.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7246.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.7246.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7246.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 912b84be058b9..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7246.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7246.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7247.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7247.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 50d0721879591..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7247.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7247.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/ackeboaxzgkrgvmadjdphozsquaq_139.0.7247.0/139.0.7247.0_chrome_installer_uncompressed.exe - InstallerSha256: 66A499BF3A77BDF05965F81A44A276FF0F9E0461AC3D8FFFB8400233D4C57114 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acq4w5nwhflfr4enf4yrua7bsi5q_139.0.7247.0/139.0.7247.0_chrome_installer_uncompressed.exe - InstallerSha256: C2CAD6C23DE2CFB4BC36F61A89C24EE0E8D2CD4189C286897AA9D1BC859E6316 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/e2bictedrdzjdqupu5l3ckmsi4_139.0.7247.0/139.0.7247.0_chrome_installer_uncompressed.exe - InstallerSha256: BCEF5C4AC0A19DC7C9938FC5B059400127292D6CD1CBE556EFCF039F6E6C5663 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7247.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7247.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 6c54c2adf7340..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7247.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7247.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.7247.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7247.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 7fd11a6893123..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7247.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7247.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.7247.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7247.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 28fabdb788bc6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7247.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7247.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.7247.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7247.0/Google.Chrome.Canary.yaml deleted file mode 100644 index d04276848b032..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7247.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7247.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7248.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7248.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index d9aa20428fbcf..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7248.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7248.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/ftikn5hfyczxp7u43hocpdlqfm_139.0.7248.0/139.0.7248.0_chrome_installer_uncompressed.exe - InstallerSha256: 0D4EEB5F4A554258D11DC0DFB3B5CAE0FA13AE8947CFEDED3F6978433971F6D4 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/l5vd7waynjdhghnbv732rscn4u_139.0.7248.0/139.0.7248.0_chrome_installer_uncompressed.exe - InstallerSha256: 3249DA590D1074B305BD9372093F2B737F2D75BCCF1B48C9878180EA7E04399E -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/adexyikrxbt3tjwfpmwcexin4cma_139.0.7248.0/139.0.7248.0_chrome_installer_uncompressed.exe - InstallerSha256: A51A4F565AF015E1C90C4E8A07BE54022BCAC1EED4C2B38A3865F65E6A4CDF02 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7248.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7248.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 7d8b9a62d0083..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7248.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7248.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.7248.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7248.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index aa8367ca2cf59..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7248.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7248.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.7248.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7248.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index cb145d90dd20d..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7248.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7248.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.7248.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7248.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 21fe1347eb5bf..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7248.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7248.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7249.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7249.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 0e7778ad6860e..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7249.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7249.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/acsdrxry7mb6rukvr2pozwndkjga_139.0.7249.0/139.0.7249.0_chrome_installer_uncompressed.exe - InstallerSha256: F2DBF32EA2BA85AC0F78C700E1ACD21CF9DA15E709D919338AB06AF050C108CB -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/hj2k6e6ioop4fhxtd2kwrmbwba_139.0.7249.0/139.0.7249.0_chrome_installer_uncompressed.exe - InstallerSha256: 7C24B31E58EAF20B48D7979F5CED39F105E6D4EFC92A94F012E92921E1FC8B6C -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/ac7qg3ng3d57doxotupy57naltwq_139.0.7249.0/139.0.7249.0_chrome_installer_uncompressed.exe - InstallerSha256: EF1690155755860F3225B8D8915E49EE46BCE42769C5D3D6CAA1421C6C14B323 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7249.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7249.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 9aebb5918dcdb..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7249.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7249.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.7249.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7249.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 66ed8fde12d89..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7249.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7249.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.7249.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7249.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index bea2ae3006bde..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7249.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7249.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.7249.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7249.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 6e1e6b7d5f347..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7249.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7249.0 -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 deleted file mode 100644 index f3d03f3d1542f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index 547ea95939ad8..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 1e6adba864c6a..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index da0ef8f7de8b3..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 8cf1d0d144b78..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7250.0/Google.Chrome.Canary.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.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.7251.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7251.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index ff4bc38cb8569..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7251.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7251.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/ppkvky7mbw4dfhuk2vxml2qgyu_139.0.7251.0/139.0.7251.0_chrome_installer_uncompressed.exe - InstallerSha256: EC0CA5F9FDEAE3A6A170261B78537AD4DEDD220EC06CED98F5017CE359C22F9B -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/larzwdp7xqk6xjsh6ng5icdal4_139.0.7251.0/139.0.7251.0_chrome_installer_uncompressed.exe - InstallerSha256: 1A769840719F1E938DFA86ACD463FCCF1F300AF215BB92F4D08F1CAF028D6056 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acgcyogqxrmnycw37m3swylxfikq_139.0.7251.0/139.0.7251.0_chrome_installer_uncompressed.exe - InstallerSha256: B3C9B09333CED569D995AD1A9EFDABA42EC713DAB57A2D6F52BE50C43366B994 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7251.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7251.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index c888d6d59b1cc..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7251.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7251.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.7251.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7251.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 5d178706643a5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7251.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7251.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.7251.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7251.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index f0679d46de6ea..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7251.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7251.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.7251.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7251.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 610758f64743f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7251.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7251.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7252.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7252.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 8d74166e5ab23..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7252.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7252.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/c3oggii3x3zylms4vpvp6otidm_139.0.7252.0/139.0.7252.0_chrome_installer_uncompressed.exe - InstallerSha256: 71A2E2B0DE40AAF0E3FBEBE24DE29A78AA15111055C87D52B93E7F760328D557 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/ppfyxbnmmbwroalozz6744ftva_139.0.7252.0/139.0.7252.0_chrome_installer_uncompressed.exe - InstallerSha256: DAEFFFFEA47DC8804257CAA6946DE6B0A4D6F582454E454A0D76D97BB3010E10 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acpbhpwmm2fggzdy6jxwzqd5jtma_139.0.7252.0/139.0.7252.0_chrome_installer_uncompressed.exe - InstallerSha256: C56114F7967253E6069237E60B5A3510D8A40355D8D1E9C035DF626E2E28D99C -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7252.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7252.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index e31d83541bc87..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7252.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7252.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.7252.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7252.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 3c7ba5a7dd603..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7252.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7252.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.7252.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7252.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 1e62f319def52..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7252.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7252.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.7252.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7252.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 920b308d64204..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7252.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7252.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7253.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7253.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 7e9bf4d3ba7ac..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7253.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7253.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/actmrpq73ecoeil3w4f5bibh62eq_139.0.7253.0/139.0.7253.0_chrome_installer_uncompressed.exe - InstallerSha256: 17C1AF7193D188E4483B75EEAFE513E92F144411D41A8380282852DF2027ACDC -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/adxn7quh57hedrfkwsf4wqh6tlma_139.0.7253.0/139.0.7253.0_chrome_installer_uncompressed.exe - InstallerSha256: 7C2DCE25FA30E0640ABD9F676DB1ADF75BB927EEEF26CBA145D60BA750673278 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acskmulnsmi65ukfhbodsrwphysq_139.0.7253.0/139.0.7253.0_chrome_installer_uncompressed.exe - InstallerSha256: 962994BBDF1AA52431C4E38677BB897A9DDACF26FA7244A6B0C6125E99FFAAE6 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7253.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7253.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 3775454248e44..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7253.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7253.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.7253.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7253.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 76368dfda99e9..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7253.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7253.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.7253.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7253.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index cb8ec8eaaf3ae..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7253.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7253.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.7253.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7253.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 6dc5048dd4967..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7253.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7253.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7254.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7254.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index b69878cf9a905..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7254.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7254.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/adkvfkkvbxg3aiclc3qydxdkca2a_139.0.7254.0/139.0.7254.0_chrome_installer_uncompressed.exe - InstallerSha256: 44C1CA9C89074E0158572ED7D99695283FB6A3B6776736BC6D378750069EBBD7 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/lfgdoznmmeln33uarbrimcjbzi_139.0.7254.0/139.0.7254.0_chrome_installer_uncompressed.exe - InstallerSha256: 4E98EAE7CA4A86586E13FE81A271FA8C3255A0A13CDB4F35811BB67A5BB9F69D -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/k5wkc3kq4syjxsw5hkyj2bwjwa_139.0.7254.0/139.0.7254.0_chrome_installer_uncompressed.exe - InstallerSha256: 726CCC2457FB1E7300B8534825A98795615AD5E513D3839CFC83D75C7DC6E150 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7254.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7254.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 15ff1973c2574..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7254.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7254.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.7254.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7254.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index cb3595ffd7676..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7254.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7254.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.7254.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7254.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 7c849c4793693..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7254.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7254.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.7254.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7254.0/Google.Chrome.Canary.yaml deleted file mode 100644 index f2bb8a3c55468..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7254.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7254.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7255.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7255.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index c179f6b3dc83f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7255.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7255.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/acm4umd4jtohoaf56f56pv5a25xq_139.0.7255.0/139.0.7255.0_chrome_installer_uncompressed.exe - InstallerSha256: E317EE4728CFB72CDD7ECF189CD8A3C4F28A7BC27FF4D9655E2A100408AC7B52 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/aibyn6oiuhovlmoe4cndoq44dm_139.0.7255.0/139.0.7255.0_chrome_installer_uncompressed.exe - InstallerSha256: B5CD94D82D98D8614336208A99C2CC02808D8FCEE19623AAE9F46F9C3AC817AC -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/ckx5bmnu5aqqva5nf5rirmgoda_139.0.7255.0/139.0.7255.0_chrome_installer_uncompressed.exe - InstallerSha256: A7AF854F21A23406502AB2268DEB55C00633D5CF2D1888D2CFDFF1D079FEA882 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7255.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7255.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 834c09e476f78..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7255.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7255.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.7255.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7255.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 5b50b80910af9..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7255.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7255.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.7255.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7255.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 8413185a3860f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7255.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7255.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.7255.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7255.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 1a02c42d4d59f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7255.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7255.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7256.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7256.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 7ea3b3123c87e..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7256.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7256.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/dos5uhefglhpra3ltvqvfjjqee_139.0.7256.0/139.0.7256.0_chrome_installer_uncompressed.exe - InstallerSha256: C92E84671372AC1E4766407C668A73855D5F72AB1941B81D6D8246037FA7F1D1 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/ney33hqr5aqv7eko3aqa3fkwee_139.0.7256.0/139.0.7256.0_chrome_installer_uncompressed.exe - InstallerSha256: 1C121967FF8725D311BAF9D907D343D9F27574A0E314874014CF817D4FEE5AD9 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/adtfxrontmcu5mnwyil3jmn65eea_139.0.7256.0/139.0.7256.0_chrome_installer_uncompressed.exe - InstallerSha256: B1BA111C1B8662327C4FBAE701DBFD3C6718C09D74CE85A45297144D4C876189 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7256.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7256.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 4876ddab4dc93..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7256.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7256.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.7256.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7256.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 863241559796e..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7256.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7256.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.7256.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7256.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index bfecb805e9728..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7256.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7256.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.7256.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7256.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 8f6eacc8fbcaf..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7256.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7256.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7257.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/139.0.7257.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index a1e573e25aa60..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7257.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7257.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/a5iirhxyfw6pwgk2lxh4d3rxle_139.0.7257.0/139.0.7257.0_chrome_installer_uncompressed.exe - InstallerSha256: 2F5AB3C84E297BF11009885222B9E36397EC890712341FFD210F72ADD2212996 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/adig25gp2hmkaaaojovo4kds5hza_139.0.7257.0/139.0.7257.0_chrome_installer_uncompressed.exe - InstallerSha256: C279ED30AD84E4C7FFE57379C08BD7A53734C688CEE4D03D7FFFE1FEE8A5A2C2 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/acjgqacjajp3lgaldczubbsakx7q_139.0.7257.0/139.0.7257.0_chrome_installer_uncompressed.exe - InstallerSha256: 1EE3A4CF4F7592052AFB26ED295DFF2FBC30AB09D63E5FA85952855AFB6B2BD4 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/139.0.7257.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/139.0.7257.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 38dc54e185cfc..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7257.0/Google.Chrome.Canary.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: Google.Chrome.Canary -PackageVersion: 139.0.7257.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.7257.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/139.0.7257.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 8acaa52ccfc09..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7257.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7257.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.7257.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/139.0.7257.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 92160a062e383..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7257.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 139.0.7257.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.7257.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/139.0.7257.0/Google.Chrome.Canary.yaml deleted file mode 100644 index 0e614e7ba0b94..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7257.0/Google.Chrome.Canary.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.Canary -PackageVersion: 139.0.7257.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 deleted file mode 100644 index da829ecc037ac..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index a2d87c14e9cfb..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 2289e76494ad4..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index ad2ffebb94247..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index d9463e7af4380..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index 05b4e26bdf285..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.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.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 deleted file mode 100644 index 2192cfacba9b2..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 256c7c34620bc..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 713154e24a828..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 936df1804043f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.2/Google.Chrome.Canary.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.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 deleted file mode 100644 index afb8ce46e44b5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.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.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 deleted file mode 100644 index d0611cf32ebb7..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 23487ea9480bc..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 39c0bdd47172c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index d960a5c35e8e6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.5/Google.Chrome.Canary.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.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 deleted file mode 100644 index 1c9b302bcda0c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.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.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 deleted file mode 100644 index 3be4b77efcffa..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 39936fd165def..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index e00a8007aaad3..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 3e52f1343e4f6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/139.0.7258.6/Google.Chrome.Canary.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.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 deleted file mode 100644 index d326ab492c23b..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index 8b2ed16041733..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 85fb9ca487892..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 14c793083cd35..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index c5ab5989902c6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7259.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index a90c03b289a50..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index 0a0893089ce4d..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.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: 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 deleted file mode 100644 index fd32f28e01e77..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 02efec9937c8d..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index dc1d29222bd7b..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7260.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index f226de2883e47..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index 951eba70ddf96..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 9c51391328fb6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 4e437f1ebd70c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index a61c8af2366e6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7261.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index a04ac04814289..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index b52ff929e57f6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 01bc605b1d733..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 8556a37a51df0..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index df9cc3fa419c6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7262.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index 85ec623589796..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index de6cb83995afa..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.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: 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 deleted file mode 100644 index d074ef5ba11ed..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index d25a839a5ef42..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 2b195177971f1..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7263.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index 3825552974406..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index 10c08b45706f8..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 92fd9c6bd43a3..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 5e5013ba40598..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index f4ce8b445a1e5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7264.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index a1f277fe17028..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.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.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 deleted file mode 100644 index 8ca7cc5b0bb60..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 220255370beaf..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index c6d58be539eb4..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 018272bca04c3..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7264.3/Google.Chrome.Canary.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.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 deleted file mode 100644 index 5f7e83c596368..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index 263cb3217856d..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.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: 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 deleted file mode 100644 index aceb427119871..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 0ef8f4c0d6849..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 0a82c580bf9a5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7265.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index c53d1a07003f1..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index 7f0b62b8bd7aa..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 89debb596a9b5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index e784ed55b63d1..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 70fe9f658f4d7..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7266.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index ac85981fa04ad..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index a656e612986fd..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 8171980dd83c4..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index e4298dc4c5eb0..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index c4df58f5b1c7f..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7267.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index c6d814a362000..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index db482ecd93706..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 30faa7546b70a..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index f8582b0db9737..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 957568ec8ed9a..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7268.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index d5f96b18b9ae1..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index ec0bb40fd0bf6..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 954308aad0d10..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 1cd31d793fb8c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 62b1e09a88370..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7269.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index ccb4810874640..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.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.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 deleted file mode 100644 index b7b720f6e89db..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 037e55ab8699c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 1b85a2ecafda5..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 55c9f3eb7671b..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7269.2/Google.Chrome.Canary.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.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 deleted file mode 100644 index 0842eb86237ae..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.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.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 deleted file mode 100644 index 7011260788673..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.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: 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 deleted file mode 100644 index 4652ae076d3ce..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 5c4c6d02e33b9..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.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 deleted file mode 100644 index 332cea7ebc81c..0000000000000 --- a/manifests/g/Google/Chrome/Canary/140.0.7270.0/Google.Chrome.Canary.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.Canary -PackageVersion: 140.0.7270.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/138.0.7204.158/Google.Chrome.EXE.installer.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.158/Google.Chrome.EXE.installer.yaml new file mode 100644 index 0000000000000..82fc6ebe215e8 --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.158/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.158 +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/adcqqsejzq73hh4sldaongkus7za_138.0.7204.158/138.0.7204.158_chrome_installer_uncompressed.exe + InstallerSha256: C3EE04342BE3F0B3E4A3873662DAA4BB67F72C864076EAE3E9CBD44375EBA4C8 + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: x86 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/adcqqsejzq73hh4sldaongkus7za_138.0.7204.158/138.0.7204.158_chrome_installer_uncompressed.exe + InstallerSha256: C3EE04342BE3F0B3E4A3873662DAA4BB67F72C864076EAE3E9CBD44375EBA4C8 + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +- Architecture: x64 + Scope: user + InstallerUrl: https://dl.google.com/release2/chrome/adoxq6yw64jzwswqufh3prv6wcra_138.0.7204.158/138.0.7204.158_chrome_installer_uncompressed.exe + InstallerSha256: C04B9BEF1A1A4EE74B238E47D45DB20280480897A8A444AA225ED53C7C647AD7 + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: x64 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/adoxq6yw64jzwswqufh3prv6wcra_138.0.7204.158/138.0.7204.158_chrome_installer_uncompressed.exe + InstallerSha256: C04B9BEF1A1A4EE74B238E47D45DB20280480897A8A444AA225ED53C7C647AD7 + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +- Architecture: arm64 + Scope: user + InstallerUrl: https://dl.google.com/release2/chrome/adk6xxgma7l4k7lvise23d4zavyq_138.0.7204.158/138.0.7204.158_chrome_installer_uncompressed.exe + InstallerSha256: A6BD72C1513C08E1EE18F6DB5A8640A319B244B3D6CA483E99496C0023F774F1 + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: arm64 + Scope: machine + InstallerUrl: https://dl.google.com/release2/chrome/adk6xxgma7l4k7lvise23d4zavyq_138.0.7204.158/138.0.7204.158_chrome_installer_uncompressed.exe + InstallerSha256: A6BD72C1513C08E1EE18F6DB5A8640A319B244B3D6CA483E99496C0023F774F1 + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7191.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.158/Google.Chrome.EXE.locale.en-US.yaml similarity index 60% rename from manifests/g/Google/Chrome/Canary/138.0.7191.0/Google.Chrome.Canary.locale.en-US.yaml rename to manifests/g/Google/Chrome/EXE/138.0.7204.158/Google.Chrome.EXE.locale.en-US.yaml index fb77225d74be7..176138030e5eb 100644 --- a/manifests/g/Google/Chrome/Canary/138.0.7191.0/Google.Chrome.Canary.locale.en-US.yaml +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.158/Google.Chrome.EXE.locale.en-US.yaml @@ -1,22 +1,21 @@ # 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: 138.0.7191.0 +PackageIdentifier: Google.Chrome.EXE +PackageVersion: 138.0.7204.158 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 +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: 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 +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 diff --git a/manifests/g/Google/Chrome/Canary/138.0.7191.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.158/Google.Chrome.EXE.locale.nb-NO.yaml similarity index 60% rename from manifests/g/Google/Chrome/Canary/138.0.7191.0/Google.Chrome.Canary.locale.nb-NO.yaml rename to manifests/g/Google/Chrome/EXE/138.0.7204.158/Google.Chrome.EXE.locale.nb-NO.yaml index 869c2bf83e090..617a44144dcc8 100644 --- a/manifests/g/Google/Chrome/Canary/138.0.7191.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.158/Google.Chrome.EXE.locale.nb-NO.yaml @@ -1,21 +1,21 @@ # 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: 138.0.7191.0 +PackageIdentifier: Google.Chrome.EXE +PackageVersion: 138.0.7204.158 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 +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: 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. +ShortDescription: Nettleseren fra Google +Description: Enklere, tryggere og raskere enn noensinne – med Googles smarte funksjoner. Tags: - chromium - nettleseren diff --git a/manifests/g/Google/Chrome/Canary/138.0.7194.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.158/Google.Chrome.EXE.locale.zh-CN.yaml similarity index 61% rename from manifests/g/Google/Chrome/Canary/138.0.7194.0/Google.Chrome.Canary.locale.zh-CN.yaml rename to manifests/g/Google/Chrome/EXE/138.0.7204.158/Google.Chrome.EXE.locale.zh-CN.yaml index 7386d53d807cc..8be35efb47b37 100644 --- a/manifests/g/Google/Chrome/Canary/138.0.7194.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.158/Google.Chrome.EXE.locale.zh-CN.yaml @@ -1,21 +1,21 @@ # 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: 138.0.7194.0 +PackageIdentifier: Google.Chrome.EXE +PackageVersion: 138.0.7204.158 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 +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: 开发者专用的每日构建版 -Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +ShortDescription: 由 Google 打造的浏览器 +Description: 得益于 Google 智能工具,Chrome 现在更易用、更安全、更快速。 Tags: - chromium - 互联网 diff --git a/manifests/g/Google/Chrome/EXE/138.0.7204.158/Google.Chrome.EXE.yaml b/manifests/g/Google/Chrome/EXE/138.0.7204.158/Google.Chrome.EXE.yaml new file mode 100644 index 0000000000000..80a27d583e10a --- /dev/null +++ b/manifests/g/Google/Chrome/EXE/138.0.7204.158/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.158 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.installer.yaml b/manifests/g/Google/CloudSDK/530.0.0/Google.CloudSDK.installer.yaml similarity index 95% rename from manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.installer.yaml rename to manifests/g/Google/CloudSDK/530.0.0/Google.CloudSDK.installer.yaml index 18d310fbe07a6..5acd5da9cc9e8 100644 --- a/manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.installer.yaml +++ b/manifests/g/Google/CloudSDK/530.0.0/Google.CloudSDK.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: Google.CloudSDK -PackageVersion: 529.0.0 +PackageVersion: 530.0.0 InstallerLocale: en-US InstallerType: nullsoft InstallModes: diff --git a/manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.locale.en-US.yaml b/manifests/g/Google/CloudSDK/530.0.0/Google.CloudSDK.locale.en-US.yaml similarity index 95% rename from manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.locale.en-US.yaml rename to manifests/g/Google/CloudSDK/530.0.0/Google.CloudSDK.locale.en-US.yaml index a8cf446c86c94..143542f21acb3 100644 --- a/manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.locale.en-US.yaml +++ b/manifests/g/Google/CloudSDK/530.0.0/Google.CloudSDK.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.CloudSDK -PackageVersion: 529.0.0 +PackageVersion: 530.0.0 PackageLocale: en-US Publisher: Google LLC PublisherUrl: https://cloud.google.com/ diff --git a/manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.yaml b/manifests/g/Google/CloudSDK/530.0.0/Google.CloudSDK.yaml similarity index 87% rename from manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.yaml rename to manifests/g/Google/CloudSDK/530.0.0/Google.CloudSDK.yaml index 83b6a39418995..96e077cf5d85a 100644 --- a/manifests/g/Google/CloudSDK/529.0.0/Google.CloudSDK.yaml +++ b/manifests/g/Google/CloudSDK/530.0.0/Google.CloudSDK.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: Google.CloudSDK -PackageVersion: 529.0.0 +PackageVersion: 530.0.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.7/HearthSim.HearthstoneDeckTracker.installer.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.7/HearthSim.HearthstoneDeckTracker.installer.yaml new file mode 100644 index 0000000000000..37ce4dbe8d099 --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.7/HearthSim.HearthstoneDeckTracker.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.7 +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.7/HDT-Installer.exe + InstallerSha256: B28E22EDB8CFCEDF48CDDDEC3350DC6B1C75ADDF1E822EC6C7C7FDE0D6195EAF +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-07-15 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.7/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.7/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml new file mode 100644 index 0000000000000..2cc47cce72a6e --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.7/HearthSim.HearthstoneDeckTracker.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.7 +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.7 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.7/HearthSim.HearthstoneDeckTracker.yaml b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.7/HearthSim.HearthstoneDeckTracker.yaml new file mode 100644 index 0000000000000..74aae2f3fe71d --- /dev/null +++ b/manifests/h/HearthSim/HearthstoneDeckTracker/1.45.7/HearthSim.HearthstoneDeckTracker.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: HearthSim.HearthstoneDeckTracker +PackageVersion: 1.45.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/Helix/Helix/25.07/Helix.Helix.installer.yaml b/manifests/h/Helix/Helix/25.07/Helix.Helix.installer.yaml new file mode 100644 index 0000000000000..fc3f5fc8e6ca1 --- /dev/null +++ b/manifests/h/Helix/Helix/25.07/Helix.Helix.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: Helix.Helix +PackageVersion: '25.07' +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: helix-25.07-x86_64-windows/hx.exe +UpgradeBehavior: uninstallPrevious +Commands: +- hx +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-07-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/helix-editor/helix/releases/download/25.07/helix-25.07-x86_64-windows.zip + InstallerSha256: 55D7E5D64F083418776DE56B738A898EFFC4C8B2DDB759094E97A5EBD95970CC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/h/Helix/Helix/25.07/Helix.Helix.locale.en-US.yaml b/manifests/h/Helix/Helix/25.07/Helix.Helix.locale.en-US.yaml new file mode 100644 index 0000000000000..ecd4472add18d --- /dev/null +++ b/manifests/h/Helix/Helix/25.07/Helix.Helix.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: Helix.Helix +PackageVersion: '25.07' +PackageLocale: en-US +Publisher: Helix +PublisherUrl: https://helix-editor.com/ +PublisherSupportUrl: https://docs.helix-editor.com/ +PackageName: Helix +PackageUrl: https://helix-editor.com/ +License: MPL-2.0 +LicenseUrl: https://github.com/helix-editor/helix/blob/HEAD/LICENSE +ShortDescription: Helix Editor +Description: A Kakoune / Neovim inspired editor, written in Rust. +Moniker: helix +Tags: +- editor +- helix +- kakoune +- neovim +- rust +- vim +ReleaseNotes: |- + 25.07 CHANGELOG + 25.07 Release notes +ReleaseNotesUrl: https://github.com/helix-editor/helix/releases/tag/25.07 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/Helix/Helix/25.07/Helix.Helix.yaml b/manifests/h/Helix/Helix/25.07/Helix.Helix.yaml new file mode 100644 index 0000000000000..42ecd54e50ee9 --- /dev/null +++ b/manifests/h/Helix/Helix/25.07/Helix.Helix.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: Helix.Helix +PackageVersion: '25.07' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.2.0/InterfaceFluidics.Autoanalysis.Beta.installer.yaml b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.2.0/InterfaceFluidics.Autoanalysis.Beta.installer.yaml new file mode 100644 index 0000000000000..ede1d8f32d24c --- /dev/null +++ b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.2.0/InterfaceFluidics.Autoanalysis.Beta.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: InterfaceFluidics.Autoanalysis.Beta +PackageVersion: 1.13.2.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.2.0/autoanalysis-1.13.2.0.msix + InstallerSha256: 80271CD7E8E92851F376382F6D1C63EC0AA5F8C3EA3C99E380D0A40667D8679A + SignatureSha256: 5A71CF3A918113E8024465CEC73FA58E358AE00027ABD5E2DD7084DA1C0008E6 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.2.0/InterfaceFluidics.Autoanalysis.Beta.locale.en-US.yaml b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.2.0/InterfaceFluidics.Autoanalysis.Beta.locale.en-US.yaml new file mode 100644 index 0000000000000..eda209b202abf --- /dev/null +++ b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.2.0/InterfaceFluidics.Autoanalysis.Beta.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: InterfaceFluidics.Autoanalysis.Beta +PackageVersion: 1.13.2.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.2.0/InterfaceFluidics.Autoanalysis.Beta.yaml b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.2.0/InterfaceFluidics.Autoanalysis.Beta.yaml new file mode 100644 index 0000000000000..c6ebf0ab01f16 --- /dev/null +++ b/manifests/i/InterfaceFluidics/Autoanalysis/Beta/1.13.2.0/InterfaceFluidics.Autoanalysis.Beta.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: InterfaceFluidics.Autoanalysis.Beta +PackageVersion: 1.13.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/i/infisical/infisical/0.41.91/infisical.infisical.installer.yaml b/manifests/i/infisical/infisical/0.41.91/infisical.infisical.installer.yaml new file mode 100644 index 0000000000000..cfe5969f4e976 --- /dev/null +++ b/manifests/i/infisical/infisical/0.41.91/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.91 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-07-15" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: infisical.exe + PortableCommandAlias: infisical + InstallerUrl: https://github.com/Infisical/cli/releases/download/v0.41.91/cli_0.41.91_windows_amd64.zip + InstallerSha256: dca13a24312675d4651359be2ae2a8a24974704d6989076326962ef4d596381f + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: infisical.exe + PortableCommandAlias: infisical + InstallerUrl: https://github.com/Infisical/cli/releases/download/v0.41.91/cli_0.41.91_windows_arm64.zip + InstallerSha256: f38210d6f89ec440668c08fa98c6d20e341ea63cb3265c986989a0534b5ba7c4 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/i/infisical/infisical/0.41.91/infisical.infisical.locale.en-US.yaml b/manifests/i/infisical/infisical/0.41.91/infisical.infisical.locale.en-US.yaml new file mode 100644 index 0000000000000..7e1beec668265 --- /dev/null +++ b/manifests/i/infisical/infisical/0.41.91/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.91 +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.91/infisical.infisical.yaml b/manifests/i/infisical/infisical/0.41.91/infisical.infisical.yaml new file mode 100644 index 0000000000000..6ff392d720090 --- /dev/null +++ b/manifests/i/infisical/infisical/0.41.91/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.91 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.15.0/JanDeDobbeleer.OhMyPosh.installer.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.15.0/JanDeDobbeleer.OhMyPosh.installer.yaml new file mode 100644 index 0000000000000..8dd0311867667 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.15.0/JanDeDobbeleer.OhMyPosh.installer.yaml @@ -0,0 +1,59 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.15.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.15.0/install-x64.msi + InstallerSha256: C0C97725A8DB8C46BCB2698795D2739FB5811FAE7499B3DAB4DB10CB923759DE + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.15.0/install-x64.msi + InstallerSha256: C0C97725A8DB8C46BCB2698795D2739FB5811FAE7499B3DAB4DB10CB923759DE + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.15.0/install-x86.msi + InstallerSha256: 283E5B8F354FA1ACF517B25EE6D5E712AD28D66F92309BB512AB247E23396A40 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.15.0/install-x86.msi + InstallerSha256: 283E5B8F354FA1ACF517B25EE6D5E712AD28D66F92309BB512AB247E23396A40 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.15.0/install-arm64.msi + InstallerSha256: 00E15DD74E9D30CD490D1F39306C6BE15F6035302AEC685BB20121426650F5A2 + InstallerSwitches: + Custom: INSTALLER=winget ALLUSERS=1 + UpgradeBehavior: install +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v26.15.0/install-arm64.msi + InstallerSha256: 00E15DD74E9D30CD490D1F39306C6BE15F6035302AEC685BB20121426650F5A2 + InstallerSwitches: + Custom: INSTALLER=winget + UpgradeBehavior: install +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2025-07-15 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.15.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.15.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml new file mode 100644 index 0000000000000..94bde7bb7f25f --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.15.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.15.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.15.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/26.15.0/JanDeDobbeleer.OhMyPosh.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/26.15.0/JanDeDobbeleer.OhMyPosh.yaml new file mode 100644 index 0000000000000..97a020e88db80 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/26.15.0/JanDeDobbeleer.OhMyPosh.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 26.15.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/j/JetBrains/PyCharm/Community/EAP/252.23892.194/JetBrains.PyCharm.Community.EAP.installer.yaml b/manifests/j/JetBrains/PyCharm/Community/EAP/252.23892.194/JetBrains.PyCharm.Community.EAP.installer.yaml new file mode 100644 index 0000000000000..30879c1223784 --- /dev/null +++ b/manifests/j/JetBrains/PyCharm/Community/EAP/252.23892.194/JetBrains.PyCharm.Community.EAP.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: JetBrains.PyCharm.Community.EAP +PackageVersion: 252.23892.194 +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- ipr +- py +ProductCode: PyCharm Community Edition 252.23892.194 +ReleaseDate: 2025-07-15 +AppsAndFeaturesEntries: +- DisplayName: PyCharm Community Edition 251.23774.211 + ProductCode: PyCharm Community Edition 251.23774.211 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/python/pycharm-community-252.23892.194.exe + InstallerSha256: BDA69A25E4C778142007F58BF1A37A36AA6AE7DC3E4B30822A83FE9D11B1945C +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/python/pycharm-community-252.23892.194.exe + InstallerSha256: BDA69A25E4C778142007F58BF1A37A36AA6AE7DC3E4B30822A83FE9D11B1945C +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/python/pycharm-community-252.23892.194-aarch64.exe + InstallerSha256: 22D13529CEC41116B972B0762969CC4CE855864BEC96A01D8175D95C92AAA8C5 +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/python/pycharm-community-252.23892.194-aarch64.exe + InstallerSha256: 22D13529CEC41116B972B0762969CC4CE855864BEC96A01D8175D95C92AAA8C5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/PyCharm/Community/EAP/252.23892.194/JetBrains.PyCharm.Community.EAP.locale.en-US.yaml b/manifests/j/JetBrains/PyCharm/Community/EAP/252.23892.194/JetBrains.PyCharm.Community.EAP.locale.en-US.yaml new file mode 100644 index 0000000000000..b7db417cee427 --- /dev/null +++ b/manifests/j/JetBrains/PyCharm/Community/EAP/252.23892.194/JetBrains.PyCharm.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.PyCharm.Community.EAP +PackageVersion: 252.23892.194 +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: PyCharm Community Edition (EAP) +PackageUrl: https://www.jetbrains.com/pycharm/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 Python IDE for Professional Developers +Description: Intelligent Python IDE with refactorings, debugger, code completion, on-the-fly code analysis and coding productivity orientation +Tags: +- code +- coding +- develop +- development +- django +- programming +- python +ReleaseNotes: Check out all the new features in the release notes. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/PY-A-233538438/PyCharm-2025.2-EAP-5-252.23892.194-build-Release-Notes +Documentations: +- DocumentLabel: Learn PyCharm + DocumentUrl: https://www.jetbrains.com/pycharm/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/PyCharm/Community/EAP/252.23892.194/JetBrains.PyCharm.Community.EAP.locale.zh-CN.yaml b/manifests/j/JetBrains/PyCharm/Community/EAP/252.23892.194/JetBrains.PyCharm.Community.EAP.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7300489ed392e --- /dev/null +++ b/manifests/j/JetBrains/PyCharm/Community/EAP/252.23892.194/JetBrains.PyCharm.Community.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.PyCharm.Community.EAP +PackageVersion: 252.23892.194 +PackageLocale: zh-CN +Publisher: JetBrains s.r.o. +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: PyCharm Community Edition(抢先体验计划) +PackageUrl: https://www.jetbrains.com/zh-cn/pycharm/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: 面向专业开发者的 Python IDE +Description: 智能 Python IDE 具有重构、调试、代码补全、动态代码分析和以编程生产力为导向 +Tags: +- django +- python +- 代码 +- 开发 +- 编程 +- 集成开发环境 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/PY-A-233538438/PyCharm-2025.2-EAP-5-252.23892.194-build-Release-Notes +Documentations: +- DocumentLabel: 学习 PyCharm + DocumentUrl: https://www.jetbrains.com/zh-cn/pycharm/learn/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/PyCharm/Community/EAP/252.23892.194/JetBrains.PyCharm.Community.EAP.yaml b/manifests/j/JetBrains/PyCharm/Community/EAP/252.23892.194/JetBrains.PyCharm.Community.EAP.yaml new file mode 100644 index 0000000000000..15fdca48efe91 --- /dev/null +++ b/manifests/j/JetBrains/PyCharm/Community/EAP/252.23892.194/JetBrains.PyCharm.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.PyCharm.Community.EAP +PackageVersion: 252.23892.194 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/PyCharm/Professional/EAP/252.23892.194/JetBrains.PyCharm.Professional.EAP.installer.yaml b/manifests/j/JetBrains/PyCharm/Professional/EAP/252.23892.194/JetBrains.PyCharm.Professional.EAP.installer.yaml new file mode 100644 index 0000000000000..947812a16b629 --- /dev/null +++ b/manifests/j/JetBrains/PyCharm/Professional/EAP/252.23892.194/JetBrains.PyCharm.Professional.EAP.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: JetBrains.PyCharm.Professional.EAP +PackageVersion: 252.23892.194 +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- ipr +- py +ProductCode: PyCharm 252.23892.194 +ReleaseDate: 2025-07-15 +AppsAndFeaturesEntries: +- DisplayName: PyCharm 251.23774.211 + ProductCode: PyCharm 251.23774.211 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/python/pycharm-252.23892.194.exe + InstallerSha256: 8EBDC278020D579B884309F5931B8DEAC96DD886D387ED5E1010ED053E79DBC9 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/python/pycharm-252.23892.194.exe + InstallerSha256: 8EBDC278020D579B884309F5931B8DEAC96DD886D387ED5E1010ED053E79DBC9 +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/python/pycharm-252.23892.194-aarch64.exe + InstallerSha256: 649A248D7B6C632141685AA0482F3BC9B6BA45B84972227AB88B173515C4CA36 +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/python/pycharm-252.23892.194-aarch64.exe + InstallerSha256: 649A248D7B6C632141685AA0482F3BC9B6BA45B84972227AB88B173515C4CA36 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/PyCharm/Professional/EAP/252.23892.194/JetBrains.PyCharm.Professional.EAP.locale.en-US.yaml b/manifests/j/JetBrains/PyCharm/Professional/EAP/252.23892.194/JetBrains.PyCharm.Professional.EAP.locale.en-US.yaml new file mode 100644 index 0000000000000..1ae096ff05ba4 --- /dev/null +++ b/manifests/j/JetBrains/PyCharm/Professional/EAP/252.23892.194/JetBrains.PyCharm.Professional.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.PyCharm.Professional.EAP +PackageVersion: 252.23892.194 +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: PyCharm Professional Edition (EAP) +PackageUrl: https://www.jetbrains.com/pycharm/nextversion/ +License: Freeware +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user_eap/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +ShortDescription: The Python IDE for Professional Developers +Description: The Python & Django IDE with intelligent code completion, on-the-fly error checking, quick-fixes, and much more... +Tags: +- code +- coding +- develop +- development +- django +- programming +- python +ReleaseNotes: Check out all the new features in the release notes. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/PY-A-233538438/PyCharm-2025.2-EAP-5-252.23892.194-build-Release-Notes +Documentations: +- DocumentLabel: Learn PyCharm + DocumentUrl: https://www.jetbrains.com/pycharm/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/PyCharm/Professional/EAP/252.23892.194/JetBrains.PyCharm.Professional.EAP.locale.zh-CN.yaml b/manifests/j/JetBrains/PyCharm/Professional/EAP/252.23892.194/JetBrains.PyCharm.Professional.EAP.locale.zh-CN.yaml new file mode 100644 index 0000000000000..09fa0b4976e01 --- /dev/null +++ b/manifests/j/JetBrains/PyCharm/Professional/EAP/252.23892.194/JetBrains.PyCharm.Professional.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.PyCharm.Professional.EAP +PackageVersion: 252.23892.194 +PackageLocale: zh-CN +Publisher: JetBrains s.r.o. +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: PyCharm Professional Edition(抢先体验计划) +PackageUrl: https://www.jetbrains.com/zh-cn/pycharm/nextversion/ +License: 免费软件 +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user_eap/ +Copyright: Copyright © 2000-2024 JetBrains s.r.o. +ShortDescription: 面向专业开发者的 Python IDE +Description: Python 与 Django IDE,支持智能代码补全、实时错误检查和快速修复,等等… +Tags: +- django +- python +- 代码 +- 开发 +- 编程 +- 集成开发环境 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/PY-A-233538438/PyCharm-2025.2-EAP-5-252.23892.194-build-Release-Notes +Documentations: +- DocumentLabel: 学习 PyCharm + DocumentUrl: https://www.jetbrains.com/zh-cn/pycharm/learn/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/PyCharm/Professional/EAP/252.23892.194/JetBrains.PyCharm.Professional.EAP.yaml b/manifests/j/JetBrains/PyCharm/Professional/EAP/252.23892.194/JetBrains.PyCharm.Professional.EAP.yaml new file mode 100644 index 0000000000000..c34a94583495e --- /dev/null +++ b/manifests/j/JetBrains/PyCharm/Professional/EAP/252.23892.194/JetBrains.PyCharm.Professional.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.PyCharm.Professional.EAP +PackageVersion: 252.23892.194 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mercurial/Mercurial/7.0.3/Mercurial.Mercurial.installer.yaml b/manifests/m/Mercurial/Mercurial/7.0.3/Mercurial.Mercurial.installer.yaml new file mode 100644 index 0000000000000..3638ac922775e --- /dev/null +++ b/manifests/m/Mercurial/Mercurial/7.0.3/Mercurial.Mercurial.installer.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mercurial.Mercurial +PackageVersion: 7.0.3 +Scope: machine +UpgradeBehavior: install +Commands: +- hg +Installers: +- Architecture: x86 + InstallerType: inno + InstallerUrl: https://mercurial-scm.org/release/windows/Mercurial-7.0.3-x86.exe + InstallerSha256: 00A06C63058188EED2F79DF805C5A9523FE4FE8E99620C9A990DF4E22257152D + InstallerSwitches: + Custom: /MERGETASKS='modifypath' + ProductCode: '{4B95A5F1-EF59-4B08-BED8-C891C46121B3}_is1' +- Architecture: x64 + InstallerType: inno + InstallerUrl: https://mercurial-scm.org/release/windows/Mercurial-7.0.3-x64.exe + InstallerSha256: D9A1406F2B4C34AD36C48C78940C8B2EEB4439A735493CFC3A2F273C7FD0803B + InstallerSwitches: + Custom: /MERGETASKS='modifypath' + ProductCode: '{4B95A5F1-EF59-4B08-BED8-C891C46121B3}_is1' +- Architecture: x86 + InstallerType: wix + InstallerUrl: https://mercurial-scm.org/release/windows/mercurial-7.0.3-x86.msi + InstallerSha256: D13A585A61E6D9E41CC3E707E8DABA40DFDAE8D15BA4746A3C2932311894DBA6 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{280CC3D6-6146-4494-8532-19A4ED52FB9B}' + AppsAndFeaturesEntries: + - ProductCode: '{280CC3D6-6146-4494-8532-19A4ED52FB9B}' + UpgradeCode: '{A1CC6134-E945-4399-BE36-EB0017FDF7CF}' +- Architecture: x64 + InstallerType: wix + InstallerUrl: https://mercurial-scm.org/release/windows/mercurial-7.0.3-x64.msi + InstallerSha256: CF8B31741C076A7911311665977A7C7CDB03B8B2976192A3F892C50152AE5D9B + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{A248ED84-1300-4ABD-83E7-A5787352F276}' + AppsAndFeaturesEntries: + - ProductCode: '{A248ED84-1300-4ABD-83E7-A5787352F276}' + UpgradeCode: '{A1CC6134-E945-4399-BE36-EB0017FDF7CF}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mercurial/Mercurial/7.0.3/Mercurial.Mercurial.locale.en-US.yaml b/manifests/m/Mercurial/Mercurial/7.0.3/Mercurial.Mercurial.locale.en-US.yaml new file mode 100644 index 0000000000000..195d55153ef63 --- /dev/null +++ b/manifests/m/Mercurial/Mercurial/7.0.3/Mercurial.Mercurial.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: Mercurial.Mercurial +PackageVersion: 7.0.3 +PackageLocale: en-US +Publisher: Olivia Mackall and others +PublisherUrl: https://www.mercurial-scm.org/ +PublisherSupportUrl: https://wiki.mercurial-scm.org/ +Author: Olivia Mackall and others +PackageName: Mercurial +PackageUrl: https://www.mercurial-scm.org/ +License: GPL-2.0 +LicenseUrl: https://www.mercurial-scm.org/about#open-source +Copyright: Copyright (C) 2005-2022 Olivia Mackall and others +ShortDescription: Mercurial is a free, distributed source control management tool. It efficiently handles projects of any size and offers an easy and intuitive interface. +Moniker: hg +Tags: +- vcs +- version-control +ReleaseNotesUrl: https://wiki.mercurial-scm.org/WhatsNew +Documentations: +- DocumentLabel: Quick Start + DocumentUrl: https://www.mercurial-scm.org/quickstart +- DocumentLabel: Guide + DocumentUrl: https://www.mercurial-scm.org/guide +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mercurial/Mercurial/7.0.3/Mercurial.Mercurial.locale.zh-CN.yaml b/manifests/m/Mercurial/Mercurial/7.0.3/Mercurial.Mercurial.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ef7316f814c0a --- /dev/null +++ b/manifests/m/Mercurial/Mercurial/7.0.3/Mercurial.Mercurial.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: Mercurial.Mercurial +PackageVersion: 7.0.3 +PackageLocale: zh-CN +ShortDescription: Mercurial 是一款免费的分布式源码控制管理工具,可以有效处理各种规模的项目,并提供简单直观的界面。 +Tags: +- 水银 +- 版本控制 +- 版本控制系统 +Documentations: +- DocumentLabel: 快速入门 + DocumentUrl: https://www.mercurial-scm.org/quickstart +- DocumentLabel: 指南 + DocumentUrl: https://www.mercurial-scm.org/guide +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mercurial/Mercurial/7.0.3/Mercurial.Mercurial.yaml b/manifests/m/Mercurial/Mercurial/7.0.3/Mercurial.Mercurial.yaml new file mode 100644 index 0000000000000..8a349c9ef7fc8 --- /dev/null +++ b/manifests/m/Mercurial/Mercurial/7.0.3/Mercurial.Mercurial.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Mercurial.Mercurial +PackageVersion: 7.0.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/AzureMonitorAgent/1.36.0.0/Microsoft.AzureMonitorAgent.installer.yaml b/manifests/m/Microsoft/AzureMonitorAgent/1.36.0.0/Microsoft.AzureMonitorAgent.installer.yaml new file mode 100644 index 0000000000000..b5bfe0a6aad22 --- /dev/null +++ b/manifests/m/Microsoft/AzureMonitorAgent/1.36.0.0/Microsoft.AzureMonitorAgent.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: Microsoft.AzureMonitorAgent +PackageVersion: 1.36.0.0 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: '{451DA179-D4CD-4E87-A3EE-979495AFD4FC}' +ReleaseDate: 2025-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://download.microsoft.com/download/31552825-352c-46fa-91d8-9c8984ea0545/AzureMonitorAgentClientSetup.msi + InstallerSha256: 4C92E78DB8786C291F230FE828BC5FF8DB27B36DB7121093A0D4B177A3C51588 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/AzureMonitorAgent/1.36.0.0/Microsoft.AzureMonitorAgent.locale.en-US.yaml b/manifests/m/Microsoft/AzureMonitorAgent/1.36.0.0/Microsoft.AzureMonitorAgent.locale.en-US.yaml new file mode 100644 index 0000000000000..29688a7b8ed4a --- /dev/null +++ b/manifests/m/Microsoft/AzureMonitorAgent/1.36.0.0/Microsoft.AzureMonitorAgent.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: Microsoft.AzureMonitorAgent +PackageVersion: 1.36.0.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Azure Monitor Agent +License: Unknown +ShortDescription: > + Azure Monitor Agent (AMA) collects monitoring data from the guest operating + system of Azure and hybrid virtual machines and delivers it to Azure Monitor. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/AzureMonitorAgent/1.36.0.0/Microsoft.AzureMonitorAgent.yaml b/manifests/m/Microsoft/AzureMonitorAgent/1.36.0.0/Microsoft.AzureMonitorAgent.yaml new file mode 100644 index 0000000000000..548b376279571 --- /dev/null +++ b/manifests/m/Microsoft/AzureMonitorAgent/1.36.0.0/Microsoft.AzureMonitorAgent.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: Microsoft.AzureMonitorAgent +PackageVersion: 1.36.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.AspNetCore.Preview.installer.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.AspNetCore.Preview.installer.yaml new file mode 100644 index 0000000000000..979ad6e0789ad --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.AspNetCore.Preview.installer.yaml @@ -0,0 +1,45 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.Preview +PackageVersion: 10.0.0-preview.6.25358.103 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Log: ' ' + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-win-arm64.exe + InstallerSha256: 435BE5CE3A74E11169C768085393A2C24F955B90D00346BB76BE97BDDE95D7F5 + ProductCode: '{d5a81b7a-98ab-4d3f-b491-c1ec6331742f}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core Runtime - 10.0.0 Preview 6 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.0.35108 + ProductCode: '{d5a81b7a-98ab-4d3f-b491-c1ec6331742f}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-win-x64.exe + InstallerSha256: 100CCFAF07CF0D12C41283D5D77F901379580B03E8F59B3D9AA25B421DF1C52C + ProductCode: '{8d40a06c-3dfc-45a7-8279-ac11c395758a}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core Runtime - 10.0.0 Preview 6 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.0.35108 + ProductCode: '{8d40a06c-3dfc-45a7-8279-ac11c395758a}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-win-x86.exe + InstallerSha256: EFF8257C5E00CF96A71EFCBDD318A714311E5D62672C1BE523AAF0C9897A90A3 + ProductCode: '{5d63f628-469c-4dd1-86b9-0d71366898f4}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft ASP.NET Core Runtime - 10.0.0 Preview 6 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.0.35108 + ProductCode: '{5d63f628-469c-4dd1-86b9-0d71366898f4}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.AspNetCore.Preview.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.AspNetCore.Preview.locale.en-US.yaml new file mode 100644 index 0000000000000..dcedf9ef7c0fd --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.AspNetCore.Preview.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.Preview +PackageVersion: 10.0.0-preview.6.25358.103 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Runtime 10.0 Preview +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: aspnetcore-preview +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET +- ASP.NET Core +- runtime +- web +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/AspNetCore/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.AspNetCore.Preview.yaml b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.AspNetCore.Preview.yaml new file mode 100644 index 0000000000000..cb9a16a4345b6 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/AspNetCore/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.AspNetCore.Preview.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.AspNetCore.Preview +PackageVersion: 10.0.0-preview.6.25358.103 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/DesktopRuntime/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.DesktopRuntime.Preview.installer.yaml b/manifests/m/Microsoft/DotNet/DesktopRuntime/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.DesktopRuntime.Preview.installer.yaml new file mode 100644 index 0000000000000..f6937988eaf72 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/DesktopRuntime/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.DesktopRuntime.Preview.installer.yaml @@ -0,0 +1,45 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.DesktopRuntime.Preview +PackageVersion: 10.0.0-preview.6.25358.103 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Log: ' ' + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.6.25358.103/windowsdesktop-runtime-10.0.0-preview.6.25358.103-win-arm64.exe + InstallerSha256: 32A07CCF93680BF0AA87F480830A922F75C5781B417036DAA737968B07571CE7 + ProductCode: '{e8087a1c-16fd-4447-90cf-d3f6ba37ac16}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft Windows Desktop Runtime - 10.0.0 Preview 6 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.0.35108 + ProductCode: '{e8087a1c-16fd-4447-90cf-d3f6ba37ac16}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.6.25358.103/windowsdesktop-runtime-10.0.0-preview.6.25358.103-win-x64.exe + InstallerSha256: 789F6218A13FFF4CD5630D8831C65486D440B72393D587E3FC0780EA2E804575 + ProductCode: '{14fd5884-0173-4426-a9fb-2cff6ccf2f6f}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft Windows Desktop Runtime - 10.0.0 Preview 6 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.0.35108 + ProductCode: '{14fd5884-0173-4426-a9fb-2cff6ccf2f6f}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.6.25358.103/windowsdesktop-runtime-10.0.0-preview.6.25358.103-win-x86.exe + InstallerSha256: 64250ABFDB16AEF666E69EC93F455A011E30720466C1CDF288D5E89D82F7D03D + ProductCode: '{bc49ef3e-6b97-4cdd-994c-c020e51e7653}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft Windows Desktop Runtime - 10.0.0 Preview 6 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.0.35108 + ProductCode: '{bc49ef3e-6b97-4cdd-994c-c020e51e7653}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/DesktopRuntime/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.DesktopRuntime.Preview.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/DesktopRuntime/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.DesktopRuntime.Preview.locale.en-US.yaml new file mode 100644 index 0000000000000..bf57954e6a28b --- /dev/null +++ b/manifests/m/Microsoft/DotNet/DesktopRuntime/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.DesktopRuntime.Preview.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.DesktopRuntime.Preview +PackageVersion: 10.0.0-preview.6.25358.103 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET Windows Desktop Runtime 10.0 Preview +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-desktop-preview +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- Windows Desktop +- Windows +- runtime +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/DesktopRuntime/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.DesktopRuntime.Preview.yaml b/manifests/m/Microsoft/DotNet/DesktopRuntime/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.DesktopRuntime.Preview.yaml new file mode 100644 index 0000000000000..d802a613d54b5 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/DesktopRuntime/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.DesktopRuntime.Preview.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.DesktopRuntime.Preview +PackageVersion: 10.0.0-preview.6.25358.103 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.HostingBundle.Preview.installer.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.HostingBundle.Preview.installer.yaml new file mode 100644 index 0000000000000..e6dd4ef9ff024 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.HostingBundle.Preview.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.Preview +PackageVersion: 10.0.0-preview.6.25358.103 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/dotnet-hosting-10.0.0-preview.6.25358.103-win.exe + InstallerSha256: 80465B409BFAC0E068D662B4F5CAD21257E6976C816DC53A043F01A149B0E844 + ProductCode: '{77157d46-a762-451b-80c0-2614f6816e66}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET 10.0.0 Preview 6 Build preview.6.25358.103 - Windows Server Hosting + Publisher: Microsoft Corporation + DisplayVersion: 10.0.0.25358 + ProductCode: '{77157d46-a762-451b-80c0-2614f6816e66}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.HostingBundle.Preview.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.HostingBundle.Preview.locale.en-US.yaml new file mode 100644 index 0000000000000..fa931ef39ad4d --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.HostingBundle.Preview.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.Preview +PackageVersion: 10.0.0-preview.6.25358.103 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft ASP.NET Core Hosting Bundle 10.0 Preview +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-hosting-preview +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- ASP.NET Core +- ASP.NET +- web +- hosting +- hosting bundle +- IIS +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/HostingBundle/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.HostingBundle.Preview.yaml b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.HostingBundle.Preview.yaml new file mode 100644 index 0000000000000..7ff452b092fbe --- /dev/null +++ b/manifests/m/Microsoft/DotNet/HostingBundle/Preview/10.0.0-preview.6.25358.103/Microsoft.DotNet.HostingBundle.Preview.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.HostingBundle.Preview +PackageVersion: 10.0.0-preview.6.25358.103 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/Preview/10.0.100-preview.6.25358.103/Microsoft.DotNet.SDK.Preview.installer.yaml b/manifests/m/Microsoft/DotNet/SDK/Preview/10.0.100-preview.6.25358.103/Microsoft.DotNet.SDK.Preview.installer.yaml new file mode 100644 index 0000000000000..6def070e94541 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/Preview/10.0.100-preview.6.25358.103/Microsoft.DotNet.SDK.Preview.installer.yaml @@ -0,0 +1,45 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.Preview +PackageVersion: 10.0.100-preview.6.25358.103 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Log: ' ' + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-win-arm64.exe + InstallerSha256: 07E655ACD7B25A69434107E1F2A714807F27BFC2C5E2C910DAFEF220CCC03078 + ProductCode: '{ddc8a60d-514f-4977-adac-50cf28cb03c2}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 10.0.100-preview.6.25358.103 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 10.1.25.35903 + ProductCode: '{ddc8a60d-514f-4977-adac-50cf28cb03c2}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-win-x64.exe + InstallerSha256: 55A8F34DDF7489C7DD00DE01AB18B9A4B577EFF0420E60FDA3F1FF58FD564DE2 + ProductCode: '{3338d882-7884-441b-8750-e1c33ef525d3}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 10.0.100-preview.6.25358.103 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 10.1.25.35903 + ProductCode: '{3338d882-7884-441b-8750-e1c33ef525d3}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-win-x86.exe + InstallerSha256: 476B94D232E32486B07BA979402610CCF911F23D8A9A899A43568BBC9BBC9DF3 + ProductCode: '{72795c1c-1d18-432a-aa57-7fc4fb85448a}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft .NET SDK 10.0.100-preview.6.25358.103 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 10.1.25.35903 + ProductCode: '{72795c1c-1d18-432a-aa57-7fc4fb85448a}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/Preview/10.0.100-preview.6.25358.103/Microsoft.DotNet.SDK.Preview.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/SDK/Preview/10.0.100-preview.6.25358.103/Microsoft.DotNet.SDK.Preview.locale.en-US.yaml new file mode 100644 index 0000000000000..7fe0f2b16a86b --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/Preview/10.0.100-preview.6.25358.103/Microsoft.DotNet.SDK.Preview.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.Preview +PackageVersion: 10.0.100-preview.6.25358.103 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET SDK 10.0 Preview +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-sdk-preview +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- SDK +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/SDK/Preview/10.0.100-preview.6.25358.103/Microsoft.DotNet.SDK.Preview.yaml b/manifests/m/Microsoft/DotNet/SDK/Preview/10.0.100-preview.6.25358.103/Microsoft.DotNet.SDK.Preview.yaml new file mode 100644 index 0000000000000..de78b5b590565 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/SDK/Preview/10.0.100-preview.6.25358.103/Microsoft.DotNet.SDK.Preview.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.SDK.Preview +PackageVersion: 10.0.100-preview.6.25358.103 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.9/Microsoft.VisualStudio.2022.BuildTools.installer.yaml b/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.9/Microsoft.VisualStudio.2022.BuildTools.installer.yaml new file mode 100644 index 0000000000000..6fbf2102b656a --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.9/Microsoft.VisualStudio.2022.BuildTools.installer.yaml @@ -0,0 +1,92 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.BuildTools +PackageVersion: 17.14.9 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Installers: +- MinimumOSVersion: 10.0.0.0 + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/ae7ac791-9759-4076-bba7-47ff510c57af/a783199025439d65f310bff041e278b966a6dbed8dbcd7fc96b55389f574ef41/vs_BuildTools.exe + InstallerSha256: a783199025439d65f310bff041e278b966a6dbed8dbcd7fc96b55389f574ef41 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.9/Microsoft.VisualStudio.2022.BuildTools.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.9/Microsoft.VisualStudio.2022.BuildTools.locale.en-US.yaml new file mode 100644 index 0000000000000..ca7c136de45c4 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.9/Microsoft.VisualStudio.2022.BuildTools.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.BuildTools +PackageVersion: 17.14.9 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio BuildTools 2022 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: An integrated, end-to-end solution for developers looking for high productivity and seamless coordination across teams of any size. +Moniker: vs2022-buildtools +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.9/Microsoft.VisualStudio.2022.BuildTools.yaml b/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.9/Microsoft.VisualStudio.2022.BuildTools.yaml new file mode 100644 index 0000000000000..56fced3eddce4 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/BuildTools/17.14.9/Microsoft.VisualStudio.2022.BuildTools.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.BuildTools +PackageVersion: 17.14.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.9/Microsoft.VisualStudio.2022.Community.installer.yaml b/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.9/Microsoft.VisualStudio.2022.Community.installer.yaml new file mode 100644 index 0000000000000..3ec1e8cc6c72f --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.9/Microsoft.VisualStudio.2022.Community.installer.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Community +PackageVersion: 17.14.9 +MinimumOSVersion: 10.0.0.0 +InstallerType: burn +Scope: machine +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork +Commands: +- devenv +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/ae7ac791-9759-4076-bba7-47ff510c57af/623ee64eddf87ead30df43917567cbb7ab3264d889cabb5d65ae028273652833/vs_Community.exe + InstallerSha256: 623EE64EDDF87EAD30DF43917567CBB7AB3264D889CABB5D65AE028273652833 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.9/Microsoft.VisualStudio.2022.Community.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.9/Microsoft.VisualStudio.2022.Community.locale.en-US.yaml new file mode 100644 index 0000000000000..b47fffe373a60 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.9/Microsoft.VisualStudio.2022.Community.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Community +PackageVersion: 17.14.9 +PackageLocale: en-US +Publisher: Microsoft Corporation +Author: Microsoft +PackageName: Visual Studio Community 2022 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: The Community edition of Visual Studio, an integrated development environment (IDE) from Microsoft. Individual developers have no restrictions on their use of the Community edition. +Moniker: vs2022-community +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.9/Microsoft.VisualStudio.2022.Community.yaml b/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.9/Microsoft.VisualStudio.2022.Community.yaml new file mode 100644 index 0000000000000..a09225df35a14 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Community/17.14.9/Microsoft.VisualStudio.2022.Community.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Community +PackageVersion: 17.14.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.9/Microsoft.VisualStudio.2022.Enterprise.installer.yaml b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.9/Microsoft.VisualStudio.2022.Enterprise.installer.yaml new file mode 100644 index 0000000000000..a45ce523c7ea4 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.9/Microsoft.VisualStudio.2022.Enterprise.installer.yaml @@ -0,0 +1,92 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Enterprise +PackageVersion: 17.14.9 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Installers: +- MinimumOSVersion: 10.0.0.0 + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/ae7ac791-9759-4076-bba7-47ff510c57af/5f40201c36160acf8d4adea566589862fce3809cfd801bc6b55ea8377c1e0b74/vs_Enterprise.exe + InstallerSha256: 5f40201c36160acf8d4adea566589862fce3809cfd801bc6b55ea8377c1e0b74 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.9/Microsoft.VisualStudio.2022.Enterprise.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.9/Microsoft.VisualStudio.2022.Enterprise.locale.en-US.yaml new file mode 100644 index 0000000000000..15f180cedf8d2 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.9/Microsoft.VisualStudio.2022.Enterprise.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Enterprise +PackageVersion: 17.14.9 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Enterprise 2022 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: An integrated, end-to-end solution for developers looking for high productivity and seamless coordination across teams of any size. +Moniker: vs2022-enterprise +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.9/Microsoft.VisualStudio.2022.Enterprise.yaml b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.9/Microsoft.VisualStudio.2022.Enterprise.yaml new file mode 100644 index 0000000000000..aa1c0b3b5291a --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Enterprise/17.14.9/Microsoft.VisualStudio.2022.Enterprise.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Enterprise +PackageVersion: 17.14.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.9/Microsoft.VisualStudio.2022.Professional.installer.yaml b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.9/Microsoft.VisualStudio.2022.Professional.installer.yaml new file mode 100644 index 0000000000000..564aec527da00 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.9/Microsoft.VisualStudio.2022.Professional.installer.yaml @@ -0,0 +1,92 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Professional +PackageVersion: 17.14.9 +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --passive + Upgrade: update + Custom: --wait +ExpectedReturnCodes: +- InstallerReturnCode: 1001 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1003 + ReturnResponse: fileInUse + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5004 + ReturnResponse: cancelledByUser + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8001 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8002 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8003 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8004 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8005 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8007 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8008 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8009 + ReturnResponse: blockedByPolicy + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -1073720687 + ReturnResponse: noNetwork + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: -2146233083 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 740 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5001 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5002 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5003 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5005 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5007 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 5008 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +- InstallerReturnCode: 8006 + ReturnResponse: custom + ReturnResponseUrl: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/installation/issues-workarounds-visual-studio-setup +Installers: +- MinimumOSVersion: 10.0.0.0 + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download.visualstudio.microsoft.com/download/pr/ae7ac791-9759-4076-bba7-47ff510c57af/d9a4b8f9e96716c57a37716d0f015d36c4929b203c872f647e5dea26b7542a01/vs_Professional.exe + InstallerSha256: d9a4b8f9e96716c57a37716d0f015d36c4929b203c872f647e5dea26b7542a01 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.9/Microsoft.VisualStudio.2022.Professional.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.9/Microsoft.VisualStudio.2022.Professional.locale.en-US.yaml new file mode 100644 index 0000000000000..871ccfdcc0d74 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.9/Microsoft.VisualStudio.2022.Professional.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Professional +PackageVersion: 17.14.9 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Visual Studio Professional 2022 +PackageUrl: https://visualstudio.microsoft.com/ +License: Proprietary +LicenseUrl: https://visualstudio.microsoft.com/license-terms/ +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: An integrated, end-to-end solution for developers looking for high productivity and seamless coordination across teams of any size. +Moniker: vs2022-professional +Tags: +- c# +- c++ +- vs +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.9/Microsoft.VisualStudio.2022.Professional.yaml b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.9/Microsoft.VisualStudio.2022.Professional.yaml new file mode 100644 index 0000000000000..6c43398ca2cc0 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/2022/Professional/17.14.9/Microsoft.VisualStudio.2022.Professional.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.1.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.2022.Professional +PackageVersion: 17.14.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/1.103.0/Microsoft.VisualStudioCode.Insiders.installer.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.103.0/Microsoft.VisualStudioCode.Insiders.installer.yaml index be19a2c15fd56..9371cfac3e574 100644 --- a/manifests/m/Microsoft/VisualStudioCode/Insiders/1.103.0/Microsoft.VisualStudioCode.Insiders.installer.yaml +++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.103.0/Microsoft.VisualStudioCode.Insiders.installer.yaml @@ -11,19 +11,19 @@ Commands: Installers: - Architecture: arm64 Scope: machine - InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/dff97cf6a99f8627d34ff0bf231ad91bb99f61e7/VSCodeSetup-arm64-1.103.0-insider.exe - InstallerSha256: 22CFBAC0235D40960C9110CE93DD0051D165BD7DF64709D76EB9D975AF0EF014 + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/b5d2dfbd1133331d3ff6f9fca1a4d8920d5cbeb9/VSCodeSetup-arm64-1.103.0-insider.exe + InstallerSha256: 6AED5D0AFC3F82943220F688598A748B3BA98CF2D316C6F93E4FB8C19D4D4193 - Architecture: arm64 Scope: user - InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/dff97cf6a99f8627d34ff0bf231ad91bb99f61e7/VSCodeUserSetup-arm64-1.103.0-insider.exe - InstallerSha256: 1FEF610F78238EC434B7122FD2C25C21A4565B90B55E67C3FD6DC3661883A656 + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/b5d2dfbd1133331d3ff6f9fca1a4d8920d5cbeb9/VSCodeUserSetup-arm64-1.103.0-insider.exe + InstallerSha256: 9C11D5F7FEECD04C1C28D35E696BA398BF02EF307669ACBD9A9B1D0F7EC4FD72 - Architecture: x64 Scope: machine - InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/dff97cf6a99f8627d34ff0bf231ad91bb99f61e7/VSCodeSetup-x64-1.103.0-insider.exe - InstallerSha256: A4406E680371C37636732CA020F25DDCBD4EC863B1342290C5D416983A440368 + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/b5d2dfbd1133331d3ff6f9fca1a4d8920d5cbeb9/VSCodeSetup-x64-1.103.0-insider.exe + InstallerSha256: 3684391A54F6312CE78129CFD66FEF2E97DB18DB9AFC2963FB71584CAA5829D6 - Architecture: x64 Scope: user - InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/dff97cf6a99f8627d34ff0bf231ad91bb99f61e7/VSCodeUserSetup-x64-1.103.0-insider.exe - InstallerSha256: 93355EFF3BBA78911D385B5A428EC6A813F002A061CC2BA52F91D62792C00DAB + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/b5d2dfbd1133331d3ff6f9fca1a4d8920d5cbeb9/VSCodeUserSetup-x64-1.103.0-insider.exe + InstallerSha256: E67873EC88A41A1E5CCA50E81065621C9923F7F404AF43DC896908371FC6223C ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/m/mikf/gallery-dl/1.30.0/mikf.gallery-dl.installer.yaml b/manifests/m/mikf/gallery-dl/1.30.0/mikf.gallery-dl.installer.yaml new file mode 100644 index 0000000000000..d71be188978ed --- /dev/null +++ b/manifests/m/mikf/gallery-dl/1.30.0/mikf.gallery-dl.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: mikf.gallery-dl +PackageVersion: 1.30.0 +InstallerType: portable +Commands: +- gallery-dl +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +ReleaseDate: 2025-07-15 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/mikf/gallery-dl/releases/download/v1.30.0/gallery-dl.exe + InstallerSha256: B863D09964C42359977566FA25D4418D873466CEB3C47F25B526A038F3F42F21 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/mikf/gallery-dl/1.30.0/mikf.gallery-dl.locale.en-US.yaml b/manifests/m/mikf/gallery-dl/1.30.0/mikf.gallery-dl.locale.en-US.yaml new file mode 100644 index 0000000000000..6c808941b7e67 --- /dev/null +++ b/manifests/m/mikf/gallery-dl/1.30.0/mikf.gallery-dl.locale.en-US.yaml @@ -0,0 +1,207 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: mikf.gallery-dl +PackageVersion: 1.30.0 +PackageLocale: en-US +Publisher: Mike Fährmann +PublisherUrl: https://github.com/mikf +PublisherSupportUrl: https://github.com/mikf/gallery-dl/issues +Author: Mike Fährmann +PackageName: gallery-dl +PackageUrl: https://github.com/mikf/gallery-dl +License: GPL-2.0 +LicenseUrl: https://github.com/mikf/gallery-dl/blob/master/LICENSE +Copyright: Copyright 2014-2024 Mike Fährmann +ShortDescription: Command-line program to download image galleries and collections from several image hosting sites +Description: gallery-dl is a command-line program to download image galleries and collections from several image hosting sites. It is a cross-platform tool with many configuration options and powerful filenaming capabilities. +Tags: +- download +- downloader +- gallery +- image +- photo +- picture +ReleaseNotes: |- + Changes + - raise minimum supported Python version to 3.8 (#7671) + - update extractor names (#7746 #7612) + - Old New + kemonoparty kemono + coomerparty coomer + koharu schalenetwork + naver naver-blog + chzzk naver-chzzk + naverwebtoon naver-webtoon + pixiv:novel pixiv-novel:novel + pixiv:novel-user pixiv-novel:user + pixiv:novel-series pixiv-novel:series + pixiv:novel-bookmark pixiv-novel:bookmark + - config settings will automatically use the old values + - target directories using {category} will use the new category names by default + - use --compat or "category-map": "compat" to restore old category names + - include exit status bitmasks of NotFoundError (8) and NoExtractorError (64) + into general HttpError (4) and InputError (32) respectively + Extractors + Additions + - [civitai] add search-images and posts extractors (#7609) + - [comick] add support (#1825 #6782) + - [dankefuerslesen] add support (#7669) + - [dynastyscans] add anthology extractor (#7627) + - [girlsreleased] add support (#6200) + - [girlswithmuscle] add support (#4493 #6016) + - [iwara] add support (#2652 #5840 #7785) + - [kemono] add artists extractor (#7582) + - [misskey] add avatar, background, and info extractors (#5347) + - [motherless] add group extractor (#7774 #7787) + - [naver-chzzk] add comment and community extractors (#7735 #7741) + - [nudostar] add support (#5735 #6556) + - [rawkuma] add support (#4571) + - [redbust] add support (#6759 #6918 #7043) + Fixes + - [4archive] fix thread extractor + - [arcalive] fix download URLs (#7678) + - [arcalive] replace ac-p.namu subdomains with ac-o.namu (#7556) + - [archivedmoe] fix redirection issue (#7652 #7653 #7664) + - [aryion] fix favorite extractor (#7775) + - [batoto] fix downloading manga with alerts/notices (#7657) + - [behance] fix 403 Forbidden errors (#7710) + - [bunkr] fix file downloads (#7747) + - [civitai] fix & update search extractor (#7609) + - [danbooru] fix Ugoira conversions for posts without ZIP:ZipFileName (#7630) + - [deviantart:tag] fix username (#7587) + - [deviantart:tiptap] fix TypeError when textAlign is null (#7639) + - [directlink] fix config lookups by subcategory (#6582) + - [discord] support forwarded messages & handle missing threads (#7706 #7722) + - [furaffinity] fix submissions results (#7759) + - [hitomi] fix negative tag searches (#7694) + - [kemono] fix tagged creator posts + - [mangadex:list] fix config lookups for list-feed subcategory + - [nijie] fix file extraction (#7624) + - [paheal] fix 404 Not Found error for tags with URL encoded characters (#7642) + - [patreon] send Referer header when downloading .m3u8 videos (#7571) + - [patreon] fix campaign_id extraction from Next.js 13 creator pages (#7773) + - [readcomiconline] fix extraction (#7606 #7789) + - [reddit] fix archive IDs of fallback files (#7760) + - [rule34] fix file downloads (#7697) + - [sankaku] fix extracting extended tag categories (#7744) + - [sexcom] prevent .css file downloads (#7632) + - [skeb] fix KeyError - 'frame_rate' (#7798) + - [tiktok] handle exceptions when extracting avatars (#7682) + - [vsco] fix JSON returned by VSCO (#7821) + - [warosu] HTML attribute fix (#7676 #7677 #7777) + Improvements + - [artstation] support downloading .mview files (#7812) + - [civitai] support "My Reactions" results for videos (#7608) + - [e621] support e621.cc/posts URLs (#6809) + - [erome] restructure extractor hierarchy (#7804) + - [everia] prevent redirect when fetching post pages + - [exhentai] ensure file signature bytes aren`t all zero (#4902) + - [exhentai] implement "source": "metadata" (#4902) + - [fanbox] return fileMap files in order (#2718) + - [gelbooru] improve error message for 401 Unauthorized responses (#7674) + - [imagevenue] detect 404 image files (#7570) + - [instagram] provide more descriptive URLs for video_dash_manifest videos (#7631) + - [pinterest] support pin.it redirects to board (#7805) + - [pinterest] match board URLs with query strings (#7805) + - [rule34us] prioritize video.rule34.us for video downloads (#6582) + - [rule34xyz] implement login with username & password (#7736) + - [sankaku] allow passing cookies (#7333) + - [sexcom] support /pics/ URLs (#7611) + - [tiktok] detect login page redirects (#7716) + - [vk] detect challenge page redirects (#7650) + - [vk] prevent 404 Not Found errors for file downloads + - [vk] add continuation message (#7650) + - [warosu] detect missing images by checking hostname (#7698 #7699) + - [ytdl] set domain as subcategory when using Generic extractor (#6582) + Metadata + - [civitai] always provide file[…] metadata (#7548) + - [everia] improve filename by unquoting URLs (#7620) + - [fanbox] extract archives metadata (#7454) + - [gelbooru_v02] extract total/search_count metadata (#7689) + - [instagram] provide post_url for stories and highlights (#7810) + - [kemono:discord] update server & channel metadata (#7569) + - [mangaread] fix manga_alt metadata + - [newgrounds] filter